-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from Fansana/secret-doors
Add Secret Doors
- Loading branch information
Showing
27 changed files
with
749 additions
and
0 deletions.
There are no files selected for viewing
109 changes: 109 additions & 0 deletions
109
Resources/Prototypes/_NF/Entities/Structures/Doors/secret_door.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.