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

Erp release test pr #6

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions Content.Client/Clothing/ClientClothingSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ public sealed class ClientClothingSystem : ClothingSystem
{"pocket1", "POCKET1"},
{"pocket2", "POCKET2"},
{"suitstorage", "SUITSTORAGE"},
{"socks", "SOCKS"},
{"underweart", "UNDERWEART"},
{"underwearb", "UNDERWEARB"},
};

[Dependency] private readonly IResourceCache _cache = default!;
Expand Down
2 changes: 1 addition & 1 deletion Content.Client/Inventory/StrippableBoundUserInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void UpdateMenu()
// for now: shit-code
// this breaks for drones (too many hands, lots of empty vertical space), and looks shit for monkeys and the like.
// but the window is realizable, so eh.
_strippingMenu.SetSize = new Vector2(220, snare?.IsEnsnared == true ? 550 : 530);
_strippingMenu.SetSize = new Vector2(220, snare?.IsEnsnared == true ? 600 : 600);
}

private void AddHandButton(Hand hand)
Expand Down
3 changes: 3 additions & 0 deletions Content.Shared/Inventory/SlotFlags.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ public enum SlotFlags
LEGS = 1 << 13,
FEET = 1 << 14,
SUITSTORAGE = 1 << 15,
UNDERWEART = 1 << 16,
UNDERWEARB = 1 << 17,
SOCKS = 1 << 18,
All = ~NONE,

WITHOUT_POCKET = All & ~POCKET
Expand Down
17 changes: 17 additions & 0 deletions Resources/Locale/ru-RU/corvax/preferences/loadout-groups.ftl
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
loadout-group-inventory = Мой инвентарь
loadout-group-chief-engineer-backpack = Рюкзак старшего инженера
loadout-groups-captain-underwearbottom = Капитан, трусы
loadout-group-captain-underweartop = Капитан, бра
loadout-group-hop-underwearbottom = ГП, трусы
loadout-group-hop-underweartop = ГП, бра
loadout-group-qm-underwearbottom = КМ, трусы
loadout-group-qm-underweartop = КМ, бра
loadout-group-ce-underwearbottom = СИ, трусы
loadout-group-ce-underweartop = СИ, бра
loadout-group-cmo-underwearbottom = ГВ, трусы
loadout-group-cmo-underweartop = ГВ, бра
loadout-group-rd-underwearbottom = НР, трусы
loadout-group-rd-underweartop = НР, бра
loadout-group-hos-underwearbottom = ГСБ, трусы
loadout-group-hos-underweartop = ГСБ, бра
loadout-group-general-underwearbottom = Общий, трусы
loadout-group-general-underweartop = Общий, бра
loadout-group-general-socks = Общий, носки
18 changes: 18 additions & 0 deletions Resources/Prototypes/Corvax/Loadouts/Jobs/Cargo/quartermaster.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Panties

- type: loadout
id: QMBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersQM

- type: loadout
id: QMPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesQM

# Bra

- type: loadout
id: QMBra
equipment:
underweart: ClothingUnderwearTopBraQM
19 changes: 19 additions & 0 deletions Resources/Prototypes/Corvax/Loadouts/Jobs/Command/captain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,22 @@
id: CaptainJumpskirtTurtleneck
equipment:
jumpsuit: ClothingUniformJumpskirtCapTurtleneck

# Panties

- type: loadout
id: CaptainBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersCap

- type: loadout
id: CaptainPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesCap

# Bra

- type: loadout
id: CaptainBra
equipment:
underweart: ClothingUnderwearTopBraCap
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,22 @@
id: HoPJumpskirtTurtleneck
equipment:
jumpsuit: ClothingUniformJumpskirtHoPTurtleneck

# Panties

- type: loadout
id: HOPBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersHOP

- type: loadout
id: HOPPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesHOP

# Bra

- type: loadout
id: HOPBra
equipment:
underweart: ClothingUnderwearTopBraHOP
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,22 @@
id: ChiefEngineerDuffel
equipment:
back: ClothingBackpackDuffelCE

# Panties

- type: loadout
id: CEBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersCE

- type: loadout
id: CEPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesCE

# Bra

- type: loadout
id: CEBra
equipment:
underweart: ClothingUnderwearTopBraCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Panties

- type: loadout
id: CMOBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersCMO

- type: loadout
id: CMOPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesCMO

# Bra

- type: loadout
id: CMOBra
equipment:
underweart: ClothingUnderwearTopBraCMO
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,22 @@
id: ResearchDirectorJumpskirtClassical
equipment:
jumpsuit: ClothingUniformJumpskirtRDClassical

# Panties

- type: loadout
id: RDBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersRD

- type: loadout
id: RDPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesRD

# Bra

- type: loadout
id: RDBra
equipment:
underweart: ClothingUnderwearTopBraRD
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,22 @@
id: HeadofSecurityJumpskirtBlack
equipment:
jumpsuit: ClothingUniformJumpskirtHoSBlack

# Panties

- type: loadout
id: HOSBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersHOS

- type: loadout
id: HOSPanties
equipment:
underwearb: ClothingUnderwearBottomPantiesHOS

# Bra

- type: loadout
id: HOSBra
equipment:
underweart: ClothingUnderwearTopBraHOS
100 changes: 100 additions & 0 deletions Resources/Prototypes/Corvax/Loadouts/Miscellaneous/underwear.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
# Panties

- type: loadout
id: WhiteBoxers
equipment:
underwearb: ClothingUnderwearBottomBoxersWhite

- type: loadout
id: WhitePanties
equipment:
underwearb: ClothingUnderwearBottomPantiesWhite

- type: loadout
id: WhitePantiesNeko
equipment:
underwearb: ClothingUnderwearBottomPantiesNeko

- type: loadout
id: PantiesLace
equipment:
underwearb: ClothingUnderwearBottomPantiesLace

- type: loadout
id: PantiesThong
equipment:
underwearb: ClothingUnderwearBottomPantiesThong

# Bra

- type: loadout
id: BraWhite
equipment:
underweart: ClothingUnderwearTopBraWhite

- type: loadout
id: BraSports
equipment:
underweart: ClothingUnderwearTopBraSports

- type: loadout
id: BraNeko
equipment:
underweart: ClothingUnderwearTopNekoBra

- type: loadout
id: BraLace
equipment:
underweart: ClothingUnderwearToplaceBra

- type: loadout
id: BraSportsAlt
equipment:
underweart: ClothingUnderwearTopBraSportsAlternative

#Socks

- type: loadout
id: SocksNormal
equipment:
socks: ClothingUnderwearSocksNormal

- type: loadout
id: SocksHigh
equipment:
socks: ClothingUnderwearSocksHigh

- type: loadout
id: SocksShort
equipment:
socks: ClothingUnderwearSocksShort

- type: loadout
id: SocksBee
equipment:
socks: ClothingUnderSocksBee

- type: loadout
id: SocksCoder
equipment:
socks: ClothingUnderSocksCoder

- type: loadout
id: SocksPantyhose
equipment:
socks: ClothingUnderwearSocksPantyhose

- type: loadout
id: SocksFishnettights
equipment:
socks: ClothingUnderwearSocksFishnettights

- type: loadout
id: SocksGarters
equipment:
socks: ClothingUnderwearSocksGarters

- type: loadout
id: SocksRich
equipment:
socks: ClothingUnderwearSocksRich
Loading
Loading