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.
- Loading branch information
Showing
16 changed files
with
65 additions
and
38 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
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
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" |
Empty file.
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
40 changes: 40 additions & 0 deletions
40
modular_RUtgmc/code/modules/mob/living/carbon/xenomorph/castes/crusher/abilities_crusher.dm
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,40 @@ | ||
// *************************************** | ||
// *********** Regenerate Skin | ||
// *************************************** | ||
/datum/action/xeno_action/regenerate_skin | ||
name = "Regenerate Armor" | ||
action_icon_state = "regenerate_skin" | ||
desc = "Regenerate your hard exoskeleton armor, removing all sunder." | ||
ability_name = "regenerate skin" | ||
use_state_flags = XACT_TARGET_SELF|XACT_IGNORE_SELECTED_ABILITY|XACT_KEYBIND_USE_ABILITY | ||
plasma_cost = 400 | ||
cooldown_timer = 3 MINUTES | ||
keybind_flags = XACT_KEYBIND_USE_ABILITY | ||
keybinding_signals = list( | ||
KEYBINDING_NORMAL = COMSIG_XENOABILITY_REGENERATE_SKIN, | ||
) | ||
|
||
/datum/action/xeno_action/regenerate_skin/on_cooldown_finish() | ||
var/mob/living/carbon/xenomorph/X = owner | ||
to_chat(X, span_notice("We feel we are ready to shred our armor and grow another.")) | ||
return ..() | ||
|
||
/datum/action/xeno_action/regenerate_skin/action_activate() | ||
var/mob/living/carbon/xenomorph/crusher/X = owner | ||
|
||
if(!can_use_action(TRUE)) | ||
return fail_activate() | ||
|
||
if(X.on_fire) | ||
to_chat(X, span_xenowarning("We can't use that while on fire.")) | ||
return fail_activate() | ||
|
||
X.emote("roar") | ||
X.visible_message(span_warning("The armor on \the [X] shreds and a new layer can be seen in it's place!"), | ||
span_notice("We shed our armor, showing the fresh new layer underneath!")) | ||
|
||
X.do_jitter_animation(1000) | ||
X.set_sunder(0) | ||
add_cooldown() | ||
return succeed_activate() | ||
|
2 changes: 1 addition & 1 deletion
2
modular_RUtgmc/code/modules/mob/living/carbon/xenomorph/castes/praetorian/praetorian.dm
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,2 +1,2 @@ | ||
/mob/living/carbon/xenomorph/praetorian | ||
'modular_RUtgmc/icons/Xeno/castes/praetorian.dmi' | ||
icon = 'modular_RUtgmc/icons/Xeno/castes/praetorian.dmi' |
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." |
Binary file not shown.
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 |
---|---|---|
|
@@ -73,4 +73,3 @@ | |
background-position: center; | ||
background-repeat: no-repeat; | ||
} | ||
|