Added orderable crates for biosuits (#14374)

This commit is contained in:
lapatison
2023-03-24 04:40:26 +03:00
committed by GitHub
parent 73b8b1e76c
commit c8084e2f5b
15 changed files with 128 additions and 4 deletions

View File

@@ -13,5 +13,8 @@ ent-CrateEmergencyRadiation = Radiation protection crate
ent-CrateEmergencyInflatablewall = Inflatable wall crate
.desc = Three stacks of inflatable walls for when the stations metal walls don't want to hold atmosphere anymore.
ent-CrateGenericBiosuit = Emergency bio suit crate
.desc = Contains 2 biohazard suits to ensure that no disease will distract you from what you're doing there.
ent-CrateSlimepersonLifeSupport = Slimeperson life support crate
.desc = Contains four breath masks and four large nitrogen tanks.

View File

@@ -28,4 +28,7 @@ ent-CrateEmergencyAdvancedKit = Emergency advanced kit
.desc = Crate filled with four advanced treatment kits
ent-CrateEmergencyRadiationKit = Emergency radiation kit
.desc = Crate filled with four radiation treatment kits
.desc = Crate filled with four radiation treatment kits
ent-CrateVirologyBiosuit = Virology bio suit crate
.desc = Contains 2 biohazard suits to ensure that no disease will distract you from treating the crew. Requires Medical access to open.

View File

@@ -0,0 +1,2 @@
ent-CrateScienceBiosuit = scientist bio suit crate
.desc = Contains 2 biohazard suits to ensure that no disease will distract you from doing science. Requires Science access to open.

View File

@@ -15,3 +15,6 @@ ent-CrateSecuritySupplies = security supplies crate
ent-CrateRestraints = restraints crate
.desc = Contains two boxes each of handcuffs and zipties. Requires Security access to open.
ent-CrateSecurityBiosuit = security bio suit crate
.desc = Contains 2 biohazard suits to ensure that no disease will distract you from your duties. Requires Security access to open.

View File

@@ -21,3 +21,6 @@ ent-CrateServicePersonnel = Personnel crate
ent-CrateServiceBooks = Books crate
.desc = Contains 10 empty books of random appearance
ent-CrateJanitorBiosuit = Janitor bio suit crate
.desc = Contains 2 biohazard suits to ensure that no disease will distract you from cleaning.

View File

@@ -57,3 +57,13 @@
cost: 300
category: Emergency
group: market
- type: cargoProduct
id: EmergencyBiosuit
icon:
sprite: Clothing/Head/Hoods/Bio/general.rsi
state: icon
product: CrateGenericBiosuit
cost: 800
category: Emergency
group: market

View File

@@ -76,4 +76,13 @@
product: CrateEmergencyRadiationKit
cost: 2500
category: Medical
group: market
group: market
- type: cargoProduct
id: MedicalBiosuit
icon:
sprite: Clothing/Head/Hoods/Bio/bio.rsi
state: icon
product: CrateVirologyBiosuit
cost: 500
category: Medical
group: market

View File

@@ -17,3 +17,13 @@
cost: 2000
category: Science
group: market
- type: cargoProduct
id: ScienceBiosuit
icon:
sprite: Clothing/Head/Hoods/Bio/scientist.rsi
state: icon
product: CrateScienceBiosuit
cost: 500
category: Science
group: market

View File

@@ -57,3 +57,13 @@
cost: 1000
category: Security
group: market
- type: cargoProduct
id: SecurityBiosuit
icon:
sprite: Clothing/Head/Hoods/Bio/security.rsi
state: icon
product: CrateSecurityBiosuit
cost: 500
category: Security
group: market

View File

@@ -77,3 +77,13 @@
cost: 1000
category: Service
group: market
- type: cargoProduct
id: ServiceJanitorBiosuit
icon:
sprite: Clothing/Head/Hoods/Bio/janitor.rsi
state: icon
product: CrateJanitorBiosuit
cost: 500
category: Service
group: market

View File

@@ -90,3 +90,16 @@
- type: StorageFill
contents:
- id: BoxInflatable
- type: entity
id: CrateGenericBiosuit
parent: CratePlastic
components:
- type: StorageFill
contents:
- id: ClothingOuterBioGeneral
amount: 2
- id: ClothingHeadHatHoodBioGeneral
amount: 2
- id: ClothingMaskGas
amount: 2

View File

@@ -135,4 +135,16 @@
- type: StorageFill
contents:
- id: MedkitRadiationFilled
amount: 4
amount: 4
- type: entity
id: CrateVirologyBiosuit
parent: CrateMedicalSecure
components:
- type: StorageFill
contents:
- id: ClothingOuterBioVirology
amount: 2
- id: ClothingHeadHatHoodBioVirology
amount: 2
- id: ClothingMaskSterile
amount: 2

View File

@@ -1 +1,12 @@
# Bro what do I PUT here
- type: entity
id: CrateScienceBiosuit
parent: CrateScienceSecure
components:
- type: StorageFill
contents:
- id: ClothingOuterBioScientist
amount: 2
- id: ClothingHeadHatHoodBioScientist
amount: 2
- id: ClothingMaskSterile
amount: 2

View File

@@ -75,5 +75,17 @@
- id: BoxZiptie
amount: 2
- type: entity
id: CrateSecurityBiosuit
parent: CrateSecgear
components:
- type: StorageFill
contents:
- id: ClothingOuterBioSecurity
amount: 2
- id: ClothingHeadHatHoodBioSecurity
amount: 2
- id: ClothingMaskSterile
amount: 2
# Cosmetic Crates

View File

@@ -111,3 +111,16 @@
contents:
- id: BookRandom
amount: 10
- type: entity
id: CrateJanitorBiosuit
parent: CratePlastic
components:
- type: StorageFill
contents:
- id: ClothingOuterBioJanitor
amount: 2
- id: ClothingHeadHatHoodBioJanitor
amount: 2
- id: ClothingMaskSterile
amount: 2