Add Remote Medical Tracking to T3 Biochemical Tree (#6272)
* Added handheld monitors to the research tree. * changed logi crate parent * Added new board to dynamic pack * Namespaced new entity * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Apply suggestions from code review Co-authored-by: Radezolid <snappednexus@gmail.com> Signed-off-by: Vanessa <908648+ShepardToTheStars@users.noreply.github.com> --------- Signed-off-by: Vanessa <908648+ShepardToTheStars@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Radezolid <snappednexus@gmail.com>
This commit is contained in:
parent
5fe8a394ba
commit
71b6dfc0b1
|
|
@ -20,6 +20,7 @@ research-technology-service-borg-module = Advanced Service Borg Modules
|
|||
# Biochemical
|
||||
research-technology-basic-augmentation = Basic Augmentation
|
||||
research-technology-implanted-tools = Implanted Tools
|
||||
research-technology-medical-tracking = Remote Medical Tracking
|
||||
|
||||
# Arsenal
|
||||
research-technology-exotic-ammunition = Exotic Ammunition
|
||||
|
|
|
|||
|
|
@ -43,9 +43,9 @@
|
|||
icon:
|
||||
sprite: Structures/Machines/server.rsi
|
||||
state: server
|
||||
product: CrateCrewMonitoring
|
||||
product: CrateCrewMonitoringDV # DeltaV - Was CrateCrewMonitoring
|
||||
cost: 2000
|
||||
category: cargoproduct-category-name-epistemics # DeltaV - Science renamed to Epistemics
|
||||
category: cargoproduct-category-name-medical # DeltaV - Was science, now medical
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@
|
|||
Arsenal: { color: "#dc373b" }
|
||||
Experimental: { color: "#9a6ef0" }
|
||||
CivilianServices: { color: "#7ecd48" }
|
||||
|
||||
Biochemical: { color: "#449ae6" } # DeltaV - Biochem tree
|
||||
enum.TechDiskVisuals.Tier:
|
||||
t2_marks:
|
||||
2: { visible: true }
|
||||
|
|
|
|||
|
|
@ -58,3 +58,17 @@
|
|||
entity_storage: !type:AllSelector
|
||||
children:
|
||||
- id: CrashCart
|
||||
|
||||
- type: entity
|
||||
parent: CrateMedicalSecure
|
||||
id: CrateCrewMonitoringDV
|
||||
name: crew monitoring crate
|
||||
description: Contains a flatpack of a crew monitoring server and a few crew monitoring computers. Requires Medical access to open.
|
||||
components:
|
||||
- type: EntityTableContainerFill
|
||||
containers:
|
||||
entity_storage: !type:AllSelector
|
||||
children:
|
||||
- id: CrewMonitoringServerFlatpack
|
||||
- id: CrewMonitoringComputerFlatpack
|
||||
amount: 3
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
id: MedicalBoardsDeltaV
|
||||
recipes:
|
||||
- CrewMonitoringComputerCircuitboard
|
||||
- CrewMonitoringServerMachineCircuitboard
|
||||
- CloningConsoleComputerCircuitboard
|
||||
- MedicalScannerMachineCircuitboard
|
||||
- CloningPodMachineCircuitboard
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# Atmos
|
||||
#MARK: Atmos
|
||||
- type: latheRecipe
|
||||
parent: [ BaseCircuitboardRecipe, BaseEngineeringMachineRecipeCategory ]
|
||||
id: KitchenFreezerMachineCircuitBoard
|
||||
result: KitchenFreezerMachineCircuitBoard
|
||||
|
||||
#MARK: Medical
|
||||
- type: latheRecipe
|
||||
parent: [ BaseCircuitboardRecipe, BaseMedicalMachineRecipeCategory ]
|
||||
id: CrewMonitoringServerMachineCircuitboard
|
||||
result: CrewMonitoringServerMachineCircuitboard
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
# Tier 1
|
||||
|
||||
# Tier 2
|
||||
#MARK: Tier 2
|
||||
|
||||
- type: technology
|
||||
id: Cloning
|
||||
|
|
@ -17,4 +15,18 @@
|
|||
- MedicalScannerMachineCircuitboard
|
||||
- CloningPodMachineCircuitboard
|
||||
|
||||
# Tier 3
|
||||
#MARK: Tier 3
|
||||
|
||||
- type: technology
|
||||
id: MedicalTracking
|
||||
name: research-technology-medical-tracking
|
||||
icon:
|
||||
sprite: Objects/Specific/Medical/handheldcrewmonitor.rsi
|
||||
state: scanner
|
||||
discipline: Biochemical
|
||||
tier: 3
|
||||
cost: 15000
|
||||
recipeUnlocks:
|
||||
- HandheldCrewMonitor
|
||||
- CrewMonitoringServerMachineCircuitboard
|
||||
- CrewMonitoringComputerCircuitboard
|
||||
|
|
|
|||
Loading…
Reference in New Issue