Markings Bundle from Impstation (#2771)
* markings update * hey you arent supposed to be in here * markings support shaders * added to more species * fix typo + better comments as per suggestion * caps, comments * chimera marking consistency pass --------- Co-authored-by: Whatstone <whatston3@gmail.com>
@@ -296,7 +296,13 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem
|
||||
sprite.LayerMapSet(layerId, layer);
|
||||
sprite.LayerSetSprite(layerId, rsi);
|
||||
}
|
||||
|
||||
// impstation edit begin - check if there's a shader defined in the markingPrototype's shader datafield, and if there is...
|
||||
if (markingPrototype.Shader != null)
|
||||
{
|
||||
// use spriteComponent's layersetshader function to set the layer's shader to that which is specified.
|
||||
sprite.LayerSetShader(layerId, markingPrototype.Shader);
|
||||
}
|
||||
// impstation edit end
|
||||
sprite.LayerSetVisible(layerId, visible);
|
||||
|
||||
if (!visible || setting == null) // this is kinda implied
|
||||
|
||||
@@ -35,6 +35,10 @@ namespace Content.Shared.Humanoid.Markings
|
||||
[DataField("sprites", required: true)]
|
||||
public List<SpriteSpecifier> Sprites { get; private set; } = default!;
|
||||
|
||||
// impstation edit - allow markings to support shaders
|
||||
[DataField("shader")]
|
||||
public string? Shader { get; private set; } = null;
|
||||
// end impstation edit
|
||||
public Marking AsMarking()
|
||||
{
|
||||
return new Marking(ID, Sprites.Count);
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
marking-BurqaSolid = Burqa
|
||||
marking-BurqaSolidThaven = Burqa
|
||||
marking-BurqaSolidLizard = Burqa
|
||||
marking-BurqaSolidLizard-burqasolidlizard = Burqa
|
||||
|
||||
marking-HijabFashionable = Hijab (Fashionable)
|
||||
marking-HijabFashionableLizard = Hijab (Fashionable)
|
||||
marking-HijabFashionableLizard-hijabchiclizard = Hijab (Fashionable)
|
||||
marking-HijabFashionableVox = Hijab (Fashionable)
|
||||
marking-HijabFashionableVox-hijabchicvox = Hijab (Fashionable)
|
||||
|
||||
marking-HijabSimple = Hijab (Simple)
|
||||
marking-HijabSimpleLizard = Hijab (Simple)
|
||||
marking-HijabSimpleLizard-hijabsimplelizard = Hijab (Simple)
|
||||
marking-HijabSimpleVox = Hijab (Simple)
|
||||
marking-HijabSimpleVox-hijabsimplevox = Hijab (Simple)
|
||||
|
||||
marking-Niqab = Niqab
|
||||
marking-NiqabLizard = Niqab
|
||||
marking-NiqabLizard-niqablizard = Niqab
|
||||
|
||||
marking-TichelFashionable = Tichel (Fashionable)
|
||||
marking-TichelFashionableLizard = Tichel (Fashionable)
|
||||
marking-TichelFashionableLizard-tichelfashionablelizard = Tichel (Fashionable)
|
||||
marking-TichelFashionableVox = Tichel (Fashionable)
|
||||
marking-TichelFashionableVox-tichelfashionablevox = Tichel (Fashionable)
|
||||
|
||||
marking-TichelSimple = Tichel (Simple)
|
||||
marking-TichelSimpleLizard = Tichel (Simple)
|
||||
marking-TichelSimpleLizard-tichelsimplelizard = Tichel (Simple)
|
||||
marking-TichelSimpleVox = Tichel (Simple)
|
||||
marking-TichelSimpleVox-tichelsimplevox = Tichel (Simple)
|
||||
@@ -0,0 +1,3 @@
|
||||
marking-HumanHairGatheredlow = Gathered Low
|
||||
marking-HumanHairFrenchBraid = French Braid
|
||||
marking-HumanHairLowpigtails = Low Pigtails
|
||||
@@ -0,0 +1,8 @@
|
||||
marking-BodyhairHumanMale-human_bodyhair_male = Body Hair
|
||||
marking-BodyhairHumanMale = Body Hair
|
||||
|
||||
marking-BodyhairHumanFemale-human_bodyhair_female = Body Hair
|
||||
marking-BodyhairHumanFemale = Body Hair
|
||||
|
||||
marking-BodyhairHumanUnsexed-human_bodyhair_unsexed = Body Hair
|
||||
marking-BodyhairHumanUnsexed = Body Hair
|
||||
@@ -0,0 +1,226 @@
|
||||
# this file is subject to getting its shit moved to other files at a later date#
|
||||
|
||||
# arachnids
|
||||
marking-SpiderMirror = Mirror
|
||||
marking-SpiderMirror-spidermirror = Mirror
|
||||
marking-SpiderGlowEyes = Glowing Eyes
|
||||
marking-SpiderGlowEyes-spidergloweyes = Glowing Eyes
|
||||
marking-SpiderEyesMulti = Multicolor Eyes
|
||||
marking-SpiderEyesMulti-spidereyesmulti1 = Top
|
||||
marking-SpiderEyesMulti-spidereyesmulti2 = Middle Top
|
||||
marking-SpiderEyesMulti-spidereyesmulti3 = Middle Bottom
|
||||
marking-SpiderEyesMulti-spidereyesmulti4 = Bottom
|
||||
|
||||
# diona
|
||||
marking-DionaLivingNymph = Living Nymphs
|
||||
marking-DionaLivingNymph-dionalivingnymph = Living Nymphs
|
||||
marking-DionaMossChest = Moss Drape
|
||||
marking-DionaMossChest-dionamosschest = Moss Drape
|
||||
marking-DionaMoonBloom = Diona Flower (Moon Bloom)
|
||||
marking-DionaMoonBloom-dionamoonbloom = Moon Bloom
|
||||
marking-DionaBigFirefly = Big Fireflies
|
||||
marking-DionaBigFirefly-dionabigfirefly = Big Fireflies
|
||||
marking-DionaFirefly = Fireflies
|
||||
marking-DionaFirefly-dionafirefly = Fireflies
|
||||
marking-DionaPollenDust = Pollen Cloud
|
||||
marking-DionaPollenDust-dionapollendust = Pollen Cloud
|
||||
|
||||
# dwarves
|
||||
marking-DwarfBearCheeks = Glowing Cheeks
|
||||
marking-DwarfBearCheeks-dwarfbearcheeks = Glowing Cheeks
|
||||
marking-DwarfHeadGlow = Glowing Star
|
||||
marking-DwarfHeadGlow-dwarfheadglow = Glowing Star
|
||||
marking-DwarfConstellationHead = Head Constellation
|
||||
marking-DwarfConstellationHead-dwarfconstellationhead = Head Constellation
|
||||
marking-DwarfConstellationChest = Chest Constellation
|
||||
marking-DwarfConstellationChest-dwarfconstellationchest = Chest Constellation
|
||||
marking-DwarfConstellationLArm = Arm Constellation (Left)
|
||||
marking-DwarfConstellationLArm-dwarfconstellationlarm = Arm Constellation (Left)
|
||||
marking-DwarfConstellationRArm = Arm Constellation (Right)
|
||||
marking-DwarfConstellationRArm-dwarfconstellationrarm = Arm Constellation (Right)
|
||||
marking-DwarfConstellationLHand = Hand Constellation (Left)
|
||||
marking-DwarfConstellationLHand-dwarfconstellationlhand = Hand Constellation (Left)
|
||||
marking-DwarfConstellationRHand = Hand Constellation (Right)
|
||||
marking-DwarfConstellationRHand-dwarfconstellationrhand = Hand Constellation (Right)
|
||||
marking-DwarfConstellationLLeg = Leg Constellation (Left)
|
||||
marking-DwarfConstellationLLeg-dwarfconstellationlleg = Leg Constellation (Left)
|
||||
marking-DwarfConstellationRLeg = Leg Constellation (Right)
|
||||
marking-DwarfConstellationRLeg-dwarfconstellationrleg = Leg Constellation (Right)
|
||||
marking-DwarfConstellationLFoot = Foot Constellation (Left)
|
||||
marking-DwarfConstellationLFoot-dwarfconstellationlfoot = Foot Constellation (Left)
|
||||
marking-DwarfConstellationRFoot = Foot Constellation (Right)
|
||||
marking-DwarfConstellationRFoot-dwarfconstellationrfoot = Foot Constellation (Right)
|
||||
marking-DwarfChestHair = Chest Hair
|
||||
marking-DwarfChestHair-dwarfchesthair = Chest Hair
|
||||
marking-DwarfArmHair = Arm Hair
|
||||
marking-DwarfArmHair-dwarfarmhair = Arm Hair
|
||||
marking-DwarfLegHair = Leg Hair
|
||||
marking-DwarfLegHair-dwarfleghair = Leg Hair
|
||||
marking-DwarfTattooShootingStar = Shooting Star Tattoo
|
||||
marking-DwarfTattooShootingStar-dwarftattooshootingstar = Shooting Star Tattoo
|
||||
marking-DwarfMarkBear = Mark of the Bear
|
||||
marking-DwarfMarkBear-dwarfmarkbear = Mark of the Bear
|
||||
marking-DwarfMarkKangarooLHand = Mark of the Kangaroo (Left)
|
||||
marking-DwarfMarkKangarooLHand-dwarfmarkkangaroolhand = Mark of the Kangaroo (Left)
|
||||
marking-DwarfMarkKangarooRHand = Mark of the Kangaroo (Right)
|
||||
marking-DwarfMarkKangarooRHand-dwarfmarkkangaroo = Mark of the Kangaroo (Right)
|
||||
marking-DwarfMarkCobra = Mark of the Cobra
|
||||
marking-DwarfMarkCobra-dwarfmarkcobra = Mark of the Cobra
|
||||
marking-DwarfMarkSpider = Mark of the Spider
|
||||
marking-DwarfMarkSpider-dwafmarkspider = Mark of the Spider
|
||||
|
||||
# humans
|
||||
marking-VitiligoHeadL = Vitiligo (Left Eye)
|
||||
marking-VitiligoHeadR = Vitiligo (Right Eye)
|
||||
marking-VitiligoHeadJaw = Vitiligo (Jawline)
|
||||
marking-VitiligoHandR = Vitiligo (Right Hand)
|
||||
marking-VitiligoArmR = Vitiligo (Right Arm)
|
||||
marking-VitiligoLegR = Vitiligo (Right)
|
||||
marking-VitiligoHandL = Vitiligo (Left Hand)
|
||||
marking-VitiligoArmL = Vitiligo (Left Arm)
|
||||
marking-VitiligoLegL = Vitiligo (Left)
|
||||
marking-VitiligoChestF = Vitiligo Spread
|
||||
marking-VitiligoChestSpots = Vitiligo Spots
|
||||
|
||||
# moths
|
||||
marking-MothTrueButterfly = Wings (Rainbow)
|
||||
marking-MothTrueButterfly-mothtruebutterfly1 = Stripes
|
||||
marking-MothTrueButterfly-mothtruebutterfly2 = Dots
|
||||
marking-MothTrueButterfly-mothtruebutterfly3 = Wings
|
||||
marking-MothGlowAntenna = Antennae (Glowing)
|
||||
marking-MothGlowAntenna-mothglowantenna = Antennae (Glowing)
|
||||
marking-MothFireflyOverlay = Firefly Overlay
|
||||
marking-MothFireflyOverlay-mothfirefly1 = Firefly Overlay
|
||||
marking-MothFirefly = Wings (Firefly)
|
||||
marking-MothFirefly-mothfirefly2 = Firefly Wings
|
||||
marking-MothBee = Wings (Bumblebee)
|
||||
# Frontier: stripes < Stripes
|
||||
marking-MothBee-bee1 = Outer Stripes
|
||||
marking-MothBee-bee2 = Wings
|
||||
# Frontier: stripe < Stripe
|
||||
marking-MothBee-bee3 = Inner Stripe
|
||||
marking-MothBeetleTail = Beetle Wings (Junebug)
|
||||
marking-MothBeetleTail-beetle1 = Outline
|
||||
marking-MothBeetleTail-beetle2 = Wings
|
||||
marking-MothBeetleTail-beetle3 = Shine
|
||||
marking-MothBeetleHorn1 = Beetle Horn (Pronged)
|
||||
marking-MothBeetleHorn1-mothbeetlehorn1 = Beetle Horn (Pronged)
|
||||
marking-MothBeetleHorn2 = Beetle Horn (Lance)
|
||||
marking-MothBeetleHorn2-mothbeetlehorn2 = Beetle Horn (Lance)
|
||||
marking-MothBiggerEyes = Bigger Eyes
|
||||
marking-MothBiggerEyes-mothbiggereyes = Bigger Eyes
|
||||
marking-MothSnoth = Wings (Snoth)
|
||||
marking-MothSnoth-snoth1 = Wings
|
||||
marking-MothSnoth-snoth2 = Shell
|
||||
marking-MothGlasswing = Wings (Glasswing)
|
||||
marking-MothGlasswing-glasswing1 = Outer
|
||||
marking-MothGlasswing-glasswing2 = Inner
|
||||
marking-MothGlasswing-glasswing3 = Stripe
|
||||
marking-MothRhinoBeetle = Beetle Wings (Rhino)
|
||||
marking-MothRhinoBeetle-rhinobeetle1 = Outline
|
||||
marking-MothRhinoBeetle-rhinobeetle2 = Shine
|
||||
marking-MothRhinoBeetle-rhinobeetle3 = Wings
|
||||
|
||||
# slimes
|
||||
marking-fizz = Fizz
|
||||
marking-fizz-fizz = Fizz
|
||||
marking-bubble = Bubbles
|
||||
marking-bubble-bubble = Bubbles
|
||||
marking-fishbowl = Fishbowl
|
||||
marking-fishbowl-fishbowl1 = Fish
|
||||
# Frontier: bubbles < Bubbles
|
||||
marking-fishbowl-fishbowl2 = Fish Bubbles
|
||||
marking-FadingStars = Fading Starlight
|
||||
marking-FadingStars-fadingstars1 = Brightest
|
||||
marking-FadingStars-fadingstars2 = Middling
|
||||
marking-FadingStars-fadingstars3 = Darkest
|
||||
|
||||
# vox
|
||||
marking-VoxCocktail = Cocktail
|
||||
marking-VoxCocktail-voxcocktail1 = Feathers
|
||||
marking-VoxCocktail-voxcocktail2 = Feathers
|
||||
marking-VoxCocktail-voxcocktail3 = Feathers
|
||||
marking-VoxCocktail-voxcocktail4 = Tail
|
||||
marking-VoxTailStripes = Tail Stripes
|
||||
marking-VoxTailStripes-voxtailstripes = Tail Stripes
|
||||
marking-VoxLArmProsthetic = Prosthetic (Left)
|
||||
marking-VoxLArmProsthetic-voxarmprostheticl = Prosthetic (Left)
|
||||
marking-VoxRArmProsthetic = Prosthetic (Right)
|
||||
marking-VoxRArmProsthetic-voxarmprostheticr = Prosthetic (Right)
|
||||
marking-VoxBeakColor = Colorable Beak
|
||||
marking-VoxBeakColor-voxbeakcolor = Colorable Beak
|
||||
marking-VoxBeakSplit = Split Color Beak
|
||||
marking-VoxBeakSplit-voxbeaksplit1 = Top
|
||||
marking-VoxBeakSplit-voxbeaksplit2 = Bottom
|
||||
marking-VoxBeakTipped = Tipped Beak
|
||||
marking-VoxBeakTipped-voxbeaktipped = Tipped Beak
|
||||
marking-VoxChestPlumage = Chest Plumage
|
||||
marking-VoxChestPlumage-voxchestplumage = Chest Plumage
|
||||
marking-VoxFootSpines = Leg Spines
|
||||
marking-VoxFootSpines-voxfootspines = Leg Spines
|
||||
marking-VoxFootGradientLFoot = Solid (Left Foot)
|
||||
marking-VoxFootGradientLFoot-voxfootgradientl1 = Solid (Left Foot)
|
||||
marking-VoxFootGradientRFoot = Solid (Right Foot)
|
||||
marking-VoxFootGradientRFoot-voxfootgradientr1 = Solid (Right Foot)
|
||||
marking-VoxLegGradientLLeg = Solid (Left Leg)
|
||||
marking-VoxLegGradientLLeg-voxfootgradientl2 = Solid (Left Leg)
|
||||
marking-VoxLegGradientRLeg = Solid (Right Leg)
|
||||
marking-VoxLegGradientRLeg-voxfootgradientr2 = Solid (Left Leg)
|
||||
marking-VoxHandGradientRHand = Gradient (Right Hand)
|
||||
marking-VoxHandGradientRHand-voxhandgradientr1 = Bottom
|
||||
marking-VoxHandGradientRHand-voxhandgradientr2 = Middle
|
||||
marking-VoxHandGradientRHand-voxhandgradientr3 = Top
|
||||
marking-VoxHandGradientLHand = Gradient (Left Hand)
|
||||
marking-VoxHandGradientLHand-voxhandgradientl1 = Bottom
|
||||
marking-VoxHandGradientLHand-voxhandgradientl2 = Middle
|
||||
marking-VoxHandGradientLHand-voxhandgradientl3 = Top
|
||||
marking-VoxHeadGradient = Gradient
|
||||
marking-VoxHeadGradient-voxheadgradient1 = Front
|
||||
marking-VoxHeadGradient-voxheadgradient2 = Middle
|
||||
marking-VoxHeadGradient-voxheadgradient3 = Back
|
||||
marking-VoxTailBell = Bell
|
||||
marking-VoxTailBell-voxtailbell1 = Bell
|
||||
marking-VoxTailBell-voxtailbell2 = Back Tail
|
||||
marking-VoxTailBack = Back Tail
|
||||
marking-VoxBackTail-voxtailcolorable = Back Tail
|
||||
marking-VoxTailLantern = Lantern
|
||||
marking-VoxTailLantern-voxtaillantern = Lantern
|
||||
marking-VoxTailSingleStripe = Single Tail Stripe
|
||||
marking-VoxTailSingleStripe-voxtailsinglestripe = Single Tail Stripe
|
||||
marking-VoxTailSmallPlume = Small Plume
|
||||
marking-VoxTailSmallPlume-voxtailsmallplume = Small Plume
|
||||
marking-VoxTailSpines = Tail Spines
|
||||
marking-VoxTailSpines-voxtailspines = Tail Spines
|
||||
marking-VoxArmsStripesLHand = Stripes (Left Arm)
|
||||
marking-VoxArmsStripesLHand-voxarmsstripesl = Stripes (Left Arm)
|
||||
marking-VoxArmsStripesRHand = Stripes (Right Arm)
|
||||
marking-VoxArmsStripesRHand-voxarmsstripesr = Stripes (Right Arm)
|
||||
marking-VoxLegsStripesLLeg = Stripes (Left)
|
||||
marking-VoxLegsStripesLLeg-voxlegsstripesl = Stripes (Left)
|
||||
marking-VoxLegsStripesRLeg = Stripes (Right)
|
||||
marking-VoxLegsStripesRLeg-voxlegsstripesr = Stripes (Right)
|
||||
marking-VoxChains = Chains
|
||||
marking-VoxChains-voxchains = Chains
|
||||
marking-VoxSunAndMoon = Sun and Moon
|
||||
marking-VoxSunAndMoon-voxsunandmoon = Sun and Moon
|
||||
marking-VoxCheeks = Cheeks
|
||||
marking-VoxCheeks-voxcheeks = Cheeks
|
||||
marking-VoxBelly = Belly
|
||||
marking-VoxBelly-voxbelly = Belly
|
||||
marking-VoxTailBalled = Thrasher
|
||||
marking-VoxTailBalled-voxtailballed = Thrasher
|
||||
marking-VoxTailSplit = Twinned
|
||||
marking-VoxTailSplit-voxtailsplit = Twinned
|
||||
|
||||
# upstream vox markings dont have localized names. lmfao
|
||||
# these are just straight up broken and shouldnt be visible from the markings menu period but ALAS im not skilled enough to remove them so you get this stupid botch job instead
|
||||
marking-VoxBeak = Default Beak [DO NOT USE]
|
||||
marking-VoxLArmScales = Default Arm [DO NOT USE]
|
||||
marking-VoxLHandScales = Default Left Hand [DO NOT USE]
|
||||
marking-VoxRArmScales = Default Right Arm [DO NOT USE]
|
||||
marking-VoxRHandScales = Default Right Hand [DO NOT USE]
|
||||
marking-VoxTail = Default Tail [DO NOT USE]
|
||||
marking-VoxLFootScales = Default Left Foot [DO NOT USE]
|
||||
marking-VoxLLegScales = Default Left Leg [DO NOT USE]
|
||||
marking-VoxRFootScales = Default Right Foot [DO NOT USE]
|
||||
marking-VoxRLegScales = Default Right Leg [DO NOT USE]
|
||||
@@ -0,0 +1,76 @@
|
||||
marking-MothBodyClaw = Claw Scars
|
||||
marking-MothBodyClaw-moth_body_claw = Claw Scars
|
||||
marking-MothBurnLeft = Burn Scar (Left)
|
||||
marking-MothBurnLeft-moth_burn_l = Burn Scar (Left)
|
||||
marking-MothBurnRight = Burn Scar (Right)
|
||||
marking-MothBurnRight-moth_burn_r = Burn Scar (Right)
|
||||
marking-MothFaceClaw = Claw Scars (Face)
|
||||
marking-MothFaceClaw-moth_face_claw = Claw Scars (Face)
|
||||
marking-MothSlashLeft = Claw Scars (Left)
|
||||
marking-MothSlashLeft-moth_slash_l = Claw Scars (Left)
|
||||
marking-MothSlashRight = Claw Scars (Right)
|
||||
marking-MothSlashRight-moth_slash_r = Claw Scars (Right)
|
||||
marking-ChimeraArmLeftMoth = Moth Arm (Chimera)
|
||||
marking-ChimeraArmLeftMoth-arm_l_chimera_moth = Moth Arm (Chimera)
|
||||
marking-ProstheticArmLeftMoth = Prosthetic (Left)
|
||||
marking-ProstheticArmLeftMoth-arm_l_prosthetic_moth = Prosthetic (Left)
|
||||
marking-TwistingArmLeftMoth = Twisted Scar (Left Arm)
|
||||
marking-TwistingArmLeftMoth-arm_l_twisting_moth = Twisted Scar (Left Arm)
|
||||
marking-ProstheticArmRightMoth = Prosthetic (Right)
|
||||
marking-ProstheticArmRightMoth-arm_r_prosthetic_moth = Prosthetic (Right)
|
||||
marking-TwistingArmRightMoth = Twisted Scar (Right)
|
||||
marking-TwistingArmRightMoth-arm_r_twisting_moth = Twisted Scar (Right)
|
||||
marking-WingsBackstabbed = Wings (Backstabbed)
|
||||
marking-WingsBackstabbed-wings_backstabbed = Wings (Backstabbed)
|
||||
marking-ChestChimeraFemaleMoth = Moth Chest (Chimera)
|
||||
marking-ChestChimeraFemaleMoth-chest_chimera_f_moth = Moth Chest (Chimera)
|
||||
marking-ChestChimeraMaleMoth = Moth Chest (Chimera)
|
||||
marking-ChestChimeraMaleMoth-chest_chimera_m_moth = Moth Chest (Chimera)
|
||||
marking-ChestTwistingLeftFemaleMoth = Twisted Scar (Left)
|
||||
marking-ChestTwistingLeftFemaleMoth-chest_l_twisting_f_moth = Twisted Scar (Left)
|
||||
marking-ChestTwistingLeftMaleMoth = Twisted Scar (Left)
|
||||
marking-ChestTwistingLeftMaleMoth-chest_l_twisting_m_moth = Twisted Scar (Left)
|
||||
marking-ChestTwistingRightFemaleMoth = Twisted Scar (Right)
|
||||
marking-ChestTwistingRightFemaleMoth-chest_r_twisting_f_moth = Twisted Scar (Right)
|
||||
marking-ChestTwistingRightMaleMoth = Twisted Scar (Right)
|
||||
marking-ChestTwistingRightMaleMoth-chest_r_twisting_m_moth = Twisted Scar (Right)
|
||||
marking-ChestStarMoth = Star Scar
|
||||
marking-ChestStarMoth-chest_star_moth = Star Scar
|
||||
marking-HeterochromiaMoth = Heterochromia
|
||||
marking-HeterochromiaMoth-eyes_heterochromia_moth = Heterochromia
|
||||
marking-FootChimeraLeftMoth = Moth Foot (Chimera)
|
||||
marking-FootChimeraLeftMoth-foot_l_chimera_moth = Moth Foot (Chimera)
|
||||
marking-FootProstheticLeftMoth = Prosthetic (Left Foot)
|
||||
marking-FootProstheticLeftMoth-foot_l_prosthetic_moth = Prosthetic (Left Foot)
|
||||
marking-FootProstheticRightMoth = Prosthetic (Right Foot)
|
||||
marking-FootProstheticRightMoth-foot_r_prosthetic_moth = Prosthetic (Right Foot)
|
||||
marking-HandChimeraLeftMoth = Moth Hand (Chimera)
|
||||
marking-HandChimeraLeftMoth-hand_l_chimera_moth = Moth Hand (Chimera)
|
||||
marking-HandProstheticLeftMoth = Prosthetic (Left Hand)
|
||||
marking-HandProstheticLeftMoth-hand_l_prosthetic_moth = Prosthetic (Left Hand)
|
||||
marking-HandTwistingLeftMoth = Twisted Scar (Left Hand)
|
||||
marking-HandTwistingLeftMoth-hand_l_twisting_moth = Twisted Scar (Left Hand)
|
||||
marking-HandProstheticRightMoth = Prosthetic Hand (Right)
|
||||
marking-HandProstheticRightMoth-hand_r_prosthetic_moth = Prosthetic Hand (Right)
|
||||
marking-HandTwistingRightMoth = Twisted Scar (Right Hand)
|
||||
marking-HandTwistingRightMoth-hand_r_twisting_moth = Twisted Scar (Right Hand)
|
||||
marking-BadmoltMoth = Bad Molt
|
||||
marking-BadmoltMoth-hand_badmolt_moth = Bad Molt
|
||||
marking-HeadChimeraMoth = Moth Head (Chimera)
|
||||
marking-HeadChimeraMoth-head_chimera_moth = Moth Head (Chimera)
|
||||
marking-EyebagsMoth = Eyebags
|
||||
marking-EyebagsMoth-head_eyebags_moth = Eyebags
|
||||
marking-HeadTwistingMoth = Twisted Scar
|
||||
marking-HeadTwistingMoth-head_twisting_moth = Twisted Scar
|
||||
marking-LegChimeraLeftMoth = Moth Leg (Chimera)
|
||||
marking-LegChimeraLeftMoth-leg_l_chimera_moth = Moth Leg (Chimera)
|
||||
marking-LegProstheticLeftMoth = Prosthetic (Left Leg)
|
||||
marking-LegProstheticLeftMoth-leg_l_prosthetic_moth = Prosthetic (Left Leg)
|
||||
marking-LegTwistingLeftMoth = Twisted Scar (Left)
|
||||
marking-LegTwistingLeftMoth-leg_l_twisting_moth = Twisted Scar (Left)
|
||||
marking-LegProstheticRightMoth = Prosthetic (Right Leg)
|
||||
marking-LegProstheticRightMoth-leg_r_prosthetic_moth = Prosthetic (Right Leg)
|
||||
marking-LegTwistingRightMoth = Twisted Scar (Right)
|
||||
marking-LegTwistingRightMoth-leg_r_twisting_moth = Twisted Scar (Right)
|
||||
marking-TorsoIncisionMoth = Torso Incision
|
||||
marking-TorsoIncisionMoth-torso_incision_moth = Torso Incision
|
||||
@@ -0,0 +1,12 @@
|
||||
marking-LizardSnoutpiercings-piercings1 = Piercings
|
||||
marking-LizardSnoutpiercings = Piercings
|
||||
|
||||
marking-LizardHornsNubby-horns_nubby = Lizard Horns (Nubby)
|
||||
marking-LizardHornsNubby = Lizard Horns (Nubby)
|
||||
|
||||
marking-LizardHornsKoboldEarspiercings = Lizard Ears (Kobold, Pierced)
|
||||
marking-LizardHornsKoboldEarspiercings-horns_kobold_ears = Ears
|
||||
marking-LizardHornsKoboldEarspiercings-horns_kobold_ears_piercings = Piercings
|
||||
|
||||
marking-Fangs = Lizard Fangs
|
||||
marking-Fangs-Fangs = Fangs
|
||||
@@ -0,0 +1,42 @@
|
||||
marking-ArmProstheticLeft = Prosthetic (Left Arm)
|
||||
marking-ArmProstheticLeft-arm_r_prosthetic = Prosthetic (Left Arm)
|
||||
marking-ArmTwistingLeft = Twisted Scar (Left Arm)
|
||||
marking-ArmTwistingLeft-arm_l_twisting = Twisted Scar (Left Arm)
|
||||
marking-ArmProstheticRight = Prosthetic (Right Arm)
|
||||
marking-ArmProstheticRight-arm_r_prosthetic = Prosthetic (Right Arm)
|
||||
marking-ArmTwistingRight = Twisted Scar (Right Arm)
|
||||
marking-ArmTwistingRight-arm_r_twisting = Twisted Scar (Right Arm)
|
||||
marking-ChestBackstabbed = Backstabbed
|
||||
marking-ChestBackstabbed-chest_backstabbed = Backstabbed
|
||||
marking-ChestTwistingLeft = Twisted Scar (Left)
|
||||
marking-ChestTwistingLeft-chest_l_twisting = Twisted Scar (Left)
|
||||
marking-ChestTwistingRight = Twisted Scar (Right)
|
||||
marking-ChestTwistingRight-chest_r_twisting = Twisted Scar (Right)
|
||||
marking-ChestStar = Star Scar
|
||||
marking-ChestStar-chest_star = Star Scar
|
||||
marking-FootProstheticLeft = Prosthetic (Left Foot)
|
||||
marking-FootProstheticLeft-foot_l_prosthetic = Prosthetic (Left Foot)
|
||||
marking-FootProstheticRight = Prosthetic (Right Foot)
|
||||
marking-FootProstheticRight-foot_r_prosthetic = Prosthetic (Right Foot)
|
||||
marking-HandProstheticLeft = Prosthetic (Left Hand)
|
||||
marking-HandProstheticLeft-hand_l_prosthetic = Prosthetic (Left Hand)
|
||||
marking-HandTwistingLeft = Twisted Scar (Left Hand)
|
||||
marking-HandTwistingLeft-hand_l_twisting = Twisted Scar (Left Hand)
|
||||
marking-HandProstheticRight = Prosthetic (Right Hand)
|
||||
marking-HandProstheticRight-hand_r_prosthetic = Prosthetic (Right Hand)
|
||||
marking-HandTwistingRight = Twisted Scar (Right Hand)
|
||||
marking-HandTwistingRight-hand_r_twisting = Twisted Scar (Right Hand)
|
||||
marking-SmileScars = The Jonker
|
||||
marking-SmileScars-head_smile = The Jonker
|
||||
marking-HeadTwisting = Twisted Scar
|
||||
marking-HeadTwisting-head_twisting = Twisted Scar
|
||||
marking-LegProstheticLeft = Prosthetic (Left Leg)
|
||||
marking-LegProstheticLeft-leg_l_prosthetic = Prosthetic (Left Leg)
|
||||
marking-LegTwistingLeft = Twisted Scar (Left Leg)
|
||||
marking-LegTwistingLeft-leg_t_twisting = Twisted Scar (Left Leg)
|
||||
marking-LegProstheticRight = Prosthetic (Right Leg)
|
||||
marking-LegProstheticRight-leg_r_prosthetic = Prosthetic (Right Leg)
|
||||
marking-LegTwistingRight = Twisted Scar (Right Leg)
|
||||
marking-LegTwistingRight-leg_r_twisting = Twisted Scar (Right Leg)
|
||||
marking-TorsoIncision = Torso Incision
|
||||
marking-TorsoIncision-torso_incision = Torso Incision
|
||||
@@ -0,0 +1,47 @@
|
||||
marking-SlimeNose-nose = Nose (Profile)
|
||||
marking-SlimeNose = Nose (Profile)
|
||||
|
||||
marking-SlimeMouth-mouth = Mouth
|
||||
marking-SlimeMouth = Mouth
|
||||
|
||||
marking-SlimeBrain-brain = Brain
|
||||
marking-SlimeBrain = Brain
|
||||
|
||||
marking-SlimeEyeglow-eyeglow = Eye Glow
|
||||
marking-SlimeEyeglow = Eye Glow
|
||||
|
||||
marking-SlimeCore-core = Core
|
||||
marking-SlimeCore = Core
|
||||
|
||||
marking-SlimeLungs-lungs = Lungs
|
||||
marking-SlimeLungs = Lungs
|
||||
|
||||
marking-SlimeBonehead-bonehead = Floating Skull
|
||||
marking-SlimeBonehead = Floating Skull
|
||||
|
||||
marking-SlimeBonechest-bonechest = Floating Ribcage
|
||||
marking-SlimeBonechest = Floating Ribcage
|
||||
|
||||
marking-SlimeBonearmleft-bonearmleft = Floating Bones (Left Arm)
|
||||
marking-SlimeBonearmleft = Floating Bones (Left Arm)
|
||||
|
||||
marking-SlimeBonearmright-bonearmright = Floating Bones (Right Arm)
|
||||
marking-SlimeBonearmright = Floating Bones (Right Arm)
|
||||
|
||||
marking-SlimeBonefootleft-bonefootleft = Floating Bones (Left Foot)
|
||||
marking-SlimeBonefootleft = Floating Bones (Left Foot)
|
||||
|
||||
marking-SlimeBonefootright-bonefootright = Floating Bones (Right Foot)
|
||||
marking-SlimeBonefootright = Floating Bones (Right Foot)
|
||||
|
||||
marking-SlimeBonehandleft-bonehandleft = Floating Bones (Left Hand)
|
||||
marking-SlimeBonehandleft = Floating Bones (Left Hand)
|
||||
|
||||
marking-SlimeBonehandright-bonehandright = Floating Bones (Right Hand)
|
||||
marking-SlimeBonehandright = Floating Bones (Right Hand)
|
||||
|
||||
marking-SlimeBonelegleft-bonelegleft = Floating Bones (Left Leg)
|
||||
marking-SlimeBonelegleft = Floating Bones (Left Leg)
|
||||
|
||||
marking-SlimeBonelegright-bonelegright = Floating Bones (Right Leg)
|
||||
marking-SlimeBonelegright = Floating Bones (Right Leg)
|
||||
@@ -0,0 +1,29 @@
|
||||
marking-TattooNanotrasenChest-tattoo_nanotrasen_chest = Chest Tattoo (Nanotrasen)
|
||||
marking-TattooNanotrasenChest = Chest Tattoo (Nanotrasen)
|
||||
|
||||
marking-ArmDollJointsTattooLeft-l_arm_doll = Doll Joints Arm Tattoo (Left)
|
||||
marking-ArmDollJointsTattooLeft = Doll Joints Arm Tattoo (Left)
|
||||
|
||||
marking-ArmDollJointsTattooRight-r_arm_doll = Doll Joints Arm Tattoo (Right)
|
||||
marking-ArmDollJointsTattooRight = Doll Joints Arm Tattoo (Right)
|
||||
|
||||
marking-HandDollJointsTattooLeft-l_hand_doll = Doll Joints Hand Tattoo (Left)
|
||||
marking-HandDollJointsTattooLeft = Doll Joints Hand Tattoo (Left)
|
||||
|
||||
marking-HandDollJointsTattooRight-r_hand_doll = Doll Joints Hand Tattoo (Right)
|
||||
marking-HandDollJointsTattooRight = Doll Joints Hand Tattoo (Right)
|
||||
|
||||
marking-LegDollJointsTattooLeft-l_leg_doll = Doll Joints Leg Tattoo (Left)
|
||||
marking-LegDollJointsTattooLeft = Doll Joints Leg Tattoo (Left)
|
||||
|
||||
marking-LegDollJointsTattooRight-r_leg_doll = Doll Joints Leg Tattoo (Right)
|
||||
marking-LegDollJointsTattooRight = Doll Joints Leg Tattoo (Right)
|
||||
|
||||
marking-FootDollJointsTattooLeft-l_foot_doll = Doll Joints Foot Tattoo (Left)
|
||||
marking-FootDollJointsTattooLeft = Doll Joints Foot Tattoo (Left)
|
||||
|
||||
marking-FootDollJointsTattooRight-r_foot_doll = Doll Joints Foot Tattoo (Right)
|
||||
marking-FootDollJointsTattooRight = Doll Joints Foot Tattoo (Right)
|
||||
|
||||
marking-ChestCutHere-chest_cuthere = 'Cut Here' Tattoo
|
||||
marking-ChestCutHere = 'Cut Here' Tattoo
|
||||
@@ -0,0 +1,20 @@
|
||||
marking-ScarsVoxRoadrashLeftHead-roadrash_l_head = Road Rash (Left)
|
||||
marking-ScarsVoxRoadrashLeftHead = Road Rash (Left)
|
||||
|
||||
marking-ScarsVoxRoadrashRightHead-roadrash_r_head = Road Rash (Right)
|
||||
marking-ScarsVoxRoadrashRightHead = Road Rash (Right)
|
||||
|
||||
marking-ScarsVoxBigslashLeftHead-bigslash_l_head = Big Slash (Left)
|
||||
marking-ScarsVoxBigslashLeftHead = Big Slash (Left)
|
||||
|
||||
marking-ScarsVoxBigslashRightHead-roadrash_r_head = Big Slash (Right)
|
||||
marking-ScarsVoxBigslashRightHead = Big Slash (Right)
|
||||
|
||||
marking-ScarsVoxSlashLeftHead-slash_l_head = Slash (Left)
|
||||
marking-ScarsVoxSlashLeftHead = Slash (Left)
|
||||
|
||||
marking-ScarsVoxSlashRightHead-slash_r_head = Slash (Right)
|
||||
marking-ScarsVoxSlashRightHead = Slash (Right)
|
||||
|
||||
marking-ScarsVoxClawTorso-claw_torso = Claw Scar
|
||||
marking-ScarsVoxClawTorso = Claw Scar
|
||||
@@ -26,11 +26,11 @@
|
||||
required: true
|
||||
defaultMarkings: [ FelinidEarsBasic ]
|
||||
Chest:
|
||||
points: 1
|
||||
points: 4 # Frontier 1<4
|
||||
required: false
|
||||
Legs:
|
||||
points: 2
|
||||
points: 8 # Frontier 2<8
|
||||
required: false
|
||||
Arms:
|
||||
points: 2
|
||||
points: 8 # Frontier 2<8
|
||||
required: false
|
||||
|
||||
@@ -29,11 +29,11 @@
|
||||
points: 1 # Frontier
|
||||
required: false # Frontier
|
||||
Chest:
|
||||
points: 1
|
||||
points: 4 # Frontier 1<4
|
||||
required: false
|
||||
Legs:
|
||||
points: 2
|
||||
points: 8 # Frontier 2<8
|
||||
required: false
|
||||
Arms:
|
||||
points: 2
|
||||
points: 8 # Frontier 2<8
|
||||
required: false
|
||||
|
||||
@@ -64,10 +64,10 @@
|
||||
points: 1
|
||||
required: false
|
||||
Legs:
|
||||
points: 2
|
||||
points: 8 # imp 2<8
|
||||
required: false
|
||||
Arms:
|
||||
points: 2
|
||||
points: 8 # imp 2<8
|
||||
required: false
|
||||
|
||||
- type: humanoidBaseSprite
|
||||
|
||||
@@ -61,10 +61,10 @@
|
||||
points: 1
|
||||
required: false
|
||||
Legs:
|
||||
points: 2
|
||||
points: 8 # imp 2<8
|
||||
required: false
|
||||
Arms:
|
||||
points: 2
|
||||
points: 8 # imp 2<8
|
||||
required: false
|
||||
|
||||
- type: humanoidBaseSprite
|
||||
@@ -162,4 +162,4 @@
|
||||
id: MobHumanRFoot
|
||||
baseSprite:
|
||||
sprite: Mobs/Species/Human/parts.rsi
|
||||
state: r_foot
|
||||
state: r_foot
|
||||
|
||||
@@ -62,16 +62,16 @@
|
||||
points: 1
|
||||
required: false
|
||||
Head:
|
||||
points: 1
|
||||
points: 4 # imp 1<4
|
||||
required: false
|
||||
Chest:
|
||||
points: 1
|
||||
points: 4 # imp 1<4
|
||||
required: false
|
||||
Legs:
|
||||
points: 2
|
||||
points: 4 # imp 2<4
|
||||
required: false
|
||||
Arms:
|
||||
points: 2
|
||||
points: 4 # imp 2<4
|
||||
required: false
|
||||
|
||||
- type: humanoidBaseSprite
|
||||
|
||||
@@ -56,13 +56,13 @@
|
||||
points: 1
|
||||
required: false
|
||||
Chest:
|
||||
points: 3
|
||||
points: 4 # imp 3<4
|
||||
required: false
|
||||
Legs:
|
||||
points: 2
|
||||
points: 8 # imp 2<8
|
||||
required: false
|
||||
Arms:
|
||||
points: 2
|
||||
points: 8 # imp 2<8
|
||||
required: false
|
||||
|
||||
- type: humanoidBaseSprite
|
||||
|
||||
@@ -36,19 +36,19 @@
|
||||
points: 1
|
||||
required: false
|
||||
Chest:
|
||||
points: 1
|
||||
points: 4 # imp 1<4
|
||||
required: false
|
||||
Legs:
|
||||
points: 4
|
||||
points: 8 # imp 4<8
|
||||
required: false
|
||||
Arms:
|
||||
points: 4
|
||||
points: 8 # imp 4<8
|
||||
required: false
|
||||
|
||||
- type: humanoidBaseSprite
|
||||
id: MobSlimeMarkingFollowSkin
|
||||
markingsMatchSkin: true
|
||||
layerAlpha: 0.5
|
||||
layerAlpha: 0.75 # imp 0.5<0.75
|
||||
|
||||
- type: humanoidBaseSprite
|
||||
id: MobSlimeHead
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
sprites: MobVoxSprites
|
||||
markingLimits: MobVoxMarkingLimits
|
||||
dollPrototype: MobVoxDummy
|
||||
skinColoration: VoxFeathers
|
||||
skinColoration: Hues # imp VoxFeathers<Hues
|
||||
defaultSkinTone: "#6c741d"
|
||||
maleFirstNames: names_vox
|
||||
femaleFirstNames: names_vox
|
||||
@@ -61,6 +61,9 @@
|
||||
Chest:
|
||||
points: 1
|
||||
required: false
|
||||
Overlay: # imp
|
||||
points: 4
|
||||
required: false
|
||||
Tail:
|
||||
points: 1
|
||||
required: true
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
- type: marking
|
||||
id: BodyhairHumanMale
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [ Dwarf, Human, Oni, Goblin, Felinid ] # Frontier: add Oni, Goblin, Felinid
|
||||
sexRestriction: [ Male ]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/bodyhair.rsi
|
||||
state: human_bodyhair_male
|
||||
|
||||
- type: marking
|
||||
id: BodyhairHumanFemale
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [ Dwarf, Human, Oni, Goblin, Felinid ] # Frontier: add Oni, Goblin, Felinid
|
||||
sexRestriction: [ Female ]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/bodyhair.rsi
|
||||
state: human_bodyhair_female
|
||||
|
||||
- type: marking
|
||||
id: BodyhairHumanUnsexed
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [ Dwarf, Human, Oni, Goblin, Felinid ] # Frontier: add Oni, Goblin, Felinid
|
||||
sexRestriction: [ Unsexed ]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/bodyhair.rsi
|
||||
state: human_bodyhair_male
|
||||
@@ -0,0 +1,149 @@
|
||||
#regrettably due to technical limitations spiders cannot materially dress for religious purposes
|
||||
#TO DO - why is kippah white not works?
|
||||
|
||||
#human,dwarf,slime
|
||||
- type: marking
|
||||
id: BurqaSolid
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: burqasolid
|
||||
|
||||
- type: marking
|
||||
id: HijabFashionable
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: hijabchic
|
||||
|
||||
- type: marking
|
||||
id: HijabSimple
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: hijabsimple
|
||||
|
||||
- type: marking
|
||||
id: Niqab
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: niqab
|
||||
|
||||
- type: marking
|
||||
id: TichelFashionable
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: tichelfashionable
|
||||
|
||||
- type: marking
|
||||
id: TichelSimple
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: tichelsimple
|
||||
|
||||
#lizard
|
||||
- type: marking
|
||||
id: BurqaSolidLizard
|
||||
bodyPart: HeadSide
|
||||
markingCategory: HeadSide
|
||||
speciesRestriction: [Reptilian]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: burqalizard
|
||||
|
||||
- type: marking
|
||||
id: HijabFashionableLizard
|
||||
bodyPart: HeadSide
|
||||
markingCategory: HeadSide
|
||||
speciesRestriction: [Reptilian]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: hijabchic
|
||||
|
||||
- type: marking
|
||||
id: HijabSimpleLizard
|
||||
bodyPart: HeadSide
|
||||
markingCategory: HeadSide
|
||||
speciesRestriction: [Reptilian]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: hijabsimple
|
||||
|
||||
- type: marking
|
||||
id: NiqabLizard
|
||||
bodyPart: HeadSide
|
||||
markingCategory: HeadSide
|
||||
speciesRestriction: [Reptilian]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: niqablizard
|
||||
|
||||
- type: marking
|
||||
id: TichelSimpleLizard
|
||||
bodyPart: HeadSide
|
||||
markingCategory: HeadSide
|
||||
speciesRestriction: [Reptilian]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: tichelsimple
|
||||
|
||||
- type: marking
|
||||
id: TichelFashionableLizard
|
||||
bodyPart: HeadSide
|
||||
markingCategory: HeadSide
|
||||
speciesRestriction: [Reptilian]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: tichelfashionable
|
||||
|
||||
#vox
|
||||
- type: marking
|
||||
id: HijabSimpleVox
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Vox]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: hijabsimplevox
|
||||
|
||||
- type: marking
|
||||
id: HijabFashionableVox
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Vox]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: hijabchicvox
|
||||
|
||||
- type: marking
|
||||
id: TichelSimpleVox
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Vox]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: tichelsimplevox
|
||||
|
||||
- type: marking
|
||||
id: TichelFashionableVox
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Vox]
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/headcovers.rsi
|
||||
state: tichelfashionablevox
|
||||
@@ -0,0 +1,26 @@
|
||||
- type: marking
|
||||
id: HumanHairGatheredlow
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/human_hair.rsi
|
||||
state: gatheredlow
|
||||
|
||||
- type: marking
|
||||
id: HumanHairLowpigtails
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/human_hair.rsi
|
||||
state: lowpigtails
|
||||
|
||||
- type: marking
|
||||
id: HumanHairFrenchBraid
|
||||
bodyPart: Hair
|
||||
markingCategory: Hair
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid, Vulpkanin] # Frontier: add Oni, Goblin, Felinid, Vulpkanin
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/human_hair.rsi
|
||||
state: frenchbraid
|
||||
@@ -0,0 +1,457 @@
|
||||
|
||||
|
||||
- type: marking
|
||||
id: MothBodyClaw
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: moth_body_claw
|
||||
|
||||
- type: marking
|
||||
id: MothBurnLeft
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: moth_burn_l
|
||||
|
||||
- type: marking
|
||||
id: MothBurnRight
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: moth_burn_r
|
||||
|
||||
- type: marking
|
||||
id: MothFaceClaw
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: moth_face_claw
|
||||
|
||||
- type: marking
|
||||
id: MothSlashLeft
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: moth_slash_l
|
||||
|
||||
- type: marking
|
||||
id: ChimeraArmLeftMoth
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: arm_l_chimera_moth
|
||||
|
||||
- type: marking
|
||||
id: ProstheticArmLeftMoth
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: arm_l_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: TwistingArmLeftMoth
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: arm_l_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: ProstheticArmRightMoth
|
||||
bodyPart: RArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: arm_r_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: TwistingArmRightMoth
|
||||
bodyPart: RArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: arm_r_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: WingsBackstabbed
|
||||
bodyPart: Tail
|
||||
markingCategory: Tail
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: wings_backstabbed
|
||||
|
||||
- type: marking
|
||||
id: ChestChimeraFemaleMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
sexRestriction: [Female]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_chimera_f_moth
|
||||
|
||||
- type: marking
|
||||
id: ChestChimeraMaleMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
sexRestriction: [Male]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_chimera_m_moth
|
||||
|
||||
- type: marking
|
||||
id: ChestTwistingLeftFemaleMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
sexRestriction: [Female]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_l_twisting_f_moth
|
||||
|
||||
- type: marking
|
||||
id: ChestTwistingLeftMaleMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
sexRestriction: [Male]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_l_twisting_m_moth
|
||||
|
||||
- type: marking
|
||||
id: ChestTwistingRightFemaleMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
sexRestriction: [Female]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_r_twisting_f_moth
|
||||
|
||||
- type: marking
|
||||
id: ChestTwistingRightMaleMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
sexRestriction: [Male]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_r_twisting_m_moth
|
||||
|
||||
- type: marking
|
||||
id: ChestStarMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: chest_star_moth
|
||||
|
||||
- type: marking
|
||||
id: HeterochromiaMoth
|
||||
bodyPart: Eyes
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:EyeColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: eyes_heterochromia_moth
|
||||
|
||||
- type: marking
|
||||
id: FootChimeraLeftMoth
|
||||
bodyPart: LFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: foot_l_chimera_moth
|
||||
|
||||
- type: marking
|
||||
id: FootProstheticLeftMoth
|
||||
bodyPart: LFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: foot_l_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: FootProstheticRightMoth
|
||||
bodyPart: RFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: foot_r_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: HandChimeraLeftMoth
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: hand_l_chimera_moth
|
||||
|
||||
- type: marking
|
||||
id: HandProstheticLeftMoth
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: hand_l_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: HandTwistingLeftMoth
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: hand_l_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: HandProstheticRightMoth
|
||||
bodyPart: RHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: hand_r_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: HandTwistingRightMoth
|
||||
bodyPart: RHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: hand_r_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: BadmoltMoth
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: head_badmolt_moth
|
||||
|
||||
- type: marking
|
||||
id: HeadChimeraMoth
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: head_chimera_moth
|
||||
|
||||
- type: marking
|
||||
id: EyebagsMoth
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: head_eyebags_moth
|
||||
|
||||
- type: marking
|
||||
id: HeadTwistingMoth
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: head_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: LegChimeraLeftMoth
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SkinColoring
|
||||
negative: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: leg_l_chimera_moth
|
||||
|
||||
- type: marking
|
||||
id: LegProstheticLeftMoth
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: leg_l_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: LegTwistingLeftMoth
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: leg_l_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: LegProstheticRightMoth
|
||||
bodyPart: RLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: leg_r_prosthetic_moth
|
||||
|
||||
- type: marking
|
||||
id: LegTwistingRightMoth
|
||||
bodyPart: RLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: leg_r_twisting_moth
|
||||
|
||||
- type: marking
|
||||
id: TorsoIncisionMoth
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Moth]
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/moth.rsi
|
||||
state: torso_incision_moth
|
||||
@@ -0,0 +1,249 @@
|
||||
- type: marking
|
||||
id: ArmProstheticLeft
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: arm_l_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: ArmTwistingLeft
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: arm_l_twisting
|
||||
|
||||
- type: marking
|
||||
id: ArmProstheticRight
|
||||
bodyPart: RArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: arm_r_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: ArmTwistingRight
|
||||
bodyPart: RArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: arm_r_twisting
|
||||
|
||||
- type: marking
|
||||
id: ChestBackstabbed
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: chest_backstabbed
|
||||
|
||||
- type: marking
|
||||
id: ChestTwistingLeft
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: chest_l_twisting
|
||||
|
||||
- type: marking
|
||||
id: ChestTwistingRight
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: chest_r_twisting
|
||||
|
||||
- type: marking
|
||||
id: ChestStar
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: chest_star
|
||||
|
||||
- type: marking
|
||||
id: FootProstheticLeft
|
||||
bodyPart: LFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: foot_l_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: FootProstheticRight
|
||||
bodyPart: RFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: foot_r_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: HandProstheticLeft
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: hand_l_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: HandTwistingLeft
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: hand_l_twisting
|
||||
|
||||
- type: marking
|
||||
id: HandProstheticRight
|
||||
bodyPart: RHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: hand_r_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: HandTwistingRight
|
||||
bodyPart: RHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: hand_r_twisting
|
||||
|
||||
- type: marking
|
||||
id: SmileScars
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: head_smile
|
||||
|
||||
- type: marking
|
||||
id: HeadTwisting
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: head_twisting
|
||||
|
||||
- type: marking
|
||||
id: LegProstheticLeft
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: leg_l_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: LegTwistingLeft
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: leg_l_twisting
|
||||
|
||||
- type: marking
|
||||
id: LegProstheticRight
|
||||
bodyPart: RLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#E4E4E4"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: leg_r_prosthetic
|
||||
|
||||
- type: marking
|
||||
id: LegTwistingRight
|
||||
bodyPart: RLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: leg_r_twisting
|
||||
|
||||
- type: marking
|
||||
id: TorsoIncision
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Human, Dwarf, Reptilian, SlimePerson, Arachnid, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
followSkinColor: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/scars.rsi
|
||||
state: torso_incision
|
||||
@@ -0,0 +1,215 @@
|
||||
- type: marking
|
||||
id: SlimeNose
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [SlimePerson]
|
||||
forcedColoring: true
|
||||
followSkinColor: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: nose
|
||||
|
||||
- type: marking
|
||||
id: SlimeMouth
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: mouth
|
||||
|
||||
- type: marking
|
||||
id: SlimeBrain
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: brain
|
||||
|
||||
- type: marking # TODO: If we ever figure out how to make markings use shaders, make this unshaded! For now, this at least gives the right impression.
|
||||
id: SlimeEyeglow
|
||||
bodyPart: Eyes
|
||||
markingCategory: Head
|
||||
speciesRestriction: [SlimePerson]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:EyeColoring
|
||||
negative: false
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: eyeglow
|
||||
shader: unshaded
|
||||
|
||||
- type: marking
|
||||
id: SlimeLungs
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: lungs
|
||||
|
||||
- type: marking
|
||||
id: SlimeCore
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: true
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: core
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonehead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonehead
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonechest
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonechest
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonearmleft
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonearmleft
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonearmright
|
||||
bodyPart: RArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonearmright
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonefootleft
|
||||
bodyPart: LFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonefootleft
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonefootright
|
||||
bodyPart: RFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonefootright
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonehandleft
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonehandleft
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonehandright
|
||||
bodyPart: RHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonehandright
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonelegleft
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonelegleft
|
||||
|
||||
- type: marking
|
||||
id: SlimeBonelegright
|
||||
bodyPart: RLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [SlimePerson]
|
||||
followSkinColor: false
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
color: "#F8F8F8"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/slime_parts.rsi
|
||||
state: bonelegright
|
||||
@@ -0,0 +1,125 @@
|
||||
- type: marking
|
||||
id: ChestCutHere
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: chest_cuthere
|
||||
|
||||
- type: marking
|
||||
id: ArmDollJointsTattooLeft
|
||||
bodyPart: LArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: l_arm_doll
|
||||
|
||||
- type: marking
|
||||
id: ArmDollJointsTattooRight
|
||||
bodyPart: RArm
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: r_arm_doll
|
||||
|
||||
- type: marking
|
||||
id: HandDollJointsTattooLeft
|
||||
bodyPart: LHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: l_hand_doll
|
||||
|
||||
- type: marking
|
||||
id: HandDollJointsTattooRight
|
||||
bodyPart: RHand
|
||||
markingCategory: Arms
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: r_hand_doll
|
||||
|
||||
- type: marking
|
||||
id: LegDollJointsTattooLeft
|
||||
bodyPart: LLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: l_leg_doll
|
||||
|
||||
- type: marking
|
||||
id: LegDollJointsTattooRight
|
||||
bodyPart: RLeg
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Reptilian, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: r_leg_doll
|
||||
|
||||
- type: marking
|
||||
id: FootDollJointsTattooLeft
|
||||
bodyPart: LFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: l_foot_doll
|
||||
|
||||
- type: marking
|
||||
id: FootDollJointsTattooRight
|
||||
bodyPart: RFoot
|
||||
markingCategory: Legs
|
||||
speciesRestriction: [Human, Dwarf, Arachnid, SlimePerson, Oni, Goblin, Felinid] # Frontier: add Oni, Goblin, Felinid
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:TattooColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/tattoos.rsi
|
||||
state: r_foot_doll
|
||||
@@ -0,0 +1,98 @@
|
||||
- type: marking
|
||||
id: ScarsVoxRoadrashLeftHead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: roadrash_l_head
|
||||
|
||||
- type: marking
|
||||
id: ScarsVoxRoadrashRightHead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: roadrash_r_head
|
||||
|
||||
- type: marking
|
||||
id: ScarsVoxBigslashLeftHead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: bigslash_l_head
|
||||
|
||||
- type: marking
|
||||
id: ScarsVoxBigslashRightHead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: bigslash_r_head
|
||||
|
||||
- type: marking
|
||||
id: ScarsVoxSlashLeftHead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: slash_l_head
|
||||
|
||||
- type: marking
|
||||
id: ScarsVoxSlashRightHead
|
||||
bodyPart: Head
|
||||
markingCategory: Head
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: slash_r_head
|
||||
|
||||
- type: marking
|
||||
id: ScarsVoxClawTorso
|
||||
bodyPart: Chest
|
||||
markingCategory: Chest
|
||||
speciesRestriction: [Vox]
|
||||
coloring:
|
||||
default:
|
||||
type:
|
||||
!type:SimpleColoring
|
||||
fallbackColor: "#666666"
|
||||
sprites:
|
||||
- sprite: _Impstation/Mobs/Customization/vox_scars.rsi
|
||||
state: claw_torso
|
||||
|
||||
|
Before Width: | Height: | Size: 819 B After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 339 B After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 339 B After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 248 B After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 206 B After Width: | Height: | Size: 4.2 KiB |
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by Zumorica",
|
||||
"copyright": "https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by Zumorica and Sha-Seng (github)",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
|
||||
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 208 B After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 576 B After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 751 B |
|
After Width: | Height: | Size: 947 B |
|
After Width: | Height: | Size: 718 B |
|
After Width: | Height: | Size: 711 B |
|
After Width: | Height: | Size: 848 B |
|
After Width: | Height: | Size: 847 B |
|
After Width: | Height: | Size: 718 B |
|
After Width: | Height: | Size: 710 B |
|
After Width: | Height: | Size: 815 B |
|
After Width: | Height: | Size: 722 B |
|
After Width: | Height: | Size: 798 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,963 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Drawn and coded by Carousel for Impstation",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "fizz",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "bubble",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.4,
|
||||
0.4,
|
||||
0.4,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.4,
|
||||
0.4,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.4,
|
||||
0.4,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.4,
|
||||
0.4,
|
||||
0.4
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "fishbowl1",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "fishbowl2",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
0.4,
|
||||
0.3,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dionalivingnymph",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.6,
|
||||
0.2,
|
||||
0.2,
|
||||
0.2,
|
||||
0.4,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.6,
|
||||
0.2,
|
||||
0.2,
|
||||
0.2,
|
||||
0.4,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.6,
|
||||
0.2,
|
||||
0.2,
|
||||
0.2,
|
||||
0.4,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.6,
|
||||
0.2,
|
||||
0.2,
|
||||
0.2,
|
||||
0.4,
|
||||
0.3
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dionabigfirefly",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25
|
||||
],
|
||||
[
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25
|
||||
],
|
||||
[
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25
|
||||
],
|
||||
[
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25,
|
||||
0.25
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dionafirefly",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dionapollendust",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "fadingstars1",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.2,
|
||||
0.3,
|
||||
0.1,
|
||||
1.2,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.2,
|
||||
0.3,
|
||||
0.1,
|
||||
1.2,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.2,
|
||||
0.3,
|
||||
0.1,
|
||||
1.2,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.2,
|
||||
0.3,
|
||||
0.1,
|
||||
1.2,
|
||||
0.3
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "fadingstars2",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1.0,
|
||||
0.2,
|
||||
0.1,
|
||||
0.6,
|
||||
0.2
|
||||
],
|
||||
[
|
||||
1.0,
|
||||
0.2,
|
||||
0.1,
|
||||
0.6,
|
||||
0.2
|
||||
],
|
||||
[
|
||||
1.0,
|
||||
0.2,
|
||||
0.1,
|
||||
0.6,
|
||||
0.2
|
||||
],
|
||||
[
|
||||
1.0,
|
||||
0.2,
|
||||
0.1,
|
||||
0.6,
|
||||
0.2
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "fadingstars3",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1.8,
|
||||
0.3,
|
||||
0.1,
|
||||
0.8,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
1.8,
|
||||
0.3,
|
||||
0.1,
|
||||
0.8,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
1.8,
|
||||
0.3,
|
||||
0.1,
|
||||
0.8,
|
||||
0.4
|
||||
],
|
||||
[
|
||||
1.8,
|
||||
0.3,
|
||||
0.1,
|
||||
0.8,
|
||||
0.4
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationhead",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationchest",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationlarm",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationlhand",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationrarm",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationrhand",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationlleg",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationlfoot",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationrleg",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfconstellationrfoot",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfheadglow",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfmarkbear",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfmarkkangaroo",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfmarkkangaroolhand",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfmarkcobra",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwarfmarkspider",
|
||||
"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
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "spidermirror",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
5.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1,
|
||||
1.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1
|
||||
],
|
||||
[
|
||||
5.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1,
|
||||
1.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1
|
||||
],
|
||||
[
|
||||
5.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1,
|
||||
1.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1
|
||||
],
|
||||
[
|
||||
5.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1,
|
||||
1.0,
|
||||
0.1,
|
||||
0.1,
|
||||
0.1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mothglowantenna",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
],
|
||||
[
|
||||
0.3,
|
||||
0.3,
|
||||
0.3,
|
||||
0.3
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "mothfirefly1",
|
||||
"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,
|
||||
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
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 239 B |
|
After Width: | Height: | Size: 310 B |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": 1,
|
||||
"copyright": "Made for Impstation by Honeyed_Lemons_",
|
||||
"license": "CC-BY-SA-4.0",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "human_bodyhair_male",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "human_bodyhair_female",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Drawn by Carousel for Impstation",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "burqasolid",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "hijabchic",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "hijabsimple",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "niqab",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "tichelfashionable",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "tichelsimple",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "burqalizard",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "niqablizard",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "hijabchicvox",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "hijabsimplevox",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "tichelsimplevox",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "tichelfashionablevox",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"copyright": "gatheredlow sprited by Sha-Seng (Github), lowpigtails by Skeleskitty (Discord), frenchbraid by AftrLite (Github)",
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"states": [
|
||||
{
|
||||
"name": "gatheredlow",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "lowpigtails",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "frenchbraid",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1020 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 743 B |
|
After Width: | Height: | Size: 676 B |