-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You are the blood, flowing through my fingers
- Loading branch information
1 parent
29d93a3
commit 79cbc43
Showing
27 changed files
with
601 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/datum/xeno_shield/reaper | ||
var/mob/living/carbon/xenomorph/owner = null | ||
amount = 150 | ||
|
||
/datum/xeno_shield/reaper/on_hit(damage) | ||
var/damage_reduction = amount * 0.2 // If I am assuming shield code correctly, this means the damage reduction will scale actively with current shield amount | ||
damage -= damage_reduction | ||
if (damage <= 0) | ||
return 0 | ||
return ..(damage) | ||
|
||
/datum/xeno_shield/reaper/on_removal() | ||
. = ..() | ||
if(owner) | ||
owner.remove_suit_layer() |
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
46 changes: 46 additions & 0 deletions
46
code/modules/mob/living/carbon/xenomorph/abilities/reaper/reaper_abilities.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,46 @@ | ||
/datum/action/xeno_action/activable/flesh_harvest | ||
name = "Flesh Harvest" | ||
ability_name = "flesh harvest" | ||
action_icon_state = "gut" | ||
/macro_path = /datum/action/xeno_action/verb/verb_flesh_harvest | ||
action_type = XENO_ACTION_CLICK | ||
ability_primacy = XENO_PRIMARY_ACTION_1 | ||
xeno_cooldown = 5 SECONDS | ||
plasma_cost = 50 | ||
|
||
/datum/action/xeno_action/activable/flesh_bolster | ||
name = "Flesh Bolster" | ||
ability_name = "flesh bolster" | ||
action_icon_state = "empower" | ||
/macro_path = /datum/action/xeno_action/verb/verb_flesh_bolster | ||
action_type = XENO_ACTION_CLICK | ||
ability_primacy = XENO_PRIMARY_ACTION_2 | ||
xeno_cooldown = 15 SECONDS | ||
plasma_cost = 100 | ||
var/resin_cost = 100 | ||
var/self_duration = 10 SECONDS | ||
var/max_range = 4 | ||
var/fren_heal = 150 | ||
|
||
|
||
/datum/action/xeno_action/activable/meat_shield | ||
name = "Meat Shield" | ||
ability_name = "meat shield" | ||
action_icon_state = "rav_shard_shield" | ||
/macro_path = /datum/action/xeno_action/verb/verb_meat_shield | ||
action_type = XENO_ACTION_CLICK | ||
ability_primacy = XENO_PRIMARY_ACTION_3 | ||
xeno_cooldown = 20 SECONDS | ||
plasma_cost = 100 | ||
var/resin_cost = 200 | ||
var/max_range = 4 | ||
|
||
/datum/action/xeno_action/activable/claw_strike | ||
name = "Claw Strike" | ||
ability_name = "claw strike" | ||
action_icon_state = "claw_strike" | ||
/macro_path = /datum/action/xeno_action/verb/verb_claw_strike | ||
action_type = XENO_ACTION_CLICK | ||
ability_primacy = XENO_PRIMARY_ACTION_4 | ||
xeno_cooldown = 10 SECONDS | ||
var/strike_range = 2 |
27 changes: 27 additions & 0 deletions
27
code/modules/mob/living/carbon/xenomorph/abilities/reaper/reaper_macros.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,27 @@ | ||
/datum/action/xeno_action/verb/verb_flesh_harvest | ||
set category = "Alien" | ||
set name = "Flesh Harvest" | ||
set hidden = TRUE | ||
var/action_name = "Flesh Harvest" | ||
handle_xeno_macro(src, action_name) | ||
|
||
/datum/action/xeno_action/verb/verb_flesh_bolster | ||
set category = "Alien" | ||
set name = "Flesh Bolster" | ||
set hidden = TRUE | ||
var/action_name = "Flesh Bolster" | ||
handle_xeno_macro(src, action_name) | ||
|
||
/datum/action/xeno_action/verb/verb_meat_shield | ||
set category = "Alien" | ||
set name = "Meat Shield" | ||
set hidden = TRUE | ||
var/action_name = "Meat Shield" | ||
handle_xeno_macro(src, action_name) | ||
|
||
/datum/action/xeno_action/verb/verb_claw_strike | ||
set category = "Alien" | ||
set name = "Claw Strike" | ||
set hidden = TRUE | ||
var/action_name = "Claw Strike" | ||
handle_xeno_macro(src, action_name) |
Oops, something went wrong.