Gave Blast door access permissions (#26606)

Added access reader to all blast doors. Added pre configured blast doors for engineering and science.
This commit is contained in:
Zealith-Gamer
2024-03-31 19:28:14 -07:00
committed by GitHub
parent c4f383c9ba
commit 5bb0179c25
2 changed files with 45 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
name: blast door name: blast door
description: This one says 'BLAST DONGER'. description: This one says 'BLAST DONGER'.
components: components:
- type: AccessReader
- type: Sprite - type: Sprite
sprite: Structures/Doors/Shutters/blastdoor.rsi sprite: Structures/Doors/Shutters/blastdoor.rsi
layers: layers:

View File

@@ -56,6 +56,8 @@
parent: BlastDoor parent: BlastDoor
suffix: Autolink, Bridge suffix: Autolink, Bridge
components: components:
- type: AccessReader
access: [["Command"]]
- type: AutoLinkReceiver - type: AutoLinkReceiver
channel: Bridge channel: Bridge
@@ -64,9 +66,51 @@
parent: BlastDoorOpen parent: BlastDoorOpen
suffix: Open, Autolink, Bridge suffix: Open, Autolink, Bridge
components: components:
- type: AccessReader
access: [["Command"]]
- type: AutoLinkReceiver - type: AutoLinkReceiver
channel: Bridge channel: Bridge
- type: entity
id: BlastDoorEngineering
parent: BlastDoor
suffix: Autolink, Engineering
components:
- type: AccessReader
access: [["Command"], ["Engineering"]]
- type: AutoLinkReceiver
channel: Engineering
- type: entity
id: BlastDoorEngineeringOpen
parent: BlastDoorOpen
suffix: Open, Autolink, Engineering
components:
- type: AccessReader
access: [["Command"], ["Engineering"]]
- type: AutoLinkReceiver
channel: Engineering
- type: entity
id: BlastDoorScience
parent: BlastDoor
suffix: Autolink, Science
components:
- type: AccessReader
access: [["Command"], ["Research"]]
- type: AutoLinkReceiver
channel: Research
- type: entity
id: BlastDoorScienceOpen
parent: BlastDoorOpen
suffix: Open, Autolink, Science
components:
- type: AccessReader
access: [["Command"], ["Research"]]
- type: AutoLinkReceiver
channel: Research
- type: entity - type: entity
id: BlastDoorWindows id: BlastDoorWindows
parent: BlastDoor parent: BlastDoor