Add Medical Tracker Implanter (#5538)
* Add Medical Tracker Implanter * Add Medical Tracker to Salvagers * Remove Initial Injection * Added requested changes * YAML Convention Signed-off-by: Radezolid <snappednexus@gmail.com> --------- Signed-off-by: Radezolid <snappednexus@gmail.com> Co-authored-by: Radezolid <snappednexus@gmail.com>
This commit is contained in:
parent
e4690c52fe
commit
6833ebcf5a
|
|
@ -21,9 +21,10 @@ mining-voucher-resonator-description =
|
|||
of energy that resonate until they detonate, crushing rock.
|
||||
It does increased damage in low pressure.
|
||||
|
||||
mining-voucher-survival-name = Survival Capsule and Explorer's Webbing
|
||||
mining-voucher-survival-name = Survival Capsule, Explorer's Webbing, and Medical Tracking Implanter
|
||||
mining-voucher-survival-description =
|
||||
Contains an explorer's webbing, which allows you to carry even more mining equipment, and a spare shelter capsule to go with it.
|
||||
Contains an explorer's webbing, which allows you to carry even more mining equipment,
|
||||
a spare shelter capsule, and a medical tracking implanter to go with it.
|
||||
|
||||
mining-voucher-minebot-name = Minebot Kit
|
||||
mining-voucher-minebot-description =
|
||||
|
|
|
|||
|
|
@ -63,3 +63,5 @@
|
|||
- id: ShelterCapsuleBar
|
||||
cost: 10000
|
||||
# TODO: mining drone stuff
|
||||
- id: MedicalTrackingImplanter
|
||||
cost: 10000
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@
|
|||
content:
|
||||
- ClothingBeltSalvageWebbing
|
||||
- ShelterCapsule
|
||||
- MedicalTrackingImplanter
|
||||
|
||||
# TODO: mining drone
|
||||
#- type: thiefBackpackSet
|
||||
|
|
|
|||
|
|
@ -22,6 +22,14 @@
|
|||
- type: Implanter
|
||||
implant: WatchdogImplant
|
||||
|
||||
- type: entity
|
||||
parent: BaseImplantOnlyImplanter
|
||||
id: MedicalTrackingImplanter
|
||||
name: medical tracking implanter
|
||||
components:
|
||||
- type: Implanter
|
||||
implant: MedicalTrackingImplant
|
||||
|
||||
- type: entity
|
||||
parent: BaseImplantOnlyImplanterCentcomm
|
||||
id: CentCommImplanter
|
||||
|
|
|
|||
|
|
@ -41,6 +41,21 @@
|
|||
targetUser: true
|
||||
radioChannel: Security
|
||||
|
||||
- type: entity
|
||||
parent: BaseSubdermalImplant
|
||||
id: MedicalTrackingImplant
|
||||
categories: [ HideSpawnMenu ]
|
||||
name: medical tracking implant
|
||||
description: This implants transmits a message on the medical channel in case the user goes into critical state or dies.
|
||||
components:
|
||||
- type: TriggerOnMobstateChange
|
||||
mobState:
|
||||
- Critical
|
||||
- Dead
|
||||
- type: RattleOnTrigger
|
||||
targetUser: true
|
||||
radioChannel: Medical
|
||||
|
||||
- type: entity
|
||||
parent: BaseSubdermalImplant
|
||||
id: CentCommImplant
|
||||
|
|
|
|||
Loading…
Reference in New Issue