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

Add the Ability to Tie Jumpsuit Jackets around Waist #375

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ fold-flip-verb = Flip

fold-zip-verb = Zip up
fold-unzip-verb = Unzip

fold-verb-clothing-jacket = Take off jacket
unfold-verb-clothing-jacket = Put on jacket
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,14 @@
- type: Clothing
slots: [innerclothing]
femaleMask: UniformTop

- type: entity
abstract: true
id: ClothingUniformFoldableBase
components:
- type: Foldable
canFoldInsideContainer: true
unfoldVerbText: unfold-verb-clothing-jacket
foldVerbText: fold-verb-clothing-jacket
- type: FoldableClothing
foldedEquippedPrefix: folded
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@

# Rainbow Jumpsuit
- type: entity
parent: ClothingUniformBase
parent: [ ClothingUniformBase, ClothingUniformFoldableBase ]
id: ClothingUniformColorRainbow
name: rainbow jumpsuit
description: A multi-colored jumpsuit!
Expand Down
Loading
Loading