Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Secret Doors #189

Merged
merged 1 commit into from
Sep 13, 2024
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
109 changes: 109 additions & 0 deletions Resources/Prototypes/_NF/Entities/Structures/Doors/secret_door.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
#reinforced secret door
- type: entity
id: ReinforcedSecretDoorAssembly
name: secret reinforced door assembly
parent: BaseSecretDoorAssembly
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_reinforced.rsi
state: assembly
- type: Construction
graph: ReinforcedSecretDoorGraph
node: assembly

- type: entity
id: SolidReinforcedSecretDoor
name: reinforced wall
parent: BaseSecretDoor
components:
- type: Construction
graph: ReinforcedSecretDoorGraph
node: ReinforcedSecretDoorNode
containers:
- battery-container
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_reinforced.rsi

#wood secret door
- type: entity
id: WoodSecretDoorAssembly
name: secret wood door assembly
parent: BaseSecretDoorAssembly
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_wood.rsi
state: assembly
- type: Construction
graph: WoodSecretDoorGraph
node: assembly
placement:
mode: SnapgridCenter

- type: entity
id: WoodSecretDoor
name: wood wall
parent: BaseSecretDoor
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_wood.rsi
- type: Construction
graph: WoodSecretDoorGraph
node: WoodSecretDoorNode
containers:
- battery-container

#uranium secret door
- type: entity
id: UraniumSecretDoorAssembly
name: secret uranium door assembly
parent: BaseSecretDoorAssembly
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_uranium.rsi
state: assembly
- type: Construction
graph: UraniumSecretDoorGraph
node: assembly
placement:
mode: SnapgridCenter

- type: entity
id: UraniumSecretDoor
name: uranium wall
parent: BaseSecretDoor
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_uranium.rsi
- type: Construction
graph: UraniumSecretDoorGraph
node: UraniumSecretDoorNode
containers:
- battery-container

#shuttle secret door
- type: entity
id: ShuttleSecretDoorAssembly
name: secret shuttle door assembly
parent: BaseSecretDoorAssembly
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_shuttle.rsi
state: assembly
- type: Construction
graph: ShuttleSecretDoorGraph
node: assembly
placement:
mode: SnapgridCenter

- type: entity
id: ShuttleSecretDoor
name: shuttle wall
parent: BaseSecretDoor
components:
- type: Sprite
sprite: _NF/Structures/Doors/secret_door_shuttle.rsi
- type: Construction
graph: ShuttleSecretDoorGraph
node: ShuttleSecretDoorNode
containers:
- battery-container
Loading
Loading