mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-20 18:46:31 +01:00
Holosynx Gib override and additional death flavour text
This commit is contained in:
@@ -346,7 +346,10 @@ mob/living/simple_animal/synx/PunchTarget()
|
||||
speak -= (pick(speak))//making the list more dynamic
|
||||
if(resting)
|
||||
resting = !resting
|
||||
if(message=="Honk!")
|
||||
bikehorn()
|
||||
|
||||
//HONKMOTHER Code.
|
||||
/mob/living/simple_animal/retaliate/synx/proc/honk()
|
||||
set name = "HONK"
|
||||
set desc = "TAAA RAINBOW"
|
||||
@@ -354,12 +357,24 @@ mob/living/simple_animal/synx/PunchTarget()
|
||||
icon_state = "synx_pet_rainbow"
|
||||
icon_living = "synx_pet_rainbow"
|
||||
playsound(src.loc, 'sound/items/bikehorn.ogg', 50, 1)
|
||||
|
||||
/mob/living/simple_animal/retaliate/synx/proc/bikehorn()
|
||||
src.say("Honk!")
|
||||
playsound(src.loc, 'sound/items/bikehorn.ogg', 50, 1)
|
||||
|
||||
/mob/living/simple_animal/retaliate/synx/pet/holo/death()
|
||||
..()
|
||||
visible_message("<span class='notice'>\The [src] fades away!</span>")
|
||||
var/location = get_turf(src)
|
||||
new /datum/seed/hardlightseed/typesx(location)
|
||||
qdel(src)
|
||||
|
||||
/mob/living/simple_animal/retaliate/synx/pet/holo/gib()
|
||||
visible_message("<span class='notice'>\The [src] fades away!</span>")
|
||||
var/location = get_turf(src)
|
||||
new /datum/seed/hardlightseed/typesx(location)
|
||||
qdel(src)
|
||||
|
||||
////////////////////////////////////////
|
||||
////////////////SYNX VARIATIONS/////////
|
||||
////////////////////////////////////////
|
||||
@@ -374,11 +389,13 @@ mob/living/simple_animal/synx/PunchTarget()
|
||||
icon_gib = null
|
||||
alpha = 127
|
||||
speak = list("SX System Online")
|
||||
faction = "Station"//Can be safely bapped with newspaper.
|
||||
faction = "station"//Can be safely bapped with newspaper.
|
||||
melee_damage_lower = 0 //Holos do no damage
|
||||
melee_damage_upper = 0
|
||||
environment_smash = 0
|
||||
destroy_surroundings = 0
|
||||
meat_amount = 0
|
||||
meat_type = null
|
||||
//Vore Section
|
||||
vore_default_mode = DM_HEAL
|
||||
vore_capacity = 2
|
||||
@@ -389,7 +406,8 @@ mob/living/simple_animal/synx/PunchTarget()
|
||||
swallowTime = 10 SECONDS //Much more time to run
|
||||
|
||||
/mob/living/simple_animal/retaliate/synx/pet/holo/New()
|
||||
set_light(3, 3, "#CC00CC") //hologram lighting
|
||||
..()
|
||||
set_light(2) //hologram lighting
|
||||
|
||||
|
||||
/mob/living/simple_animal/retaliate/synx/pet/greed
|
||||
|
||||
Reference in New Issue
Block a user