Ports TG Hierophant trophy, and TG colossus changes. (#18666)

* Ports TG Hierophant trophy, colossus changes.

* Runechat / unneeded check

* makes colossus not control the time stream.

Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com>

* lewc's changes

* fuck

Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>

Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com>
Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
This commit is contained in:
Qwertytoforty
2022-08-02 12:24:26 -04:00
committed by GitHub
parent 0266a0bd85
commit a08468ac21
3 changed files with 80 additions and 19 deletions
@@ -442,17 +442,12 @@
denied_type = /obj/item/crusher_trophy/vortex_talisman
/obj/item/crusher_trophy/vortex_talisman/effect_desc()
return "mark detonation to create a barrier you can pass"
return "mark detonation to create a homing hierophant chaser"
/obj/item/crusher_trophy/vortex_talisman/on_mark_detonation(mob/living/target, mob/living/user)
var/turf/T = get_turf(user)
new /obj/effect/temp_visual/hierophant/wall/crusher(T, user) //a wall only you can pass!
var/turf/otherT = get_step(T, turn(user.dir, 90))
if(otherT)
new /obj/effect/temp_visual/hierophant/wall/crusher(otherT, user)
otherT = get_step(T, turn(user.dir, -90))
if(otherT)
new /obj/effect/temp_visual/hierophant/wall/crusher(otherT, user)
var/obj/effect/temp_visual/hierophant/chaser/chaser = new(get_turf(user), user, target, 3, TRUE)
chaser.monster_damage_boost = FALSE // Weaker due to no cooldown
chaser.damage = 20 //But also stronger due to AI / mining mob resistance
/obj/effect/temp_visual/hierophant/wall/crusher
duration = 75