Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@
- MechBoardsPlus
- MonoAdvancedShuttleComponents # Hardlight
- CivShuttleWeapons # HL
- ReactorCircuitboards # HL
- type: EmagLatheRecipes
emagDynamicPacks: # Frontier: empty list
- SecurityBoards # Frontier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,24 @@
product: CrateSteelHeatExhanger
cost: 1000
category: cargoproduct-category-name-engineering
group: market
group: market

- type: cargoProduct
id: SmallNuclearReactorFlatpackPurchase #HL
icon:
sprite: _FarHorizons/Structures/Power/Generation/FissionGenerator/cargo_icons.rsi
state: reactor
product: SmallNuclearReactorFlatpack
cost: 8000
category: cargoproduct-category-name-engineering
group: market

- type: cargoProduct
id: GasTurbineSmallFlatpackPurchase #HL
icon:
sprite: _FarHorizons/Structures/Power/Generation/FissionGenerator/cargo_icons.rsi
state: turbine
product: GasTurbineSmallFlatpack
cost: 5000
category: cargoproduct-category-name-engineering
group: market
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,27 @@
- state: ame-part
- type: Flatpack
entity: Turbine

- type: entity
parent: [BaseFlatpack]
id: SmallNuclearReactorFlatpack # HL
name: small nuclear reactor flatpack
description: A flatpack used for constructing a small nuclear reactor. Now in Fun Size! Parts still sold separately.
components:
- type: Sprite
layers:
- state: ame-part
- type: Flatpack
entity: NuclearReactorSmallEmpty

- type: entity
parent: [BaseFlatpack]
id: GasTurbineSmallFlatpack # HL
name: small gas turbine flatpack
description: A flatpack used for constructing a small gas turbine. Now in Fun Size!
components:
- type: Sprite
layers:
- state: ame-part
- type: Flatpack
entity: TurbineSmall
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,14 @@
- type: NuclearReactor
prefab: random

- type: entity
id: NuclearReactorSmallEmpty #HL - Why didn't they already have one of these?
parent: NuclearReactorSmall
suffix: Empty
components:
- type: NuclearReactor
prefab: empty

- type: entity
id: NuclearReactorSmallMelted
parent: NuclearReactorMelted
Expand Down
9 changes: 9 additions & 0 deletions Resources/Prototypes/_HL/Catalog/Cargo/cargo_engineering.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- type: cargoProduct
id: CrateEngineeringTEGPurchase #HL
icon:
sprite: Structures/Storage/Crates/engineering.rsi
state: icon
product: CrateEngineeringTEG
cost: 30000
category: cargoproduct-category-name-engineering
group: market
12 changes: 12 additions & 0 deletions Resources/Prototypes/_HL/Catalog/Fills/Crates/engines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
- type: entity
id: CrateEngineeringTEG
parent: CrateEngineeringSecure
name: packaged thermoelectric generator crate
description: A complete thermoelectric generator in a box
components:
- type: StorageFill
contents:
- id: TegCirculatorFlatpack
amount: 2
- id: TegCenterFlatpack
amount: 1
Loading