-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fleshmother Initial Commit * Flesh Egg Sound and Babs * Beast Mother - Final Touches, Enraged Beasties Sans Undertale easteregg ahh beastie * Introducing: GutMuncher! * File Changes, braingusher mob, new buff + edits AND A NEW BUFF!! * Braingusher!!! * Braingusher fix * Accidentally pushed map changes, woops. * Name edits! * Should probably add .dm huh. * ugh im tired ffs this compiles now * Else... Deleted... Perish... * Minorsquishingofbugsdotestmaybetomakesurenobreaky! * namefix fuck my LIFE man * Audio Additions, Balance Changes! * quickquick! * dview so they don't runtime in darkness, woops! * Wendigo Ability Fix, DREAM bEastR tweaks * Working Claws and Ability on Wendigo * New var added to prevent movement
- Loading branch information
Showing
24 changed files
with
503 additions
and
33 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
29 changes: 29 additions & 0 deletions
29
modular_causticcove/code/datums/status_effects/rogue/causticdebuff.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,29 @@ | ||
//////////////// | ||
//EFFECT BUFFS// | ||
//////////////// | ||
|
||
|
||
/datum/status_effect/buff/induced_insanity //What is... happening!? | ||
id = "inducedinsanity" | ||
alert_type = /atom/movable/screen/alert/status_effect/buff/induced_insanity | ||
effectedstats = list("strength" = -2, "perception" = -2, "constitution" = -1, "endurance" = -1, "speed" = -6, "fortune" = -6) | ||
duration = 1 MINUTES | ||
|
||
/atom/movable/screen/alert/status_effect/buff/induced_insanity | ||
name = "##^%$*%!!?" | ||
desc = "WWHAAAT IS HAAAPENNIINGG!? AAHAHHAHAAA!!!" | ||
icon_state = "status" | ||
|
||
/datum/status_effect/buff/induced_insanity/process() | ||
. = ..() | ||
var/mob/living/carbon/human/C = owner | ||
var/atom/movable/screen/fullscreen/maniac/hallucinations | ||
//Check if it's null to prevent runtiming. | ||
if(C == null) | ||
return | ||
hallucinations = owner.overlay_fullscreen("maniac", /atom/movable/screen/fullscreen/maniac) | ||
if(istype(C, /mob/living/carbon/human)) | ||
handle_maniac_visions(C, hallucinations) | ||
handle_maniac_hallucinations(C) | ||
handle_maniac_floors(C) | ||
handle_maniac_walls(C) |
Oops, something went wrong.