-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aftershock: Fix the escape pod sequence (Once and for all?) (#72225)
* Mapgen Adjust Escapepod bay * New computers and interactions * Fix text spacing * More text fixing
- Loading branch information
1 parent
a68ab9a
commit 107d525
Showing
4 changed files
with
71 additions
and
21 deletions.
There are no files selected for viewing
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
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
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,7 @@ | ||
{ | ||
"type": "ter_furn_transform", | ||
"id": "afs_unlock_metal_doors", | ||
"terrain": [ | ||
{ "result": "t_door_metal_c", "valid_terrain": [ "t_door_metal_locked" ], "message": "The doors unlock." } | ||
] | ||
} |
31 changes: 31 additions & 0 deletions
31
data/mods/Aftershock/npcs/computers/escape_pod_control.json
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,31 @@ | ||
[ | ||
{ | ||
"id": "EOC_ESPOD_CONTROL", | ||
"type": "effect_on_condition", | ||
"effect": [ "open_dialogue" ] | ||
}, | ||
{ | ||
"type": "talk_topic", | ||
"id": [ "ESPOD_CONTROL_START" ], | ||
"dynamic_line": "&Cyma Interface [version 2.85.1004]\n************************************************\n* Copyright (c) Cyma Enterprise Systems 3013 *\n************************************************\n\nEscape Pod Control:", | ||
"responses": [ { "text": "Ready escape pod.", "topic": "ESPOD_CONTROL_READY" }, { "text": "Shut down.", "topic": "TALK_DONE" } ] | ||
}, | ||
{ | ||
"type": "talk_topic", | ||
"id": [ "ESPOD_CONTROL_READY" ], | ||
"dynamic_line": "&************************************************\n\nINTEGRITY CHK : ███████████████ 100% (COMPLETE)\nNAV TRANSFER : ███████████████ 100% (COMPLETE)\nFUELING : ███████████████ 100% (COMPLETE)\n\n************************************************\n* Operation Succesfull *\n************************************************", | ||
"responses": [ | ||
{ | ||
"text": "Continue.", | ||
"effect": [ { "u_transform_radius": 3, "ter_furn_transform": "afs_unlock_metal_doors" } ], | ||
"topic": "ESPOD_CONTROL_CONTINUE" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "talk_topic", | ||
"id": [ "ESPOD_CONTROL_CONTINUE" ], | ||
"dynamic_line": "&Escape pod launch procedure:\n\n 1) Ready escape pod. (COMPLETE)\n 2) Secure Passangers/Cargo.\n 3) Launch from pod controls.", | ||
"responses": [ { "text": "Shut down.", "topic": "TALK_DONE" } ] | ||
} | ||
] |