-
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.
Re-added ability to launch nuclear missile to No Hope mod, once again (…
…#76214) * Returned a mod's exclusive variant of finale with a computer able to launch nuclear missile * Replaced manual placing of mininuke with a placing 'crater' overmap special Also removed no longer needed 'nuke' explosion handler. * Added myself back to the list of mod's maintainers * remove unused statics --------- Co-authored-by: Kevin Granade <[email protected]>
- Loading branch information
1 parent
d2ecf5e
commit 1a13be3
Showing
5 changed files
with
76 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
[ | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"om_terrain": [ "silo_finale" ], | ||
"//": "Adds a missile launch option to the finale's computer", | ||
"weight": 400, | ||
"object": { | ||
"fill_ter": "t_thconc_floor", | ||
"rows": [ | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" │││││││││││ ", | ||
" ││~~~~~~~~~│││││ │││││ ", | ||
"││~~~~~~~~~~~││Y│││4│a││", | ||
"│~~~~~~~~~~~~~+........│", | ||
"│~~~~~~~~~~~~~|.││││││.│", | ||
"│~~~~~~~~~~~~~|.|x..a│.│", | ||
"│~~~~~~~~~~~~~|.|x...│.│", | ||
"│~~~~~~~~~~~~~|.|6c..+.│", | ||
"│~~~~~~~~~~~~~|.|x...│Y│", | ||
"│~~~~~~~~~~~~~|.|x...│││", | ||
"│~~~~~~~~~~~~~|.│....│ ", | ||
"│~~~~~~~~~~~~~│.│%%%%│││", | ||
"││~~~~~~~~~~~││.││││││^│", | ||
" ││~~~~~~~~~│││..+....$│", | ||
" │││││││││││ ││││Y│<│$│", | ||
" │││││││" | ||
], | ||
"terrain": { | ||
" ": "t_rock", | ||
"│": "t_wall_metal", | ||
".": "t_thconc_floor", | ||
"~": "t_metal_floor_no_roof", | ||
"|": "t_reinforced_glass_shutter_open", | ||
"?": "t_door_metal_c_peep", | ||
"+": "t_door_metal_locked", | ||
"<": "t_stairs_up", | ||
"Y": "t_card_military", | ||
"^": "t_elevator_control_off", | ||
"$": "t_elevator" | ||
}, | ||
"furniture": { | ||
"x": "f_console_broken", | ||
"%": "f_machinery_electronic", | ||
"1": "f_speaker_cabinet", | ||
"4": "f_speaker_cabinet", | ||
"a": "f_air_conditioner", | ||
"c": "f_chair" | ||
}, | ||
"computers": { | ||
"6": { | ||
"name": "Missile Controls", | ||
"access_denied": "ERROR! Access denied! Unauthorized access will be met with lethal force!", | ||
"security": 1, | ||
"failures": [ { "action": "alarm" }, { "action": "damage" }, { "action": "secubots" } ], | ||
"options": [ { "name": "Launch Missile", "action": "miss_launch" }, { "name": "Disarm Missile", "action": "miss_disarm" } ] | ||
} | ||
}, | ||
"place_graffiti": [ { "text": "Warning! Automatic security measures engaged due to the lockdown order!", "x": 17, "y": 20 } ], | ||
"place_monster": [ { "monster": "mon_zombie_hazmat", "x": 8, "y": 15 } ] | ||
} | ||
} | ||
] |
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
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