This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
forked from tgstation/TerraGov-Marine-Corps
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* experiment * hmm
- Loading branch information
Showing
4 changed files
with
12 additions
and
30 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/datum/map_template/shuttle/dropship_one | ||
prefix = "modular_RUtgmc/_maps/shuttles/" | ||
prefix = "_maps/~RUTGMC/shuttles/" | ||
shuttle_id = SHUTTLE_NORMANDY | ||
name = "Normandy" | ||
|
||
/datum/map_template/shuttle/dropship_two | ||
prefix = "modular_RUtgmc/_maps/shuttles/" | ||
prefix = "_maps/~RUTGMC/shuttles/" | ||
shuttle_id = SHUTTLE_ALAMO | ||
name = "Alamo" |
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 |
---|---|---|
@@ -1,47 +1,33 @@ | ||
/obj/docking_port/stationary/marine_dropship/hangar/one | ||
name = "Shipside 'Normandy' Hangar Pad" | ||
id = SHUTTLE_NORMANDY | ||
roundstart_template = /datum/map_template/shuttle/dropship_one | ||
|
||
/obj/docking_port/stationary/marine_dropship/hangar/two | ||
name = "Shipside 'Alamo' Hangar Pad" | ||
id = SHUTTLE_ALAMO | ||
roundstart_template = /datum/map_template/shuttle/dropship_two | ||
dheight = 6 | ||
dwidth = 4 | ||
height = 13 | ||
width = 9 | ||
|
||
/obj/docking_port/mobile/marine_dropship/one | ||
name = "Normandy" | ||
id = SHUTTLE_NORMANDY | ||
control_flags = SHUTTLE_MARINE_PRIMARY_DROPSHIP | ||
|
||
/obj/docking_port/mobile/marine_dropship/two | ||
name = "Alamo" | ||
id = SHUTTLE_ALAMO | ||
control_flags = SHUTTLE_MARINE_PRIMARY_DROPSHIP | ||
callTime = 28 SECONDS //smaller shuttle go whoosh | ||
rechargeTime = 1.5 MINUTES | ||
dheight = 6 | ||
dwidth = 4 | ||
height = 13 | ||
width = 9 | ||
|
||
/obj/machinery/computer/shuttle/shuttle_control/dropship | ||
name = "\improper 'Normandy' dropship console" | ||
desc = "The remote controls for the 'Normandy' Dropship. Named after a department in France, noteworthy for the famous naval invasion of Normandy on the 6th of June 1944, a bloody but decisive victory in World War II and the campaign for the Liberation of France." | ||
shuttleId = SHUTTLE_NORMANDY | ||
icon = 'icons/obj/machines/computer.dmi' | ||
icon_state = "shuttle" | ||
resistance_flags = RESIST_ALL | ||
req_one_access = list(ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_LEADER) // TLs can only operate the remote console | ||
possible_destinations = "lz1;lz2;alamo" | ||
compatible_control_flags = SHUTTLE_MARINE_PRIMARY_DROPSHIP | ||
|
||
|
||
/obj/machinery/computer/shuttle/shuttle_control/dropship/two | ||
name = "\improper 'Alamo' dropship console" | ||
desc = "The remote controls for the 'Alamo' Dropship. Named after the Alamo Mission, stage of the Battle of the Alamo in the United States' state of Texas in the Spring of 1836. The defenders held to the last, encouraging other Texans to rally to the flag." | ||
shuttleId = SHUTTLE_ALAMO | ||
possible_destinations = "lz1;lz2;normandy;alamo" | ||
|
||
/obj/machinery/computer/shuttle/marine_dropship/one | ||
name = "\improper 'Normandy' flight controls" | ||
desc = "The flight controls for the 'Normandy' Dropship. Named after a department in France, noteworthy for the famous naval invasion of Normandy on the 6th of June 1944, a bloody but decisive victory in World War II and the campaign for the Liberation of France." | ||
|
||
/obj/machinery/computer/shuttle/marine_dropship/two | ||
name = "\improper 'Alamo' flight controls" | ||
desc = "The flight controls for the 'Alamo' Dropship. Named after the Alamo Mission, stage of the Battle of the Alamo in the United States' state of Texas in the Spring of 1836. The defenders held to the last, encouraging other Texians to rally to the flag." |