-
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.
- Loading branch information
Showing
27 changed files
with
317 additions
and
12 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
49 changes: 49 additions & 0 deletions
49
code/modules/mob/living/carbon/xenomorph/abilities/palatine/palatine_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,49 @@ | ||
/datum/action/xeno_action/onclick/palatine_roar | ||
name = "Roar" | ||
icon_file = 'icons/mob/hud/actions_palatine.dmi' | ||
action_icon_state = "screech_empower" | ||
ability_name = "roar" | ||
action_type = XENO_ACTION_CLICK | ||
ability_primacy = XENO_PRIMARY_ACTION_1 | ||
xeno_cooldown = 60 SECONDS | ||
plasma_cost = 50 | ||
|
||
var/roar_type = "piercing" | ||
var/screech_sound_effect = "sound/voice/alien_distantroar_3.ogg" | ||
var/bonus_damage_scale = 2.5 | ||
var/bonus_speed_scale = 0.05 | ||
|
||
/datum/action/xeno_action/onclick/palatine_change_roar | ||
name = "Change Roar" | ||
icon_file = 'icons/mob/hud/actions_palatine.dmi' | ||
action_icon_state = "screech_shift" | ||
ability_name = "change roar" | ||
action_type = XENO_ACTION_CLICK | ||
ability_primacy = XENO_NOT_PRIMARY_ACTION | ||
plasma_cost = 0 | ||
|
||
/datum/action/xeno_action/onclick/palatine_change_roar/use_ability(atom/A) | ||
var/mob/living/carbon/xenomorph/X = owner | ||
var/action_icon_result | ||
|
||
if(!X.check_state(1)) | ||
return | ||
|
||
var/datum/action/xeno_action/onclick/palatine_roar/PR = get_xeno_action_by_type(X, /datum/action/xeno_action/onclick/palatine_roar) | ||
if (!istype(PR)) | ||
return | ||
|
||
if (PR.roar_type == "piercing") | ||
action_icon_result = "screech_disrupt" | ||
PR.roar_type = "thundering" | ||
PR.screech_sound_effect = "sound/voice/4_xeno_roars.ogg" | ||
to_chat(X, SPAN_XENOWARNING("You will now disrupt dangers to the hive!")) | ||
|
||
else | ||
action_icon_result = "screech_empower" | ||
PR.roar_type = "piercing" | ||
PR.screech_sound_effect = "sound/voice/alien_distantroar_3.ogg" | ||
to_chat(X, SPAN_XENOWARNING("You will now empower your allies with rage!")) | ||
|
||
PR.button.overlays.Cut() | ||
PR.button.overlays += image('icons/mob/hud/actions_palatine.dmi', button, action_icon_result) |
49 changes: 49 additions & 0 deletions
49
code/modules/mob/living/carbon/xenomorph/abilities/palatine/palatine_powers.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,49 @@ | ||
/datum/action/xeno_action/onclick/palatine_roar/use_ability(atom/target) | ||
var/mob/living/carbon/xenomorph/xeno = owner | ||
|
||
if (!action_cooldown_check()) | ||
return | ||
|
||
if (!xeno.check_state()) | ||
return | ||
|
||
if(!check_and_use_plasma_owner()) | ||
return | ||
|
||
if(roar_type == "piercing") | ||
var/datum/behavior_delegate/palatine_base/behavior = xeno.behavior_delegate | ||
if(!istype(behavior)) | ||
to_chat(xeno, SPAN_ALERTWARNING("Something went wrong with your behavior delegate! Inform forest2001 or a coder!")) | ||
return FALSE | ||
if(behavior.thirst < 3) | ||
to_chat(xeno, SPAN_WARNING("You have not slain enough in the name of the Queen Mother to unleash this power!")) | ||
return FALSE | ||
|
||
xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] emits a piercing screech!")) | ||
for(var/mob/living/carbon/carbon in view(7, xeno)) | ||
if(isxeno(carbon) && xeno.can_not_harm(carbon)) | ||
new /datum/effects/xeno_buff(carbon, xeno, ttl = (0.5 SECONDS * behavior.thirst + 3 SECONDS), bonus_damage = bonus_damage_scale * behavior.thirst, bonus_speed = (bonus_speed_scale * behavior.thirst)) | ||
|
||
for(var/mob/M in view(xeno)) | ||
if(M && M.client) | ||
shake_camera(M, 10, 1) | ||
behavior.thirst = max(0, behavior.thirst - 3) | ||
to_chat(xeno, SPAN_XENOMINORWARNING("Your bloodlust cools as you unleash your rage.")) | ||
else | ||
xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] emits a thundering roar!")) | ||
for(var/mob/living/carbon/carbon in view(7, xeno)) | ||
if(ishuman(carbon)) | ||
var/mob/living/carbon/human/human = carbon | ||
human.disable_special_items() | ||
|
||
var/obj/item/clothing/gloves/yautja/hunter/YG = locate(/obj/item/clothing/gloves/yautja/hunter) in human | ||
if(isyautja(human) && YG) | ||
if(HAS_TRAIT(human, TRAIT_CLOAKED)) | ||
YG.decloak(human, TRUE, DECLOAK_PREDALIEN) | ||
|
||
xeno.create_shriekwave(9) | ||
playsound(xeno.loc, screech_sound_effect, 75, 0, status = 0) | ||
apply_cooldown() | ||
|
||
. = ..() | ||
return |
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
62 changes: 62 additions & 0 deletions
62
code/modules/mob/living/carbon/xenomorph/abilities/queen/mutated_flight.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,62 @@ | ||
/datum/action/xeno_action/activable/flight | ||
name = "Flight" | ||
icon_file = 'icons/mob/hud/actions_palatine.dmi' | ||
action_icon_state = "flight" | ||
plasma_cost = 200 | ||
xeno_cooldown = 1 MINUTES | ||
var/max_distance = 5 | ||
var/speed = 5 | ||
|
||
/datum/action/xeno_action/activable/flight/can_use_action() | ||
. = ..() | ||
if(!.) | ||
return FALSE | ||
|
||
/datum/action/xeno_action/activable/flight/use_ability(atom/target) | ||
if(!..()) | ||
return FALSE | ||
var/mob/living/carbon/xenomorph/xeno = owner | ||
if(isstorage(target.loc) || xeno.contains(target) || istype(target, /atom/movable/screen)) return FALSE | ||
|
||
if(!xeno.check_plasma(plasma_cost)) | ||
to_chat(owner, SPAN_XENOWARNING("You have insufficient plasma to do this.")) | ||
return FALSE | ||
if(target.z != xeno.z) | ||
to_chat(owner, SPAN_XENOWARNING("Not even you can fly that far!")) | ||
return FALSE | ||
apply_cooldown() | ||
|
||
use_plasma_owner() | ||
playsound(owner, 'sound/effects/wingflap.ogg') | ||
owner.visible_message(SPAN_DANGER("\The [src] spreads their wings and leaps into the air!"), \ | ||
SPAN_DANGER("You spread your wings and leap into the air!"), null, 5, CHAT_TYPE_XENO_COMBAT) | ||
|
||
var/turf/t_turf = get_turf(target) | ||
var/obj/effect/warning/hover/warning = new(t_turf) | ||
calculate_warning_turf(warning, owner, t_turf) | ||
|
||
//has sleep | ||
|
||
RegisterSignal(owner, COMSIG_CLIENT_MOB_MOVE, PROC_REF(disable_flying_movement)) | ||
owner.throw_atom(t_turf, max_distance, speed, launch_type = HIGH_LAUNCH) | ||
UnregisterSignal(owner, COMSIG_CLIENT_MOB_MOVE) | ||
qdel(warning) | ||
|
||
/datum/action/xeno_action/activable/flight/proc/disable_flying_movement(mob/living/carbon/human/user) | ||
SIGNAL_HANDLER | ||
return COMPONENT_OVERRIDE_MOVE | ||
|
||
/datum/action/xeno_action/activable/flight/proc/calculate_warning_turf(obj/effect/warning/warning, mob/living/user, turf/t_turf) | ||
var/t_dist = get_dist(user, t_turf) | ||
if(!(t_dist > max_distance)) | ||
return | ||
var/list/turf/path = get_line(user, t_turf, FALSE) | ||
warning.forceMove(path[max_distance]) | ||
|
||
/mob/living/carbon/xenomorph/proc/give_flight() | ||
give_action(src, /datum/action/xeno_action/activable/flight) | ||
message_admins("[key_name(usr)] gave [key_name(src)] flight!") | ||
|
||
/mob/living/carbon/xenomorph/proc/remove_flight() | ||
remove_action(src, /datum/action/xeno_action/activable/flight) | ||
message_admins("[key_name(usr)] removed flight from [key_name(src)]!") |
Oops, something went wrong.