Skip to content

Commit

Permalink
HotFix: Pandora minions
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalFaceLesS committed Aug 8, 2024
1 parent 30f0b69 commit d67b9fb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mod_celadon/mobs/code/simple_animal/wizard_constructs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
playstyle_string = "<b>You are a Juggernaut. Though slow, your shell can withstand heavy punishment, \
create shield walls, rip apart enemies and walls alike, and even deflect energy weapons.</b>"

/mob/living/simple_animal/hostile/construct/juggernaut/wizard/Initialize()
. = ..()
addtimer(CALLBACK(src, PROC_REF(death)), 100)

/mob/living/simple_animal/hostile/construct/juggernaut/wizard/hostile //actually hostile, will move around, hit things
AIStatus = AI_ON
environment_smash = ENVIRONMENT_SMASH_STRUCTURES //only token destruction, don't smash the cult wall NO STOP
Expand Down Expand Up @@ -65,6 +69,10 @@
playstyle_string = "<b>You are a Wraith. Though relatively fragile, you are fast, deadly, can phase through walls, and your attacks will lower the cooldown on phasing.</b>"
glowtheme = "wizard"

/mob/living/simple_animal/hostile/construct/wraith/wizard/Initialize()
. = ..()
addtimer(CALLBACK(src, PROC_REF(death)), 100)

/mob/living/simple_animal/hostile/construct/wraith/wizard/AttackingTarget() //refund jaunt cooldown when attacking living targets
var/prev_stat
if(isliving(target) && !iscultist(target))
Expand Down

0 comments on commit d67b9fb

Please sign in to comment.