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

More recyclable items #2179

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion Resources/Prototypes/Catalog/Fills/Boxes/general.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
name: cardboard box
parent: BoxBase
parent: [BoxBase, RecyclableItemCardboard] # Frontier: added RecyclableItemCardboard
id: BoxCardboard
description: A cardboard box for storing things.
components:
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: [Clothing, ContentsExplosionResistanceBase]
parent: [Clothing, ContentsExplosionResistanceBase, RecyclableItemClothBasic] # Frontier: added RecyclableItemClothBasic
id: ClothingBackpack
name: backpack
description: You wear this on your back and put items into it.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothBasic] # Frontier: added RecyclableItemClothBasic
id: ClothingBeltBase
components:
- type: Sprite
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Clothing/Ears/headsets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothDevice] # Frontier: added RecyclableItemClothDevice
id: ClothingHeadset
name: headset
description: An updated, modular intercom that fits over the head. Takes encryption keys.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothDevice] # Frontier: added RecyclableItemClothDevice
id: ClothingEyesBase
components:
- type: Sprite
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothSmall] # Frontier: added RecyclableItemClothSmall
id: ClothingHandsBase
components:
- type: Sprite
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothSmall] # Frontier: added RecyclableItemClothSmall
id: ClothingHeadBase
components:
- type: Clothing
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothDevice] # Frontier: added RecyclableItemClothDevice
id: ClothingMaskBase
components:
- type: Sprite
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothSmall] # Frontier: added RecyclableItemClothSmall
id: ClothingNeckBase
components:
- type: Item
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#Basic armor vest
- type: entity
parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing, BaseC1Contraband] # Frontier: BaseRestrictedContraband<BaseC1Contraband
parent: [RecyclableItemClothArmor, ClothingOuterBaseMedium, AllowSuitStorageClothing, BaseC1Contraband] # Frontier: BaseRestrictedContraband<BaseC1Contraband, added RecyclableItemClothArmor
id: ClothingOuterArmorBasic
name: armor vest
description: A standard Type I armored vest that provides decent protection against most types of damage.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: [ Clothing, AllowSuitStorageClothing ] # Frontier: added AllowSuitStorageClothing as a second parent
parent: [ Clothing, AllowSuitStorageClothing, RecyclableItemClothDurable ] # Frontier: added AllowSuitStorageClothing and RecyclableItemClothDurable
id: ClothingOuterBase
components:
- type: Clothing
Expand Down Expand Up @@ -45,7 +45,7 @@

- type: entity
abstract: true
parent: [ClothingOuterStorageBase, BaseFoldable]
parent: [RecyclableItemClothBasic, ClothingOuterStorageBase, BaseFoldable] # Frontier: added RecyclableItemClothBasic
id: ClothingOuterStorageFoldableBase
components:
- type: Appearance
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothSmall] # Frontier: added RecyclableItemClothSmall
id: ClothingShoesBase
components:
- type: Clothing
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: Clothing
parent: [Clothing, RecyclableItemClothBasic] # Frontier: added RecyclableItemClothBasic
id: UnsensoredClothingUniformBase
components:
- type: Sprite
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: DrinkBase
parent: [DrinkBase, RecyclableItemCardboard] # Frontier: added RecyclableItemCardboard
id: DrinkCartonBaseFull
abstract: true
suffix: Full
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: DrinkBase
parent: [DrinkBase, RecyclableItemPlasticSmall] # Frontier: added RecyclableItemPlasticSmall
id: DrinkSpaceGlue
name: space glue tube
description: High performance glue intended for maintenance of extremely complex mechanical equipment. DON'T DRINK!
Expand Down Expand Up @@ -42,7 +42,7 @@
solution: drink

- type: entity
parent: DrinkBase
parent: [DrinkBase, RecyclableItemPlasticSmall] # Frontier: added RecyclableItemPlasticSmall
id: DrinkSpaceLube
name: space lube tube
description: High performance lubricant intended for maintenance of extremely complex mechanical equipment.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

- type: entity
abstract: true
parent: ReagentContainerBase
parent: [ReagentContainerBase, RecyclableItemCardboard] # Frontier: added RecyclableItemCardboard
id: ReagentPacketBase
components:
- type: Openable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# For produce that can't be immediately eaten

- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemOrganicTiny] # Frontier: added RecyclableItemOrganicTiny
id: ProduceBase
abstract: true
components:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
id: LidSalami
parent: BaseItem
parent: [BaseItem, RecyclableItemPlasticMedium] # Frontier: added RecyclableItemPlasticMedium
name: salami lid
description: Ain't gon' fit, won't fit.
components:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: [BaseItem, PowerCellSlotSmallItem]
parent: [BaseItem, PowerCellSlotSmallItem, RecyclableItemDeviceSmall] # Frontier: added RecyclableItemDeviceSmall
id: BaseHandheldComputer
components:
- type: ActivatableUIRequiresPowerCell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
price: 2

- type: entity
parent: EncryptionKey
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny
id: EncryptionKeyCommon
name: common encryption key
description: An encryption key used by anyone.
Expand All @@ -30,7 +30,7 @@
- state: common_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseCargoContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseCargoContraband
id: EncryptionKeyCargo
name: cargo encryption key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand Down Expand Up @@ -103,7 +103,7 @@
- state: com_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseEngineeringContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseEngineeringContraband
id: EncryptionKeyEngineering
name: engineering encryption key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand All @@ -119,7 +119,7 @@
- state: eng_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseMedicalContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseMedicalContraband
id: EncryptionKeyMedical
name: medical encryption key
description: An encryption key used by those who save lives.
Expand All @@ -134,7 +134,7 @@
- state: med_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseMedicalScienceContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseMedicalScienceContraband
id: EncryptionKeyMedicalScience
name: med-sci encryption key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand All @@ -151,7 +151,7 @@
- state: medsci_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseScienceContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseScienceContraband
id: EncryptionKeyScience
name: science encryption key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand All @@ -167,7 +167,7 @@
- state: sci_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseScienceContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseScienceContraband
id: EncryptionKeyRobo
name: robotech encryption key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand Down Expand Up @@ -199,7 +199,7 @@
- state: sec_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseCivilianContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseCivilianContraband
id: EncryptionKeyService
name: service encryption key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand Down Expand Up @@ -231,7 +231,7 @@
- state: synd_label

- type: entity
parent: EncryptionKey # Frontier: removed BaseSiliconScienceContraband
parent: [EncryptionKey, RecyclableItemDeviceTiny] # Frontier: added RecyclableItemDeviceTiny, removed BaseSiliconScienceContraband
id: EncryptionKeyBinary
name: binary translator key
suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemDeviceComplexNormal] # Frontier: added RecyclableItemDeviceComplexNormal
id: BaseFlatpack
name: base flatpack
description: A flatpack used for constructing something.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
name: forensic scanner
parent: BaseItem
parent: [BaseItem, RecyclableItemDeviceSmall] # Frontier: added RecyclableItemDeviceSmall
id: ForensicScanner
description: A handheld device that can scan objects for fingerprints and fibers.
components:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemDeviceSmall] # Frontier: added RecyclableItemDeviceSmall
id: Holoprojector
name: holographic sign projector
description: A handy-dandy holographic projector that displays a janitorial sign.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
name: mousetrap
parent: BaseItem
parent: [BaseItem, RecyclableItemPlasticSmall] # Frontier: added RecyclableItemPlasticSmall
id: Mousetrap
description: Useful for catching rodents sneaking into your kitchen.
components:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- type: entity
name: pinpointer
description: A handheld tracking device. While typically far more capable, this one has been configured to lock onto certain signals. Keep upright to retain accuracy.
parent: BaseItem
parent: [BaseItem, RecyclableItemDeviceSmall] # Frontier: added RecyclableItemDeviceSmall
id: PinpointerBase
abstract: true
components:
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Devices/radio.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- type: entity
name: handheld radio
description: A handy handheld radio.
parent: BaseItem
parent: [BaseItem, RecyclableItemDeviceSmall] # Frontier: added RecyclableItemDeviceSmall
id: RadioHandheld
components:
- type: TelecomExempt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemDeviceSmall] # Frontier: added RecyclableItemDeviceSmall
id: BaseHandheldStationMap
name: station map
description: Displays a readout of the current station.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: BaseItem
parent: [BaseItem, RecyclableItemWoodMedium] # Frontier: added RecyclableItemWoodMedium
id: BaseHandheldInstrument
description: That's an instrument.
components:
Expand Down
7 changes: 5 additions & 2 deletions Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemCardboard] # Frontier: added RecyclableItemCardboard
id: BaseBoardEntity # Board item
name: board
abstract: true
Expand All @@ -16,7 +16,7 @@

- type: entity
id: BaseTabletopPiece # Board piece
parent: BaseItem
parent: [BaseItem, RecyclableItemPlasticTiny] # Frontier: added RecyclableItemPlasticTiny
abstract: true
components:
- type: TabletopDraggable
Expand All @@ -39,3 +39,6 @@
- type: Sprite
noRot: false
drawdepth: FloorTiles
- type: PhysicalComposition # Frontier
materialComposition: # Frontier
Cardboard: 100 # Frontier
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Fun/dice.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
abstract: true
parent: BaseItem
parent: [BaseItem, RecyclableItemPlasticTiny] # Frontier: added RecyclableItemPlasticTiny
id: BaseDice
components:
- type: Dice
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: BaseStorageItem
parent: [BaseStorageItem, RecyclableItemClothSmall] # Frontier: added RecyclableItemClothSmall
id: DiceBag
name: bag of dice
description: Contains all the luck you'll ever need.
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Fun/figurines.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#HUMANOID FIGURINES

- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemPlasticTiny] # Frontier: added RecyclableItemPlasticTiny
id: BaseFigurine
name: figurine
description: A small miniature.
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: entity
parent: BaseItem
parent: [BaseItem, RecyclableItemClothBasic] # Frontier: added RecyclableItemClothBasic
id: BedsheetBase
name: BedsheetBase
abstract: true
Expand Down
5 changes: 4 additions & 1 deletion Resources/Prototypes/Entities/Objects/Misc/books.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
- type: entity
name: book
parent: BaseItem
parent: [BaseItem, RecyclableItemPaper] # Frontier: added RecyclableItemPaper
id: BookBase
description: A hardcover book.
components:
- type: PhysicalComposition # Frontier
materialComposition: # Frontier
Paper: 50 # Frontier
- type: Sprite
sprite: Objects/Misc/books.rsi
layers:
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Misc/candles.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- type: entity
name: candle
parent: BaseItem
parent: [BaseItem, RecyclableItemOrganicTiny] # Frontier: added RecyclableItemOrganicTiny
id: Candle
description: A thin wick threaded through fat.
components:
Expand Down
Loading
Loading