-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Adds the slime tank and blood tank orders to cargo for 2.5k each
- Loading branch information
1 parent
d6f27be
commit f1b3725
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_medical.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,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 |
21 changes: 21 additions & 0 deletions
21
Resources/Prototypes/SimpleStation14/Catalog/Fills/Crates/medical.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,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 |