Add chem barrels to salvage (#37204)
* Add chem barrels to salvage * Resprite and attribution before someone gets on my ass * redo rad barrel too
@@ -77,6 +77,15 @@
|
||||
weight: 0.5
|
||||
- id: ScrapMopBucket
|
||||
weight: 0.5
|
||||
- !type:GroupSelector
|
||||
weight: 2
|
||||
children:
|
||||
- !type:NestedSelector
|
||||
weight: 3
|
||||
tableId: RandomChemicalBarrel
|
||||
- !type:NestedSelector
|
||||
weight: 1
|
||||
tableId: RandomChemicalBarrelRadioactive
|
||||
|
||||
# Treasure: High-value scatterables that don't do a ton.
|
||||
|
||||
|
||||
233
Resources/Prototypes/Entities/Structures/Storage/barrels.yml
Normal file
@@ -0,0 +1,233 @@
|
||||
- type: entity
|
||||
parent: [ StorageTank ]
|
||||
id: BaseBarrelChem
|
||||
abstract: true
|
||||
name: chemical barrel
|
||||
description: A small metal drum. How tropical.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Structures/Storage/barrels.rsi
|
||||
state: metalbarrel
|
||||
noRot: true
|
||||
- type: Fixtures
|
||||
fixtures:
|
||||
fix1:
|
||||
shape:
|
||||
!type:PhysShapeAabb
|
||||
bounds: "-0.18,-0.48,0.18,0.28"
|
||||
density: 200
|
||||
mask:
|
||||
- MachineMask
|
||||
layer:
|
||||
- MachineLayer
|
||||
- type: Destructible
|
||||
thresholds:
|
||||
- trigger:
|
||||
!type:DamageTrigger
|
||||
damage: 100
|
||||
behaviors:
|
||||
- !type:DoActsBehavior
|
||||
acts: [ "Destruction" ]
|
||||
- trigger:
|
||||
!type:DamageTrigger
|
||||
damage: 25
|
||||
behaviors:
|
||||
- !type:SpillBehavior
|
||||
solution: tank
|
||||
- !type:PlaySoundBehavior
|
||||
sound:
|
||||
collection: MetalBreak
|
||||
- !type:DoActsBehavior
|
||||
acts: ["Destruction"]
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
- type: PhysicalComposition
|
||||
materialComposition:
|
||||
Steel: 3000 # 30 sheets, 1 stack
|
||||
- type: ExaminableSolution
|
||||
solution: tank
|
||||
- type: StaticPrice
|
||||
price: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BaseBarrelChemRadioactive
|
||||
abstract: true
|
||||
name: radioactive barrel
|
||||
description: It seems to be leaking a bit. I don't think you'd want to be around this for long.
|
||||
components:
|
||||
- type: Sprite
|
||||
state: radbarrel
|
||||
- type: RadiationSource
|
||||
intensity: 1.0
|
||||
slope: 0.25
|
||||
|
||||
- type: entityTable
|
||||
id: RandomChemicalBarrel
|
||||
table: !type:GroupSelector
|
||||
children:
|
||||
- id: BarrelChemFilledIodine
|
||||
- id: BarrelChemFilledFluorine
|
||||
- id: BarrelChemFilledChlorine
|
||||
- id: BarrelChemFilledEthanol
|
||||
- id: BarrelChemFilledPhosphorus
|
||||
- id: BarrelChemFilledSilicon
|
||||
- id: BarrelChemFilledMercury
|
||||
- id: BarrelChemFilledLube # oiled up...
|
||||
weight: 0.1
|
||||
|
||||
- type: entityTable
|
||||
id: RandomChemicalBarrelRadioactive
|
||||
table: !type:GroupSelector
|
||||
children:
|
||||
- id: BaseBarrelChemRadioactiveEmpty
|
||||
weight: 2
|
||||
- id: BaseBarrelChemRadioactiveFilledRadium
|
||||
- id: BaseBarrelChemRadioactiveFilledUranium
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemEmpty
|
||||
suffix: Empty
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledIodine
|
||||
suffix: Iodine
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Iodine
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledFluorine
|
||||
suffix: Fluorine
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Fluorine
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledChlorine
|
||||
suffix: Chlorine
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Chlorine
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledEthanol
|
||||
suffix: Ethanol
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Ethanol
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledPhosphorus
|
||||
suffix: Phosphorus
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Phosphorus
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledMercury
|
||||
suffix: Mercury
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Mercury
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledSilicon
|
||||
suffix: Silicon
|
||||
components:
|
||||
- type: Sprite
|
||||
state: silicatebarrel
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Silicon
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChem
|
||||
id: BarrelChemFilledLube
|
||||
suffix: Lube
|
||||
description: Slippery...
|
||||
components:
|
||||
- type: Sprite
|
||||
state: silicatebarrel
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: SpaceLube
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChemRadioactive
|
||||
id: BaseBarrelChemRadioactiveEmpty
|
||||
suffix: Empty
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChemRadioactive
|
||||
id: BaseBarrelChemRadioactiveFilledRadium
|
||||
suffix: Radium
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Radium
|
||||
Quantity: 500
|
||||
|
||||
- type: entity
|
||||
parent: BaseBarrelChemRadioactive
|
||||
id: BaseBarrelChemRadioactiveFilledUranium
|
||||
suffix: Uranium
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
tank:
|
||||
maxVol: 500
|
||||
reagents:
|
||||
- ReagentId: Uranium
|
||||
Quantity: 500
|
||||
|
After Width: | Height: | Size: 961 B |
|
After Width: | Height: | Size: 589 B |
42
Resources/Textures/Structures/Storage/barrels.rsi/meta.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/4d150fd98a7b067305c157ad79431fa150f2c145/icons/obj/objects.dmi, modified and adapted by EmoGarbage404 (github)",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "waterbarrel"
|
||||
},
|
||||
{
|
||||
"name": "weldbarrel"
|
||||
},
|
||||
{
|
||||
"name": "silicatebarrel"
|
||||
},
|
||||
{
|
||||
"name": "woodenbarrel"
|
||||
},
|
||||
{
|
||||
"name": "metalbarrel"
|
||||
},
|
||||
{
|
||||
"name": "flamingmetalbarrel",
|
||||
"delays": [
|
||||
[
|
||||
0.1,
|
||||
0.1,
|
||||
0.1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "iedweldbarrel"
|
||||
},
|
||||
{
|
||||
"name": "radbarrel"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 454 B |
BIN
Resources/Textures/Structures/Storage/barrels.rsi/radbarrel.png
Normal file
|
After Width: | Height: | Size: 620 B |
|
After Width: | Height: | Size: 407 B |
|
After Width: | Height: | Size: 379 B |
BIN
Resources/Textures/Structures/Storage/barrels.rsi/weldbarrel.png
Normal file
|
After Width: | Height: | Size: 454 B |
|
After Width: | Height: | Size: 419 B |