Fix CargoProducts (#750)

This commit is contained in:
ShadowCommander
2020-02-28 05:58:43 -08:00
committed by GitHub
parent 3e9b93faee
commit bd773aef3b
3 changed files with 78 additions and 65 deletions

View File

@@ -70,7 +70,9 @@
name: "Bike Horn" name: "Bike Horn"
id: cargo.bikehorn id: cargo.bikehorn
description: HONK! description: HONK!
icon: Objects/Fun/bikehorn.rsi icon:
sprite: Objects/Fun/bikehorn.rsi
state: icon
product: crate_bikehorn product: crate_bikehorn
cost: 300 cost: 300
category: Other category: Other
@@ -102,7 +104,9 @@
name: "Medical Scanner" name: "Medical Scanner"
id: cargo.medscanner id: cargo.medscanner
description: Scans patients. First we stick this probe... description: Scans patients. First we stick this probe...
icon: Buildings/medical_scanner.rsi icon:
sprite: Buildings/medical_scanner.rsi
state: scanner_open
product: crate_medscanner product: crate_medscanner
cost: 400 cost: 400
category: Medical category: Medical

View File

@@ -83,8 +83,17 @@
static: true static: true
products: products:
- cargo.dice - cargo.dice
- cargo.flashlight
- cargo.Medkit - cargo.Medkit
- cargo.flashlight
- cargo.lightblub
- cargo.fireextinguisher
- cargo.pen
- cargo.bikehorn
- cargo.cleaver
- cargo.fueltank
- cargo.medscanner
- cargo.glass
- cargo.cable
- type: UserInterface - type: UserInterface
interfaces: interfaces:
- key: enum.CargoConsoleUiKey.Key - key: enum.CargoConsoleUiKey.Key

View File

@@ -124,119 +124,119 @@
name: Flashlight Crate (x5) name: Flashlight Crate (x5)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Flashlight - FlashlightLantern
- Flashlight - FlashlightLantern
- Flashlight - FlashlightLantern
- Flashlight - FlashlightLantern
- Flashlight - FlashlightLantern
- type: entity - type: entity
id: crate_light_bulb id: crate_light_bulb
name: Light Bulb Crate (x10) name: Light Bulb Crate (x10)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- Light Bulb - LightBulb
- type: entity - type: entity
id: crate_fire_extinguisher id: crate_fire_extinguisher
name: Fire Extinguisher Crate (x3) name: Fire Extinguisher Crate (x3)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Fire Extinguisher - fire_extinguisher
- Fire Extinguisher - fire_extinguisher
- Fire Extinguisher - fire_extinguisher
- type: entity - type: entity
id: crate_pen id: crate_pen
name: Pen Crate (x10) name: Pen Crate (x10)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- Pen - Pen
- type: entity - type: entity
id: crate_bikehorn id: crate_bikehorn
name: Bike Horn Crate (x5) name: Bike Horn Crate (x5)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Bike Horn - BikeHorn
- Bike Horn - BikeHorn
- Bike Horn - BikeHorn
- Bike Horn - BikeHorn
- Bike Horn - BikeHorn
- type: entity - type: entity
id: crate_cleaver id: crate_cleaver
name: Cleaver Crate (x5) name: Cleaver Crate (x5)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Cleaver - ButchCleaver
- Cleaver - ButchCleaver
- Cleaver - ButchCleaver
- Cleaver - ButchCleaver
- Cleaver - ButchCleaver
- type: entity - type: entity
id: crate_fueltank id: crate_fueltank
name: Fuel Tank name: Fuel Tank
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Fuel Tank - weldtank
- type: entity - type: entity
id: crate_medscanner id: crate_medscanner
name: Medical Scanner name: Medical Scanner
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- Medical Scanner - medical_scanner
- type: entity - type: entity
id: crate_glass id: crate_glass
name: Glass Sheet Crate (x50) name: Glass Sheet Crate (x50)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- GlassStack - GlassStack
- type: entity - type: entity
id: crate_cable id: crate_cable
name: Cable Coil Crate (x50) name: Cable Coil Crate (x50)
parent: crate_generic parent: crate_generic
components: components:
- type: StorageFill - type: StorageFill
contents: contents:
- CableStack - CableStack