diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index 96fa465253..28172ee6c5 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -121,10 +121,10 @@ namespace Content.Server.Administration.Commands { var handsSystem = entityManager.System(); var coords = entityManager.GetComponent(target).Coordinates; - foreach (var (hand, prototype) in startingGear.Inhand) + foreach (var prototype in startingGear.Inhand) { var inhandEntity = entityManager.SpawnEntity(prototype, coords); - handsSystem.TryPickup(target, inhandEntity, hand, checkActionBlocker: false, handsComp: handsComponent); + handsSystem.TryPickup(target, inhandEntity, checkActionBlocker: false, handsComp: handsComponent); } } diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index 533cfc0675..98e20fe534 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -1,34 +1,28 @@ using Content.Shared.Preferences; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Shared.Roles { [Prototype("startingGear")] public sealed class StartingGearPrototype : IPrototype { - [DataField("equipment", customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] - private Dictionary _equipment = new(); + [DataField] + public Dictionary Equipment = new(); /// /// if empty, there is no skirt override - instead the uniform provided in equipment is added. /// - [DataField("innerclothingskirt", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string? _innerClothingSkirt; + [DataField] + public EntProtoId? InnerClothingSkirt; - [DataField("satchel", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string? _satchel; + [DataField] + public EntProtoId? Satchel; - [DataField("duffelbag", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string? _duffelbag; + [DataField] + public EntProtoId? Duffelbag; - public IReadOnlyDictionary Inhand => _inHand; - /// - /// hand index, item prototype - /// - [DataField("inhand")] - private Dictionary _inHand = new(0); + [DataField] + public List Inhand = new(0); [ViewVariables] [IdDataField] @@ -38,15 +32,15 @@ namespace Content.Shared.Roles { if (profile != null) { - if (slot == "jumpsuit" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_innerClothingSkirt)) - return _innerClothingSkirt; - if (slot == "back" && profile.Backpack == BackpackPreference.Satchel && !string.IsNullOrEmpty(_satchel)) - return _satchel; - if (slot == "back" && profile.Backpack == BackpackPreference.Duffelbag && !string.IsNullOrEmpty(_duffelbag)) - return _duffelbag; + if (slot == "jumpsuit" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(InnerClothingSkirt)) + return InnerClothingSkirt; + if (slot == "back" && profile.Backpack == BackpackPreference.Satchel && !string.IsNullOrEmpty(Satchel)) + return Satchel; + if (slot == "back" && profile.Backpack == BackpackPreference.Duffelbag && !string.IsNullOrEmpty(Duffelbag)) + return Duffelbag; } - return _equipment.TryGetValue(slot, out var equipment) ? equipment : string.Empty; + return Equipment.TryGetValue(slot, out var equipment) ? equipment : string.Empty; } } } diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index cf575fb4f2..d392cf7bed 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -37,10 +37,14 @@ public abstract class SharedStationSpawningSystem : EntitySystem var inhand = startingGear.Inhand; var coords = EntityManager.GetComponent(entity).Coordinates; - foreach (var (hand, prototype) in inhand) + foreach (var prototype in inhand) { var inhandEntity = EntityManager.SpawnEntity(prototype, coords); - _handsSystem.TryPickup(entity, inhandEntity, hand, checkActionBlocker: false, handsComp: handsComponent); + + if (_handsSystem.TryGetEmptyHand(entity, out var emptyHand, handsComponent)) + { + _handsSystem.TryPickup(entity, inhandEntity, emptyHand, checkActionBlocker: false, handsComp: handsComponent); + } } } } diff --git a/Resources/Prototypes/Roles/Antags/pirate.yml b/Resources/Prototypes/Roles/Antags/pirate.yml index e325643d3a..59290acd04 100644 --- a/Resources/Prototypes/Roles/Antags/pirate.yml +++ b/Resources/Prototypes/Roles/Antags/pirate.yml @@ -8,7 +8,7 @@ id: PassengerPDA belt: ClothingBeltUtility pocket1: AppraisalTool - innerclothingskirt: ClothingUniformJumpsuitPirate + innerClothingSkirt: ClothingUniformJumpsuitPirate satchel: ClothingBackpackPirateFilled duffelbag: ClothingBackpackPirateFilled @@ -24,7 +24,7 @@ pocket1: AppraisalTool pocket2: EnergyCutlass outerClothing: ClothingOuterCoatPirate - innerclothingskirt: ClothingUniformJumpskirtColorLightBrown + innerClothingSkirt: ClothingUniformJumpskirtColorLightBrown satchel: ClothingBackpackPirateFilled duffelbag: ClothingBackpackPirateFilled @@ -39,6 +39,6 @@ belt: ClothingBeltUtility pocket1: AppraisalTool outerClothing: ClothingOuterCoatGentle - innerclothingskirt: ClothingUniformJumpsuitPirate + innerClothingSkirt: ClothingUniformJumpsuitPirate satchel: ClothingBackpackPirateFilled duffelbag: ClothingBackpackPirateFilled diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index e199f168a2..b9b02e134c 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -23,6 +23,6 @@ id: CargoPDA ears: ClothingHeadsetCargo pocket1: AppraisalTool - innerclothingskirt: ClothingUniformJumpskirtCargo + innerClothingSkirt: ClothingUniformJumpskirtCargo satchel: ClothingBackpackSatchelCargoFilled duffelbag: ClothingBackpackDuffelCargoFilled diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index d2dfafd324..cb05847beb 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -45,6 +45,6 @@ ears: ClothingHeadsetQM belt: BoxFolderClipboard pocket1: AppraisalTool - innerclothingskirt: ClothingUniformJumpskirtQM + innerClothingSkirt: ClothingUniformJumpskirtQM satchel: ClothingBackpackSatchelQuartermasterFilled duffelbag: ClothingBackpackDuffelQuartermasterFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml index 0f7866f1a6..5cf4fd9449 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml @@ -17,6 +17,6 @@ shoes: ClothingShoesColorBlack id: PassengerPDA ears: ClothingHeadsetGrey - innerclothingskirt: ClothingUniformJumpskirtColorGrey + innerClothingSkirt: ClothingUniformJumpskirtColorGrey satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index 33d988749a..5ef2008d1a 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -28,6 +28,6 @@ shoes: ClothingShoesColorBlack id: BartenderPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtBartender + innerClothingSkirt: ClothingUniformJumpskirtBartender satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index 2647a93eec..35b858fb38 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -24,6 +24,6 @@ ears: ClothingHeadsetService outerClothing: ClothingOuterApronBotanist belt: ClothingBeltPlantFilled - innerclothingskirt: ClothingUniformJumpskirtHydroponics + innerClothingSkirt: ClothingUniformJumpskirtHydroponics satchel: ClothingBackpackSatchelHydroponicsFilled duffelbag: ClothingBackpackDuffelHydroponicsFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index 300af57cd4..647a54c9e2 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -22,6 +22,6 @@ shoes: ClothingShoesColorBlack id: ChaplainPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtChaplain + innerClothingSkirt: ClothingUniformJumpskirtChaplain satchel: ClothingBackpackSatchelChaplainFilled duffelbag: ClothingBackpackDuffelChaplainFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index ff9a0ab477..22532b071f 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -29,6 +29,6 @@ id: ChefPDA ears: ClothingHeadsetService outerClothing: ClothingOuterApronChef - innerclothingskirt: ClothingUniformJumpskirtChef + innerClothingSkirt: ClothingUniformJumpskirtChef satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index c701ed67ee..ed48ea2711 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -24,7 +24,7 @@ id: JanitorPDA ears: ClothingHeadsetService belt: ClothingBeltJanitorFilled - innerclothingskirt: ClothingUniformJumpskirtJanitor + innerClothingSkirt: ClothingUniformJumpskirtJanitor satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -37,6 +37,6 @@ head: ClothingHeadHatCatEars ears: ClothingHeadsetService belt: ClothingBeltJanitorFilled - innerclothingskirt: ClothingUniformJumpskirtJanimaid + innerClothingSkirt: ClothingUniformJumpskirtJanimaid satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 34a3ac74ac..2dd13d03a4 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -24,7 +24,7 @@ ears: ClothingHeadsetSecurity # TODO add copy of space law inhand: - right hand: BriefcaseBrownFilled - innerclothingskirt: ClothingUniformJumpskirtLawyerBlack + - BriefcaseBrownFilled + innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index 68d075f89f..02c26b2e9c 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -20,6 +20,6 @@ ears: ClothingHeadsetService pocket1: d10Dice pocket2: HandLabeler # for making named bestsellers - innerclothingskirt: ClothingUniformJumpskirtLibrarian + innerClothingSkirt: ClothingUniformJumpskirtLibrarian satchel: ClothingBackpackSatchelLibrarianFilled duffelbag: ClothingBackpackDuffelLibrarianFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index 862a7c25a8..76ae6a407a 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -31,7 +31,7 @@ mask: ClothingMaskMime id: MimePDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtMime + innerClothingSkirt: ClothingUniformJumpskirtMime satchel: ClothingBackpackSatchelMimeFilled duffelbag: ClothingBackpackDuffelMimeFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index c4e1dd1dfb..7b60f3f7f7 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -23,6 +23,6 @@ shoes: ClothingShoesColorBlack id: ServiceWorkerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtBartender + innerClothingSkirt: ClothingUniformJumpskirtBartender satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index 87c743463c..b72a718697 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -44,6 +44,6 @@ outerClothing: ClothingOuterArmorCaptainCarapace id: CaptainPDA ears: ClothingHeadsetAltCommand - innerclothingskirt: ClothingUniformJumpskirtCaptain + innerClothingSkirt: ClothingUniformJumpskirtCaptain satchel: ClothingBackpackSatchelCaptainFilled duffelbag: ClothingBackpackDuffelCaptainFilled diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 2a42d8e0c4..9444842c42 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -64,6 +64,6 @@ id: HoPPDA ears: ClothingHeadsetAltCommand belt: BoxFolderClipboard - innerclothingskirt: ClothingUniformJumpskirtHoP + innerClothingSkirt: ClothingUniformJumpskirtHoP satchel: ClothingBackpackSatchelHOPFilled duffelbag: ClothingBackpackDuffelHOPFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index 5c3f42693a..e09f48465c 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -26,6 +26,6 @@ id: AtmosPDA belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering - innerclothingskirt: ClothingUniformJumpskirtAtmos + innerClothingSkirt: ClothingUniformJumpskirtAtmos satchel: ClothingBackpackSatchelAtmosphericsFilled duffelbag: ClothingBackpackDuffelAtmosphericsFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index bddbd8f2cd..c539e142bb 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -46,6 +46,6 @@ eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetCE belt: ClothingBeltUtilityEngineering - innerclothingskirt: ClothingUniformJumpskirtChiefEngineer + innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer satchel: ClothingBackpackSatchelChiefEngineerFilled duffelbag: ClothingBackpackDuffelChiefEngineerFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml index ba7eb3a9e8..0b10289482 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml @@ -33,6 +33,6 @@ eyes: ClothingEyesGlassesMeson belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering - innerclothingskirt: ClothingUniformJumpskirtSeniorEngineer + innerClothingSkirt: ClothingUniformJumpskirtSeniorEngineer satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml index c77f79ccfc..aa2adf0942 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml @@ -29,6 +29,6 @@ eyes: ClothingEyesGlassesMeson belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering - innerclothingskirt: ClothingUniformJumpskirtEngineering + innerClothingSkirt: ClothingUniformJumpskirtEngineering satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 0127be9cca..4a8e91eb17 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -27,6 +27,6 @@ id: TechnicalAssistantPDA belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering - innerclothingskirt: ClothingUniformJumpskirtColorYellow + innerClothingSkirt: ClothingUniformJumpskirtColorYellow satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/cult_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/cult_startinggear.yml index e0b008b4fd..6c97d37799 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/cult_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/cult_startinggear.yml @@ -10,7 +10,7 @@ shoes: ClothingShoesCult id: PassengerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorBlack + innerClothingSkirt: ClothingUniformJumpskirtColorBlack satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -24,6 +24,6 @@ shoes: ClothingShoesColorRed id: PassengerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorBlack + innerClothingSkirt: ClothingUniformJumpskirtColorBlack satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 146fa3ed96..4a8ede58fe 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -15,7 +15,7 @@ ears: ClothingHeadsetGrey pocket1: VehicleSkeletonMotorcycle pocket2: VehicleKeySkeletonMotorcycle - innerclothingskirt: ClothingUniformJumpskirtColorBlack + innerClothingSkirt: ClothingUniformJumpskirtColorBlack satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -39,7 +39,7 @@ belt: EnergyKatana suitstorage: YellowOxygenTankFilled inhand: - left hand: JetpackBlackFilled + - JetpackBlackFilled #Deathsquad Outfit - type: startingGear @@ -57,7 +57,7 @@ id: DeathsquadPDA pocket1: EnergySword belt: ClothingBeltChiefEngineerFilled - innerclothingskirt: ClothingUniformJumpskirtColorBlack + innerClothingSkirt: ClothingUniformJumpskirtColorBlack satchel: ClothingBackpackDuffelSyndicateAmmo duffelbag: ClothingBackpackDuffelSyndicateAmmo @@ -68,7 +68,7 @@ head: ClothingHeadHatOutlawHat jumpsuit: ClothingUniformJumpsuitOperative mask: CigaretteSyndicate - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative # Syndicate Operative Outfit - Barratry - type: startingGear @@ -78,7 +78,7 @@ back: ClothingBackpackDuffelSyndicateOperative shoes: ClothingShoesBootsCombatFilled gloves: ClothingHandsGlovesColorBlack - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -93,7 +93,7 @@ shoes: ClothingShoesBootsCombatFilled pocket1: BaseUplinkRadio40TC id: AgentIDCard - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -114,7 +114,7 @@ pocket1: DoubleEmergencyOxygenTankFilled pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbing - innerclothingskirt: ClothingUniformJumpskirtOperative + innerClothingSkirt: ClothingUniformJumpskirtOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -136,8 +136,8 @@ pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbing inhand: - right hand: NukeOpsDeclarationOfWar - innerclothingskirt: ClothingUniformJumpskirtOperative + - NukeOpsDeclarationOfWar + innerClothingSkirt: ClothingUniformJumpskirtOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -157,7 +157,7 @@ pocket1: DoubleEmergencyOxygenTankFilled pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbingMedFilled - innerclothingskirt: ClothingUniformJumpskirtOperative + innerClothingSkirt: ClothingUniformJumpskirtOperative satchel: ClothingBackpackDuffelSyndicateOperativeMedic duffelbag: ClothingBackpackDuffelSyndicateOperativeMedic @@ -174,7 +174,7 @@ back: ClothingBackpackFilled shoes: ClothingShoesBootsCombat id: SyndiPDA #a subtype of this for footsoldiers would probably be good to have - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -192,7 +192,7 @@ shoes: ClothingShoesBootsCombat pocket1: CombatKnife id: SyndiPDA - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -211,7 +211,7 @@ pocket1: EnergySword pocket2: EnergyShield id: SyndiPDA - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -229,7 +229,7 @@ shoes: ClothingShoesBootsCombat pocket1: WeaponPistolViper id: SyndiPDA - innerclothingskirt: ClothingUniformJumpsuitOperative + innerClothingSkirt: ClothingUniformJumpsuitOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -246,7 +246,7 @@ outerClothing: ClothingOuterArmorBasicSlim ears: ClothingHeadsetSecurity gloves: ClothingHandsGlovesCombat - innerclothingskirt: ClothingUniformJumpskirtSec + innerClothingSkirt: ClothingUniformJumpskirtSec satchel: ClothingBackpackSatchelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled @@ -267,7 +267,7 @@ pocket2: WeaponLaserGun suitstorage: YellowOxygenTankFilled belt: ClothingBeltBandolier - innerclothingskirt: ClothingUniformJumpsuitColorBrown + innerClothingSkirt: ClothingUniformJumpsuitColorBrown satchel: ClothingBackpackDuffelCBURN duffelbag: ClothingBackpackDuffelCBURN @@ -291,7 +291,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitColorGrey shoes: ClothingShoesColorBlack - innerclothingskirt: ClothingUniformJumpskirtColorGrey + innerClothingSkirt: ClothingUniformJumpskirtColorGrey # DeathMatch Gear @@ -302,9 +302,9 @@ shoes: ClothingShoesBootsJack ears: ClothingHeadsetGrey gloves: ClothingHandsGlovesFingerless - innerclothingskirt: ClothingUniformJumpskirtColorWhite + innerClothingSkirt: ClothingUniformJumpskirtColorWhite inhand: - left hand: WeaponMeleeToolboxRobust + - WeaponMeleeToolboxRobust #Brigmedic @@ -322,7 +322,7 @@ ears: ClothingHeadsetBrigmedic mask: ClothingMaskBreathMedicalSecurity belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpskirtBrigmedic + innerClothingSkirt: ClothingUniformJumpskirtBrigmedic satchel: ClothingBackpackSatchelBrigmedicFilled duffelbag: ClothingBackpackDuffelBrigmedicFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/wizard_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/wizard_startinggear.yml index a72ea59547..9f32796073 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/wizard_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/wizard_startinggear.yml @@ -9,7 +9,7 @@ shoes: ClothingShoesWizard id: PassengerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorDarkBlue + innerClothingSkirt: ClothingUniformJumpskirtColorDarkBlue satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -23,7 +23,7 @@ shoes: ClothingShoesWizard id: PassengerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorRed + innerClothingSkirt: ClothingUniformJumpskirtColorRed satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -37,7 +37,7 @@ shoes: ClothingShoesWizard id: PassengerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorPurple + innerClothingSkirt: ClothingUniformJumpskirtColorPurple satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -50,6 +50,6 @@ shoes: ClothingShoesWizard id: PassengerPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpskirtColorPurple + innerClothingSkirt: ClothingUniformJumpskirtColorPurple satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index a8bd80cf6e..bfa34d30a6 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -27,6 +27,6 @@ belt: ChemBag pocket1: HandLabeler # the purple glasses? - innerclothingskirt: ClothingUniformJumpskirtChemistry + innerClothingSkirt: ClothingUniformJumpskirtChemistry satchel: ClothingBackpackSatchelChemistryFilled duffelbag: ClothingBackpackDuffelChemistryFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 785f7ad626..809d7cd24e 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -46,6 +46,6 @@ id: CMOPDA ears: ClothingHeadsetCMO belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpskirtCMO + innerClothingSkirt: ClothingUniformJumpskirtCMO satchel: ClothingBackpackSatchelCMOFilled duffelbag: ClothingBackpackDuffelCMOFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index b10c4a182d..0c70272ccd 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -26,6 +26,6 @@ id: MedicalPDA ears: ClothingHeadsetMedical belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpskirtMedicalDoctor + innerClothingSkirt: ClothingUniformJumpskirtMedicalDoctor satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index 1b4ef7523c..c6ff734587 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -25,6 +25,6 @@ id: MedicalInternPDA ears: ClothingHeadsetMedical belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpskirtColorWhite + innerClothingSkirt: ClothingUniformJumpskirtColorWhite satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index d453d4ff2e..b18055a9bb 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -28,6 +28,6 @@ id: ParamedicPDA ears: ClothingHeadsetMedical belt: ClothingBeltParamedicFilled - innerclothingskirt: ClothingUniformJumpskirtParamedic + innerClothingSkirt: ClothingUniformJumpskirtParamedic satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml index ac49923eaf..e0defc952d 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml @@ -31,6 +31,6 @@ id: SeniorPhysicianPDA ears: ClothingHeadsetMedical belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpskirtSeniorPhysician + innerClothingSkirt: ClothingUniformJumpskirtSeniorPhysician satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 03ef192be0..379cfb8780 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -24,6 +24,6 @@ shoes: ClothingShoesColorWhite id: ResearchAssistantPDA ears: ClothingHeadsetScience - innerclothingskirt: ClothingUniformJumpskirtColorWhite + innerClothingSkirt: ClothingUniformJumpskirtColorWhite satchel: ClothingBackpackSatchelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 964bffb3a2..6060ed4d1a 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -36,6 +36,6 @@ outerClothing: ClothingOuterCoatRnd id: RnDPDA ears: ClothingHeadsetRD - innerclothingskirt: ClothingUniformJumpskirtResearchDirector + innerClothingSkirt: ClothingUniformJumpskirtResearchDirector satchel: ClothingBackpackSatchelResearchDirectorFilled duffelbag: ClothingBackpackDuffelResearchDirectorFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml index 676514b121..bda5e84d22 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml @@ -23,6 +23,6 @@ outerClothing: ClothingOuterCoatRnd id: SciencePDA ears: ClothingHeadsetScience - innerclothingskirt: ClothingUniformJumpskirtScientist + innerClothingSkirt: ClothingUniformJumpskirtScientist satchel: ClothingBackpackSatchelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml index 13375e271b..036243e49b 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml @@ -24,6 +24,6 @@ outerClothing: ClothingOuterCoatLabSeniorResearcher id: SeniorResearcherPDA ears: ClothingHeadsetScience - innerclothingskirt: ClothingUniformJumpskirtSeniorResearcher + innerClothingSkirt: ClothingUniformJumpskirtSeniorResearcher satchel: ClothingBackpackSatchelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index feef05dc87..e8d6299f48 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -33,6 +33,6 @@ id: DetectivePDA ears: ClothingHeadsetSecurity belt: ClothingBeltHolsterFilled - innerclothingskirt: ClothingUniformJumpskirtDetective + innerClothingSkirt: ClothingUniformJumpskirtDetective satchel: ClothingBackpackSatchelSecurityFilledDetective duffelbag: ClothingBackpackDuffelSecurityFilledDetective diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 58a96d1a5b..7319fc44c7 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -52,6 +52,6 @@ ears: ClothingHeadsetAltSecurity belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58Nonlethal - innerclothingskirt: ClothingUniformJumpskirtHoS + innerClothingSkirt: ClothingUniformJumpskirtHoS satchel: ClothingBackpackSatchelHOSFilled duffelbag: ClothingBackpackDuffelHOSFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index 30ab144860..a4a5889ca1 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -32,6 +32,6 @@ id: SecurityCadetPDA ears: ClothingHeadsetSecurity pocket1: WeaponPistolMk58Nonlethal - innerclothingskirt: ClothingUniformJumpskirtColorRed + innerClothingSkirt: ClothingUniformJumpskirtColorRed satchel: ClothingBackpackSatchelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index 01cf5b44b9..43d7db0472 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -34,6 +34,6 @@ ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58Nonlethal - innerclothingskirt: ClothingUniformJumpskirtSec + innerClothingSkirt: ClothingUniformJumpskirtSec satchel: ClothingBackpackSatchelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml index 46abc8664e..d430853ad9 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml @@ -43,6 +43,6 @@ ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58Nonlethal - innerclothingskirt: ClothingUniformJumpskirtSeniorOfficer + innerClothingSkirt: ClothingUniformJumpskirtSeniorOfficer satchel: ClothingBackpackSatchelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 46142d1550..d368f34213 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -36,6 +36,6 @@ ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58Nonlethal - innerclothingskirt: ClothingUniformJumpskirtWarden + innerClothingSkirt: ClothingUniformJumpskirtWarden satchel: ClothingBackpackSatchelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/nanotrasen.yml b/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/nanotrasen.yml index 637abd43c3..765c9a745e 100644 --- a/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/nanotrasen.yml +++ b/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/nanotrasen.yml @@ -13,7 +13,7 @@ gloves: ClothingHandsGlovesColorBlack id: PassengerPDA ears: ClothingHeadsetGrey - innerclothingskirt: ClothingUniformJumpsuitRecruitNT #Wearing a jumpskirt into combat is a little unfitting and silly, so there is no jumpskirt counterpart for any of the Ship VS. Ship suits. + innerClothingSkirt: ClothingUniformJumpsuitRecruitNT #Wearing a jumpskirt into combat is a little unfitting and silly, so there is no jumpskirt counterpart for any of the Ship VS. Ship suits. satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -30,7 +30,7 @@ eyes: ClothingEyesGlassesMeson belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetAltCommand #Should use the "alt" engineering headset sprite. - innerclothingskirt: ClothingUniformJumpsuitRepairmanNT + innerClothingSkirt: ClothingUniformJumpsuitRepairmanNT satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled @@ -46,7 +46,7 @@ eyes: ClothingEyesHudMedical gloves: ClothingHandsGlovesLatex belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpskirtMedicalDoctor + innerClothingSkirt: ClothingUniformJumpskirtMedicalDoctor satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -58,12 +58,12 @@ head: ClothingHeadHatHardhatArmored jumpsuit: ClothingUniformJumpsuitChiefEngineerNT back: ClothingBackpackFilled #Again, the regular sprite here looks way worse than the regular backpack. - shoes: ClothingShoesBootsJack + shoes: ClothingShoesBootsJack gloves: ClothingHandsGlovesCombat id: CEPDA eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetAltCommand #Same as repairman - make this use the alt headset sprite. belt: ClothingBeltUtilityEngineering - innerclothingskirt: ClothingUniformJumpsuitChiefEngineerNT + innerClothingSkirt: ClothingUniformJumpsuitChiefEngineerNT satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/syndicate.yml b/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/syndicate.yml index 353b69730e..b7a4daf8f2 100644 --- a/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/syndicate.yml +++ b/Resources/Prototypes/Roles/Jobs/Ship_VS_Ship/syndicate.yml @@ -12,7 +12,7 @@ gloves: ClothingHandsGlovesColorBlack id: PassengerPDA ears: ClothingHeadsetGrey - innerclothingskirt: ClothingUniformJumpsuitRecruitSyndie #Wearing a jumpskirt into combat is a little unfitting and silly, so there is no jumpskirt counterpart for any of the Ship VS. Ship suits. + innerClothingSkirt: ClothingUniformJumpsuitRecruitSyndie #Wearing a jumpskirt into combat is a little unfitting and silly, so there is no jumpskirt counterpart for any of the Ship VS. Ship suits. satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -29,7 +29,7 @@ eyes: ClothingEyesGlassesMeson belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetAltCommand #Should use the "alt" engineering headset sprite. - innerclothingskirt: ClothingUniformJumpsuitRepairmanSyndie + innerClothingSkirt: ClothingUniformJumpsuitRepairmanSyndie satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -45,7 +45,7 @@ eyes: ClothingEyesHudMedical gloves: ClothingHandsGlovesLatex belt: ClothingBeltMedicalFilled - innerclothingskirt: ClothingUniformJumpsuitParamedicSyndie + innerClothingSkirt: ClothingUniformJumpsuitParamedicSyndie satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled @@ -57,12 +57,12 @@ head: ClothingHeadHatHardhatArmored jumpsuit: ClothingUniformJumpsuitChiefEngineerSyndie back: ClothingBackpackFilled #In a running theme, the default station job backpack still continues to look strange in comparison to the regular one. It's not as bad as on the syndicate engineer here, though. - shoes: ClothingShoesBootsJack + shoes: ClothingShoesBootsJack gloves: ClothingHandsGlovesCombat id: CEPDA eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetAltCommand belt: ClothingBeltUtilityEngineering - innerclothingskirt: ClothingUniformJumpsuitChiefEngineerSyndie + innerClothingSkirt: ClothingUniformJumpsuitChiefEngineerSyndie satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 1be182f1f7..d9fe88fc14 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -20,6 +20,6 @@ gloves: ClothingHandsGlovesBoxingRed shoes: ClothingShoesColorRed belt: ClothingBeltChampion - innerclothingskirt: UniformShortsRedWithTop + innerClothingSkirt: UniformShortsRedWithTop satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index f405d2ca9d..8861924cf6 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -20,6 +20,6 @@ shoes: ClothingShoesLeather id: PsychologistPDA ears: ClothingHeadsetMedical - innerclothingskirt: ClothingUniformJumpsuitPsychologist + innerClothingSkirt: ClothingUniformJumpsuitPsychologist satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml index 22d9cb91af..6072127347 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml @@ -18,6 +18,6 @@ shoes: ClothingShoesColorWhite id: ReporterPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpsuitJournalist + innerClothingSkirt: ClothingUniformJumpsuitJournalist satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 73b804db7a..bd8f5b85b6 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -19,6 +19,6 @@ shoes: ClothingShoesColorWhite id: ZookeeperPDA ears: ClothingHeadsetService - innerclothingskirt: ClothingUniformJumpsuitSafari + innerClothingSkirt: ClothingUniformJumpsuitSafari satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled