Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Messenger Bags (ported from tgstation) #962

Merged
merged 26 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
60c74eb
Messenger Bags (tgstation port)
ErhardSteinhauer Jan 31, 2024
ee109af
pilot and merc bags
ErhardSteinhauer Jan 31, 2024
2383f77
NSFD colors for Brigmed and sec
ErhardSteinhauer Jan 31, 2024
a657a35
syndicate bag
ErhardSteinhauer Jan 31, 2024
b42d24f
fixed typo
ErhardSteinhauer Jan 31, 2024
9a44f74
another typo
ErhardSteinhauer Jan 31, 2024
7b38baa
researchable messenger bag of holding
ErhardSteinhauer Jan 31, 2024
3365f5f
bag of holding is craftable (likely)
ErhardSteinhauer Jan 31, 2024
6817dce
Dvir01 made filled versions of messenger bags
ErhardSteinhauer Jan 31, 2024
32d59f8
Allow using the messenger backpack on spawn
dvir001 Jan 31, 2024
b61a51f
Merge branch 'messenger-bags' of https://github.com/ErhardSteinhauer/…
dvir001 Jan 31, 2024
bdeec45
Update HumanoidProfileEditor.xaml.cs
dvir001 Feb 1, 2024
534e6ea
undone the thing i done did
ErhardSteinhauer Feb 1, 2024
de5da36
bags for more roles
ErhardSteinhauer Feb 1, 2024
95423de
janitor and mailman bags, resprite for brigmed
ErhardSteinhauer Feb 1, 2024
1757013
mime bag
ErhardSteinhauer Feb 1, 2024
93f7e2b
fixed an error, jani bag to janidrobe, mail bag to mail drobe
ErhardSteinhauer Feb 1, 2024
85eec45
Merge branch 'new-frontiers-14:master' into messenger-bags
ErhardSteinhauer Feb 3, 2024
5b8cd25
huh?
ErhardSteinhauer Feb 8, 2024
e03fbff
bags are back
ErhardSteinhauer Feb 8, 2024
c8e4fbc
fixes
ErhardSteinhauer Feb 8, 2024
8424c20
fixed messenger bag of holding
ErhardSteinhauer Feb 8, 2024
169f622
mb of holding fixed fr this time (maybe)
ErhardSteinhauer Feb 8, 2024
71a0f04
Update HumanoidProfileEditor.xaml
dvir001 Feb 9, 2024
9465db8
Update StartingGearPrototype.cs
dvir001 Feb 9, 2024
0ce41a1
fixing
dvir001 Feb 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ public HumanoidProfileEditor(IClientPreferencesManager preferencesManager, IProt
_backpackButton.AddItem(Loc.GetString("humanoid-profile-editor-preference-backpack"), (int) BackpackPreference.Backpack);
_backpackButton.AddItem(Loc.GetString("humanoid-profile-editor-preference-satchel"), (int) BackpackPreference.Satchel);
_backpackButton.AddItem(Loc.GetString("humanoid-profile-editor-preference-duffelbag"), (int) BackpackPreference.Duffelbag);
_backpackButton.AddItem(Loc.GetString("humanoid-profile-editor-preference-messenger"), (int) BackpackPreference.Messenger); // Frontier

_backpackButton.OnItemSelected += args =>
{
Expand Down
3 changes: 2 additions & 1 deletion Content.Shared/Preferences/BackpackPreference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public enum BackpackPreference
{
Backpack,
Satchel,
Duffelbag
Duffelbag,
Messenger // Frontier
}
}
1 change: 1 addition & 0 deletions Content.Shared/Preferences/HumanoidCharacterProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@ public void EnsureValid()
BackpackPreference.Backpack => BackpackPreference.Backpack,
BackpackPreference.Satchel => BackpackPreference.Satchel,
BackpackPreference.Duffelbag => BackpackPreference.Duffelbag,
BackpackPreference.Messenger => BackpackPreference.Messenger, // Frontier
_ => BackpackPreference.Backpack // Invalid enum values.
};

Expand Down
5 changes: 5 additions & 0 deletions Content.Shared/Roles/StartingGearPrototype.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public sealed partial class StartingGearPrototype : IPrototype
[DataField]
public EntProtoId? Duffelbag;

[DataField]
public EntProtoId? Messenger; // Frontier

[DataField]
public List<EntProtoId> Inhand = new(0);

Expand All @@ -38,6 +41,8 @@ public string GetGear(string slot, HumanoidCharacterProfile? profile)
return Satchel;
if (slot == "back" && profile.Backpack == BackpackPreference.Duffelbag && !string.IsNullOrEmpty(Duffelbag))
return Duffelbag;
if (slot == "back" && profile.Backpack == BackpackPreference.Messenger && !string.IsNullOrEmpty(Messenger)) // Frontier
return Messenger;
}

return Equipment.TryGetValue(slot, out var equipment) ? equipment : string.Empty;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
humanoid-profile-editor-preference-messenger = Messenger
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackDuffelAtmospherics: 2
ClothingBackpackSatchelAtmospherics: 2
ClothingBackpackAtmospherics: 2
ClothingBackpackMessengerAtmospherics: 2 #Frontier
ClothingUniformJumpsuitAtmos: 3
ClothingUniformJumpskirtAtmos: 3
ClothingUniformJumpsuitAtmosCasual: 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackCargo: 3
ClothingBackpackSatchelCargo: 3
ClothingBackpackDuffelCargo: 3
ClothingBackpackMessengerCargo: 3 # Frontier
ClothingUniformJumpsuitCargo: 3
ClothingUniformJumpskirtCargo: 3
ClothingShoesColorBlack: 3
Expand All @@ -19,6 +20,7 @@
ClothingBackpackSalvage: 2
ClothingBackpackSatchelSalvage: 2
ClothingBackpackDuffelSalvage: 2
ClothingBackpackMessengerSalvage: 2 # Frontier
ClothingBeltSalvageWebbing: 2
ClothingUniformJumpsuitSalvageSpecialist: 2
ClothingOuterWinterMiner: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
ClothingBackpackChemistry: 2
ClothingBackpackSatchelChemistry: 2
ClothingBackpackDuffelChemistry: 2
ClothingBackpackMessengerChemistry: 2 # Frontier
ChemBag: 2
ClothingBeltMedical: 2
ClothingHandsGlovesLatex: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpack: 5
ClothingBackpackDuffel: 5
ClothingBackpackSatchel: 3
ClothingBackpackMessenger: 5 # Frontier
ClothingBackpackSatchelLeather: 2
ClothingHeadHatBeret: 4
ClothingHeadBandBlack: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackDuffelEngineering: 3
ClothingBackpackSatchelEngineering: 3
ClothingBackpackEngineering: 3
ClothingBackpackMessengerEngineering: 3 # Frontier
ClothingUniformJumpsuitEngineering: 3
ClothingUniformJumpskirtEngineering: 3
ClothingUniformJumpsuitEngineeringHazard: 3
Expand All @@ -22,6 +23,7 @@
ClothingBackpackDuffelAtmospherics: 2
ClothingBackpackSatchelAtmospherics: 2
ClothingBackpackAtmospherics: 2
ClothingBackpackMessengerAtmospherics: 2 # Frontier
ClothingUniformJumpsuitAtmos: 3
ClothingUniformJumpskirtAtmos: 3
ClothingUniformJumpsuitAtmosCasual: 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
ClothingBackpackSatchelGenetics: 2
ClothingBackpackDuffelGenetics: 2
ClothingShoesBootsWinterGenetics: 2 #Delta V: Add departmental winter boots
ClothingBackpackMessengerGenetics: 2 # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackHydroponics: 3
ClothingBackpackSatchelHydroponics: 3
ClothingBackpackDuffelHydroponics: 3
ClothingBackpackMessengerHydroponics: 3 # Frontier
ClothingBeltPlant: 3 # Frontier
ClothingOuterApronBotanist: 3
ClothingUniformOveralls: 3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- type: vendingMachineInventory
id: JaniDrobeInventory
startingInventory:
ClothingBackpackMessengerJanitor: 2 # Frontier
ClothingUniformJumpsuitJanitor: 2
ClothingUniformJumpskirtJanitor: 2
ClothingHandsGlovesJanitor: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackMedical: 4
ClothingBackpackSatchelMedical: 4
ClothingBackpackDuffelMedical: 4
ClothingBackpackMessengerMedical: 4 # Frontier
ClothingUniformJumpsuitMedicalDoctor: 4
ClothingUniformJumpskirtMedicalDoctor: 4
ClothingOuterWinterMed: 2
Expand Down Expand Up @@ -34,6 +35,7 @@
ClothingBackpackVirology: 2
ClothingBackpackSatchelVirology: 2
ClothingBackpackDuffelVirology: 2
ClothingBackpackMessengerVirology: 2 # Frontier
ClothingUniformJumpsuitVirology: 2
ClothingUniformJumpskirtVirology: 2
ClothingOuterWinterViro: 2
Expand All @@ -46,6 +48,7 @@
ClothingBackpackChemistry: 2
ClothingBackpackSatchelChemistry: 2
ClothingBackpackDuffelChemistry: 2
ClothingBackpackMessengerChemistry: 2 # Frontier
ChemBag: 2
HandLabeler: 4
ClothingUniformJumpsuitChemistry: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackScience: 3
ClothingBackpackSatchelScience: 3
ClothingBackpackDuffelScience: 3
ClothingBackpackMessengerScience: 3 # Frontier
ClothingUniformJumpsuitScientist: 3
ClothingUniformJumpskirtScientist: 3
ClothingUniformJumpsuitScientistFormal: 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ClothingBackpackSecurity: 3
ClothingBackpackSatchelSecurity: 3
ClothingBackpackDuffelSecurity: 3
ClothingBackpackMessengerSecurity: 3 # Frontier
ClothingHeadHatBeretBrigmedic: 3
ClothingHeadHatBeretSecurity: 3
ClothingHeadHatSecsoft: 3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- type: vendingMachineInventory
id: SyndieDrobeInventory
startingInventory:
ClothingBackpackMessengerSyndicate: 3 # Frontier
ClothingHeadHatOutlawHat: 3
ClothingHeadHatSyndie: 5
ClothingMaskNeckGaiter: 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
ClothingOuterCardborg: 2
ClothingHeadHatSombrero: 2
ClothingOuterPonchoClassic: 2
# ClothingUniformJumpsuitKilt: 3 # DeltaV - SCOTTTTLANDDDDD FURREVERRRRR!!
ClothingUniformJumpsuitKilt: 2 # DeltaV - SCOTTTTLANDDDDD FURREVERRRRR!!
ClothingHeadHatPwig: 2
ClothingOuterRobesJudge: 2
ClothingOuterPoncho: 2
Expand Down Expand Up @@ -65,6 +65,7 @@
ClothingBackpackClownFilled: 2
ClothingBackpackSatchelClown: 2
ClothingBackpackDuffelClown: 2
ClothingBackpackMessengerClown: 2
ClothingMaskClown: 2
ClothingShoesClown: 2
ClothingUniformJumpsuitClown: 2
Expand All @@ -75,6 +76,7 @@
ClothingBackpackMime: 2
ClothingBackpackSatchelMime: 2
ClothingBackpackDuffelMime: 2
ClothingBackpackMessengerMime: 2
ClothingHeadHatMimesoft: 2
ClothingMaskMime: 2
ClothingMaskSadMime: 1
Expand All @@ -83,8 +85,8 @@
ClothingUniformJumpskirtMime: 2
ClothingOuterWinterMime: 2
ClothingBeltSuspenders: 2
RubberStampMime: 1
ClothingShoesBootsWinterMime: 2 #Delta V: Add departmental winter boots
RubberStampMime: 1
contrabandInventory: # Frontier - Hidden inventory
ClothingHeadHatMimesoftFlipped: 1
BarberScissors: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
ClothingBackpackSatchelVirology: 2
ClothingBackpackDuffelVirology: 2
ClothingShoesBootsWinterViro: 2 #Delta V: Add departmental winter boots
ClothingBackpackMessengerVirology: 2 # Frontier
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
- type: entity
parent: ClothingUniformBase
id: ClothingUniformJumpsuitKilt
name: kilt
description: A fine bit o' garb for the lad an' lasses.
components:
- type: Sprite
sprite: DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi
- type: Clothing
sprite: DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@
- ClothingBackpackHolding
- ClothingBackpackSatchelHolding
- ClothingBackpackDuffelHolding
- ClothingBackpackMessengerHolding
- WelderExperimental
- JawsOfLife
- ClothingEyesGlassesChemical
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- type: vendingMachineInventory
id: MailDrobeInventory
startingInventory:
ClothingBackpackMessengerMailman: 2 # Frontier
ClothingUniformJumpsuitMailCarrier: 2
ClothingUniformJumpskirtMailCarrier: 2
ClothingHeadMailCarrier: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@
innerClothingSkirt: ClothingUniformJumpskirtMailCarrier
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerMailmanFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@
innerClothingSkirt: ClothingUniformJumpskirtValet
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@
innerClothingSkirt: ClothingUniformJumpsuitPrisonGuard
satchel: ClothingBackpackSatchelSecurityFilled
duffelbag: ClothingBackpackDuffelSecurityFilled
messenger: ClothingBackpackMessengerSecurityFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@
gloves: ClothingHandsGlovesBoxingRed
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Research/industrial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@
- ClothingBackpackHolding
- ClothingBackpackSatchelHolding
- ClothingBackpackDuffelHolding
- ClothingBackpackMessengerHolding # Frontier

- type: technology
id: PortableFission
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@
innerClothingSkirt: ClothingUniformJumpskirtCargo
satchel: ClothingBackpackSatchelCargoFilled
duffelbag: ClothingBackpackDuffelCargoFilled
messenger: ClothingBackpackMessengerCargoFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@
innerClothingSkirt: ClothingUniformJumpskirtQM
satchel: ClothingBackpackSatchelQuartermasterFilled
duffelbag: ClothingBackpackDuffelQuartermasterFilled
messenger: ClothingBackpackMessengerQuartermasterFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@
ears: ClothingHeadsetCargo
satchel: ClothingBackpackSatchelSalvageFilled
duffelbag: ClothingBackpackDuffelSalvageFilled
messenger: ClothingBackpackMessengerSalvageFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
innerClothingSkirt: ClothingUniformJumpskirtColorGrey
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@
innerClothingSkirt: ClothingUniformJumpskirtBartender
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@
innerClothingSkirt: ClothingUniformJumpskirtHydroponics
satchel: ClothingBackpackSatchelHydroponicsFilled
duffelbag: ClothingBackpackDuffelHydroponicsFilled
messenger: ClothingBackpackMessengerHydroponicsFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@
innerClothingSkirt: ClothingUniformJumpskirtChaplain
satchel: ClothingBackpackSatchelChaplainFilled
duffelbag: ClothingBackpackDuffelChaplainFilled
messenger: ClothingBackpackMessengerChaplainFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/chef.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@
innerClothingSkirt: ClothingUniformJumpskirtChef
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/clown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@
ears: ClothingHeadsetService
satchel: ClothingBackpackSatchelClownFilled
duffelbag: ClothingBackpackDuffelClownFilled
messenger: ClothingBackpackMessengerClownFilled # Frontier
2 changes: 2 additions & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
innerClothingSkirt: ClothingUniformJumpskirtJanitor
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerJanitorFilled # Frontier

- type: startingGear
id: JanitorMaidGear
Expand All @@ -47,3 +48,4 @@
innerClothingSkirt: ClothingUniformJumpskirtJanimaid
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerJanitorFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@
innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack
satchel: ClothingBackpackSatchelLawyerFilled # Frontier
duffelbag: ClothingBackpackDuffelLawyerFilled # Frontier
messenger: ClothingBackpackMessengerLawyerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
innerClothingSkirt: ClothingUniformJumpskirtLibrarian
satchel: ClothingBackpackSatchelLibrarianFilled
duffelbag: ClothingBackpackDuffelLibrarianFilled
messenger: ClothingBackpackMessengerLibrarianFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/mime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
innerClothingSkirt: ClothingUniformJumpskirtMime
satchel: ClothingBackpackSatchelMimeFilled
duffelbag: ClothingBackpackDuffelMimeFilled
messenger: ClothingBackpackMessengerMimeFilled # Frontier

- type: entity
id: ActionMimeInvisibleWall
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/musician.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@
ears: ClothingHeadsetService
satchel: ClothingBackpackSatchelMusicianFilled
duffelbag: ClothingBackpackDuffelMusicianFilled
messenger: ClothingBackpackMessengerMusicianFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@
innerClothingSkirt: ClothingUniformJumpskirtBartender
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Command/captain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@
innerClothingSkirt: ClothingUniformJumpskirtCaptain
satchel: ClothingBackpackSatchelCaptainFilled
duffelbag: ClothingBackpackDuffelCaptainFilled
messenger: ClothingBackpackMessengerCaptainFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,4 @@
innerClothingSkirt: ClothingUniformJumpskirtHoP
satchel: ClothingBackpackSatchelHOPFilled
duffelbag: ClothingBackpackDuffelHOPFilled
messenger: ClothingBackpackMessengerHOPFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@
innerClothingSkirt: ClothingUniformJumpskirtAtmos
satchel: ClothingBackpackSatchelAtmosphericsFilled
duffelbag: ClothingBackpackDuffelAtmosphericsFilled
messenger: ClothingBackpackMessengerAtmosphericsFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@
innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer
satchel: ClothingBackpackSatchelChiefEngineerFilled
duffelbag: ClothingBackpackDuffelChiefEngineerFilled
messenger: ClothingBackpackMessengerChiefEngineerFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@
innerClothingSkirt: ClothingUniformJumpskirtEngineering
satchel: ClothingBackpackSatchelEngineeringFilled
duffelbag: ClothingBackpackDuffelEngineeringFilled
messenger: ClothingBackpackMessengerEngineeringFilled # Frontier
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@
innerClothingSkirt: ClothingUniformJumpskirtColorYellow
satchel: ClothingBackpackSatchelEngineeringFilled
duffelbag: ClothingBackpackDuffelEngineeringFilled
messenger: ClothingBackpackMessengerEngineeringFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Fun/cult_startinggear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier
1 change: 1 addition & 0 deletions Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled
messenger: ClothingBackpackMessengerFilled # Frontier

#Space Ninja Outfit
- type: startingGear
Expand Down
Loading
Loading