-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add foldable uniform jumpsuit base component
Initial work on porting impstation/imp-station-14#375. Component gets the Impstation suffix to not conflict with the existing DeltaV component for rolled-up sleeves on some security uniforms.
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
Resources/Locale/en-US/_Impstation/foldable/components/foldable-component.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fold-verb-clothing-jacket = Take off jacket | ||
unfold-verb-clothing-jacket = Put on jacket |
10 changes: 10 additions & 0 deletions
10
Resources/Prototypes/_Impstation/Entities/Clothing/Uniforms/base_clothinguniforms.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- type: entity | ||
abstract: true | ||
id: ClothingUniformFoldableBaseImpstation # Impstation suffix because DV already has its own ClothingUniformFoldableBase | ||
components: | ||
- type: Foldable | ||
canFoldInsideContainer: true | ||
unfoldVerbText: unfold-verb-clothing-jacket | ||
foldVerbText: fold-verb-clothing-jacket | ||
- type: FoldableClothing | ||
foldedEquippedPrefix: folded |