-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
deltanedas
committed
Nov 4, 2024
1 parent
7f53bd3
commit 5fc66c7
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
Resources/Prototypes/DeltaV/Catalog/Fills/Crates/engine.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,45 @@ | ||
- type: entity | ||
parent: CrateEngineering | ||
id: CrateEngineEssentials | ||
name: engine essentials crate | ||
description: Everything you need to power the station, in a superposition of containing both a singularity and a tesla. | ||
suffix: 1 per map MAX | ||
components: | ||
- type: EntityTableContainerFill | ||
containers: | ||
entity_storage: !type:GroupSelector | ||
children: | ||
- !type:NestedSelector | ||
tableId: TeslaEssentials | ||
- !type:NestedSelector | ||
tableId: SingularityEssentials | ||
|
||
- type: entityTable | ||
id: TeslaEssentials | ||
table: !type:AllSelector | ||
children: | ||
- id: TeslaGeneratorFlatpack | ||
- id: TeslaGeneratorFlatpack | ||
prob: 0.3 # Small chance of a free backup | ||
- id: TeslaCoilFlatpack | ||
amount: !type:RangeNumberSelector | ||
range: 4, 6 | ||
- id: TeslaGroundingRodFlatpack | ||
amount: !type:ConstantNumberSelector | ||
value: 4 | ||
|
||
- type: entityTable | ||
id: SingularityEssentials | ||
table: !type:AllSelector | ||
children: | ||
- id: SingularityGeneratorFlatpack | ||
- id: SingularityGeneratorFlatpack | ||
prob: 0.3 # Small chance of a free backup | ||
# intentionally separate rolls so they are probably mismatched | ||
# you might get spare tanks you might have to get more from the tank dispenser | ||
- id: RadiationCollectorFlatpack | ||
amount: !type:RangeNumberSelector | ||
range: 8, 12 | ||
- id: PlasmaTankFilled | ||
amount: !type:RangeNumberSelector | ||
range: 8, 12 |