diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index 7bf1610de43..c367c2e9e0d 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -1631,6 +1631,20 @@ private void OnSkinColorOnValueChanged() break; } // End Frontier + case HumanoidSkinColor.AnimalFur: // Einstein Engines - Tajaran + { + if (!RgbSkinColorContainer.Visible) + { + Skin.Visible = false; + RgbSkinColorContainer.Visible = true; + } + + var color = SkinColor.ClosestAnimalFurColor(_rgbSkinColorSelector.Color); + + Markings.CurrentSkinColor = color; + Profile = Profile.WithCharacterAppearance(Profile.Appearance.WithSkinColor(color)); + break; + } } ReloadProfilePreview(); @@ -1938,6 +1952,18 @@ private void UpdateSkinColor() break; } // End Frontier + case HumanoidSkinColor.AnimalFur: // Einstein Engines - Tajaran + { + if (!RgbSkinColorContainer.Visible) + { + Skin.Visible = false; + RgbSkinColorContainer.Visible = true; + } + + _rgbSkinColorSelector.Color = SkinColor.ClosestAnimalFurColor(Profile.Appearance.SkinColor); + + break; + } } } diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index 79433ea5755..c1e0774862c 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; using Robust.Shared.Prototypes; @@ -160,6 +160,7 @@ public static HumanoidCharacterAppearance DefaultWithSpecies(string species) HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), HumanoidSkinColor.VoxFeathers => Humanoid.SkinColor.ClosestVoxColor(speciesPrototype.DefaultSkinTone), + HumanoidSkinColor.AnimalFur => Humanoid.SkinColor.ClosestAnimalFurColor(speciesPrototype.DefaultSkinTone), // Einstein Engines - Tajaran _ => Humanoid.SkinColor.ValidHumanSkinTone, }; @@ -244,6 +245,9 @@ public static HumanoidCharacterAppearance Random(string species, Sex sex) case HumanoidSkinColor.VoxFeathers: newSkinColor = Humanoid.SkinColor.ProportionalVoxColor(newSkinColor); break; + case HumanoidSkinColor.AnimalFur: // Einstein Engines - Tajaran + newSkinColor = Humanoid.SkinColor.ProportionalAnimalFurColor(newSkinColor); + break; } var newHeight = random.NextFloat(0.8f, 1.2f); // Random height between 80% and 120% of normal diff --git a/Content.Shared/Humanoid/SkinColor.cs b/Content.Shared/Humanoid/SkinColor.cs index b1bfb427108..db8aba74689 100644 --- a/Content.Shared/Humanoid/SkinColor.cs +++ b/Content.Shared/Humanoid/SkinColor.cs @@ -18,6 +18,14 @@ public static class SkinColor public const float MinFeathersValue = 36f / 100; public const float MaxFeathersValue = 55f / 100; + // Einstein Engines - Tajaran + public const float MinAnimalFurHue = 0f / 360; //Floof - widened customization + public const float MaxAnimalFurHue = 360f / 360; //Floof - widened customization + public const float MinAnimalFurSaturation = 0f / 100; + public const float MaxAnimalFurSaturation = 100f / 100; + public const float MinAnimalFurValue = 0f / 100; + public const float MaxAnimalFurValue = 100f / 100; + public static Color ValidHumanSkinTone => Color.FromHsv(new Vector4(0.07f, 0.2f, 1f, 1f)); /// @@ -205,6 +213,60 @@ public static bool VerifyVoxFeathers(Color color) return true; } + /// + /// Converts a Color proportionally to the allowed animal fur color range. + /// Will NOT preserve the specific input color even if it is within the allowed animal fur color range. + /// + /// Color to convert + /// Vox feather coloration + public static Color ProportionalAnimalFurColor(Color color) + { + var newColor = Color.ToHsv(color); + + newColor.X = newColor.X * (MaxAnimalFurHue - MinAnimalFurHue) + MinAnimalFurHue; + newColor.Y = newColor.Y * (MaxAnimalFurSaturation - MinAnimalFurSaturation) + MinAnimalFurSaturation; + newColor.Z = newColor.Z * (MaxAnimalFurValue - MinAnimalFurValue) + MinAnimalFurValue; + + return Color.FromHsv(newColor); + } + + // /// + // /// Ensures the input Color is within the allowed animal fur color range. + // /// + // /// Color to convert + // /// The same Color if it was within the allowed range, or the closest matching Color otherwise + public static Color ClosestAnimalFurColor(Color color) + { + var hsv = Color.ToHsv(color); + + hsv.X = Math.Clamp(hsv.X, MinAnimalFurHue, MaxAnimalFurHue); + hsv.Y = Math.Clamp(hsv.Y, MinAnimalFurSaturation, MaxAnimalFurSaturation); + hsv.Z = Math.Clamp(hsv.Z, MinAnimalFurValue, MaxAnimalFurValue); + + return Color.FromHsv(hsv); + } + + /// + /// Verify if this color is a valid animal fur coloration, or not. + /// + /// The color to verify + /// True if valid, false otherwise + public static bool VerifyAnimalFur(Color color) + { + var colorHsv = Color.ToHsv(color); + + if (colorHsv.X < MinAnimalFurHue || colorHsv.X > MaxAnimalFurHue) + return false; + + if (colorHsv.Y < MinAnimalFurSaturation || colorHsv.Y > MaxAnimalFurSaturation) + return false; + + if (colorHsv.Z < MinAnimalFurValue || colorHsv.Z > MaxAnimalFurValue) + return false; + + return true; + } + /// /// This takes in a color, and returns a color guaranteed to be above MinHuesLightness /// @@ -236,6 +298,7 @@ public static bool VerifySkinColor(HumanoidSkinColor type, Color color) HumanoidSkinColor.Hues => VerifyHues(color), HumanoidSkinColor.VoxFeathers => VerifyVoxFeathers(color), HumanoidSkinColor.ShelegToned => VerifyShelegSkinTone(color), // Frontier: Sheleg + HumanoidSkinColor.AnimalFur => VerifyAnimalFur(color), // Einsetin Engines - Tajaran _ => false, }; } @@ -249,6 +312,7 @@ public static Color ValidSkinTone(HumanoidSkinColor type, Color color) HumanoidSkinColor.Hues => MakeHueValid(color), HumanoidSkinColor.VoxFeathers => ClosestVoxColor(color), HumanoidSkinColor.ShelegToned => ValidShelegSkinTone, // Frontier: Sheleg + HumanoidSkinColor.AnimalFur => ClosestAnimalFurColor(color), // Einsetin Engines - Tajaran _ => color }; } @@ -342,4 +406,5 @@ public enum HumanoidSkinColor : byte VoxFeathers, // Vox feathers are limited to a specific color range TintedHues, //This gives a color tint to a humanoid's skin (10% saturation with full hue range). ShelegToned, // Frontier: Like human toned, but with a different color range for blue + AnimalFur, // Einstein Engines - limits coloration to more or less what earthen animals might have } diff --git a/Resources/Fonts/Grenze_Gotisch/GrenzeGotisch.ttf b/Resources/Fonts/Grenze_Gotisch/GrenzeGotisch.ttf new file mode 100644 index 00000000000..3f93ccf31a6 Binary files /dev/null and b/Resources/Fonts/Grenze_Gotisch/GrenzeGotisch.ttf differ diff --git a/Resources/Fonts/Grenze_Gotisch/OFL.txt b/Resources/Fonts/Grenze_Gotisch/OFL.txt new file mode 100644 index 00000000000..a726762d01e --- /dev/null +++ b/Resources/Fonts/Grenze_Gotisch/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Grenze Gotisch Project Authors (https://github.com/Omnibus-Type/Grenze-Gotisch) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Resources/Fonts/NotoSans/NotoSansSC-Regular.ttf b/Resources/Fonts/NotoSans/NotoSansSC-Regular.ttf new file mode 100644 index 00000000000..9dd10199bc8 Binary files /dev/null and b/Resources/Fonts/NotoSans/NotoSansSC-Regular.ttf differ diff --git a/Resources/Fonts/Rubik_Dirt/OFL.txt b/Resources/Fonts/Rubik_Dirt/OFL.txt new file mode 100644 index 00000000000..1a69de2a23d --- /dev/null +++ b/Resources/Fonts/Rubik_Dirt/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Rubik Filtered Project Authors (https://https://github.com/NaN-xyz/Rubik-Filtered) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Resources/Fonts/Rubik_Dirt/RubikDirt.ttf b/Resources/Fonts/Rubik_Dirt/RubikDirt.ttf new file mode 100644 index 00000000000..d3308a7f637 Binary files /dev/null and b/Resources/Fonts/Rubik_Dirt/RubikDirt.ttf differ diff --git a/Resources/Fonts/Sriracha/OFL.txt b/Resources/Fonts/Sriracha/OFL.txt new file mode 100644 index 00000000000..ca4dd039167 --- /dev/null +++ b/Resources/Fonts/Sriracha/OFL.txt @@ -0,0 +1,93 @@ +Copyright (c) 2015, Cadson Demak (info@cadsondemak.com), Copyright (c) 2014, Pablo Impallari (www.impallari.com|impallari@gmail.com) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Resources/Fonts/Sriracha/Sriracha.ttf b/Resources/Fonts/Sriracha/Sriracha.ttf new file mode 100644 index 00000000000..c74f555d3f1 Binary files /dev/null and b/Resources/Fonts/Sriracha/Sriracha.ttf differ diff --git a/Resources/Locale/en-US/_EE/markings/tajaran.ftl b/Resources/Locale/en-US/_EE/markings/tajaran.ftl new file mode 100644 index 00000000000..ad787ea1806 --- /dev/null +++ b/Resources/Locale/en-US/_EE/markings/tajaran.ftl @@ -0,0 +1,69 @@ +marking-TajaranTorsoBelly = Chest Fur +marking-TajaranTorsoBelly-belly = Fur +marking-TajaranTorsoCrest = Chest Fur (Crest) +marking-TajaranTorsoCrest-crest = Fur +marking-TajaranTorsoFullBelly = Chest Fur (Full) +marking-TajaranTorsoFullBelly-fullbelly = Fur +marking-TajaranHeadMuzzle = Muzzle +marking-TajaranHeadMuzzle-muzzle = Muzzle +marking-TajaranHeadMuzzleLarge = Muzzle (Large) +marking-TajaranHeadMuzzleLarge-muzzle_large = Muzzle +marking-TajaranHeadNose = Nose +marking-TajaranHeadNose-nose = Nose +marking-TajaranHeadPatches = Patches +marking-TajaranHeadPatches-patch = Patches +marking-TajaranHeadPoints = Points +marking-TajaranHeadPoints-points = Points +marking-TajaranHeadTiger = Tiger +marking-TajaranHeadTiger-tiger_face = Stripes +marking-TajaranHeadTigerAlt = Tiger (Alternative) +marking-TajaranHeadTigerAlt-tiger_head = Stripes +marking-TajaranEarsRetro = Classic Ears +marking-TajaranEarsRetro-ears = Ears +marking-TajaranEarsRetroNear = Classic Ears (Alternative) +marking-TajaranEarsRetroNear-ears_near = Ears +marking-TajaranEarsSeparate = Classic Ears (Separated) +marking-TajaranEarsSeparate-outears = Outer +marking-TajaranEarsSeparate-inears = Inner +marking-TajaranEarsSeparateNear = Classic Ears (Alternative, Separated) +marking-TajaranEarsSeparateNear-outears_near = Outer +marking-TajaranEarsSeparateNear-inears_near = Inner +marking-TajaranTailAnim = Classic Tail (Animated) +marking-TajaranTailAnim-tail_anim = Tail +marking-TajaranTailAnimRings = Classic Tail (Animated, Rings) +marking-TajaranTailAnimRings-tail_anim = Tail +marking-TajaranTailAnimRings-tail_anim_rings = Rings +marking-TajaranTailRetro = Classic Tail +marking-TajaranTailRetro-tail = Tail +marking-TajaranTailRetroRings = Classic Tail (Rings) +marking-TajaranTailRetroRings-tail = Tail +marking-TajaranTailRetroRings-tail_rings = Rings +marking-TajaranOverlayPatch = Patches +marking-TajaranOverlayPatch-patch = Patches +marking-TajaranOverlayPoints = Points +marking-TajaranOverlayPoints-points = Points +marking-TajaranEarsBasic = Basic Ears +marking-TajaranEarsBasic-basic_outer = Outer ear +marking-TajaranEarsBasic-basic_inner = Inner ear +marking-TajaranEarsCurled = Curled Ears +marking-TajaranEarsCurled-curled_outer = Outer ear +marking-TajaranEarsCurled-curled_inner = Inner ear +marking-TajaranEarsDroopy = Droopy Ears +marking-TajaranEarsDroopy-droopy_outer = Outer ear +marking-TajaranEarsDroopy-droopy_inner = Inner ear +marking-TajaranEarsFuzzy = Fuzzy Ears +marking-TajaranEarsFuzzy-basic_outer = Outer ear +marking-TajaranEarsFuzzy-fuzzy_inner = Ear fuzz +marking-TajaranEarsStubby = Stubby Ears +marking-TajaranEarsStubby-stubby_outer = Outer ear +marking-TajaranEarsStubby-stubby_inner = Inner ear +marking-TajaranEarsTall = Tall Ears +marking-TajaranEarsTall-tall_outer = Outer ear +marking-TajaranEarsTall-tall_inner = Inner ear +marking-TajaranEarsTall-tall_fuzz = Ear fuzz +marking-TajaranEarsTorn = Torn Ears +marking-TajaranEarsTorn-torn_outer = Outer ear +marking-TajaranEarsTorn-torn_inner = Inner ear +marking-TajaranEarsWide = Wide Ears +marking-TajaranEarsWide-wide_outer = Outer ear +marking-TajaranEarsWide-wide_inner = Inner ear diff --git a/Resources/Locale/en-US/_EE/species/species.ftl b/Resources/Locale/en-US/_EE/species/species.ftl index faec6dde93a..50933fb8535 100644 --- a/Resources/Locale/en-US/_EE/species/species.ftl +++ b/Resources/Locale/en-US/_EE/species/species.ftl @@ -1 +1,2 @@ species-name-ipc = IPC +species-name-tajaran = Tajaran diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index e1489da47c4..c9668d656d0 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -39,7 +39,6 @@ chat-emote-name-wetplorp = Wet Plorp chat-emote-name-pullout = Pull Out chat-emote-name-cumin = Cum Inside chat-emote-name-cumout = Cum Inside - # Message chat-emote-msg-scream = screams! chat-emote-msg-laugh = laughs. diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml index cf98e96cff8..7fcc140a20b 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/earrings.yml @@ -2,7 +2,7 @@ id: EarringsStudLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -16,7 +16,7 @@ id: EarringsStudRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -30,7 +30,7 @@ id: EarringsHeavyLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -44,7 +44,7 @@ id: EarringsHeavyRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -58,7 +58,7 @@ id: EarringsDropBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -72,7 +72,7 @@ id: EarringsDropBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -86,7 +86,7 @@ id: EarringsDropColoredLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -102,7 +102,7 @@ id: EarringsDropColoredRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -118,7 +118,7 @@ id: EarringsDropLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -134,7 +134,7 @@ id: EarringsDropLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -150,7 +150,7 @@ id: EarringsCrescentLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -164,7 +164,7 @@ id: EarringsCrescentRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -178,7 +178,7 @@ id: EarringsBangleLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -192,7 +192,7 @@ id: EarringsBangleRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -206,7 +206,7 @@ id: EarringsHoopBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -220,7 +220,7 @@ id: EarringsHoopBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -234,7 +234,7 @@ id: EarringsHoopMiniLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -248,7 +248,7 @@ id: EarringsHoopMiniRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -262,7 +262,7 @@ id: EarringsCrossBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -276,7 +276,7 @@ id: EarringsCrossBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -290,7 +290,7 @@ id: EarringsCrossSaintPeterLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -304,7 +304,7 @@ id: EarringsCrossSaintPeterRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -318,7 +318,7 @@ id: EarringsGemstoneBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -334,7 +334,7 @@ id: EarringsGemstoneBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -350,7 +350,7 @@ id: EarringsGemstoneLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -366,7 +366,7 @@ id: EarringsGemstoneLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -382,7 +382,7 @@ id: EarringsGemstoneDoubleLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -400,7 +400,7 @@ id: EarringsGemstoneDoubleRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -418,7 +418,7 @@ id: EarringsDangleBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -434,7 +434,7 @@ id: EarringsDangleBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -450,7 +450,7 @@ id: EarringsDangleLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -466,7 +466,7 @@ id: EarringsDangleLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -482,7 +482,7 @@ id: EarringsEightLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -496,7 +496,7 @@ id: EarringsEightRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -510,7 +510,7 @@ id: EarringsCrystalBasicLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -526,7 +526,7 @@ id: EarringsCrystalBasicRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -542,7 +542,7 @@ id: EarringsCrystalLongLeft bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: @@ -558,7 +558,7 @@ id: EarringsCrystalLongRight bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Arachnid, Reptilian, Diona, Oni, Felinid, Vulpkanin, Harpy, Gingerbread, Arachne, Tajaran] coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml index 4fab3f06ae2..48e47cb6190 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/face.yml @@ -2,7 +2,7 @@ id: FaceBindi bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -16,7 +16,7 @@ id: FaceFullblush bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -30,7 +30,7 @@ id: FaceCheekspotRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -44,7 +44,7 @@ id: FaceCheekspotLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -58,7 +58,7 @@ id: FaceChesireRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -72,7 +72,7 @@ id: FaceChesireLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -86,7 +86,7 @@ id: FaceCrowRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -100,7 +100,7 @@ id: FaceCrowLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -114,7 +114,7 @@ id: FaceEarRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -128,7 +128,7 @@ id: FaceEarLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -142,7 +142,7 @@ id: FaceEyebrowRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -157,7 +157,7 @@ id: FaceEyebrowLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -172,7 +172,7 @@ id: FaceEyebrows bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -186,7 +186,7 @@ id: FaceEyecornerRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -200,7 +200,7 @@ id: FaceEyecornerLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -214,7 +214,7 @@ id: FaceEyelashRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -228,7 +228,7 @@ id: FaceEyelashLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -242,7 +242,7 @@ id: FaceEyestripe bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -256,7 +256,7 @@ id: FaceLipcornerRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -270,7 +270,7 @@ id: FaceLipcornerLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -284,7 +284,7 @@ id: FaceGlabella bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -298,7 +298,7 @@ id: FaceLowercheekRight bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -312,7 +312,7 @@ id: FaceLowercheekLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -326,7 +326,7 @@ id: FaceNosetape bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -340,7 +340,7 @@ id: FaceNosetip bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -355,7 +355,7 @@ id: FaceNosestripe bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Tajaran, Oni, Harpy, Arachne] coloring: default: type: @@ -369,7 +369,7 @@ id: FaceUnibrow bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] coloring: default: type: @@ -383,7 +383,7 @@ id: FaceNeckSlim bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] followSkinColor: true sprites: - sprite: Mobs/Customization/face.rsi @@ -393,7 +393,7 @@ id: FaceNeckWide bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] followSkinColor: true sprites: - sprite: Mobs/Customization/face.rsi @@ -403,7 +403,7 @@ id: FaceNeckSlimThick bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] followSkinColor: true sprites: - sprite: Mobs/Customization/face.rsi @@ -413,7 +413,7 @@ id: FaceNeckWideThick bodyPart: Head markingCategory: Head - speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne] + speciesRestriction: [Dwarf, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Arachne, Tajaran] followSkinColor: true sprites: - sprite: Mobs/Customization/face.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml index 0bfc74f5ec3..05ab04ea257 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml @@ -2,7 +2,7 @@ id: GauzeLefteyePatch bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -16,7 +16,7 @@ id: GauzeLefteyePad bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -30,7 +30,7 @@ id: GauzeRighteyePatch bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -44,7 +44,7 @@ id: GauzeRighteyePad bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -58,7 +58,7 @@ id: GauzeBlindfold bodyPart: Eyes markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Harpy, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Harpy, Vulpkanin, Rodentia coloring: default: type: @@ -72,7 +72,7 @@ id: GauzeShoulder bodyPart: Chest markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -86,7 +86,7 @@ id: GauzeStomach bodyPart: Chest markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -100,7 +100,7 @@ id: GauzeUpperArmRight bodyPart: RArm markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -114,7 +114,7 @@ id: GauzeLowerArmRight bodyPart: RArm, RHand markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -128,7 +128,7 @@ id: GauzeLeftArm bodyPart: LArm, LHand markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -142,7 +142,7 @@ id: GauzeLowerLegLeft bodyPart: LFoot markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -156,7 +156,7 @@ id: GauzeUpperLegLeft bodyPart: LLeg markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -170,7 +170,7 @@ id: GauzeUpperLegRight bodyPart: RLeg markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -184,7 +184,7 @@ id: GauzeLowerLegRight bodyPart: RFoot markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -198,7 +198,7 @@ id: GauzeBoxerWrapRight bodyPart: RHand markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: @@ -212,7 +212,7 @@ id: GauzeBoxerWrapLeft bodyPart: LHand markingCategory: Overlay - speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune] # Delta V - Felinid, Oni, Vulpkanin, Rodentia + speciesRestriction: [Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Tajaran] # Delta V - Felinid, Oni, Vulpkanin, Rodentia coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml index 45578957981..b01077aa06e 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml @@ -2,7 +2,7 @@ id: ScarEyeRight bodyPart: Head markingCategory: Head - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] # Frontier: added Felinid, Oni, Goblin, Rodentia + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] # Frontier: added Felinid, Oni, Goblin, Rodentia followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi @@ -12,7 +12,7 @@ id: ScarEyeLeft bodyPart: Head markingCategory: Head - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] # Frontier: added Felinid, Oni, Goblin, Rodentia + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] # Frontier: added Felinid, Oni, Goblin, Rodentia followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi @@ -22,7 +22,7 @@ id: ScarTopSurgeryShort bodyPart: Chest markingCategory: Chest - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] # Frontier: added Felinid, Oni, Goblin + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] # Frontier: added Felinid, Oni, Goblin followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi @@ -32,7 +32,7 @@ id: ScarTopSurgeryLong bodyPart: Chest markingCategory: Chest - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] # Frontier: added Felinid, Oni, Goblin + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] # Frontier: added Felinid, Oni, Goblin followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi @@ -42,7 +42,7 @@ id: ScarChest bodyPart: Chest markingCategory: Chest - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] # Frontier: added Felinid, Oni, Goblin + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] # Frontier: added Felinid, Oni, Goblin followSkinColor: true sprites: - sprite: Mobs/Customization/scars.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml index 45b6b66f6f6..b4c7204a3f4 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml @@ -2,7 +2,7 @@ id: TattooHiveChest bodyPart: Chest markingCategory: Chest - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -16,7 +16,7 @@ id: TattooNightlingChest bodyPart: Chest markingCategory: Chest - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -30,7 +30,7 @@ id: TattooSilverburghLeftLeg bodyPart: LLeg markingCategory: Legs - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -44,7 +44,7 @@ id: TattooSilverburghRightLeg bodyPart: RLeg markingCategory: Legs - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -58,7 +58,7 @@ id: TattooCampbellLeftArm bodyPart: LArm markingCategory: Arms - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -72,7 +72,7 @@ id: TattooCampbellRightArm bodyPart: RArm markingCategory: Arms - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -86,7 +86,7 @@ id: TattooCampbellLeftLeg bodyPart: LLeg markingCategory: Legs - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -100,7 +100,7 @@ id: TattooCampbellRightLeg bodyPart: RLeg markingCategory: Legs - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -114,7 +114,7 @@ id: TattooEyeRight bodyPart: Eyes markingCategory: Head - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: @@ -128,7 +128,7 @@ id: TattooEyeLeft bodyPart: Eyes markingCategory: Head - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin, Tajaran] # Frontier: added Goblin and afterwards coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/undergarments.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/undergarments.yml index 332517eadbc..8fc9352ac58 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/undergarments.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/undergarments.yml @@ -5,7 +5,7 @@ id: UndergarmentBottomBoxers bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -18,7 +18,7 @@ id: UndergarmentBottomBriefs bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -31,7 +31,7 @@ id: UndergarmentBottomSatin bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -44,7 +44,7 @@ id: UndergarmentTopBra bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -57,7 +57,7 @@ id: UndergarmentTopSportsbra bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -70,7 +70,7 @@ id: UndergarmentTopBinder bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -83,7 +83,7 @@ id: UndergarmentTopTanktop bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -96,7 +96,7 @@ id: UndergarmentBottomBoxersVox # Voxers. bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -109,7 +109,7 @@ id: UndergarmentBottomBriefsVox bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -122,7 +122,7 @@ id: UndergarmentBottomSatinVox bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -135,7 +135,7 @@ id: UndergarmentTopBraVox bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -148,7 +148,7 @@ id: UndergarmentTopSportsbraVox bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -161,7 +161,7 @@ id: UndergarmentTopBinderVox bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -174,7 +174,7 @@ id: UndergarmentTopTanktopVox bodyPart: UndergarmentTop markingCategory: UndergarmentTop - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -187,7 +187,7 @@ id: UndergarmentBottomBoxersReptilian bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -200,7 +200,7 @@ id: UndergarmentBottomBriefsReptilian bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null @@ -213,7 +213,7 @@ id: UndergarmentBottomSatinReptilian bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom - speciesRestriction: [Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards + speciesRestriction: [Tajaran, Skrell,Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Shadekin] # Frontier: added Goblin and afterwards coloring: default: type: null diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index 30b5cde08e9..590c47b8326 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -39,6 +39,7 @@ - Kitsune # DeltaV - Skrell - Thaven # Impstation + - Tajaran # Floof - Tajaran Update b7660b9 - type: guideEntry id: Arachnid @@ -113,6 +114,11 @@ name: species-name-harpy text: "/ServerInfo/Guidebook/Mobs/_DV/Harpy.xml" # DeltaV +- type: guideEntry # Floof - Tajaran Update b7660b9 + id: Tajaran + name: species-name-tajaran + text: "/ServerInfo/Guidebook/Mobs/Tajaran.xml" + - type: guideEntry id: Rodentia name: species-name-rodentia diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml index a2616955c30..8f5e1954b04 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/felinid.yml @@ -4,7 +4,7 @@ id: FelinidEarsBasic bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: basic_outer @@ -15,7 +15,7 @@ id: FelinidEarsCurled bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: curled_outer @@ -26,7 +26,7 @@ id: FelinidEarsDroopy bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: droopy_outer @@ -37,7 +37,7 @@ id: FelinidEarsFuzzy bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: basic_outer @@ -48,7 +48,7 @@ id: FelinidEarsStubby bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: stubby_outer @@ -59,7 +59,7 @@ id: FelinidEarsTall bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: tall_outer @@ -72,7 +72,7 @@ id: FelinidEarsTorn bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: torn_outer @@ -83,7 +83,7 @@ id: FelinidEarsWide bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_ears.rsi state: wide_outer @@ -96,7 +96,7 @@ id: FelinidTailBasic bodyPart: Tail markingCategory: Tail - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip @@ -109,7 +109,7 @@ id: FelinidTailBasicWithBow bodyPart: Tail markingCategory: Tail - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip @@ -124,7 +124,7 @@ id: FelinidTailBasicWithBell bodyPart: Tail markingCategory: Tail - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip @@ -139,7 +139,7 @@ id: FelinidTailBasicWithBowAndBell bodyPart: Tail markingCategory: Tail - speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Thaven,Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: Nyanotrasen/Mobs/Customization/felinid_tails.rsi state: basic_tail_tip diff --git a/Resources/Prototypes/Species/species_weights.yml b/Resources/Prototypes/Species/species_weights.yml index db98ec70ca1..91c976c93dc 100644 --- a/Resources/Prototypes/Species/species_weights.yml +++ b/Resources/Prototypes/Species/species_weights.yml @@ -20,6 +20,7 @@ Avali: 3 Resomi: 3 Synth: 4 + Tajaran: 3 # Einstein Engines - Tajaran, see Prototypes/_EE/Entities/Mobs/Species/tajaran.yml Chitinid: 3 # DeltaV - Chitinid, see Prototypes/DeltaV/Entities/Mobs/Species/chitinid.yml Shadekin: 2 Felionoid: 3 # Starlight diff --git a/Resources/Prototypes/_EE/Body/Parts/tajaran.yml b/Resources/Prototypes/_EE/Body/Parts/tajaran.yml new file mode 100644 index 00000000000..4115f2bf981 --- /dev/null +++ b/Resources/Prototypes/_EE/Body/Parts/tajaran.yml @@ -0,0 +1,118 @@ +- type: entity + id: PartTajaran + parent: [BaseItem, BasePart] + name: "tajaran body part" + abstract: true + components: + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: TorsoTajaran + name: "Tajaran torso" + parent: [PartTajaran, BaseTorso] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: Blood + Quantity: 20 + + +- type: entity + id: HeadTajaran + name: "Tajaran head" + parent: [PartTajaran, BaseHead] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: LeftArmTajaran + name: "left Tajaran arm" + parent: [PartTajaran, BaseLeftArm] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmTajaran + name: "right Tajaran arm" + parent: [PartTajaran, BaseRightArm] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandTajaran + name: "left Tajaran hand" + parent: [PartTajaran, BaseLeftHand] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandTajaran + name: "right Tajaran hand" + parent: [PartTajaran, BaseRightHand] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegTajaran + name: "left Tajaran leg" + parent: [PartTajaran, BaseLeftLeg] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegTajaran + name: "right Tajaran leg" + parent: [PartTajaran, BaseRightLeg] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootTajaran + name: "left Tajaran foot" + parent: [PartTajaran, BaseLeftFoot] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootTajaran + name: "right Tajaran foot" + parent: [PartTajaran, BaseRightFoot] + components: + - type: Sprite + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/_EE/Body/Prototypes/tajaran.yml b/Resources/Prototypes/_EE/Body/Prototypes/tajaran.yml new file mode 100644 index 00000000000..1b5c919e839 --- /dev/null +++ b/Resources/Prototypes/_EE/Body/Prototypes/tajaran.yml @@ -0,0 +1,50 @@ +- type: body + id: Tajaran + name: tajaran + root: torso + slots: + head: + part: HeadTajaran + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoTajaran + connections: + - right arm + - left arm + - right leg + - left leg + - head # Shitmed Change + organs: + heart: OrganAnimalHeart + lungs: OrganHumanLungs + stomach: OrganVulpkaninStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + right arm: + part: RightArmTajaran + connections: + - right hand + left arm: + part: LeftArmTajaran + connections: + - left hand + right hand: + part: RightHandTajaran + left hand: + part: LeftHandTajaran + right leg: + part: RightLegTajaran + connections: + - right foot + left leg: + part: LeftLegTajaran + connections: + - left foot + right foot: + part: RightFootTajaran + left foot: + part: LeftFootTajaran diff --git a/Resources/Prototypes/_EE/Damage/modifier_sets.yml b/Resources/Prototypes/_EE/Damage/modifier_sets.yml new file mode 100644 index 00000000000..2060a66428a --- /dev/null +++ b/Resources/Prototypes/_EE/Damage/modifier_sets.yml @@ -0,0 +1,8 @@ +- type: damageModifierSet + id: Tajaran + coefficients: + Blunt: 1.15 + Slash: 1.15 + Piercing: 1.15 + Heat: 1.35 + Cold: 0.65 diff --git a/Resources/Prototypes/_EE/Datasets/Names/tajaran_first.yml b/Resources/Prototypes/_EE/Datasets/Names/tajaran_first.yml new file mode 100644 index 00000000000..14e8581c671 --- /dev/null +++ b/Resources/Prototypes/_EE/Datasets/Names/tajaran_first.yml @@ -0,0 +1,103 @@ +- type: dataset + id: names_tajaran_first + values: # Randomly generated based on https://github.com/ParadiseSS13/Paradise/blob/5b516c3166a07cd10d035be1616248ba126e31a1/code/modules/mob/language.dm + - Ahkazuzir + - Ahknal + - Ahkrhejurlzar + - Ahkwaketdar + - Arazirrrhazhal + - Azukhaztul + - Azutulsanurik + - Baqka + - Baqmirrfar + - Churdra + - Darkir + - Darrkiraasitajr + - Darrvahahkkii + - Dradra + - Draii'rrikrik + - Drarrzir + - Dratulara + - Dynhhalaasiraj + - Dynhmak + - Eechthaa + - Farcreshjurl + - Fardradra + - Farkraraghjurl + - Farrheii'rdar + - Haljun + - Halmahthaa + - Halrheeech + - Halrikdynh + - Halthaa + - Ii'rdarrajmi + - Ii'rdynhrr + - Ii'rkhanmi + - Ii'rvahmiran + - Jijunmahaasi + - Jjrika + - Jrikaahksanu + - Junaasi + - Jundradarrjri + - Junkradareech + - Junrrwajurl + - Jurlfar + - Jurlhalrr + - Jurlmahnja + - Jurlrhetul + - Jurlrik + - Jurlzirkalmanq + - Kahaasi + - Kahara + - Kahdar + - Kahketdrarhe + - Kahmakbaq + - Kahrajrr + - Kalnalketkal + - Kalrhe + - Kalwamak + - Ketjri + - Khankal + - Khantulmi + - Khazaasikhaz + - Khazkirdynheech + - Khazrr + - Kiiara + - Kiihrarjurl + - Kiirajthaakii + - Kirjri + - Kirjriraghtul + - Kirkhankhan + - Kirmidradarr + - Krahaljurlqara + - Krakra + - Mahhrar + - Mahkalkalket + - Mahzirzarjurl + - Manqjri + - Mikra + - Mirthaa + - Nalchurvah + - Njaazukal + - Raghdarr + - Raghrrhazrhe + - Rhejurlcresh + - Rhetajrcreshmir + - Rikvah + - Rirrirbaq + - Rirrr + - Rirsam + - Rirvahrrzar + - Rrarahalsanu + - Rrhazbaq + - Rrhazdarr + - Rrjunjurlazu + - Rrkhaz + - Rrmiarachur + - Samrrhazhrarrhe + - Tajrara + - Tajrjri + - Tajrqaramahkhaz + - Tajrrirrirjri + - Tulmahii'rtajr + - Tulrhejri diff --git a/Resources/Prototypes/_EE/Datasets/Names/tajaran_last.yml b/Resources/Prototypes/_EE/Datasets/Names/tajaran_last.yml new file mode 100644 index 00000000000..0355c604528 --- /dev/null +++ b/Resources/Prototypes/_EE/Datasets/Names/tajaran_last.yml @@ -0,0 +1,38 @@ +- type: dataset + id: names_tajaran_last + values: # Randomly generated based on https://github.com/ParadiseSS13/Paradise/blob/5b516c3166a07cd10d035be1616248ba126e31a1/code/modules/mob/language.dm + - Aasirirrhe + - Aravah + - Azufarjri + - Baqhaljurl + - Churmir + - Darnal + - Dradarrjri + - Drahrardra + - Farsam + - Jridrajriara + - Jrirhe + - Junsanu + - Ketwami + - Khandradar + - Kiimah + - Krajunmirr + - Krajurlcresh + - Krakhazeech + - Kravah + - Mirrirkii + - Ranmirjri + - Rirrikvahrir + - Rraasi + - Rrhazka + - Tulchurnjarrhaz + - Tulkahhrar + - Vahjunkra + - Wami + - Zarranmakjri + - Zirtajrzar + - Hadii # These 5 surnames technically should appear way more + - Kaytam + - Zhan-Khazan + - Hharar + - Njarir'Akhan diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/tajaran.yml b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/tajaran.yml new file mode 100644 index 00000000000..fe5d5569296 --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Customization/Markings/tajaran.yml @@ -0,0 +1,289 @@ +# Tajaran Tails + +- type: marking + id: TajaranTailRetro + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail + +- type: marking + id: TajaranTailAnim + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail_anim + +- type: marking + id: TajaranTailRetroRings + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail + - sprite: _EE/Mobs/Customization/Tajaran/tail_markings.rsi + state: tail_rings + +- type: marking + id: TajaranTailAnimRings + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/tails.rsi + state: tail_anim + - sprite: _EE/Mobs/Customization/Tajaran/tail_markings.rsi + state: tail_anim_rings + +# Tajaran Ears + +- type: marking + id: TajaranEarsRetro + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: ears + +- type: marking + id: TajaranEarsSeparate + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: outears + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: inears + +- type: marking + id: TajaranEarsRetroNear + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: ears_near + +- type: marking + id: TajaranEarsSeparateNear + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: outears_near + - sprite: _EE/Mobs/Customization/Tajaran/ears.rsi + state: inears_near + +# Tajaran Head/Face + +- type: marking + id: TajaranHeadNose + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: nose + +- type: marking + id: TajaranHeadMuzzle + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: muzzle + +- type: marking + id: TajaranHeadMuzzleLarge + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: muzzle_large + +- type: marking + id: TajaranHeadPoints + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: points + +- type: marking + id: TajaranHeadTiger + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: tiger_face + +- type: marking + id: TajaranHeadTigerAlt + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: tiger_head + +- type: marking + id: TajaranHeadPatches + bodyPart: Head + markingCategory: Head + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/head.rsi + state: patch + +# Tajaran Torso + +- type: marking + id: TajaranTorsoBelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/torso.rsi + state: belly + +- type: marking + id: TajaranTorsoCrest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/torso.rsi + state: crest + +- type: marking + id: TajaranTorsoFullBelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/torso.rsi + state: fullbelly + +# Overlays + +- type: marking + id: TajaranOverlayPatch + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/overlays.rsi + state: patch + +- type: marking + id: TajaranOverlayPoints + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/overlays.rsi + state: points + +# Felinid Ears, adapted for tajaran (all needed to be higher up and/or modified to fit better) + +- type: marking + id: TajaranEarsBasic + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: basic_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: basic_inner + +- type: marking + id: TajaranEarsCurled + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: curled_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: curled_inner + +- type: marking + id: TajaranEarsDroopy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: droopy_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: droopy_inner + +- type: marking + id: TajaranEarsFuzzy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: basic_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: fuzzy_inner + +- type: marking + id: TajaranEarsStubby + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: stubby_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: stubby_inner + +- type: marking + id: TajaranEarsTall + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: tall_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: tall_inner + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: tall_fuzz + +- type: marking + id: TajaranEarsTorn + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: torn_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: torn_inner + +- type: marking + id: TajaranEarsWide + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Tajaran] + sprites: + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: wide_outer + - sprite: _EE/Mobs/Customization/Tajaran/felinid_ears.rsi + state: wide_inner diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Player/tajaran.yml b/Resources/Prototypes/_EE/Entities/Mobs/Player/tajaran.yml new file mode 100644 index 00000000000..9a810033ca5 --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Player/tajaran.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McTajaran + parent: MobTajaranBase + id: MobTajaran diff --git a/Resources/Prototypes/_EE/Entities/Mobs/Species/tajaran.yml b/Resources/Prototypes/_EE/Entities/Mobs/Species/tajaran.yml new file mode 100644 index 00000000000..8369425939b --- /dev/null +++ b/Resources/Prototypes/_EE/Entities/Mobs/Species/tajaran.yml @@ -0,0 +1,107 @@ +- type: entity + name: Urist McTajaran + parent: BaseMobSpeciesOrganic + id: MobTajaranBase + abstract: true + components: + - type: Hunger + baseDecayRate: 0.02083333332 # 25% more than default + - type: Thirst + - type: Sprite + scale: 0.8, 0.8 + - type: HumanoidAppearance + species: Tajaran + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.28 + density: 140 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Body + prototype: Tajaran + requiredLegs: 2 + - type: Damageable + damageModifierSet: Tajaran + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.85 # 0.7 is base speed. + 80: 0.75 # 0.5 is base speed. + - type: Carriable # Carrying system from nyanotrasen. + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatHuman + amount: 5 + - type: TemperatureProtection # fur is a good insulator, actually + heatingCoefficient: 1.2 + coolingCoefficient: 0.3 + - type: Flammable + - type: NightVision + - type: Flashable + - type: MeleeWeapon + soundHit: + collection: Punch + animation: WeaponArcClaw + damage: + types: + Slash: 4 + Piercing: 1 + - type: Speech + speechVerb: Felinid + allowedEmotes: ['Mew', 'Hiss', 'Meow', 'Growl', 'Purr', 'Trill'] + - type: DamageOnHighSpeedImpact # Landing on all fours! + damage: + types: + Blunt: 1 + - type: Stamina + critThreshold: 85 + decay: 2.55 # 3 base decay multiplied by 0.85 = 2.55 + - type: TypingIndicator + proto: felinid + - type: PseudoItem + storedOffset: 0,17 + shape: + - 0,0,1,4 + - 0,2,3,4 + - 4,0,5,4 + - type: Vocal + wilhelm: "/Audio/Nyanotrasen/Voice/Felinid/cat_wilhelm.ogg" + sounds: + Male: MaleFelinid + Female: FemaleFelinid + Unsexed: MaleFelinid + - type: Felinid # real + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - type: Temperature + coldDamageThreshold: 248.15 # -25 degrees centigrade, like 12 degrees below normal + currentTemperature: 311.76 # Body temperature of cat + heatDamage: + types: + Heat: 0.65 # in line with cold resist + coldDamage: + types: + Cold: 2 # poor kitty + - type: ThermalRegulator + normalBodyTemperature: 311.76 + + +- type: entity + save: false + name: Urist McHands + parent: MobHumanDummy + id: MobTajaranDummy + categories: [ HideSpawnMenu ] + description: A dummy tajaran meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Tajaran diff --git a/Resources/Prototypes/_EE/Species/tajaran.yml b/Resources/Prototypes/_EE/Species/tajaran.yml new file mode 100644 index 00000000000..139ef65f590 --- /dev/null +++ b/Resources/Prototypes/_EE/Species/tajaran.yml @@ -0,0 +1,158 @@ +- type: species + id: Tajaran + name: species-name-tajaran + roundStart: true + prototype: MobTajaran + sprites: MobTajaranSprites + markingLimits: MobTajaranMarkingLimits + dollPrototype: MobTajaranDummy + skinColoration: AnimalFur + +- type: markingPoints + id: MobTajaranMarkingLimits + points: + Hair: + points: 1 + required: false + FacialHair: + points: 1 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ TajaranTailRetro ] + HeadTop: + points: 1 + required: true + defaultMarkings: [ TajaranEarsBasic ] + Chest: + points: 1 + required: false + Legs: + points: 6 + required: false + Arms: + points: 6 + required: false + UndergarmentBottom: + points: 1 + required: false + UndergarmentTop: + points: 1 + required: false + +- type: speciesBaseSprites + id: MobTajaranSprites + sprites: + Head: MobTajaranHead + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Hair: MobHumanoidAnyMarking + FacialHair: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + UndergarmentTop: MobHumanoidAnyMarking + UndergarmentBottom: MobHumanoidAnyMarking + Genital: MobHumanoidAnyMarking + Penis: MobHumanoidAnyMarking + Breasts: MobHumanoidAnyMarking + Chest: MobTajaranTorso + Eyes: MobTajaranEyes + LArm: MobTajaranLArm + RArm: MobTajaranRArm + LHand: MobTajaranLHand + RHand: MobTajaranRHand + LLeg: MobTajaranLLeg + RLeg: MobTajaranRLeg + Tail: MobHumanoidAnyMarking + LFoot: MobTajaranLFoot + RFoot: MobTajaranRFoot + +- type: humanoidBaseSprite + id: MobTajaranEyes + baseSprite: + sprite: Mobs/Customization/eyes.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobTajaranHead + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobTajaranHeadMale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobTajaranHeadFemale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobTajaranTorso + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobTajaranTorsoMale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobTajaranTorsoFemale + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobTajaranLLeg + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobTajaranLArm + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobTajaranLHand + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobTajaranLFoot + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobTajaranRLeg + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobTajaranRArm + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobTajaranRHand + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobTajaranRFoot + baseSprite: + sprite: _EE/Mobs/Species/Tajaran/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro.yml b/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro.yml index b49477d6b64..99587c8732d 100644 --- a/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro.yml +++ b/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro.yml @@ -5,7 +5,7 @@ id: SnoutCanidAlt2 bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_canid_alt2 @@ -25,7 +25,7 @@ id: SnoutFLCanid bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_flcanid_primary @@ -36,7 +36,7 @@ id: SnoutLCanid bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_lcanid_primary @@ -47,7 +47,7 @@ id: SnoutFLCanidAlt bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_flcanidalt_primary @@ -56,7 +56,7 @@ id: SnoutFLCanidStripe bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_flcanidstripe_primary @@ -67,7 +67,7 @@ id: SnoutLCanidStripe bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_lcanidstripe_primary @@ -78,7 +78,7 @@ id: SnoutFLCanidStripeAlt bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_flcanidstripealt_primary @@ -89,7 +89,7 @@ id: SnoutLCanidStripeAlt bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_lcanidstripealt_primary @@ -122,7 +122,7 @@ id: SnoutWolf bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_wolf_primary @@ -142,7 +142,7 @@ id: SnoutWolfAlt bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_wolfalt_primary @@ -151,7 +151,7 @@ id: SnoutFSCanid bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_fscanid_primary @@ -162,7 +162,7 @@ id: SnoutSCanid bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_scanid_primary @@ -204,7 +204,7 @@ id: SnoutSCanidAlt3 bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_scanidalt3_primary @@ -217,7 +217,7 @@ id: SnoutRound bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_round @@ -226,7 +226,7 @@ id: SnoutSharp bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_sharp @@ -235,7 +235,7 @@ id: SnoutRoundLight bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_roundlight @@ -244,7 +244,7 @@ id: SnoutSharpLight bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_sharplight @@ -268,7 +268,7 @@ id: SnoutBird bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_bird_primary @@ -290,7 +290,7 @@ id: SnoutBigBeak bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_bigbeak_primary @@ -319,7 +319,7 @@ id: SnoutToucan bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_toucan_primary @@ -330,7 +330,7 @@ id: SnoutBirdSmall bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_birdsmall_primary @@ -343,7 +343,7 @@ id: SnoutBigBeakShort bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_bigbeakshort_primary @@ -352,7 +352,7 @@ id: SnoutSlimBeak bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_slimbeak_primary @@ -361,7 +361,7 @@ id: SnoutSlimBeakAlt bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_slimbeakalt_primary @@ -370,7 +370,7 @@ id: SnoutSlimBeakShort bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_slimbeakshort_primary @@ -379,7 +379,7 @@ id: SnoutHookBeak bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hookbeak_primary @@ -388,7 +388,7 @@ id: SnoutHookBeakBig bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hookbeakbig_primary @@ -412,7 +412,7 @@ id: SnoutWah bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_wah_primary @@ -436,7 +436,7 @@ id: SnoutWahAlt bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_wahalt_primary @@ -458,7 +458,7 @@ id: SnoutOtie bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_otie_primary @@ -480,7 +480,7 @@ id: SnoutOtieSmile bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_otiesmile_primary @@ -502,7 +502,7 @@ id: SnoutPede bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_pede_primary @@ -522,7 +522,7 @@ id: SnoutRodent bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_rodent_primary @@ -553,7 +553,7 @@ id: SnoutRhino bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_rhino_primary @@ -579,7 +579,7 @@ id: SnoutBovine bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_bovine_primary @@ -603,7 +603,7 @@ id: SnoutElephant bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_elephant_primary @@ -650,7 +650,7 @@ id: SnoutShark bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_shark_primary @@ -659,7 +659,7 @@ id: SnoutHShark bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hshark_primary @@ -670,7 +670,7 @@ id: SnoutHSharkEyes bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hshark_eyes_primary @@ -696,7 +696,7 @@ id: SnoutBug bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_bug_primary @@ -707,7 +707,7 @@ id: SnoutBugNoEyes bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_bug_no_eyes @@ -716,7 +716,7 @@ id: SnoutSergal bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_sergal_primary @@ -727,7 +727,7 @@ id: SnoutHHorse bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hhorse_primary @@ -738,7 +738,7 @@ id: SnoutHZebra bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hzebra_primary @@ -749,7 +749,7 @@ id: SnoutHAnubus bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hanubus_primary @@ -760,7 +760,7 @@ id: SnoutHPanda bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hpanda_primary @@ -771,7 +771,7 @@ id: SnoutHJackal bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hjackal_primary @@ -782,7 +782,7 @@ id: SnoutHSpots bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_hspots_primary @@ -806,7 +806,7 @@ id: SnoutSkulldog bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_skulldog_primary @@ -819,7 +819,7 @@ id: SnoutSharkBlubber bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_sharkblubber_primary @@ -830,7 +830,7 @@ id: SnoutRat bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_rat_primary @@ -841,7 +841,7 @@ id: SnoutNTajaran bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_ntajaran @@ -850,7 +850,7 @@ id: SnoutStubby bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_stubby_primary @@ -861,7 +861,7 @@ id: SnoutLeporid bodyPart: Snout markingCategory: Snout - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratsnouts.rsi state: snout_leporid_primary diff --git a/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_ears.yml b/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_ears.yml index 0cf7eaf42fd..5497d247506 100644 --- a/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_ears.yml +++ b/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_ears.yml @@ -4,7 +4,7 @@ id: EarsFox bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: ears_fox_primary @@ -15,7 +15,7 @@ id: EarsAntennaFuzzball bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_antenna_fuzzball_ADJ_secondary: m_ears_antenna_fuzzball_FRONT_secondary m_ears_antenna_fuzzball_ADJ_tertiary: m_ears_antenna_fuzzball_FRONT_tertiary @@ -33,7 +33,7 @@ id: EarsAntennaFuzzballv2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_antenna_fuzzballv2_ADJ_primary: m_ears_antenna_fuzzballv2_FRONT_primary m_ears_antenna_fuzzballv2_ADJ_tertiary: m_ears_antenna_fuzzballv2_FRONT_tertiary @@ -51,7 +51,7 @@ id: EarsAntennaSimple1 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_antenna_simple1_ADJ_primary: m_ears_antenna_simple1_FRONT_primary sprites: @@ -64,7 +64,7 @@ id: EarsAntennaSimple1v2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_antenna_simple1v2_ADJ_primary: m_ears_antenna_simple1v2_FRONT_primary sprites: @@ -77,7 +77,7 @@ id: EarsAntennaSimple2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_antenna_simple2_ADJ_primary: m_ears_antenna_simple2_FRONT_primary sprites: @@ -90,7 +90,7 @@ id: EarsAntennaSimple2v2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_antenna_simple2v2_ADJ_primary: m_ears_antenna_simple2v2_FRONT_primary sprites: @@ -103,7 +103,7 @@ id: EarsAxolotl bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_axolotl_ADJ: m_ears_axolotl_FRONT sprites: @@ -116,7 +116,7 @@ id: EarsBat bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_ears_bat_ADJ_primary @@ -186,7 +186,7 @@ id: EarsBunny bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_bunny_ADJ_primary: m_ears_bunny_FRONT_primary sprites: @@ -201,7 +201,7 @@ id: EarsBunnyAlt bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_bunnyalt_ADJ_primary: m_ears_bunnyalt_FRONT_primary m_ears_bunnyalt_ADJ_secondary: m_ears_bunnyalt_FRONT_secondary @@ -219,7 +219,7 @@ id: EarsCatBig bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_catbig_ADJ_primary: m_ears_catbig_FRONT_primary m_ears_catbig_ADJ_secondary: m_ears_catbig_FRONT_secondary @@ -237,7 +237,7 @@ id: EarsCatNormal bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_catnormal_ADJ_primary: m_ears_catnormal_FRONT_primary m_ears_catnormal_ADJ_secondary: m_ears_catnormal_FRONT_secondary @@ -255,7 +255,7 @@ id: EarsCobraEars bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_ears_cobraears_ADJ_primary @@ -266,7 +266,7 @@ id: EarsCobraHood bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_ears_cobrahood_ADJ_primary @@ -277,7 +277,7 @@ id: EarsCow bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_cow_ADJ: m_ears_cow_FRONT sprites: @@ -290,7 +290,7 @@ id: EarsDeer bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_cow_ADJ: m_ears_cow_FRONT sprites: @@ -303,7 +303,7 @@ id: EarsDeer2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_cow_ADJ: m_ears_cow_FRONT sprites: @@ -316,7 +316,7 @@ id: EarsDeerEar bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_deerear_ADJ_primary: m_ears_deerear_FRONT_primary m_ears_deerear_ADJ_secondary: m_ears_deerear_FRONT_secondary @@ -334,7 +334,7 @@ id: EarsEvolox bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_evolox_ADJ_primary: m_ears_evolox_FRONT_primary m_ears_evolox_ADJ_secondary: m_ears_evolox_FRONT_secondary @@ -352,7 +352,7 @@ id: EarsEvoloxAlt bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_evolox_alt_ADJ_primary: m_ears_evolox_alt_FRONT_primary m_ears_evolox_alt_ADJ_secondary: m_ears_evolox_alt_FRONT_secondary @@ -370,7 +370,7 @@ id: EarsElephant bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_elephant_ADJ: m_ears_elephant_FRONT sprites: @@ -383,7 +383,7 @@ id: EarsElf bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_elf_ADJ: m_ears_elf_FRONT sprites: @@ -396,7 +396,7 @@ id: EarsElfBroad bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_elfbroad_ADJ: m_ears_elfbroad_FRONT sprites: @@ -409,7 +409,7 @@ id: EarsElfLonger bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_elflonger_ADJ: m_ears_elflonger_FRONT sprites: @@ -422,7 +422,7 @@ id: EarsElfWide bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_elfwide_ADJ: m_ears_elfwide_FRONT sprites: @@ -435,7 +435,7 @@ id: EarsSabresuneExtra bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_extra_sabresune_ADJ: m_ears_extra_sabresune_FRONT sprites: @@ -448,7 +448,7 @@ id: EarsFennec bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_fennec_ADJ_primary: m_ears_fennec_FRONT_primary m_ears_fennec_ADJ_tertiary: m_ears_fennec_FRONT_tertiary @@ -466,7 +466,7 @@ id: EarsFish bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_fish_ADJ: m_ears_fish_FRONT sprites: @@ -479,7 +479,7 @@ id: EarsFourEars2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_four_ears_2_ADJ_primary: m_ears_four_ears_2_FRONT_primary sprites: @@ -494,7 +494,7 @@ id: MEarsFox bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_fox_ADJ_primary: m_ears_fox_FRONT_primary m_ears_fox_ADJ_secondary: m_ears_fox_FRONT_secondary @@ -512,7 +512,7 @@ id: EarsHammerhead bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_ears_hammerhead_FRONT_primary @@ -523,7 +523,7 @@ id: EarsHawk bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_hawk_ADJ_primary: m_ears_hawk_FRONT_primary sprites: @@ -536,7 +536,7 @@ id: EarsHorn1 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_ears_horn1_FRONT @@ -545,7 +545,7 @@ id: EarsJellyfish bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_jellyfish_ADJ: m_ears_jellyfish_FRONT sprites: @@ -558,7 +558,7 @@ id: EarsKangaroo bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_kangaroo_ADJ_primary: m_ears_kangaroo_FRONT_primary m_ears_kangaroo_ADJ_secondary: m_ears_kangaroo_FRONT_secondary @@ -576,7 +576,7 @@ id: EarsLab bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_ears_lab_FRONT @@ -587,7 +587,7 @@ id: EarsLunasune bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_lunasune_ADJ_primary: m_ears_lunasune_FRONT_primary m_ears_lunasune_ADJ_secondary: m_ears_lunasune_FRONT_secondary @@ -605,7 +605,7 @@ id: EarsMiqote bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_miqote_ADJ_primary: m_ears_miqote_FRONT_primary m_ears_miqote_ADJ_secondary: m_ears_miqote_FRONT_secondary @@ -623,7 +623,7 @@ id: EarsMouse bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_mouse_ADJ_primary: m_ears_mouse_FRONT_primary m_ears_mouse_ADJ_secondary: m_ears_mouse_FRONT_secondary @@ -643,7 +643,7 @@ id: EarsMouse2 bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_mouse_two_ADJ_primary: m_ears_mouse_two_FRONT_primary m_ears_mouse_two_ADJ_secondary: m_ears_mouse_two_FRONT_secondary @@ -663,7 +663,7 @@ id: EarsMurid bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_murid_ADJ_primary: m_ears_murid_FRONT_primary m_ears_murid_ADJ_secondary: m_ears_murid_FRONT_secondary @@ -681,7 +681,7 @@ id: EarsOtie bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_otie_ADJ_primary: m_ears_otie_FRONT_primary m_ears_otie_ADJ_secondary: m_ears_otie_FRONT_secondary @@ -699,7 +699,7 @@ id: EarsPede bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_pede_ADJ_primary: m_ears_pede_FRONT_primary m_ears_pede_ADJ_secondary: m_ears_pede_FRONT_secondary @@ -717,7 +717,7 @@ id: EarsPerky bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_perky_ADJ_primary: m_ears_perky_FRONT_primary m_ears_perky_ADJ_secondary: m_ears_perky_FRONT_secondary @@ -735,7 +735,7 @@ id: EarsPossum bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_possum_ADJ_primary: m_ears_possum_FRONT_primary m_ears_possum_ADJ_secondary: m_ears_possum_FRONT_secondary @@ -771,7 +771,7 @@ id: EarsRabbit bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_rabbit_ADJ_primary: m_ears_rabbit_FRONT_primary m_ears_rabbit_ADJ_secondary: m_ears_rabbit_FRONT_secondary @@ -789,7 +789,7 @@ id: EarsRabbitAlt bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_rabbitalt_ADJ_primary: m_ears_rabbitalt_FRONT_primary m_ears_rabbitalt_ADJ_secondary: m_ears_rabbitalt_FRONT_secondary @@ -807,7 +807,7 @@ id: EarsRabbitLop bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_rabbitlop_ADJ_primary: m_ears_rabbitlop_FRONT_primary m_ears_rabbitlop_ADJ_secondary: m_ears_rabbitlop_FRONT_secondary @@ -825,7 +825,7 @@ id: EarsRaccoon bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_raccoon_ADJ_primary: m_ears_raccoon_FRONT_primary m_ears_raccoon_ADJ_secondary: m_ears_raccoon_FRONT_secondary @@ -843,7 +843,7 @@ id: EarsSabresune bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_sabresune_ADJ_primary: m_ears_sabresune_FRONT_primary m_ears_sabresune_ADJ_secondary: m_ears_sabresune_FRONT_secondary @@ -861,7 +861,7 @@ id: EarsSergal bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_sergal_ADJ_primary: m_ears_sergal_FRONT_primary sprites: @@ -876,7 +876,7 @@ id: EarsSkunk bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_skunk_ADJ_primary: m_ears_skunk_FRONT_primary m_ears_skunk_ADJ_secondary: m_ears_skunk_FRONT_secondary @@ -894,7 +894,7 @@ id: EarsSquirrel bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_squirrel_ADJ_primary: m_ears_squirrel_FRONT_primary m_ears_squirrel_ADJ_secondary: m_ears_squirrel_FRONT_secondary @@ -915,7 +915,7 @@ id: EarsWolf bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] colorLinks: m_ears_wolf_ADJ_primary: m_ears_wolf_FRONT_primary m_ears_wolf_ADJ_tertiary: m_ears_wolf_FRONT_tertiary @@ -933,7 +933,7 @@ id: EarsVirtuasaurHorns bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyratears.rsi state: m_horns_virtuasaur diff --git a/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_tails.yml b/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_tails.yml index 23a33473483..19078ba697b 100644 --- a/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_tails.yml +++ b/Resources/Prototypes/_Floof/Entities/Mobs/Customization/Markings/anthro_tails.yml @@ -4,7 +4,7 @@ id: TailFox bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyrattails.rsi state: tail_fox_secondary @@ -15,7 +15,7 @@ id: Tail9sune bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_9sune_BEHIND_primary: TailBehind m_tail_9sune_BEHIND_secondary: TailBehind @@ -39,7 +39,7 @@ id: TailAvian1 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_avian1_BEHIND_primary: TailBehind m_tail_avian1_BEHIND_secondary: TailBehind @@ -63,7 +63,7 @@ id: TailAvian2 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_avian2_BEHIND_primary: TailBehind m_tail_avian2_BEHIND_secondary: TailBehind @@ -86,7 +86,7 @@ id: TailBatl bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_batl_BEHIND_primary: TailBehind m_tail_batl_BEHIND_secondary: TailBehind @@ -109,7 +109,7 @@ id: TailBats bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_bats_BEHIND_primary: TailBehind m_tail_bats_BEHIND_secondary: TailBehind @@ -140,7 +140,7 @@ colorLinks: m_tail_bee_BEHIND_primary: m_tail_bee_FRONT_primary m_tail_bee_BEHIND_secondary: m_tail_bee_FRONT_secondary - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] sprites: - sprite: _Floof/Mobs/Customization/skyrattails.rsi state: m_tail_bee_FRONT_primary @@ -156,7 +156,7 @@ id: TailCable bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_cable_BEHIND_primary: TailBehind m_tail_cable_BEHIND_secondary: TailBehind @@ -175,7 +175,7 @@ id: TailCat bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_cat_BEHIND: TailBehind m_tail_cat_FRONT: Tail #should go over backpack! @@ -191,7 +191,7 @@ id: TailCatBig bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_catbig_BEHIND: TailBehind m_tail_catbig_FRONT: TailOversuit @@ -207,7 +207,7 @@ id: TailCow bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_cow_BEHIND_primary: TailBehind m_tail_cow_FRONT_primary: TailOversuit @@ -223,7 +223,7 @@ id: TailCrow bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_crow_BEHIND_primary: TailBehind m_tail_crow_FRONT_primary: TailOversuit @@ -256,7 +256,7 @@ id: TailDeer bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_deer_BEHIND_primary: TailBehind m_tail_deer_BEHIND_secondary: TailBehind @@ -279,7 +279,7 @@ id: TailDeerTwo bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_deer_two_BEHIND: TailBehind m_tail_deer_two_FRONT: TailOversuit @@ -296,7 +296,7 @@ id: TailDoubleKitsune bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_doublekitsune_BEHIND_primary: TailBehind m_tail_doublekitsune_BEHIND_secondary: TailBehind @@ -319,7 +319,7 @@ id: TailDTiger bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_dtiger_BEHIND: TailBehind m_tail_dtiger_FRONT: TailOversuit @@ -335,7 +335,7 @@ id: TailEvolox bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_evolox_BEHIND_primary: TailBehind m_tail_evolox_BEHIND_secondary: TailBehind @@ -358,7 +358,7 @@ id: TailFennec bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_fennec_BEHIND_primary: TailBehind m_tail_fennec_BEHIND_secondary: TailBehind @@ -382,7 +382,7 @@ id: TailFox2 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_fox2_BEHIND_primary: TailBehind m_tail_fox2_FRONT_primary: TailOversuit @@ -399,7 +399,7 @@ id: TailFox3 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_fox3_BEHIND_primary: TailBehind m_tail_fox3_FRONT_primary: TailOversuit @@ -415,7 +415,7 @@ id: TailVirtuasaur bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] # Floof - M3739 - #1084 + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_virtuasaur_BEHIND_primary: TailBehind m_tail_virtuasaur_FRONT_primary: TailOversuit @@ -431,7 +431,7 @@ id: TailHawk bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_hawk_BEHIND_primary: TailBehind m_tail_hawk_BEHIND_secondary: TailBehind @@ -454,7 +454,7 @@ id: TailHorse bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_horse_BEHIND: TailBehind m_tail_horse_FRONT: TailOversuit @@ -470,7 +470,7 @@ id: TailHusk bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_husk_BEHIND_primary: TailBehind m_tail_husk_FRONT_primary: TailOversuit @@ -486,7 +486,7 @@ id: TailHusky bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_husky_BEHIND_primary: TailBehind m_tail_husky_BEHIND_secondary: TailBehind @@ -509,7 +509,7 @@ id: TailInsect bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_insect_BEHIND_primary: TailBehind m_tail_insect_FRONT_primary: TailOversuit @@ -525,7 +525,7 @@ id: TailKangaroo bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_kangaroo_BEHIND_primary: TailBehind m_tail_kangaroo_FRONT_primary: TailOversuit @@ -541,7 +541,7 @@ id: TailKitsune bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_kitsune_BEHIND_primary: TailBehind m_tail_kitsune_BEHIND_secondary: TailBehind @@ -564,7 +564,7 @@ id: TailLab bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_lab_BEHIND_primary: TailBehind m_tail_lab_FRONT_primary: Tail @@ -580,7 +580,7 @@ id: TailLeopard bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_leopard_BEHIND_primary: TailBehind m_tail_leopard_BEHIND_secondary: TailBehind @@ -603,7 +603,7 @@ id: TailLTiger bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_ltiger_BEHIND: TailBehind m_tail_ltiger_FRONT: Tail @@ -619,7 +619,7 @@ id: TailLunasune bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_lunasune_BEHIND: TailBehind m_tail_lunasune_FRONT: Tail @@ -647,7 +647,7 @@ id: TailMurid bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_murid_BEHIND_primary: TailBehind m_tail_murid_FRONT_primary: TailOversuit @@ -663,7 +663,7 @@ id: TailMuridTwo bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_murid_two_BEHIND_primary: TailBehind m_tail_murid_two_FRONT_primary: TailOversuit @@ -679,7 +679,7 @@ id: TailOrca bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_orca_BEHIND_primary: TailBehind m_tail_orca_FRONT_primary: TailOversuit @@ -695,7 +695,7 @@ id: TailOtie bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_otie_BEHIND_primary: TailBehind m_tail_otie_FRONT_primary: TailOversuit @@ -711,7 +711,7 @@ id: TailPede bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_leopard_BEHIND_primary: TailBehind m_tail_leopard_BEHIND_secondary: TailBehind @@ -741,7 +741,7 @@ id: TailPlugTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_plugtail_BEHIND_primary: TailBehind m_tail_plugtail_BEHIND_secondary: TailBehind @@ -771,7 +771,7 @@ id: TailQueenBee bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_queenbee_BEHIND_primary: TailBehind m_tail_queenbee_BEHIND_secondary: TailBehind @@ -794,7 +794,7 @@ id: TailQueenInsect bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_queeninsect_BEHIND_primary: TailBehind m_tail_queeninsect_BEHIND_secondary: TailBehind @@ -813,7 +813,7 @@ id: TailRabbit bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_rabbit_BEHIND_primary: TailBehind m_tail_rabbit_FRONT_primary: Tail @@ -829,7 +829,7 @@ id: TailRabbitAlt bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_rabbit_alt_FRONT_primary: Tail m_tail_rabbit_alt_FRONT_secondary: Tail @@ -843,7 +843,7 @@ id: TailRaccoon bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_raccoon_BEHIND_primary: TailBehind m_tail_raccoon_BEHIND_secondary: TailBehind @@ -866,7 +866,7 @@ id: TailRaptor bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_raptor_BEHIND_primary: TailBehind m_tail_raptor_BEHIND_secondary: TailBehind @@ -896,7 +896,7 @@ id: TailReptileSlim bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_reptileslim_BEHIND: TailBehind m_tail_reptileslim_FRONT: Tail @@ -912,7 +912,7 @@ id: TailSabresune bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_sabresune_BEHIND_primary: TailBehind m_tail_sabresune_BEHIND_secondary: TailBehind @@ -935,7 +935,7 @@ id: TailSegmentedTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_segmentedtail_BEHIND_primary: TailBehind m_tail_segmentedtail_BEHIND_secondary: TailBehind @@ -965,7 +965,7 @@ id: TailSergal bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_sergal_BEHIND_primary: TailBehind m_tail_sergal_BEHIND_secondary: TailBehind @@ -988,7 +988,7 @@ id: TailSevenKitsune bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_sevenkitsune_BEHIND_primary: TailBehind m_tail_sevenkitsune_BEHIND_secondary: TailBehind @@ -1011,7 +1011,7 @@ id: TailShark bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_shark_BEHIND_primary: TailBehind m_tail_shark_FRONT_primary: TailOversuit @@ -1027,7 +1027,7 @@ id: TailSharkNoFin bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_sharknofin_BEHIND_primary: TailBehind m_tail_sharknofin_FRONT_primary: TailOversuit @@ -1043,7 +1043,7 @@ id: TailShepherd bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_shepherd_BEHIND_secondary: TailBehind m_tail_shepherd_BEHIND_tertiary: TailBehind @@ -1066,7 +1066,7 @@ id: TailSkunk bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_skunk_BEHIND_primary: TailBehind m_tail_skunk_BEHIND_secondary: TailBehind @@ -1096,7 +1096,7 @@ id: TailSmooth bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_smooth_BEHIND: TailBehind m_tail_smooth_FRONT: TailOversuit @@ -1112,7 +1112,7 @@ id: TailSnakeDual bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_snakedual_BEHIND_primary: TailBehind m_tail_snakedual_BEHIND_secondary: TailBehind @@ -1135,7 +1135,7 @@ id: TailSnakeStripe bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_snakestripe_BEHIND_primary: TailBehind m_tail_snakestripe_BEHIND_secondary: TailBehind @@ -1158,7 +1158,7 @@ id: TailSnakeStripeAlt bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_snakestripealt_BEHIND_primary: TailBehind m_tail_snakestripealt_BEHIND_secondary: TailBehind @@ -1181,7 +1181,7 @@ id: TailSnakeTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_snaketail_BEHIND: TailBehind m_tail_snaketail_FRONT: Tail @@ -1197,7 +1197,7 @@ id: TailSnakeUnder bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_snakeunder_BEHIND_primary: TailBehind m_tail_snakeunder_BEHIND_secondary: TailBehind @@ -1220,7 +1220,7 @@ id: TailSpade bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_spade_BEHIND_primary: TailBehind m_tail_spade_FRONT_primary: TailOversuit @@ -1236,7 +1236,7 @@ id: TailSpikes bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_spikes_BEHIND: TailBehind m_tail_spikes_FRONT: TailOversuit @@ -1252,7 +1252,7 @@ id: TailSquirrel bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_squirrel_BEHIND: TailBehind m_tail_squirrel_FRONT: Tail @@ -1268,7 +1268,7 @@ id: TailStraightTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_straighttail_BEHIND_primary: TailBehind m_tail_straighttail_FRONT_primary: Tail @@ -1284,7 +1284,7 @@ id: TailStripe bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_stripe_BEHIND_primary: TailBehind m_tail_stripe_BEHIND_secondary: TailBehind @@ -1324,7 +1324,7 @@ id: TailThreeCat bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_threecat_BEHIND_primary: TailBehind m_tail_threecat_FRONT_primary: Tail @@ -1340,7 +1340,7 @@ id: TailTiger bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_tiger_BEHIND_primary: TailBehind m_tail_tiger_BEHIND_secondary: TailBehind @@ -1370,7 +1370,7 @@ id: TailTiger2 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_tiger2_BEHIND_primary: TailBehind m_tail_tiger2_BEHIND_secondary: TailBehind @@ -1400,7 +1400,7 @@ id: TailTwoCat bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_twocat_BEHIND_primary: TailBehind m_tail_twocat_FRONT_primary: Tail @@ -1416,7 +1416,7 @@ id: TailWah bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_wah_BEHIND_primary: TailBehind m_tail_wah_BEHIND_secondary: TailBehind @@ -1439,7 +1439,7 @@ id: TailWolf bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_wolf_BEHIND: TailBehind m_tail_wolf_FRONT: Tail @@ -1455,7 +1455,7 @@ id: TailZorgoia bodyPart: Tail markingCategory: Tail - speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid] + speciesRestriction: [Skrell, Thaven, Dwarf, Diona, Human, SlimePerson, Felinid, Oni, Harpy, Reptilian, Vulpkanin, Rodentia, Goblin, Sheleg, IPC, Feroxi, Moth, Arachnid, Kitsune, Chitinid, Tajaran] layering: m_tail_zorgoia_BEHIND_primary: TailBehind m_tail_zorgoia_BEHIND_secondary: TailBehind diff --git a/Resources/Prototypes/_RMC14/Entities/Mobs/Customization/Markings/underwear.yml b/Resources/Prototypes/_RMC14/Entities/Mobs/Customization/Markings/underwear.yml index 9b22158602f..6170ba015da 100644 --- a/Resources/Prototypes/_RMC14/Entities/Mobs/Customization/Markings/underwear.yml +++ b/Resources/Prototypes/_RMC14/Entities/Mobs/Customization/Markings/underwear.yml @@ -3,7 +3,7 @@ bodyPart: UndergarmentBottom markingCategory: UndergarmentBottom forcedColoring: true - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: c_boxers @@ -14,7 +14,7 @@ markingCategory: UndergarmentBottom forcedColoring: true # RMCFollowSkinColor: false (removed, not a valid field) - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: d_boxers @@ -25,7 +25,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: j_boxers @@ -36,7 +36,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: s_boxers @@ -47,7 +47,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: urban_boxers @@ -58,7 +58,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: c_lowriders @@ -69,7 +69,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: d_lowriders @@ -80,7 +80,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: j_lowriders @@ -91,7 +91,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: s_lowriders @@ -102,7 +102,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: urban_lowriders @@ -113,7 +113,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: c_briefs @@ -124,7 +124,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: d_briefs @@ -135,7 +135,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: j_briefs @@ -146,7 +146,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: s_briefs @@ -157,7 +157,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: urban_briefs @@ -168,7 +168,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: c_satin @@ -179,7 +179,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: d_satin @@ -190,7 +190,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: j_satin @@ -201,7 +201,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: s_satin @@ -212,7 +212,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: urban_satin @@ -224,7 +224,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: classic_tanga @@ -235,7 +235,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: desert_tanga @@ -246,7 +246,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: jungle_tanga @@ -257,7 +257,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: snow_tanga @@ -268,7 +268,7 @@ markingCategory: UndergarmentBottom forcedColoring: true RMCFollowSkinColor: false - speciesRestriction: [Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] + speciesRestriction: [Tajaran, Human, Dwarf, Felinid, Arachnid, Reptilian, Diona, Moth, SlimePerson, Avali, Vulpkanin, Rodentia, Feroxi, Skrell] sprites: - sprite: _RMC14/Mobs/Customization/underwear.rsi state: urban_tanga diff --git a/Resources/Prototypes/fonts.yml b/Resources/Prototypes/fonts.yml index 5538b2466ad..4028196a41a 100644 --- a/Resources/Prototypes/fonts.yml +++ b/Resources/Prototypes/fonts.yml @@ -1,7 +1,7 @@ - type: font id: Default path: /Fonts/NotoSans/NotoSans-Regular.ttf - + - type: font id: DefaultItalic path: /Fonts/NotoSans/NotoSans-Italic.ttf @@ -44,4 +44,24 @@ - type: font id: Emoji - path: /Fonts/NotoEmoji.ttf \ No newline at end of file + path: /Fonts/NotoEmoji.ttf + +- type: font + id: OnlyYou + path: /Fonts/Only_You.otf + +- type: font # Floofstation + Goobstation LRP + id: Chinese + path: /Fonts/NotoSans/NotoSansSC-Regular.ttf + +- type: font # Floof - Tajaran Update b7660b9 + id: Sriracha + path: /Fonts/Sriracha/Sriracha.ttf + +- type: font # Floof - Tajaran Update b7660b9 + id: GrenzeGotisch + path: /Fonts/Grenze_Gotisch/GrenzeGotisch.ttf + +- type: font # Floof - Tajaran Update b7660b9 + id: RubikDirt + path: /Fonts/Rubik_Dirt/RubikDirt.ttf diff --git a/Resources/ServerInfo/Guidebook/Mobs/Tajaran.xml b/Resources/ServerInfo/Guidebook/Mobs/Tajaran.xml new file mode 100644 index 00000000000..07d9a999dfd --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Tajaran.xml @@ -0,0 +1,127 @@ + + # Tajaran + All Information included in this document is licensed under CC BY-SA 4.0, and is taken from https://wiki.aurorastation.org/index.php?title=Tajaran with some modifications by SX-7(Github). + + + + The Tajara (direct plural: Tajara – Tah-jaw-rah both singular and multiple) (adjective: Tajaran - Tah-jaw-ran) are a race of humanoids that possess markedly felinoid traits that include a semi-prehensile tail, a body covered in fur of varying shades, and padded, digitigrade feet. + Tajaran history and society is deeply entrenched in the conflict between its caste system and ruling governments. + The species currently finds itself involved in a cold war between the three powers that control its homeworld, Adhomai. + + # Biology + + To the average human, the Tajara share many similarities with Earth's felines; however, when looked at from a purely scientific perspective, this description is largely superficial. + Unlike terrestrial felines, the Tajara are both omnivorous and bipedal. + Their bodies are almost entirely covered in a thick coat of fur that is extremely good at insulating them from the extreme cold of Adhomai. + The layer of body fat and fur is designed to trap body heat efficiently. + There are only a handful of areas where fur is not present, those being on the palm of their hands, the soles of their feet, and a number of various orifices as well as a small area around their eyes. + Tajara have nictitating membranes, a transparent eyelid layer that assists in preventing snow blindness and keeping their eyes moist against the wind. + + Occasionally, the fur around a Tajara's neck is known to grow into a shaggy 'mane' of sorts, giving them a distinct look, not unlike a terran lion. + This hair tends to be much stronger and a great deal wirier than the rest of the fur on a Tajara's body. + Some Tajara tend towards monochromatic bodies while others have multicolor or even calico fur patterns. + These designs depend heavily on the genetics of the individual's parents, much like hair and eye color. + Because of this, some parents are utterly incapable of producing multicolor children. + Designs including flat colors, stripes, spots, and most conceivable combinations have been recorded by scientists both Tajaran and human. + A male Tajara is somewhere between 150 cm and 185 cm in height, while the mean body mass is between 65 kg and 100 kg. + Females tend to range between 150 cm and 175 cm in height, with their own weight somewhere around 45 kg to 85kg. + As such, both their body weight and height are roughly comparable to the average human. + Height depends on a Tajara's ethnicity. + Njarir'akhran were bred to be taller, M'sai are a more middle height, Hharar are typically shorter or of middle height, and Zhan-Khazan are usually the tallest of the races. + Any Tajara who falls out of this range is unusually tall or short which typically stems from a medical condition. + A Tajaran fetus only takes six months to mature, and Tajaran children likewise mature rapidly, reaching the full extent of their growth by 15 or 16. + This rapid maturation has a profound effect on the lifespan of Tajara, as only with modern medicine have Tajara reached ages above 70, with the oldest living Tajara being 84 years old. + Most Tajara retire at age 60 when they are too old to work in any capacity. + + ## Ethnicities + + There are four races of Tajara: the Hharar, the Zhan-Khazan, the Njarir’Akhran, and the M'sai. + Each race has a common role that they play in a society to which their biological inclinations make them more suited, as well as their own cultures which have formed from long histories of performing these roles in society. + Tajara heavily stereotype each other based on race which is often a cause for conflict. + As a result of these differences, there is a lot of racial tension between these various types of Tajara which was further exacerbated by differences in socioeconomic classes. + + ### Hharar + + The first Tajaran ethnicity that Humanity came in contact with is generally viewed as the 'typical Tajara', which is reinforced by their numerical superiority over the other groups. + Additionally, given their large numbers and capabilities, they most often serve in governmental positions and as ambassadors to other races; this leads to them being taken as the 'face' of the Tajaran race, as it were. Hharar trend towards being the most intellectual of all Tajaran groups, and as such their physical prowess is significantly reduced. + The Hharar are the stereotypical 'worker' Tajara, commonly described as loyal employees who are passionate and not afraid to voice their opinions. + + ### Zhan-Khazan + + The second most populous of Tajaran ethnicities, and are considered to be the backbone of the Tajaran workforce. + Because of their history of hard work and the way they adapted to harsh mountain life, Zhan-Khazan are more physically intimidating than other Tajara. + Featuring more toned, muscular bodies, thicker fur coats, and heavier body weight, they are well-suited to tasks requiring brute strength and heavy lifting. + Due to their status as laborer they suffer discrimination and are usually regarded as less intelligent. + + ### M'sai + + The third most populous Tajaran ethnic group, the M'sai were at one point the hunters for ancient Tajara and evolved to have lithe, slender forms, and light fur that hid them in the blizzards on Adhomai. + As Tajaran society advanced, M'sai could be found in many roles related to combat, including law enforcement and military service. + They are very loyal to their friends and family but aren't as overt about it as the Zhan-Khazan. + With wide eyes and acute senses, they make great soldiers, with a vision adapted to compensate for the heavy blizzards that plague their home planet. + They are also great survivalists and are capable of scrounging food for themselves via hunting. + + ### Njarir’Akhran + + The ethnic group that made up the majority of the plutocracy before the Great War. + Their lineage can be traced from careful breeding between Hharar and M'sai, leading to where they currently are today. + Following recent events on Adhomai, Njarir make up less than ten percent of the population. + Easily identifiable by their large ears, fluffy tails, luxurious fur, and slender, elegant features. + Njarir suffer persecution and rejection from certain proponents of Tajaran society because of their bloodline. + As the most learned of all Tajaran ethnic groups, they boast high intelligence and have a propensity towards the arts and sciences. + + # History + + Adhomai, the Tajaran homeworld, has long been ruled by a deeply entrenched nobility. + Historical records dating back 3,000 years describe monarchies supported by religious authorities, where rulers claimed divine origins. + These local monarchies evolved into feudal systems where peasants lived under oppressive conditions, enforced by M’sai enforcers. + Over centuries, noble families like the Njarir’Akhran solidified their control, hoarding technological and scientific advancements while imposing harsh laws. + Tensions between nobility and peasants escalated with industrialization in the 18th and 19th centuries. + The invention of the printing press in 1756 CE spread anti-monarchist sentiments despite strict censorship. + By the mid-20th century, industrialization exacerbated inequalities, with peasants laboring in mines and on railways for the nobles' benefit. + Resentment reached a peak, paving the way for revolution. + + Human discovery in 2418 CE introduced new ideas of equality and freedom, fueling Tajaran uprisings. + The First Revolution began in 2421 CE after a public execution incited armed rebellion. + By 2431 CE, the rebels, aided by defecting nobles like the Hadii family, overthrew the old order at the cost of over 92 million lives. + + The People's Republic of Adhomai was established under Hadii leadership in 2432 CE, backed by human corporations like NanoTrasen. + However, disagreements over resource control led to the Second Revolution in 2451 CE, resulting in a decade-long conflict. + By 2461 CE, a cold war emerged among three factions: the People's Republic, the Democratic People's Republic, and the New Kingdom of Adhomai. + + Today, Adhomai remains divided, marked by ongoing tensions, proxy wars, and an uneven modernization process. + While urban centers thrive, rural areas struggle, and foreign influence continues to shape the Tajaran future. + The species navigates a precarious path, torn between progress and the scars of its feudal past. + + + # Species Traits + + - [color=#1e90ff]Animal diet[/color]: Tajara are poisoned by theobromine, but can process uncooked animal protein. + + - [color=#1e90ff]Cold Resistance[/color]: Tajara fare better against cold than humans, receiveing [color=#1e90ff]35% less cold damage[/color] and [color=#1e90ff]tolerating lower temperatures[/color]. + + - [color=#1e90ff]Hairballs[/color]: Tajara can spit out hairballs, which make other vomit when held. + + - [color=#1e90ff]Claws[/color]: Tajara unarmed attacks deal Slash damage instead of Blunt. + + - [color=#1e90ff]Reflexes[/color]: Tajara take less damage from high speed impacts. + + - [color=#1e90ff]Small Body[/color]: Tajara can fit in duffelbags. + + - [color=#1e90ff]Night Vision[/color]: Tajara can see in darkness. + + - [color=#1e90ff]Light Step[/color]: Thanks to their furred paw pads, tajara can walk silently without shoes + + - [color=#ffa500]Heat Intolerance[/color]: Tajara take [color=#ffa500]35% more Heat damage and burn more easily. [/color]They also [color=#ffa500]receive more damage from overheating[/color]. + + - [color=#ffa500]Light Build[/color]: Their small posture makes Tajara receive 15% more Brute damage, and they are lighter than humans. + + - [color=#ffa500]Weak Body[/color]: Tajara receive 15% more stamina damage. + + - [color=#ffa500]Sensitive Eyes[/color]: Tajara receive more damage from flashes. + + - [color=#ffa500]Fast Metabolism[/color]: Tajara need more food to sustain themselves. + + + + diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears.png new file mode 100644 index 00000000000..7444faecf09 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears_near.png new file mode 100644 index 00000000000..c069ac4ab41 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/ears_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears.png new file mode 100644 index 00000000000..c335e704e2b Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears_near.png new file mode 100644 index 00000000000..e7af318b33a Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/inears_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/meta.json new file mode 100644 index 00000000000..34b9f717da8 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference to markings ('patch') tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/3610cfd4ea7e9bffc804320851f0b0a625db1dba, meanwhile ears are made by Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Minor tweaks and '_near' versions by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ears", + "directions": 4 + }, + { + "name": "inears", + "directions": 4 + }, + { + "name": "outears", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "ears_near", + "directions": 4 + }, + { + "name": "inears_near", + "directions": 4 + }, + { + "name": "outears_near", + "directions": 4 + }, + { + "name": "patch_near", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears.png new file mode 100644 index 00000000000..4f5041880bc Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears_near.png new file mode 100644 index 00000000000..54583699fdb Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/outears_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch.png new file mode 100644 index 00000000000..591dde13ee3 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch_near.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch_near.png new file mode 100644 index 00000000000..1595303ac95 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/ears.rsi/patch_near.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_inner.png new file mode 100644 index 00000000000..57bcdaa8b95 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_outer.png new file mode 100644 index 00000000000..24fe753ebdc Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/basic_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_inner.png new file mode 100644 index 00000000000..b447625e181 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_outer.png new file mode 100644 index 00000000000..3590520cdab Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/curled_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_inner.png new file mode 100644 index 00000000000..b87d5560cec Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_outer.png new file mode 100644 index 00000000000..7b3e9474300 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/droopy_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/fuzzy_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/fuzzy_inner.png new file mode 100644 index 00000000000..2656ff2a991 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/fuzzy_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/meta.json new file mode 100644 index 00000000000..45e8f847021 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/meta.json @@ -0,0 +1,75 @@ +{ + "version": 1, + "copyright": "Felinid ears made by @Vordenburg for Nyanotrasen @ https://github.com/Nyanotrasen/Nyanotrasen/pull/581/commits/77fe4c38589516ceef533de17cde56665ce970c7, modified by SX-7.", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "basic_inner", + "directions": 4 + }, + { + "name": "basic_outer", + "directions": 4 + }, + { + "name": "curled_inner", + "directions": 4 + }, + { + "name": "curled_outer", + "directions": 4 + }, + { + "name": "fuzzy_inner", + "directions": 4 + }, + { + "name": "tall_outer", + "directions": 4 + }, + { + "name": "tall_inner", + "directions": 4 + }, + { + "name": "tall_fuzz", + "directions": 4 + }, + { + "name": "torn_outer", + "directions": 4 + }, + { + "name": "torn_inner", + "directions": 4 + }, + { + "name": "stubby_outer", + "directions": 4 + }, + { + "name": "stubby_inner", + "directions": 4 + }, + { + "name": "droopy_outer", + "directions": 4 + }, + { + "name": "droopy_inner", + "directions": 4 + }, + { + "name": "wide_inner", + "directions": 4 + }, + { + "name": "wide_outer", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_inner.png new file mode 100644 index 00000000000..2cb7d1093d1 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_outer.png new file mode 100644 index 00000000000..57e8c8f3753 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/stubby_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_fuzz.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_fuzz.png new file mode 100644 index 00000000000..c6e610549a7 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_fuzz.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_inner.png new file mode 100644 index 00000000000..6755edeec14 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_outer.png new file mode 100644 index 00000000000..5ea6dbbaa51 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/tall_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_inner.png new file mode 100644 index 00000000000..abdb77c487e Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_outer.png new file mode 100644 index 00000000000..d5242590cf8 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/torn_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_inner.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_inner.png new file mode 100644 index 00000000000..eaa1ff64a50 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_inner.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_outer.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_outer.png new file mode 100644 index 00000000000..ae964a487d6 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/felinid_ears.rsi/wide_outer.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail.png new file mode 100644 index 00000000000..afd2c8384c3 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail_tip.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail_tip.png new file mode 100644 index 00000000000..cbfe070e297 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/base_fox_tail_tip.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/meta.json new file mode 100644 index 00000000000..a85e714e7a4 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/foxtail.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "copyright": "apparently splurt-station https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/96703f76bccd8fe6a96b78524efb97a9af661767", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base_fox_tail", + "directions": 4 + }, + { + "name": "base_fox_tail_tip", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/meta.json new file mode 100644 index 00000000000..a6d17cb0ddc --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/3610cfd4ea7e9bffc804320851f0b0a625db1dba. Minor tweaks by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "muzzle", + "directions": 4 + }, + { + "name": "muzzle_large", + "directions": 4 + }, + { + "name": "nose", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "points", + "directions": 4 + }, + { + "name": "tiger_face", + "directions": 4 + }, + { + "name": "tiger_head", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle.png new file mode 100644 index 00000000000..67030feac80 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle_large.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle_large.png new file mode 100644 index 00000000000..f96ed035373 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/muzzle_large.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/nose.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/nose.png new file mode 100644 index 00000000000..31bc5f06d83 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/nose.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/patch.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/patch.png new file mode 100644 index 00000000000..64f3effae9f Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/patch.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/points.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/points.png new file mode 100644 index 00000000000..dff01d78aec Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/points.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_face.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_face.png new file mode 100644 index 00000000000..36d8617fab6 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_face.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_head.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_head.png new file mode 100644 index 00000000000..8ee160777b4 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/head.rsi/tiger_head.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/meta.json new file mode 100644 index 00000000000..5f23a518181 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/3610cfd4ea7e9bffc804320851f0b0a625db1dba. Minor tweaks by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "patch", + "directions": 4 + }, + { + "name": "points", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/patch.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/patch.png new file mode 100644 index 00000000000..835270a15bc Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/patch.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/points.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/points.png new file mode 100644 index 00000000000..c38d3d2e3a0 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/overlays.rsi/points.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/meta.json new file mode 100644 index 00000000000..f61cbf5e378 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Sprite reorganization by SX-7, but no changes to sprites themselves", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tail_anim_rings", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "tail_rings", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_anim_rings.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_anim_rings.png new file mode 100644 index 00000000000..b60ffd86204 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_anim_rings.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_rings.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_rings.png new file mode 100644 index 00000000000..84f6b2542cc Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tail_markings.rsi/tail_rings.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/meta.json new file mode 100644 index 00000000000..39050cb3449 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Sprite reorganization by SX-7, but no changes to sprites themselves", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tail", + "directions": 4 + }, + { + "name": "tail_anim", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ] + ] + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail.png new file mode 100644 index 00000000000..cbdeebb6139 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail_anim.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail_anim.png new file mode 100644 index 00000000000..a849bf7cbb4 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/tails.rsi/tail_anim.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/belly.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/belly.png new file mode 100644 index 00000000000..c7f9e782559 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/belly.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/crest.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/crest.png new file mode 100644 index 00000000000..ccb52f0883e Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/crest.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/fullbelly.png b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/fullbelly.png new file mode 100644 index 00000000000..bcb6dc67acf Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/fullbelly.png differ diff --git a/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/meta.json b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/meta.json new file mode 100644 index 00000000000..66d6f476492 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Customization/Tajaran/torso.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "copyright": "Creator was not supplied, oldest reference tracked to KasparoVy @ https://github.com/ParadiseSS13/Paradise/commit/38717e3b034550b3c0a9f3c5f3c78a957dcad0d9. Minor tweaks by SX-7", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "belly", + "directions": 4 + }, + { + "name": "crest", + "directions": 4 + }, + { + "name": "fullbelly", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_f.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_f.png new file mode 100644 index 00000000000..a89cf12a1fc Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_f.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_m.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_m.png new file mode 100644 index 00000000000..1d01e03523d Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/head_m.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_arm.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_arm.png new file mode 100644 index 00000000000..7873edd652a Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_foot.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_foot.png new file mode 100644 index 00000000000..4fcc3ea79c2 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_hand.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_hand.png new file mode 100644 index 00000000000..dc9c2b64222 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_leg.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_leg.png new file mode 100644 index 00000000000..fd0008474cd Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/meta.json b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/meta.json new file mode 100644 index 00000000000..13e804ad544 --- /dev/null +++ b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/meta.json @@ -0,0 +1,59 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Creator was not supplied, oldest reference tracked to Cael Aislinn in commit https://github.com/ParadiseSS13/Paradise/commit/9e4539fdce01f00ed7e47ca1174a1470ac5fe77c. Small changes made by SX-7. Names are as provided, sans torso_f front which is a combined version of modified torso_m front, and modified torso_f", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "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 + } + ] +} diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_arm.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_arm.png new file mode 100644 index 00000000000..f0449da6952 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_foot.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_foot.png new file mode 100644 index 00000000000..5d5d6ce77ea Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_hand.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_hand.png new file mode 100644 index 00000000000..e11a7ad5e99 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_leg.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_leg.png new file mode 100644 index 00000000000..80b4a864d73 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_f.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_f.png new file mode 100644 index 00000000000..c18fc1458ce Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_m.png b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_m.png new file mode 100644 index 00000000000..f5650c6f527 Binary files /dev/null and b/Resources/Textures/_EE/Mobs/Species/Tajaran/parts.rsi/torso_m.png differ