Skip to content

Commit

Permalink
blood filler cargo orders (#173)
Browse files Browse the repository at this point in the history
# Description
Adds the slime tank and blood tank orders to cargo for 2.5k each
  • Loading branch information
SomeCabbage authored Jun 30, 2023
1 parent d6f27be commit f1b3725
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
- type: cargoProduct
id: MedicalBloodTank
name: Blood tank crate
description: "Contains a tank of blood."
icon:
sprite: SimpleStation14/Structures/Storage/tanks.rsi
state: bloodtankblood
product: CrateMedicalBloodTank
cost: 2500
category: Medical
group: market

- type: cargoProduct
id: MedicalSlimeTank
name: slime tank crate
description: "Contains a tank of slime."
icon:
sprite: SimpleStation14/Structures/Storage/tanks.rsi
state: bloodtankblood
product: CrateMedicalSlimeTank
cost: 2500
category: Medical
group: market
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
- type: entity
id: CrateMedicalBloodTank
name: blood tank crate
description: "Contains a tank of blood."
parent: CrateMedicalSecure
components:
- type: StorageFill
contents:
- id: BloodTankBloodFull
amount: 1

- type: entity
id: CrateMedicalSlimeTank
name: slime tank crate
description: "Contains a tank of slime."
parent: CrateMedicalSecure
components:
- type: StorageFill
contents:
- id: BloodTankSlimeFull
amount: 1

0 comments on commit f1b3725

Please sign in to comment.