Skip to content

Commit

Permalink
PAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
KittenColony committed Apr 10, 2024
1 parent ca2f520 commit 8884ed4
Showing 1 changed file with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,48 @@
- type: StaticPrice
price: 80

- type: entity
abstract: true
parent: [ClothingOuterStorageBase, BaseFoldable]
id: ClothingOuterStorageFoldableBase
components:
- type: Appearance
- type: Foldable
canFoldInsideContainer: true
unfoldVerbText: fold-zip-verb
foldVerbText: fold-unzip-verb
- type: FoldableClothing
foldedEquippedPrefix: open
foldedHeldPrefix: open
- type: Sprite
layers:
- state: icon
map: [ "unfoldedLayer" ]
- state: icon-open
map: ["foldedLayer"]
visible: false

- type: entity
abstract: true
parent: ClothingOuterStorageFoldableBase
id: ClothingOuterStorageFoldableBaseOpened
suffix: opened
components:
- type: Foldable
folded: true
- type: Clothing
equippedPrefix: open
- type: Item
heldPrefix: open
- type: Sprite
layers:
- state: icon
map: [ "unfoldedLayer" ]
visible: false
- state: icon-open
map: ["foldedLayer"]
visible: true

- type: entity
abstract: true
parent: ClothingOuterStorageBase
Expand Down

0 comments on commit 8884ed4

Please sign in to comment.