From 0d7d05a9c1f42694b37df572ffe1a2ff997b8b52 Mon Sep 17 00:00:00 2001 From: ps3moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 04:58:09 -0700 Subject: [PATCH 01/15] Added Costumes/Clothing and Added Fixes --- .../Catalog/Fills/Lockers/heads.yml | 3 +- .../VendingMachines/Inventories/centdrobe.yml | 1 + .../Inventories/clothesmate.yml | 37 ++++++++++++++++-- .../VendingMachines/Inventories/salvage.yml | 12 ++++-- .../VendingMachines/Inventories/secdrobe.yml | 3 ++ .../VendingMachines/Inventories/theater.yml | 29 ++++++++++++++ .../Inventories/winterdrobe.yml | 6 +++ .../DeltaV/Entities/Clothing/Head/hats.yml | 20 +++++++++- .../DeltaV/Entities/Clothing/Head/hoods.yml | 11 ++++++ .../Entities/Clothing/OuterClothing/coats.yml | 12 ++++++ .../Entities/Clothing/OuterClothing/vests.yml | 17 ++++++++ .../Entities/Clothing/Eyes/glasses.yml | 4 +- .../Entities/Clothing/Eyes/misc.yml | 2 +- .../Entities/Clothing/Head/hats.yml | 2 +- .../Entities/Clothing/OuterClothing/coats.yml | 2 +- .../Entities/Clothing/Uniforms/jumpsuits.yml | 2 +- .../Catalog/Fills/Lockers/ourjobs.yml | 1 + .../Head/Hats/cardborg_h.rsi/meta.json | 2 +- .../legionnaireheadpiece.rsi - Copy/icon.png | Bin 0 -> 256 bytes .../Coats/suspiciouscostume.rsi/icon.png | Bin 0 -> 490 bytes .../salvage.rsi/equipped-INNERCLOTHING.png | Bin 699 -> 1361 bytes .../Uniforms/Jumpsuit/salvage.rsi/icon.png | Bin 515 -> 551 bytes .../Jumpsuit/salvage.rsi/inhand-left.png | Bin 430 -> 665 bytes .../Jumpsuit/salvage.rsi/inhand-right.png | Bin 438 -> 660 bytes .../Uniforms/Jumpsuit/salvage.rsi/meta.json | 2 +- .../Hats/skeletonmask.rsi/equipped-HELMET.png | Bin 0 -> 1310 bytes .../Head/Hats/skeletonmask.rsi/icon.png | Bin 0 -> 256 bytes .../Hats/skeletonmask.rsi/inhand-left.png | Bin 0 -> 563 bytes .../Hats/skeletonmask.rsi/inhand-right.png | Bin 0 -> 572 bytes .../Head/Hats/skeletonmask.rsi/meta.json | 26 ++++++++++++ .../Hoods/amonggrande.rsi/equipped-HELMET.png | Bin 0 -> 1701 bytes .../Head/Hoods/amonggrande.rsi/icon.png | Bin 0 -> 822 bytes .../Hoods/amonggrande.rsi/inhand-left.png | Bin 0 -> 1277 bytes .../Hoods/amonggrande.rsi/inhand-right.png | Bin 0 -> 1280 bytes .../Head/Hoods/amonggrande.rsi/meta.json | 26 ++++++++++++ .../equipped-OUTERCLOTHING.png | Bin 0 -> 3073 bytes .../Coats/skeletoncostume.rsi/icon.png | Bin 0 -> 1084 bytes .../Coats/skeletoncostume.rsi/inhand-left.png | Bin 0 -> 1033 bytes .../skeletoncostume.rsi/inhand-right.png | Bin 0 -> 1087 bytes .../Coats/skeletoncostume.rsi/meta.json | 26 ++++++++++++ .../equipped-OUTERCLOTHING.png | Bin 0 -> 880 bytes .../Vests/amonggrande.rsi/icon.png | Bin 0 -> 492 bytes .../Vests/amonggrande.rsi/inhand-left.png | Bin 0 -> 756 bytes .../Vests/amonggrande.rsi/inhand-right.png | Bin 0 -> 715 bytes .../Vests/amonggrande.rsi/meta.json | 26 ++++++++++++ 45 files changed, 256 insertions(+), 16 deletions(-) create mode 100644 Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml create mode 100644 Resources/Textures/Clothing/Head/Hats/legionnaireheadpiece.rsi - Copy/icon.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Coats/suspiciouscostume.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/inhand-left.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/inhand-right.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/inhand-left.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/inhand-right.png create mode 100644 Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/inhand-left.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/inhand-right.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/inhand-left.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/inhand-right.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 99bbe01943..310a8315f9 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -178,6 +178,7 @@ - id: ClothingHeadHatBeretHoS - id: ClothingHeadHatHoshat - id: ClothingNeckCloakHos + - id: ClothingNeckMantleHOS - id: ClothingOuterCoatHoSTrench - id: ClothingUniformJumpskirtHoSAlt - id: ClothingUniformJumpsuitHoSAlt @@ -191,7 +192,7 @@ prob: 0.1 - id: ClothingOuterHardsuitSecurityRed - id: ClothingMaskGasSwat - - id: DrinkVacuumFlask + - id: DrinkHosFlask prob: 0.8 - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml index b0e14e720c..ae22a36989 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml @@ -13,5 +13,6 @@ ClothingMaskGasCentcom: 3 ClothingHeadsetCentCom: 3 ClothingOuterWinterCentcom: 3 + ClothingOuterWinterCCWarden: 3 ClothingNeckScarfStripedCentcom: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 8887ab5b97..013a6de6d3 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -4,7 +4,7 @@ ClothingBackpack: 5 ClothingBackpackDuffel: 5 ClothingBackpackSatchel: 3 - ClothingBackpackSatchelLeather: 2 + ClothingBackpackSatchelLeather: 3 ClothingHeadBandBlack: 2 ClothingHeadBandBlue: 2 ClothingHeadBandGreen: 2 @@ -39,6 +39,7 @@ ClothingUniformJumpsuitJeansRed: 2 ClothingUniformJumpsuitJeansBrown: 2 ClothingUniformJumpsuitLostTourist: 2 + ClothingShoesTourist: 2 ClothingShoesColorBlack: 8 ClothingShoesColorBrown: 4 ClothingShoesColorWhite: 3 @@ -47,6 +48,8 @@ ClothingShoesColorGreen: 2 ClothingShoesColorOrange: 2 ClothingShoesColorRed: 2 + ClothingShoesBootsLaceup: 4 + ClothingShoesLeather: 2 ClothingShoesColorPurple: 2 ClothingHeadHatGreysoft: 8 ClothingHeadHatMimesoft: 3 @@ -58,6 +61,23 @@ ClothingHeadHatPurplesoft: 2 ClothingHeadHatCorpsoft: 2 ClothingHeadHatBowlerHat: 2 + ClothingHeadHatFlatBlack: 2 + ClothingHeadHatFedoraBlack: 2 + ClothingHeadHatFlatBrown: 2 + ClothingHeadHatFedoraChoc: 2 + ClothingHeadHatFedoraWhite: 2 + ClothingUniformJumpsuitSuitBlack: 2 + ClothingUniformJumpsuitSuitBlackAlt: 2 + ClothingUniformJumpsuitSuitBrown: 2 + ClothingUniformJumpsuitSuitWhite: 2 + ClothingNeckTieBlack: 2 + ClothingNeckTieBrown: 2 + ClothingNeckTieWhite: 2 + ClothingNeckTieRed: 2 + ClothingNeckTieBlue: 2 + ClothingNeckTieGreen: 2 + ClothingOuterHoodieBlack: 2 + ClothingOuterHoodieGrey: 2 ClothingOuterWinterCoat: 2 ClothingOuterWinterCoatLong: 2 ClothingOuterWinterCoatPlaid: 2 @@ -66,8 +86,19 @@ ClothingOuterCoatLettermanRed: 2 ClothingOuterDenimJacket: 2 ClothingOuterCorporateJacket: 2 + ClothingHeadHatTrucker: 2 ClothingHeadFishCap: 2 ClothingShoesBootsFishing: 2 - ClothingHeadTinfoil: 2 - ClothingHeadRastaHat: 2 ClothingBeltStorageWaistbag: 3 + ClothingEyesEyepatch: 2 + ClothingEyesGlasses: 2 + ClothingHandsGlovesFingerless: 3 + emaggedInventory: + ClothingHeadHatFlatSyndie: 1 + ClothingUniformJumpsuitOperative: 1 + ClothingUniformJumpskirtOperative: 1 + ClothingUniformJumpsuitSyndieFormalDress: 1 + ClothingUniformJumpskirtSyndieFormalDress: 1 + ClothingUniformJumpskirtTacticalMaid: 1 + ClothingHandsTacticalMaidGloves: 1 + diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index 9c12d048eb..eee6ee546f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -1,12 +1,18 @@ - type: vendingMachineInventory id: SalvageEquipmentInventory startingInventory: + ClothingUniformJumpsuitSalvageSpecialist: 4 + ClothingBackpackSalvage: 4 + ClothingBackpackDuffelSalvage: 4 + ClothingBackpackSatchelSalvage: 4 + ClothingBeltSalvageWebbing: 4 Crowbar: 2 Pickaxe: 4 OreBag: 4 - Flare: 4 + Flare: 6 FlashlightLantern: 2 Floodlight: 2 - HandheldGPSBasic: 2 - RadioHandheld: 2 + HandheldGPSBasic: 4 + RadioHandheld: 4 WeaponCrusherDagger: 2 + \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index f47c163708..9600263db2 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -16,7 +16,10 @@ ClothingUniformJumpsuitSecSummer: 3 ClothingHeadsetSecurity: 3 ClothingOuterWinterSec: 2 + ClothingOuterCoatGreatcoat: 2 ClothingOuterArmorBasic: 2 ClothingOuterArmorBasicSlim: 2 ClothingEyesBlindfold: 1 + ClothingHeadHatTacticalMaidHeadband: 1 + ClothingMaskNeckGaiter: 2 ClothingShoesBootsCombat: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index e283e2d5aa..347a68d939 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -11,6 +11,7 @@ ClothingOuterWinterMusician: 1 ClothingUniformDressRed: 1 ClothingMaskJoy: 2 + ClothingHeadHatFez: 2 ClothingHeadHatCardborg: 2 ClothingOuterCardborg: 2 ClothingHeadHatSombrero: 2 @@ -34,6 +35,7 @@ ClothingHeadPaperSackSmile: 2 ClothingHeadRastaHat: 2 ClothingEyesBlindfold: 1 + ClothingEyesGlassesOutlawGlasses: 2 ClothingUniformSchoolGakuranBlack: 2 UniformSchoolgirlBlack: 1 UniformSchoolgirlBlue: 1 @@ -59,11 +61,38 @@ ClothingUniformJumpsuitDameDane: 1 ClothingShoesDameDane: 1 ClothingOuterDameDane: 1 + ClothingShoeSlippersDuck: 1 + ClothingHeadHatPirateTricord: 1 + ClothingHeadHatPirate: 1 + ClothingUniformJumpsuitPirate: 2 + ClothingOuterCoatPirate: 2 ClothingUniformJumpsuitSober: 1 ClothingOuterClownPriest: 1 ClothingUniformSkirtTurtle: 2 + ClothingUniformRat: 1 + UniformJabroni: 1 ClothingUniformSwimsuitBlue: 2 + ClothingUniformJumpskirtPerformer: 1 + ClothingShoesBootsPerformer: 1 ClothingCostumeBunnySuit: 2 ClothingHeadHatBunny: 2 + ClothingHeadHatCatEars: 2 + ClothingHeadHatWitch1: 1 + ClothingOuterVestAmongGrande: 1 + ClothingHeadHatSkeletonmask: 1 + ClothingOuterSkeletonCostume: 1 + ClothingHeadHatRichard: 1 + ClothingMaskBat: 2 + ClothingMaskJackal: 2 + ClothingMaskRaven: 2 + ClothingMaskBear: 2 + ClothingHeadHatSquid: 2 + ClothingMaskBee: 2 + ClothingMaskFox: 2 + ClothingMaskRat: 2 emaggedInventory: + ClothingOuterArmorTouseiGusoku: 1 + ClothingHeadHelmetKabuto: 1 ClothingShoesBling: 1 + ClothingUniformJumpsuitGalaxyRed: 1 + ClothingUniformJumpsuitGalaxyBlue: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml index 55144b606e..88eb406300 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/winterdrobe.yml @@ -10,7 +10,13 @@ ClothingNeckScarfStripedOrange: 3 ClothingNeckScarfStripedPurple: 3 ClothingOuterWinterCoat: 6 + ClothingOuterCoatOvercoat: 3 + ClothingOuterHoodieBlack: 2 + ClothingOuterHoodieGrey: 2 ClothingOuterCoatBomber: 3 + ClothingOuterCoatJensen: 3 + ClothingOuterCoatLeatherJacket: 2 + ClothingHeadHatUshanka: 4 ClothingHeadHatSantahat: 2 ClothingHeadHatXmasCrown: 2 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index 7899510b12..52acaa605d 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -68,4 +68,22 @@ attackRate: 1.5 damage: types: - Slash: 8 \ No newline at end of file + Slash: 8 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatSkeletonmask + name: skeleton mask + description: it's a beautiful day outside. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hats/skeletonmask.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hats/skeletonmask.rsi + - type: TypingIndicatorClothing + proto: robot + - type: IdentityBlocker + - type: IngestionBlocker + - type: Tag + tags: + - HidesHair \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml new file mode 100644 index 0000000000..ed1c8009b9 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml @@ -0,0 +1,11 @@ +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHatAmongGrande + noSpawn: true + name: among grande hood + description: sospechoso... + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hoods/amonggrande.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hoods/amonggrande.rsi \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml index 3e0ca72608..ce23326b9d 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml @@ -90,3 +90,15 @@ coefficients: Slash: 0.9 Heat: 0.75 + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterSkeletonCostume + name: skeleton costume + description: Once we're dead, the only thing that's left is bones, hee hee hee!. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi + diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml index cdc7958407..ff09e7636c 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml @@ -37,3 +37,20 @@ Heat: 0.9 - type: ExplosionResistance damageCoefficient: 0.9 + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterVestAmongGrande + name: among grande + description: Sospechoso... + components: + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatAmongGrande + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi + - type: TemperatureProtection + coefficient: 0.5 + - type: TypingIndicatorClothing + proto: lawyer \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index ce1bf45973..1f478e0c9c 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -80,8 +80,8 @@ - type: entity parent: ClothingEyesBase id: ClothingEyesGlassesOutlawGlasses - name: outlaw glasses - description: A must for every self-respecting undercover agent. + name: silly glasses + description: Suddenly you look unrecognizable wearing these. components: - type: Sprite sprite: Clothing/Eyes/Glasses/outlawglasses.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml index 06ff347172..00b0942a91 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml @@ -2,7 +2,7 @@ parent: ClothingEyesBase id: ClothingEyesEyepatch name: eyepatch - description: Yarr. + description: A small patch worn to cover a scar. components: - type: Sprite sprite: Clothing/Eyes/Misc/eyepatch.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index d657fc28de..de0133e220 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -650,7 +650,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatTacticalMaidHeadband - name: tactical maid headband + name: red headband description: "A red headband - don't imagine yourself a Rambo and don't pick up a few machine guns." components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 16bf7e4476..2f3c1119bf 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -251,7 +251,7 @@ sprite: Clothing/OuterClothing/Coats/clownpriest.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/clownpriest.rsi - + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterDogi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 80600fceef..8fb186875b 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -86,7 +86,7 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitSalvageSpecialist name: salvage technician's jumpsuit - description: It's a snappy jumpsuit with a sturdy set of overalls. It's very dirty. + description: Standard uniform for exploring the unknowns of space and its many deadly inhabitants. It's very dirty and smells of welding fumes.. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Lockers/ourjobs.yml b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Lockers/ourjobs.yml index 16736441be..cff8ba88f8 100644 --- a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Lockers/ourjobs.yml +++ b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Lockers/ourjobs.yml @@ -8,6 +8,7 @@ contents: - id: ClothingHeadsetAltMystagogue - id: ClothingOuterHardsuitMystagogue + - id: ClothingNeckCloakMystagogue - id: PlushieSlime prob: 0.1 - id: DoorRemoteResearch diff --git a/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json index a470e00944..76a92f01d8 100644 --- a/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Made by @ps3moira#9488", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/legionnaireheadpiece.rsi - Copy/icon.png b/Resources/Textures/Clothing/Head/Hats/legionnaireheadpiece.rsi - Copy/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..96afd82b02e37d7cd4db9071715915138669acf4 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}yF6VSLn2z= zUS7y|$UxxOM|+mT#tRHInhx*>8y=Jvai7p3c`t#_+_Z7#Oos&=U6LQT6*YLW&Kp#6 z7&XO;H$A9ZmVRsZmuyGPrC0W6@67wsGjWw&`pnOkve%#O<6UsOc@x6~HRmgNd>jgi zv-ZC}FTHYc?Dn1c%naWyt4=wZ%~~V|UmdKI;Vst E0P!AX%K!iX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/suspiciouscostume.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/suspiciouscostume.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2508cc0b387fa328fa79fd23de1146fbd7e289 GIT binary patch literal 490 zcmVPx$q)9|UR9J=Wmc32_K@^2Q7KzIWn(YlH(&`)7P#HRf(vrp(ptQ2|1uUSXl-SXb z_z1kghKRJs%(Ctd+ zk`j;sHya%mx{AfQtULj5a+vUNuMdVPlZhi2z-m1E9)%WEILLJKxNm)`(3kH(4$ZxY z?E&!E`5?%AKNaD-1M7gV2imsHemFc6D|OzUJ+?^&#HC`x6{EC4l zY}>Xc_RtjoWDTgKQMs zXjr1J)C*P?FcATO13eLV6OLhtzO;bN^?)oEtyblzRuV9Ne5``i1T1;^6q+rmHmoF| zh!d(dTQjlx0^U65*8~96rg}rQ*_!l<>7q3p>D4O<$f3D;(+uS0O_N(R=|_yxWmH(Q gy>*|tEw%{47ZaF;ls^?b?*IS*07*qoM6N<$f|bhJl>h($ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/equipped-INNERCLOTHING.png index 8d9aa9cb1d1bd5cc6d67130432830a0b057d15e3..ad6b4f0e7930d82c2ec7e407740423fea6d68c52 100644 GIT binary patch delta 1353 zcmV-P1-AOT1f7>1iAV2X=HSW;%ytu z39JxQOQ0fn@q-ue%l}USnEcbHoKPGjsb?e9cjScGPKs;HNT9@?4sjmW z;d%;41TTIpdUE^&wQO2vA9*{-@|P3=7!*XjP&|1=0DnIPv;myg0VhAW9Q$4zaZZ(g zQ2~%`S!Es^RuV$F;QA&C7Ui^pvYtR2lf<e_!kwxdZ%8s+jzqH>M73%zyxsK z>poR@@goB8^qE`qn{AE&S$?SxLQoh)e~WeV%Ns$| zf3d&lTxvmmodEwV6)0yec4cFu-T!@hntmB8lz+yQ{w~n7Yoj>kKh98WO@nfOm)^|5_~TL`e$( z0{HYW9tsDtwjHg@7Waaa6DCRZ!&YH}sDIQZC`AB@6y}=esWx3heWy=AeWM&di!;E5 zdBB?(x^jo+Vvj@wsCbc50ywSe)Zh!dP9V{V-}1@(4LG>I8FuldDwx2!HSE zHMmqFpuT#!@_14L@B;a`lp?@Aw^AYJ3>AJ-`_~##k(FODOiwefmqY}JdVn80DF1cX za;POBy#*R})lq@6)IfFAOI;O@fZoGhqRn%n0lD#fe-!SBcULq5Ac7xAo1-_bJ#h6t zusyqS03n_ncq;x*-c9=+PdWnH)_>O(wMA_JS?)}-4E4hB271j;d|Z>@c7-yI8sbtQ zB>=mzECMec_INq%G3JC##zhihezs#>I+SyOAT$4?Vgr7CvW(T@3tR>)d9Dg^M`o#z z7QpSvR~kHzKlK7~@bwmOmdjKMycJXt{UW4#BPSkbtx!2(ab}8=pbC5^!9q$Rh&d<; zpptBYMo@EzasY)KzX5*)alY8B%;o?901jnXNoGw=04e|g00;m8000000Mb*F00000 LNkvXXu0mjfr-gTX delta 686 zcmV;f0#W_Z3cCf68Gi!+005o0f$RVP00DDSM?wIu&K&6g000DMK}|sb0I`n?{9y$E z002KwOjJct3w*bW8}sw?g&W2&08yejO;jAjmdT^Bk!I#W|qYHDhYj+5Eh*()n6 zKR-WfOeUfi=zxHLz`(!&007aA@i+hg02OpnPE-H?|NsC0|9}7g|NsC0|NsC0|Ns90 zE7^VO00009a7bBm000id000id0mpBsWB>pG=PAPj&Lqd;rd)z0^S z)+I4r2?)FEcDMcT+l>-}pNgIV)*o^R4uSBi0ziqjb`Q=B!%*b200>8(Fe2?6I8OlD z+KBM%!!!jNhkud6H0>EAKTV`sLJf{dqChQotya}>=CIAc@$bB1qqIqHg`TV2D zV-Q0WLWJ5N`4j>Xg^=?6mw;D>59RZ7tC2@W(sqfM^8BMSj^i3p1sFB*$VfslAPcg5 zex``XcfgIsB`i>q#Y!PiUKX6r^X2U_pHCK-T<3TFyMJ1&xGQ*Iafw`k{#&d#fh>_M zqs1li6!=m01bqLz(rrN!x`N0n*%rvj`7-{qKwg3VizI^f8r+zz*=IMO3tr+790K7G zlmY-8tlMBfC=Rh-1&Cx1VbKn^OD<4D=Xf)?Px$;Ymb6R9J=Wlrd}DKp2J}l@6jYLKW1N zaD!u0WIWjcLkXly4INDAVCo;xzmYxp8~p(-okF*C3KUO4ff6iC_Vj;xUHQKIA zEm|7F-B{4G=yZ2{@5g)Z9TXH46#S38-08^s{&je$v-w^3t$!S^Ciu-du2+^HK7BR@ z{hqY!5`cXEXp8s99}S(F4^%e}`aL;bP1rT|2+uF*zJ5b%yCp5VM0kF|uCd2>HDS>2 zX}O`?K)ch%Z`L`HN4Q>@Q8>h}Rj}+0T(8WDJi>3*X?NN>`f3dv9PZ0Fo*~jDezQ&( zO=C9#`WZeFq+cYZs6A{jKU$7y#atb4N+l4n~_|7y^(OME#FupE=% zG*GUq9Kzry__x!1c;l zj!CWB(0T{7GXP*Y=0EFyuIU_u))4^gv^D{lFH+nmcK&4(z6Mvi<M{u|6smI0T`Y|h$JJr9BJKxf`WpAU%&0(|2ltN Ru>b%700>D%PDHLkV1n@E0bu|D delta 490 zcmV7>rsOj4QMW6AQ?oY^cIoaA{w+6 zg}RGF5pJ@=Hl0-}ut)qs0 z|D59zRNeOWnjWLMFbP1L)@=t7F;&{MZUCAKlW2O3G3Kp%F9E=#L=5oJpBSaTLRq@h zKfK449stN>OMkTMKGr@Ju4&Ku{A98v8r>+t0u$0!dh?pY^18}adJ|Wguzcv(FDEzZ zWxH!*c$I)6D#{R01VTu6dWdeFfz?FR0yrvO*iHkAprO7RAtZkPJ+Ihz?-|HsOQd#M zX*z8p6bhlLD)D%nR4RpG807PLa=9Gv!@VgO@A<`^`C}6BWN-gyJP3i^PR0 z)fmdMSP^oV9*SENt-G6@nr``i7jv7m{U&(ipC_A%r&uU2o|xhA`{0RW!!7J1?~;9!4O zv_=NDLwnFKu4dY|LwjhA3>@t5y885{^X}6xt~}>C@ihP^r^h0hjw7MOaJ_jBYkZ4p zwQ6@v&8y;i^M4!(C5B`=j+4{lg`K{ir{-1r{KKP)u*SFWlIMo6C2(`|4IQHoz1@YD z&mo&x!=?Tihes6w03D+b0MOgr2j}g)d1c>ZHnZj_&kbKQVA5Ftu*@O!b{DzqYgpzF z0KYnFnM3>eWI&dc=Z5c%M9r(h`aZ@^Nrhz&kxa+!wttS%M`YzWKAklYiH6bq(sX=3 z*?CTUZ-SFf%-aB`kGt)x>^vvF2OyKmiAXezgc6%OWfMvak!Tp1RL<3gB|FcFv?Txl zk!X0PeY(xd5|EYWM9L2#04S*I0D#`WMB>GY{fKp--u(LLd4D2p59kd{q?Aw)n7r|7cD zu0{uH0AyFA0f}{iWsqHs1_Cw%{zmmUaK#1L)#E_T06>2AIB)|XyLuehB>>2&9tY}M mV4AGzap0B!tH(qn(@)%C*xN|F2$%o>002ovP6b4+LSTZo0y`Z5 delta 415 zcmbQqx{i5*WIZzj1H;_yjcNS%G}x0G|-o zrM2=ITph^_6IV4Tc*z%C+pN)VcC0#9d{UnDqAEEX8=LIx?8e5%0|yS|2WfX@NCEX# zDlQcQQi3Hxe!>6I0E6n<`k6^US%{ z1YF%k+^$6Z`=5Q9VcDdevpvmCAF9~xn8dte=ajk>jy4C0CPjgNK@Pz?r+@D@nsp(| zs`#@~|IMj^N6!|;?^?siV)sOsv(MG(ozikhNQOE=PW{5!T;YaiW?Uu3vsqRw?Pa=q>6r41Y1=p*yl=BCSenap r;gVZpUgm520Nq@X3^@sXkC)6QbH3V4c$Fvz^fZH~tDnm{r-UW|ms+hN diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/inhand-right.png index 24602b7b37c7b44a96e2e056f4b9df1606f042d9..34fcba2b04423bedd5f4d04d8e537989be89493e 100644 GIT binary patch delta 646 zcmV;10(t$m1C#}j8Gi-<0063Kaozv`00DDSM?wIu&K&6g00K@)L_t(|obB1qYuaEO z$MLsg2N^?JVg8^NwG3@f!66KxJ*>Tzp33?M_$Rc--rK*y+x~(53*E(o420pOWkIU2 z%4{to1Sdid*~v^z)TBD}8Q<4MeUc~nc?1 zd0)CU77spJ^I&-N2D!XZ_}u-M|s`UXzpK!GZ5f@pa(u0g~}` z+8twLzkg*@Ew2zl2qAyO9<5?!Y6dk8p#n>yyOHntfRgC?ZIRL6vjQyH< z3#e8x_G{)0P_1I@m#0NbwTiJHo)$sXD#m_z8UWQQ#(wy^1wf68u^*lvgh0KDu@}D9 g0I9$VA^tai01^1qa`Pv1M*si-07*qoM6N<$f|=AZ`v3p{ delta 423 zcmbQjx{Y~)WIZzj1H;_yjcNS%G}x0G|-o zrM2=ITph^_6IV4Tc*z%C+pN)VcC0#9d{UnDqAEEX8=LIx?8e5%0|yS|2WfX@NCEX# zDlQcQQi3Hxe!>6I0E6n<`k6^USAT6F51e9BU@GogM7_pSq%Sz{mU>{ak#KF{VXaroDa z<0tz+o3!1vd~EXjG|z? z@bzbZj!1-wUzS0h-ipnE3>iI)2bNebJ$a1tdT#xj+oyIqP4;C9V0f1d)Uk`h?jfuH zxu0gIE5B;SUSOT4_k!vCUY5kOYhLhldTZ@+U~THs6KPzsh%@BC`V6MprUi?*T@+Tm z;1ToyN?w}Or5Df$6uN4!AP`dG_U(cGpS=fenQt%pYV&f(>SUnj89ZJ6T-G@yGywp4 CytW4b diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json index f3d278715b..9d011e4940 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0a1ae39f0fb7353b0704f27d1599a567891f727c. In hand sprite scaled down by potato1234_x", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/a3849062b8756e3c2176fa0b9bd80aef9facc3ef. In hand sprite scaled down by @ps3moir#9488", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..64a9b284278be988bce67dd4f9dd35e65fc25166 GIT binary patch literal 1310 zcmV+(1>yRMP)r6^C|EamY}eEQm^Rlqwd%LTM|s>R@u|7c^-|Qd}Gb*Mfr| zi&X~~XI&j!1wrrw#L>w~(M3x9Us7lhPeENGIZAF25@F zz9N8Ogb)KHX6nhzVium`>mEM7-bHzq_qjjEfKo6S;1h}Gm~L3a8^p0qOXs{#9A;%n zAwDObFzABBk6f2se&bwnSm2pqBb%Nl4ik%|E|$BPl?|16hB%_A8s!T)mle)ioYiWb zweQJa7%XTj8LrbDMFLAmA_WmL>ZqU!3sG7%QcR?2Kknflar`NA$>gelkz)ZhsE`~# z_#gc4)+|m>xkAEqeYH@!ENB; zx}(W^z~v4w^rTCMmKj! z>+bE}GwuF<0FHWcvVlr!%>V!cTuDShRCt{2+D~Ykbr`_$?<+c!+PSyg()SG}A%jE@ zO4vH^mN9q_qsZ8KZ9&%c;6chRdMNc)hSba0K|BmZC{er#!Wi;GS@2?68rq#qWHm`i z-leYD)-`n=eje%@o4VnCFH1mtJ`nQ$N#5uAJ$dtcL!K9e_+K-0-;i}2tV9~GQd0gl zE0H$5N{PJdzS!)Z5#NrdXjIFc_;x&HG^*u5@wEz&bsU3K%PvU*yC{evI7Fax0&?AEyP^|io7cuD8QRw7NrvQ*x6nY(ljfVoTO$h$5P%TiV% zP1bR=5_n!&$H7i!x(5#siZOO!hDNol>|{p!xLO79Dy6+o9{B#f523xW_Y9mJzufh; z=!M4msv5hv@b}<-p%`Nq7ig@nYR7*$NFwvO0!854&!*v{>&#C~L3<;}p#s~gm-v0R z&8wj>L(z2L<7gGYN~DdOxvMJgx_oi%D?a^Xfl6(S4`$x?Cr87plmaL7Z|r2oxbfx3 zDxMl;dux;8Pq#Sn?r8>xZc{B6u#*`B^yYxTli-{0jB-44n!BsF`1wwuZRk%#Dw7Y;(=u9q7vPoD6_tn`_LCk1{)XsxuFCa?+$V3Fcjwtm7DfT3K2oT26B1 z`gahDvAq0Epag{*i%!F#B(s5JCtcgb+dqA%qY@2=Nqu0wya~ U;#oNOW&i*H07*qoM6N<$f}h-qvj6}9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..96afd82b02e37d7cd4db9071715915138669acf4 GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}yF6VSLn2z= zUS7y|$UxxOM|+mT#tRHInhx*>8y=Jvai7p3c`t#_+_Z7#Oos&=U6LQT6*YLW&Kp#6 z7&XO;H$A9ZmVRsZmuyGPrC0W6@67wsGjWw&`pnOkve%#O<6UsOc@x6~HRmgNd>jgi zv-ZC}FTHYc?Dn1c%naWyt4=wZ%~~V|UmdKI;Vst E0P!AX%K!iX literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..dc693b12054236d3dc67e93581ffa03984dbaaf7 GIT binary patch literal 563 zcmV-30?hr1P)Px$?MXyIRCt{2+COL$VHn5pZ$&VLinMevG-}1#Nkmg{yCS?p2@cMt1!?KvAf<~- z=@=a9)b9jLCkr1kt4s)a)01`?tS08 z=e^;1K}1AEL_|bHq{sBx3hWr;2j{z`Qsn2vZQrT$HiA0F_*3~s=pTVb4Zx2w2*(&d z_hUctU$0vE63%rqSor3Ftp`t` zQEMH6sr+KwXZ@%4x!INW!2_f+ z78b`CfBaUK>$fL4+}mNl60P%&G5*(sYIuF^#;DalfryBRh=_=Yh=_=YNKZ&ywdHJq zG;YPnN^#Vdv!(N+!##+(cc81~ahrmo>(czg){WN23GUvXiB&dF%me`8UW35p^ib@W ziJE}&^c;nv8(tsPf5eWNs0kQ8{={-V%hJq5xDI@LyAf+4Ow=Oy{-DD1jStZDD8G40 z-K+M_U*PvZ{r!qdIy1_}OGDJX>i_PRh=@p%odUYivT7qCmdyYF002ovPDHLkV1jM| B75M-F literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..3edb143a7963db58492456443658d3e06a0c77c2 GIT binary patch literal 572 zcmV-C0>k}@P)Px$_DMuRRCt{2+COL$VHn5pucgu}bg4Kr^wbvrOj0z0+ZEv*LU8D8T9B3w4pOqX z6vyCDw@e+nbV-YwAc(^)4OFlgLg}OxttP}l>>^E^&LLhg_0E=F4R`eSS?=z=_YKeU za?joH1VltcL_|bHL{6DAVK*FOJpa7xx}o#p>ZtMehAqzI^3XpF%{qXWq)l*)@v`^k zz_OuLgMY;T*PvsJS9VcF>RiXQ|9^s{ zh`a$`8{hZO3#AIx$(g7>*;U7W2mG${b{SYU^Ha9~SS&7|RBT-l=_TlILTY=2Cri)4 zvf0>JJ)zLLBhm%{?Cmw_J=@3nt5q7c9RS|GUQf(dKtx336#E6HbF83DCQ^_90000< KMNUMnLSTXxj1qkS literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/meta.json new file mode 100644 index 0000000000..76a92f01d8 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hats/skeletonmask.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by @ps3moira#9488", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..cc3f42450e7390bd0b61ed1ce709204e480e5713 GIT binary patch literal 1701 zcmV;W23q-vP)EX>4Tx04R}tkv&MmKpe$iQ>7vm1uKX;WT;LSL`5963Pq?8YK2xEOfLNpnlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=H{g6A|?JWDYS_3;J6>}?mh0_0Ya_BG^=e4&~)2O zCE{WxyCQ~O5k?O}=)<7QEMr!ZlJFg0_XzOyF2=L`&;2>N)SShDfJi*U4AUlFC!X50 z4bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do()2TV)2(egbVWovx(bR}1iKD8fQ@)V# zSmnIMSu0goAMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4P zwdfJhy$xJkH#KDsxZDBypA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4RCM> zj1(w)&F9@6t-bwwrqSOIJTr2U{IKw8000EsNkl7%Q6vzL&sqxxz6D^TY z>|7uhRPmt*p`x6SB1=`&9IQ10PEFI~j>3&YC8Tmfg4{SI4ebpHTde}3hbV$v0u@3j zO;m+LfP))?l&m&#ylXbz;gGJo-ksf@wbvmj^OGXQ6KDVhATq?JRh_$j@wY!`-TgmYzdvXHf9>idFm!xq zJ+ADu`Rqwz0xy@pS@!FD>(@;Hz~t+%;ES7I;_CbFvg*tv zzZ*~uz!GkPuno~EGUbe(S2f@M&L}Y~B_Znu04q?2#{kn1Ng>k<0Ju{<^tj*fFF)tE z-+0sG1p~Ji=iF^^;FLeFY6uF2Vc*kW3WH8)iwA(cD^s(3SEfAYLY$}}yBYR9jYtMC zEE8MGM1D(|$p5|i{R^}{wh?~#{8Jc~3BxiYD|M1k&wztQ1ARR`p7v7BK=DcB`(tME zqonIV?0@yOZvo)DPdePF|wo#{!50epk4;WQdVNI6X3X5^L|EQ`8 z0N~VtwpiL27MKpfQB@V9Od3^*IOmHhH_~r`xEFOA@OVHwvGgqC@qjWQK(EF6dp<70 zbnE8ZC=Q3i;cz${4u`{erZ`je0o~By%+v>TO9!S`Vs?s}g+ivc;pdK`-xv%kC6SY(ZX_{*k)?ah6q&8y z-IY}=Za!KY=EZtkCmgq#p*8mDY6o5p1OYBUOe`aF0 z1Km7xL`}h~u$t@e>qC76oHYUfy-wh?v!WZA%A9Y0maB)<(CG01_u>KI#Q;INd4var zOL=YM;br#@ZH!zf>{tCOI>OkmYS(xW#11=y+G6kWBAel&^H~C!40@^K*vdIl)$@7_~vJdP3pl<3Q4FTo4?mKQ- z)iB~($DQh-Ctum|AqW8F`msWFQ^$T)!+ur6o_2uoO2!SA9S`i@gp@SYo&hGFON=6Qk{>%ezfb^4725Bd|h*Rwm;VbXp7%mbLa< zJP`5-1Px>n90v=qgauV?YiyYQKum|=S%w?H-S8|INYK{iF+dp*N_y=?6go*tdX4(3 vjCu&3<|>gWI5(14k8n5~4u`|xa9a5nuXqZG-?Lh800000NkvXXu0mjfl=&tA literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c92f27446c87d9dd3925d6109c02928e9ef2fff2 GIT binary patch literal 822 zcmV-61Ihe}P)EX>4Tx04R}tkv&MmKpe$iQ?()$1v`j1WN4i%h>AFB6^c+H)C#RSm|XfHG-*gu zTpR`0f`cE6RR;BL;+afkw@7zKZ37qAElt@2E_Z;zCqp)6R|?V;3I*W(jJ_!c4BP@et6p!-eVjf38R{x^0~{Oz zBSp$y^Lcl7dvE`qY4-O6ZWD5)cX)k&0004PNklhOgM|`L2E&|bH4%G&)M>68#$2EZ2VnBRUDoQ{IFS> zwo*A-ryd}E+rg^U`S#y;ELf~vIfsi38(~D+4)PY169a(7+Hf4FT9l@^>8=1_q>ZOE z-~rMFD^_1#wSRc@L%+4YR($XG_kix_p?wOY+Da%(G+X}N#ih!`RYtgw=@PMgFc^?@8NG6drhre`O$Npf@3i*s<1 zfs5?#3Kajya$Lpt<8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..581de4ced9cca472c55e5f751da5ae2614281f51 GIT binary patch literal 1277 zcmVEX>4Tx04R}tkv&MmKpe$iQ>7vm1uKX;WT;LSL`5963Pq?8YK2xEOfLNpnlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=H{g6A|?JWDYS_3;J6>}?mh0_0Ya_BG^=e4&~)2O zCE{WxyCQ~O5k?O}=)<7QEMr!ZlJFg0_XzOyF2=L`&;2>N)SShDfJi*U4AUlFC!X50 z4bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do()2TV)2(egbVWovx(bR}1iKD8fQ@)V# zSmnIMSu0goAMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4P zwdfJhy$xJkH#KDsxZDBypA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4RCM> zj1(w)&F9@6t-bwwrqSOIJTr2U{IKw80009tNkl4}4qR>2e$UM;ARWUB=gQ&0kXcp|2ri4Z+;NfiM) zz=sPehSlDV=QT}*s^q&X^c@3p9q9E2_lL0#@M?gbFoaywGI`qJAY}*$YFfJoRV5Ei z(}IOe6Yq!0K)oTe>BJ;IZKZog1HWu>&R+8G144h zn9MV3HzydgGg#kfVYI%6pY?_}d#^G(R(o;f!;m@z43hx>Y8pbFz+4B0$uJjCw#w{C z^NK9vffNpyhnqvQ6}WeAJAy^mV=)f2mqTG(kR$wtFI#MIh;g!`5=9=j3x+zAP9mW2!bF8f;iOt7yq#AXVS!hUya3O zzmq1U-3#moI>5*Jjz*HL7Su?Q@-LZx zZ{@rMj4+B&VyDhzE&|G>3LhNk$HIq?c=r5dN7>@-o2Y4OU?hl(6#v~p6fze9g9H6| z@@?ha>*cpyW%}Le;M}7WWX=Hq@W8=Z(z?x<$r71#KoBb@PTt$CJn4mL<{YrT(ZbhL zBV+$QANle9`m4zsu$;}%x`t)OZZDHN!OBpXAMe}Q{QS26z;-O~tsE9@t4m(=zG0cM zcZ8W+1pr{QzJ@oY9CAl?ROgcc!` nAd$&A0O&jc2IUgU$`$wv_Y^g^;L};~00000NkvXXu0mjfKTKPi literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..83f371c6ddffaddc0875e5b1b4a92821dc52cdab GIT binary patch literal 1280 zcmV+b1^@bqP)EX>4Tx04R}tkv&MmKpe$iQ>7vm1uKX;WT;LSL`5963Pq?8YK2xEOfLNpnlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=H{g6A|?JWDYS_3;J6>}?mh0_0Ya_BG^=e4&~)2O zCE{WxyCQ~O5k?O}=)<7QEMr!ZlJFg0_XzOyF2=L`&;2>N)SShDfJi*U4AUlFC!X50 z4bJ<-5muB{;&b9rlP*a7$aTfzH_io@1)do()2TV)2(egbVWovx(bR}1iKD8fQ@)V# zSmnIMSu0goAMvPXS6bmWZkNfxsT)#vvg`Uwzx2Cnp`zgz>RKS{4P zwdfJhy$xJkH#KDsxZDBypA6ZQT`5RY$mfCgGy0}1(0dDXu6n&S_Hp_Eq^Yaq4RCM> zj1(w)&F9@6t-bwwrqSOIJTr2U{IKw80009wNkl>itic! zmm)-Vw=mV$P@$o*ZP=+2A*%19d$9(Q&F7_1#^&=9)*$v(dsGw$^u6fwJp(wYGnr#4Kc4=D$hT z@o8onsMaF5ogOj@zzPsOW&FRodhdQ$g_~Eec-Je-OTdiN@$6S?BhQ3R-@`I1<)8w9 zp|cF&veo|ncOl~hvUxZ>B=F~wouyKz|Q*Pz#v_5c3wP(X3)O?Mi~xT2%vR**xlN#?n*ab+MxY3$ZK0%_*c!<6@Ypk3q585;u`=7R z1vE77JlYY$Ov=Z^*@i8^Fd5(shi-5@A^d??4AZNh@m|!>7yyJ>P`GS0G>m&u@dxTB9;IR*pcf#vv3f{c2Xpg0sVGocQ0OgnuMKU5L3)*;@lKE&LQ?+-f5 zzFwYNtT(l|=3^7P15yB{=AEN-yv|U`=wfqGLzy{X}s_8SY;RCEFHhru!+6gXSc{%k0>jJC2pvxQ1r!wHedOt5W!?-Qff qL4`OYNRkY#4f6Kr{XwT?W%vhBt}!ajwmVD!0000!4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/meta.json new file mode 100644 index 0000000000..76a92f01d8 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hoods/amonggrande.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by @ps3moira#9488", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..8a428ebdd47b7d39b1cd5b3a0997fc8011d45c10 GIT binary patch literal 3073 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 P00000NkvXXu0mjfrTgI* literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a6fa89fab829a8db55297eb82b6fafdd74984afc GIT binary patch literal 1084 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json new file mode 100644 index 0000000000..72a7645000 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by @ps3moira#9488", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file From 851dd545f8af0d528286a1042aa1f5d66878dc67 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 18:58:45 -0700 Subject: [PATCH 02/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- .../Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml index ff09e7636c..0c13a7b1e8 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/vests.yml @@ -53,4 +53,4 @@ - type: TemperatureProtection coefficient: 0.5 - type: TypingIndicatorClothing - proto: lawyer \ No newline at end of file + proto: lawyer From 7d3752edb638b980d763616ae87e8daa8b3b414a Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 18:59:48 -0700 Subject: [PATCH 03/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml index ed1c8009b9..0387c77643 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml @@ -8,4 +8,4 @@ - type: Sprite sprite: DeltaV/Clothing/Head/Hoods/amonggrande.rsi - type: Clothing - sprite: DeltaV/Clothing/Head/Hoods/amonggrande.rsi \ No newline at end of file + sprite: DeltaV/Clothing/Head/Hoods/amonggrande.rsi From d2a3968a5dcca4129e23af56becb3ded98e60051 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:00:02 -0700 Subject: [PATCH 04/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index 52acaa605d..a8411b2b3a 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -86,4 +86,4 @@ - type: IngestionBlocker - type: Tag tags: - - HidesHair \ No newline at end of file + - HidesHair From fae945f6a8bbf40792b61d162c91e471844975d9 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:00:12 -0700 Subject: [PATCH 05/15] Update Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- .../Prototypes/Catalog/VendingMachines/Inventories/salvage.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index eee6ee546f..7cef41958b 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -14,5 +14,4 @@ Floodlight: 2 HandheldGPSBasic: 4 RadioHandheld: 4 - WeaponCrusherDagger: 2 - \ No newline at end of file + WeaponCrusherDagger: 2 \ No newline at end of file From 77913bd5c50ce734d8a3cdbb8d426c0723c452e6 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:00:26 -0700 Subject: [PATCH 06/15] Update Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- .../Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json index 72a7645000..d4a55efe91 100644 --- a/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/meta.json @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} From 5c670f60956411308827afc83ce540d9d2d8b29f Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:00:34 -0700 Subject: [PATCH 07/15] Update Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 2f3c1119bf..ae120bcb81 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -251,7 +251,6 @@ sprite: Clothing/OuterClothing/Coats/clownpriest.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/clownpriest.rsi - - type: entity parent: ClothingOuterStorageBase id: ClothingOuterDogi From e02f3aca542ff88b812c7d9e6dcbad187955b783 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:00:42 -0700 Subject: [PATCH 08/15] Update Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- .../Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json index 72a7645000..d4a55efe91 100644 --- a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/skeletoncostume.rsi/meta.json @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} From 184119e012df11e2965dc9b6d68734b6f3d9cc94 Mon Sep 17 00:00:00 2001 From: ps3moira <113228053+ps3moira@users.noreply.github.com> Date: Fri, 6 Oct 2023 01:02:54 -0700 Subject: [PATCH 09/15] Fixed In-Hand Sprite for Among Grande --- .../Vests/amonggrande.rsi/icon.png | Bin 492 -> 522 bytes .../Vests/amonggrande.rsi/inhand-left.png | Bin 756 -> 720 bytes .../Vests/amonggrande.rsi/inhand-right.png | Bin 715 -> 700 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/icon.png index 66ff0509764cefc1ad9bc9bab51a925aad02ac2a..843933002708599b6686229543a3d156851eb894 100644 GIT binary patch delta 483 zcmV<90UZA91BwKYF@MBKL_t(oh3%FSFW7&npshEh=0|39))-RTTA2(NI?r!q{t%v&o&XMC%?rUCKa|9tm2~HYy z9vUu(8@W8dYUX_}mYjdbX>}LR^RTb4W*j=4Ic_h0NnA&}ut+;l^L#AeOD>xai+{Yn z!44U(m?k)m@&yeIM7f0eapbtYtq!|A$2QQPsA8H*@iWI|Pg7?Vv=epj!K8msV#N6W Z@B|d*irsWHw_5-J002ovPDHLkV1ib|-!}jN delta 453 zcmV;$0XqJQ1ndKlF@L5>L_t(oh3%HVP69y?#(y3f@dVBFMvb)k1~w!n#!jKMr11qT zttfo~3n(oib~GeBf{pcs0LGGlcr3xYv*3?%z};>R4T*fsCNtm8e7ie4yRgE4$C~Pd z6u5r=qGC)Xau&@!Gj@GBrs!dI1$Q`7vDamjr(i01T8|RdHh(6Gu{gr%!|R(=TxkJb zjFRiRKJBzD={QmXQsAbyz7t)?;#`#~9PjN~e0(dzK69Dl1qdqs3o2_xLIP`F2SFa=>gXZ2E vMj-FjFvy}we`1s#quiYBt@`*@SRn{sI5>!Dq^aP;00000NkvXXu0mjf(@oVS diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/inhand-left.png index fbc53c9c2c15ead2faa4a8fa16ff2a4c9bab0ec2..23f448128b5cfc4e6abfaaaf2234e2d52343fa14 100644 GIT binary patch delta 697 zcmV;q0!IDx1<(bMBYyw^b5ch_0Itp)=>Px%ib+I4RCt{2+P!boFc=5mUs9xes1-63 zh3ys?7+AZqv0le8aR?-kx*!A+5+|`$WkVg1dfjfkn~-4Ydi)g`S{)Tj!%0=*s3K-S zY2C!m$2Fx*`##bQapKqUE60w`0SF<45JCtcgb+dqApkI8On+p5J(!}b-q3MH(Q#Gt z#_0m0=s3&JHQuo;0D!l+bn4v0yiIlAE=!NSC{)&IGENVsc*bt#%6%SVC*l|& z$<@7)Es!&|>e{&Fx~Iy zqt{ej*hVbhl}guWYw_d=qm6Zhmh(aWecSvDo*d<_UkL(3er9Dpk5Og#HyNiYZ30Fi zS9bK^aE8azU&=bV398Nnn7v+3M%_47wbiFCG`7!GyQz;qB8I0q8LpipjD56%2_AF)+S)W*!6i2 fP|$u!Mr!&CnG+;{*Z)+b00000NkvXXu0mjf!ZA@J delta 733 zcmV<30wVp;1@r}wBYy(BNklMl_zG8Q-2;{=ry+Z7Kh?=;5H z9fVmKdXO>ZMVKgp;KpP_@UVkpAltDXhPQ3Kco-_;P{MAt)pj_rRD=#{I*?A5gPP}| zBz8l$Buxr|?{{gF^#3LA^}VL>0uVw7A%qY@2qAXN>W&;RI)l@wK^r z?j&FT>eaOhZWp{abehLb9f#I-0qrLwl)tGED=(1#{2h;%HV-|Yk?+2E9{})R<_S8a zR)|{OQr<3C3yuvZH~@%R9-1hd`|GzC7E}K{XMO%`&sBW6^AH=CdeI@Znx8o+??k}O zVzEfrd|#^Sh<`=GC{^`;9zQIf&gKBX{PwNnop7}S(%GEZ;7~AtbT)@juy%@4RW}=D zB@X~AnZL)Z80-1`Zv*`}6gzbY=6()SR@Qhl%Xh!poy|4bKlV7 zMbUIN2V(?0O}$36tKD{9E{+38K`xFXjTsNFvc{7UFx0(+cxMFw5bvyDsC&nDetvrd z05HEjVmoh#>m9%t=irLiX903b;cLcsuT-MEe`$1Xc6 P00000NkvXXu0mjf7K~Y| diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Vests/amonggrande.rsi/inhand-right.png index 0ccb463801cdd3ba6ec70d98592cc521a7db5ded..4ab90a3a2d9b90cae9e142b8761187107e224789 100644 GIT binary patch delta 677 zcmV;W0$Tmc1-u22BYyw^b5ch_0Itp)=>Px%c1c7*RCt{2nmdovKoH0O&LPEdx83E? zU6BR~zQDC~v`HDdE0L~2Cy24j{kbmumM{;!bB(raPagI5F5rAdjZ}p`-Kx8|`&SRQL*5(;q$+72I`a7$$ z3L_kQULmh3BPWbEc=zfh{BG~LUKSVU2;&X;EaRrs4;pFBl6wXS@79hqJJSR73A4nh*>s8+NXPgYFz-1s`I@Z4Xy<=}rsOaT z!!QiPFbu;m48t%CQ!mt4+5d|E{y}Rtp_U+@ZPO9te*#wsnfH16+48Ntcjs;^ynqah z6hYsFaev@<9=(1Ot9n+Pu8EY2@vD%Piq~C*uR8txgV@@WkiRT^{r08S`~g!`@&FxI zh!{}-;A%rm39gw^8$d;Cr`{SKV$_{IVvWbY)E>ORLcvs8ra}A$$c`e>-OWE<00000 LNkvXXu0mjfwQ5P< delta 692 zcmV;l0!#h816TQ?l&Upi9(-UApZdSXg#DcGyFgTn}BAib#SX=rAZ~5MA2reh(mo5JCtcgb+dqA%u|sU1=-D8GmCumz6kUjF+}jeBPPH zq2)Ke4x8)hAGn*j#N!vwLtVTE-vuv@ejGz+zJ&7m7al+VG%(+8wEVH__W=M8H@D&U zECf*rUc@6| z{e7d=MLZHlqkq-4yl+Rwd`hJX0Q%GKzppVBK&e#q1qVHDD3vOLp5By3tE+#gT^aKO zz<&Ak-mv_p0_^S;UD|>HbH#!lx2?B7Fqq$HSboa|<+2hl*N^n;Xvk;##T(_a5*O4O z-hW#}BG7~?h(q&RmMb0!V_jN-EX%HSX~p*6{eJOC7=NlDLY8HhDu^TVpRpQLDphDZ z;A!y`9cSbF-QCxWQ_58H(?s9cN31uPY5A|5JCtcgb+dq zA@=lS`F{g{_TVztI-AEfjJ2dgdf6FvB)l~n`*ai50{1efTuh(yTXW3YCl(7r2 ze^7D(r=4SC6V-_(dW5T~Bo1D`bzINT%Gf&q0PZc_2H^as4-7dU@HZG^T-yOoIy=yB zq8$MA4o$44lGDsG7ZVrYZ29UmbIi@e1$gy)8!hLWFC2Gvpx?v=0D67*e4&GMI_=m$ aLVp11jp^GRP3dX?0000 Date: Fri, 13 Oct 2023 15:28:50 -0700 Subject: [PATCH 10/15] Update Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- .../Prototypes/Catalog/VendingMachines/Inventories/salvage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index 7cef41958b..90bd7eb519 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -14,4 +14,4 @@ Floodlight: 2 HandheldGPSBasic: 4 RadioHandheld: 4 - WeaponCrusherDagger: 2 \ No newline at end of file + WeaponCrusherDagger: 2 From b39635fb7761fc18c48d47a68767dd646dca76d3 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:28:56 -0700 Subject: [PATCH 11/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index a8411b2b3a..27d1888a44 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -87,3 +87,4 @@ - type: Tag tags: - HidesHair + From 824931a109b2522f2386acc59d440b08cc4cd6da Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:29:04 -0700 Subject: [PATCH 12/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index 27d1888a44..d3a9266ba9 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -74,7 +74,7 @@ parent: ClothingHeadBase id: ClothingHeadHatSkeletonmask name: skeleton mask - description: it's a beautiful day outside. + description: It's a beautiful day outside. components: - type: Sprite sprite: DeltaV/Clothing/Head/Hats/skeletonmask.rsi From 3f3d71a0c40dcf4f9c1e2a422223cbae91f7cb3f Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:29:10 -0700 Subject: [PATCH 13/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index d3a9266ba9..180736c6e8 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -80,8 +80,6 @@ sprite: DeltaV/Clothing/Head/Hats/skeletonmask.rsi - type: Clothing sprite: DeltaV/Clothing/Head/Hats/skeletonmask.rsi - - type: TypingIndicatorClothing - proto: robot - type: IdentityBlocker - type: IngestionBlocker - type: Tag From 43e171dd8c357b853992f99556bcb55869016733 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:29:20 -0700 Subject: [PATCH 14/15] Update Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml index 0387c77643..2129fe443d 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hoods.yml @@ -3,7 +3,7 @@ id: ClothingHeadHatAmongGrande noSpawn: true name: among grande hood - description: sospechoso... + description: Sospechoso... components: - type: Sprite sprite: DeltaV/Clothing/Head/Hoods/amonggrande.rsi From 2ee6b4939b6bcb20a33e29c276b1caa393830297 Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:29:37 -0700 Subject: [PATCH 15/15] Update Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> --- Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 8fb186875b..a179ba9baf 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -86,7 +86,7 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitSalvageSpecialist name: salvage technician's jumpsuit - description: Standard uniform for exploring the unknowns of space and its many deadly inhabitants. It's very dirty and smells of welding fumes.. + description: Standard uniform for exploring the unknowns of space and its many deadly inhabitants. It's very dirty and smells of welding fumes. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi