This commit is contained in:
izac112
2020-06-17 04:30:06 +02:00
116 changed files with 10186 additions and 4123 deletions
@@ -110,9 +110,6 @@ var/datum/species/shapeshifter/promethean/prometheans
/mob/living/carbon/human/proc/shapeshifter_select_eye_colour,
/mob/living/carbon/human/proc/shapeshifter_select_hair_colors,
/mob/living/carbon/human/proc/shapeshifter_select_gender,
/mob/living/carbon/human/proc/shapeshifter_select_wings, //VOREStation Add,
/mob/living/carbon/human/proc/shapeshifter_select_tail, //VOREStation Add,
/mob/living/carbon/human/proc/shapeshifter_select_ears, //VOREStation Add,
/mob/living/carbon/human/proc/regenerate
)
@@ -186,35 +183,35 @@ var/datum/species/shapeshifter/promethean/prometheans
if(istype(T))
if(!(H.shoes || (H.wear_suit && (H.wear_suit.body_parts_covered & FEET))))
for(var/obj/O in T)
O.clean_blood()
H.adjust_nutrition(rand(5, 15))
if(O.clean_blood())
H.adjust_nutrition(rand(5, 15))
if (istype(T, /turf/simulated))
var/turf/simulated/S = T
T.clean_blood()
S.dirt = 0
//VOREStation Edit Start
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
if(T.clean_blood())
H.adjust_nutrition(rand(10, 20))
if(S.dirt > 50)
S.dirt = 0
H.adjust_nutrition(rand(10, 20))
if(H.clean_blood(1))
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
H.adjust_nutrition(rand(5, 15))
if(H.r_hand)
if(H.r_hand.clean_blood())
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
H.adjust_nutrition(rand(5, 15))
if(H.l_hand)
if(H.l_hand.clean_blood())
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
H.adjust_nutrition(rand(5, 15))
if(H.head)
if(H.head.clean_blood())
H.update_inv_head(0)
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
H.adjust_nutrition(rand(5, 15))
if(H.wear_suit)
if(H.wear_suit.clean_blood())
H.update_inv_wear_suit(0)
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
H.adjust_nutrition(rand(5, 15))
if(H.w_uniform)
if(H.w_uniform.clean_blood())
H.update_inv_w_uniform(0)
H.adjust_nutrition(H.nutrition < 500 ? rand(15, 30) : 0)
//VOREStation Edit End
H.adjust_nutrition(rand(5, 15))
//End cleaning code.
var/datum/gas_mixture/environment = T.return_air()
@@ -26,6 +26,9 @@
/mob/living/carbon/human/proc/shapeshifter_select_hair_colors,
/mob/living/carbon/human/proc/shapeshifter_select_gender,
/mob/living/carbon/human/proc/regenerate,
/mob/living/carbon/human/proc/shapeshifter_select_wings,
/mob/living/carbon/human/proc/shapeshifter_select_tail,
/mob/living/carbon/human/proc/shapeshifter_select_ears,
/mob/living/proc/set_size,
/mob/living/carbon/human/proc/succubus_drain,
/mob/living/carbon/human/proc/succubus_drain_finalize,
@@ -155,7 +155,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
layer = MOB_LAYER -0.01 // Fix for a byond bug where turf entry order no longer matters
else
M.Scale(desired_scale_x, desired_scale_y)
M.Translate(0, 16*(desired_scale_y-1))
M.Translate(0, (vis_height/2)*(desired_scale_y-1)) //VOREStation edit
layer = MOB_LAYER // Fix for a byond bug where turf entry order no longer matters
animate(src, transform = M, time = anim_time)
@@ -1,2 +1,8 @@
/datum/ai_holder/simple_mob/intentional/adv_dark_gygax
intelligence_level = AI_SMART // Also knows not to walk while confused if it risks death.
/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced/recursive
name = "recursive dark gygax"
desc = "Whoever pilots this cursed mecha has been stuck in eternal loop of death and rebirth forever. Their maddened rampage cannot be stopped."
wreckage = /obj/item/weapon/ectoplasm
pilot_type = /mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced/recursive
@@ -0,0 +1,44 @@
/mob/living/simple_mob/mobs_monsters/clowns/big
tt_desc = "E Homo sapiens corydon horrificus" //this clown is stronk
faction = "clown"
maxHealth = 200
health = 200
see_in_dark = 8
melee_damage_lower = 15
melee_damage_upper = 25
attack_armor_pen = 5
attack_sharp = FALSE
attack_edge = FALSE
melee_attack_delay = 1 SECOND
attacktext = list("clowned")
ai_holder_type = /datum/ai_holder/simple_mob/melee/angryclowns
loot_list = list(/obj/item/weapon/bikehorn = 100)
/mob/living/simple_mob/mobs_monsters/clowns/big
min_oxy = 0
max_oxy = 500
min_tox = 0
max_tox = 500
min_co2 = 0
max_co2 = 500
min_n2 = 0
max_n2 = 500
minbodytemp = 0
maxbodytemp = 700
/datum/ai_holder/simple_mob/melee/angryclowns
can_breakthrough = TRUE
violent_breakthrough = FALSE
hostile = TRUE // The majority of simplemobs are hostile, gaslamps are nice.
cooperative = FALSE
retaliate = TRUE //so the monster can attack back
returns_home = FALSE
can_flee = FALSE
speak_chance = 3
wander = TRUE
base_wander_delay = 9
@@ -0,0 +1,45 @@
/mob/living/simple_mob/mobs_monsters/clowns/
tt_desc = "E Homo sapiens corydon" //this is a clown
faction = "clown"
movement_sound = 'sound/effects/clownstep2.ogg'
attack_sound = 'sound/effects/Whipcrack.ogg'
faction = "clown"
maxHealth = 100
health = 100
see_in_dark = 8
has_hands = TRUE
humanoid_hands = TRUE
melee_damage_lower = 5
melee_damage_upper = 30
ai_holder_type = /datum/ai_holder/simple_mob/melee/clowns
loot_list = list(/obj/item/weapon/bikehorn = 100)
min_oxy = 0
max_oxy = 0
min_tox = 0
max_tox = 0
min_co2 = 0
max_co2 = 0
min_n2 = 0
max_n2 = 0
minbodytemp = 0
maxbodytemp = 700
/datum/ai_holder/simple_mob/melee/clowns
can_breakthrough = FALSE
violent_breakthrough = FALSE
hostile = FALSE // The majority of simplemobs are hostile, gaslamps are nice.
cooperative = FALSE
retaliate = TRUE //so the monster can attack back
returns_home = FALSE
can_flee = FALSE
speak_chance = 3
wander = TRUE
base_wander_delay = 9
@@ -0,0 +1,379 @@
/mob/living/simple_mob/mobs_monsters/clowns/big/normal
name = "Clown"
desc = "A regular, every tuesday Clown."
tt_desc = "E Homo sapiens corydon" //this is a clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_normal"
icon_living = "c_normal"
icon_dead = "clown_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/honkmunculus
name = "A Clown?"
desc = "That clown has some interesting proportions."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/TGClowns.dmi'
icon_state = "honkmunculus"
icon_living = "honkmunculus"
icon_dead = "honkmunculus_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/cluwne
name = "A Clown?"
desc = "Oh no not that thing."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "cluwne"
icon_living = "cluwne"
icon_dead = "cluwne_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/tunnelclown
name = "A Clown?"
desc = "Have you heard about our lord and savior, Honkus Chrust?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "tunnel_new"
icon_living = "tunnel_new"
icon_dead = "tunnel_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/sentinel
name = "A Clown?"
desc = "This guy means business..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "sentinel_new"
icon_living = "sentinel_new"
icon_dead = "sentinel_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/punished
name = "A Clown?"
desc = "A clown at peak performance."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_punished"
icon_living = "c_punished"
icon_dead = "punished_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/thicc
name = "A Clown..."
desc = "I mean, you see it don't you?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_thicc"
icon_living = "c_thicc"
icon_dead = "thicc_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/perm
name = "A Clown?"
desc = "That clown really needs to get that hair under control."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_perm"
icon_living = "c_perm"
icon_dead = "perm_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/wide
name = "A Clown?"
desc = "He looks good from some angles!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_wide"
icon_living = "c_wide"
icon_dead = "wide_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/thin
name = "A Clown?"
desc = "Is he eating enough?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_thin"
icon_living = "c_thin"
icon_dead = "thin_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/hulk
name = "A Clown?"
desc = "Just look at those muscles."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "honkhulk"
icon_living = "honkhulk"
icon_dead = "hulk_dead"
icon_gib = "generic_gib"
vis_height = 64
health = 350
maxHealth = 350
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/longface
name = "A Clown?"
desc = "Why the long face?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "long face"
icon_living = "long face"
icon_dead = "long_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/giggles
name = "A Giggles?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "giggles"
icon_living = "giggles"
icon_dead = "giggles_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/destroyer
name = "A Clown?"
desc = "That clown looks like he means business."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "destroyer"
icon_living = "destroyer"
icon_dead = "destroyer_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
movement_cooldown = 10
movement_sound = 'sound/weapons/heavysmash.ogg'
movement_shake_radius = 5
armor = list(
"melee" = 40,
"bullet" = 20,
"laser" = 10,
"energy" = 0,
"bomb" = 0,
"bio" = 0,
"rad" = 0
)
armor_soak = list(
"melee" = 10,
"bullet" = 5,
"laser" = 0,
"energy" = 0,
"bomb" = 0,
"bio" = 0,
"rad" = 0
)
/mob/living/simple_mob/mobs_monsters/clowns/big/chlown
name = "A Clown?"
desc = "No."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "chlown"
icon_living = "chlown"
icon_dead = "chlown_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/scary
name = "A Clown?"
desc = "Hey that clown looks familiar!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "scary_clown"
icon_living = "scary_clown"
icon_dead = "scary_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/flesh
name = "A Clown?"
desc = "WOOOOO STREAKING WOOOO!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "fleshclown"
icon_living = "fleshclown"
icon_dead = "flesh_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/clowns
name = "Definitely a singular clown"
desc = "Is it one clown, or many clowns in not a trenchcoat?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "clowns"
icon_living = "clowns"
icon_dead = "clowns_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/mutant
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "mutant"
icon_living = "mutant"
icon_dead = "mutant_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/blob
name = "A Clown?"
desc = "Go to a gym fatty!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "blob"
icon_living = "blob"
icon_dead = "blob_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/mayor
name = "A clown?"
desc = "One speaks in riddles..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/giantclowns.dmi'
icon_state = "c_mayor"
icon_living = "c_mayor"
icon_dead = "mayor_dead"
icon_gib = "generic_gib"
vis_height = 96
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/honkling
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "honkling"
icon_living = "honkling"
icon_dead = "honkling_dead"
icon_gib = "generic_gib"
vis_height = 32
//template
///mob/living/simple_mob/mobs_monsters/clowns/big/
// name = "A Clown?"
// desc = "Oh sweet space christ."
// tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
// icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
// icon_state = ""
// icon_living = ""
// icon_dead = "_dead"
// icon_gib = "generic_gib"
// vis_height = 64
@@ -0,0 +1,7 @@
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
faction = "clown"
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/New()
..()
verbs += /mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/proc/phase_shift
@@ -0,0 +1,365 @@
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/anormal
name = "Clown"
desc = "A regular, every tuesday Clown."
tt_desc = "E Homo sapiens corydon" //this is a clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_normal"
icon_living = "c_normal"
icon_dead = "clown_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkmunculus
name = "A Clown?"
desc = "That clown has some interesting proportions."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/TGClowns.dmi'
icon_state = "honkmunculus"
icon_living = "honkmunculus"
icon_dead = "honkmunculus_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/cluwne
name = "A Clown?"
desc = "Oh no not that thing."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "cluwne"
icon_living = "cluwne"
icon_dead = "cluwne_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/tunnelclown
name = "A Clown?"
desc = "Have you heard about our lord and savior, Honkus Chrust?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "tunnel_new"
icon_living = "tunnel_new"
icon_dead = "tunnel_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/sentinel
name = "A Clown?"
desc = "This guy means business..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "sentinel_new"
icon_living = "sentinel_new"
icon_dead = "sentinel_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/punished
name = "A Clown?"
desc = "A clown at peak performance."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_punished"
icon_living = "c_punished"
icon_dead = "punished_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/thicc
name = "A Clown..."
desc = "I mean, you see it don't you?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_thicc"
icon_living = "c_thicc"
icon_dead = "thicc_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/perm
name = "A Clown?"
desc = "That clown really needs to get that hair under control."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_perm"
icon_living = "c_perm"
icon_dead = "perm_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/wide
name = "A Clown?"
desc = "He looks good from some angles!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_wide"
icon_living = "c_wide"
icon_dead = "wide_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/thin
name = "A Clown?"
desc = "Is he eating enough?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_thin"
icon_living = "c_thin"
icon_dead = "thin_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/hulk
name = "A Clown?"
desc = "Just look at those muscles."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "honkhulk"
icon_living = "honkhulk"
icon_dead = "hulk_dead"
icon_gib = "generic_gib"
vis_height = 64
health = 350
maxHealth = 350
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/longface
name = "A Clown?"
desc = "Why the long face?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "long face"
icon_living = "long face"
icon_dead = "long_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/giggles
name = "A Giggles?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "giggles"
icon_living = "giggles"
icon_dead = "giggles_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/destroyer
name = "A Clown?"
desc = "That clown looks like he means business."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "destroyer"
icon_living = "destroyer"
icon_dead = "destroyer_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
movement_cooldown = 10
movement_sound = 'sound/weapons/heavysmash.ogg'
movement_shake_radius = 5
armor = list(
"melee" = 40,
"bullet" = 20,
"laser" = 10,
"energy" = 0,
"bomb" = 0,
"bio" = 0,
"rad" = 0
)
armor_soak = list(
"melee" = 10,
"bullet" = 5,
"laser" = 0,
"energy" = 0,
"bomb" = 0,
"bio" = 0,
"rad" = 0
)
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/chlown
name = "A Clown?"
desc = "No."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "chlown"
icon_living = "chlown"
icon_dead = "chlown_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/scary
name = "A Clown?"
desc = "Hey that clown looks familiar!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "scary_clown"
icon_living = "scary_clown"
icon_dead = "scary_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/flesh
name = "A Clown?"
desc = "WOOOOO STREAKING WOOOO!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "fleshclown"
icon_living = "fleshclown"
icon_dead = "flesh_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/clowns
name = "Definitely a singular clown"
desc = "Is it one clown, or many clowns in not a trenchcoat?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "clowns"
icon_living = "clowns"
icon_dead = "clowns_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/mutant
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "mutant"
icon_living = "mutant"
icon_dead = "mutant_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/blob
name = "A Clown?"
desc = "Go to a gym fatty!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "blob"
icon_living = "blob"
icon_dead = "blob_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/mayor
name = "A clown?"
desc = "One speaks in riddles..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/giantclowns.dmi'
icon_state = "c_mayor"
icon_living = "c_mayor"
icon_dead = "mayor_dead"
icon_gib = "generic_gib"
vis_height = 96
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkling
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "honkling"
icon_living = "honkling"
icon_dead = "honkling_dead"
icon_gib = "generic_gib"
vis_height = 32
@@ -0,0 +1,95 @@
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift
var/ability_flags = 0 //Flags for active abilities
// Phase shifting procs (and related procs)
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/proc/phase_shift()
var/turf/T = get_turf(src)
if(!T.CanPass(src,T) || loc != T)
to_chat(src,"<span class='warning'>You can't use that here!</span>")
return FALSE
forceMove(T)
var/original_canmove = canmove
SetStunned(0)
SetWeakened(0)
if(buckled)
buckled.unbuckle_mob()
if(pulledby)
pulledby.stop_pulling()
stop_pulling()
canmove = FALSE
//Shifting in
if(ability_flags & AB_PHASE_SHIFTED)
ability_flags &= ~AB_PHASE_SHIFTED
mouse_opacity = 2
name = real_name
overlays.Cut()
alpha = initial(alpha)
invisibility = initial(invisibility)
see_invisible = initial(see_invisible)
incorporeal_move = initial(incorporeal_move)
density = initial(density)
force_max_speed = initial(force_max_speed)
//Cosmetics mostly
flick("tp_in",src)
custom_emote(1,"phases in!")
sleep(5) //The duration of the TP animation
canmove = original_canmove
// Do this after the potential vore, so we get the belly
update_icon()
//Affect nearby lights
for(var/obj/machinery/light/L in machines)
if(L.z != z || get_dist(src,L) > 10)
continue
L.flicker(10)
//Shifting out
else
ability_flags |= AB_PHASE_SHIFTED
mouse_opacity = 0
custom_emote(1,"phases out!")
real_name = name
name = "Something"
overlays.Cut()
flick("tp_out",src)
sleep(5)
invisibility = INVISIBILITY_LEVEL_TWO
see_invisible = INVISIBILITY_LEVEL_TWO
update_icon()
alpha = 127
canmove = original_canmove
incorporeal_move = TRUE
density = FALSE
force_max_speed = TRUE
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/UnarmedAttack()
if(ability_flags & AB_PHASE_SHIFTED)
return FALSE //Nope.
. = ..()
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/can_fall()
if(ability_flags & AB_PHASE_SHIFTED)
return FALSE //Nope!
return ..()
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/zMove(direction)
if(ability_flags & AB_PHASE_SHIFTED)
var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src)
if(destination)
forceMove(destination)
return TRUE
return ..()
@@ -0,0 +1,30 @@
// These are used to spawn a specific mob when triggered, with the mob controlled by a player pulled from the ghost pool, hense its name.
/obj/structure/ghost_pod/manual/clegg
name = "Clown Egg?"
desc = "Why does this have to be what this is?"
icon = 'icons/mob/mobs_monsters/giantclowns.dmi'
icon_state = "c_egg"
icon_state_opened = "c_egg_opened" // Icon to switch to when 'used'.
ghost_query_type = /datum/ghost_query/hellclown
/datum/ghost_query/hellclown
role_name = "egg clown"
question = "THE HONKMOTHER REQUESTS SUBJECTS. REPORT TO THE ELEMENTAL TO JOIN THE HONKENING."
cutoff_number = 1
/obj/structure/ghost_pod/manual/clegg/trigger()
..("<span class='warning'>\The [usr] places their hand on the egg!</span>", "is attempting to make a mistake!")
/obj/structure/ghost_pod/manual/clegg/create_occupant(var/mob/M)
lightning_strike(get_turf(src), cosmetic = TRUE)
var/list/choices = list(/mob/living/simple_mob/mobs_monsters/clowns/normal, /mob/living/simple_mob/mobs_monsters/clowns/honkling, /mob/living/simple_mob/mobs_monsters/clowns/mayor, /mob/living/simple_mob/mobs_monsters/clowns/blob, /mob/living/simple_mob/mobs_monsters/clowns/mutant, /mob/living/simple_mob/mobs_monsters/clowns/clowns, /mob/living/simple_mob/mobs_monsters/clowns/flesh, /mob/living/simple_mob/mobs_monsters/clowns/scary, /mob/living/simple_mob/mobs_monsters/clowns/chlown, /mob/living/simple_mob/mobs_monsters/clowns/destroyer, /mob/living/simple_mob/mobs_monsters/clowns/giggles, /mob/living/simple_mob/mobs_monsters/clowns/longface, /mob/living/simple_mob/mobs_monsters/clowns/hulk, /mob/living/simple_mob/mobs_monsters/clowns/thin, /mob/living/simple_mob/mobs_monsters/clowns/wide, /mob/living/simple_mob/mobs_monsters/clowns/perm, /mob/living/simple_mob/mobs_monsters/clowns/thicc, /mob/living/simple_mob/mobs_monsters/clowns/punished, /mob/living/simple_mob/mobs_monsters/clowns/sentinel, /mob/living/simple_mob/mobs_monsters/clowns/tunnelclown, /mob/living/simple_mob/mobs_monsters/clowns/cluwne, /mob/living/simple_mob/mobs_monsters/clowns/honkmunculus)
var/chosen_clown = input(M, "Redspace clowns like themes, what's yours?") in choices
density = FALSE
var/mob/living/simple_mob/R = new chosen_clown(get_turf(src))
if(M.mind)
M.mind.transfer_to(R)
to_chat(M, "<span class='notice'>You are a <b>Clown!</b>! HONK!</span>")
R.ckey = M.ckey
visible_message("<span class='warning'>With a bright flash of light, \the [src] disappears, and in its place you see a... Clown?</span>")
log_and_message_admins("successfully touched \a [src] and summoned a mistake!")
..()
@@ -0,0 +1,35 @@
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkelemental
name = "Honk Elemental"
desc = "That thing can't be real, right?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/giantclowns.dmi'
icon_state = "honk_elemental"
icon_living = "honk_elemental"
icon_dead = "he_dead"
icon_gib = "generic_gib"
vis_height = 96
faction = "clown"
loot_list = list(/obj/item/weapon/bikehorn = 100)
response_help = "pokes"
response_disarm = "gently pushes aside"
response_harm = "hits"
say_list_type = /datum/say_list/clown
/datum/say_list/clown
speak = list("HONK", "Honk!", "Henk!")
emote_see = list("honks")
/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkelemental/verb/spawn_egg()
set category = "Abilities"
set name = "Spawn Clown Egg"
set desc = "Spawns an egg that a player can touch, which will call on ghosts to spawn as clowns."
if(is_dead())
return
new /obj/structure/ghost_pod/manual/clegg(get_turf(src))
flick("he_lay",src)
@@ -0,0 +1,362 @@
/mob/living/simple_mob/mobs_monsters/clowns/
response_help = "pokes"
response_disarm = "gently pushes aside"
response_harm = "hits"
say_list_type = /datum/say_list/clown
/datum/say_list/clown
speak = list("HONK", "Honk!", "Henk!")
emote_see = list("honks")
/mob/living/simple_mob/mobs_monsters/clowns/honkmunculus
name = "A Clown?"
desc = "That clown has some interesting proportions."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/TGClowns.dmi'
icon_state = "honkmunculus"
icon_living = "honkmunculus"
icon_dead = "honkmunculus_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/cluwne
name = "A Clown?"
desc = "Oh no not that thing."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "cluwne"
icon_living = "cluwne"
icon_dead = "cluwne_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/tunnelclown
name = "A Clown?"
desc = "Have you heard about our lord and savior, Honkus Chrust?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "tunnel_new"
icon_living = "tunnel_new"
icon_dead = "tunnel_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/sentinel
name = "A Clown?"
desc = "This guy means business..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "sentinel_new"
icon_living = "sentinel_new"
icon_dead = "sentinel_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/punished
name = "A Clown?"
desc = "A clown at peak performance."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_punished"
icon_living = "c_punished"
icon_dead = "punished_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/thicc
name = "A Clown..."
desc = "I mean, you see it don't you?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_thicc"
icon_living = "c_thicc"
icon_dead = "thicc_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/perm
name = "A Clown?"
desc = "That clown really needs to get that hair under control."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_perm"
icon_living = "c_perm"
icon_dead = "perm_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/wide
name = "A Clown?"
desc = "He looks good from some angles!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_wide"
icon_living = "c_wide"
icon_dead = "wide_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/thin
name = "A Clown?"
desc = "Is he eating enough?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_thin"
icon_living = "c_thin"
icon_dead = "thin_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/hulk
name = "A Clown?"
desc = "Just look at those muscles."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "honkhulk"
icon_living = "honkhulk"
icon_dead = "hulk_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/longface
name = "A Clown?"
desc = "Why the long face?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "long face"
icon_living = "long face"
icon_dead = "long_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/giggles
name = "A Giggles?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "giggles"
icon_living = "giggles"
icon_dead = "giggles_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/destroyer
name = "A Clown?"
desc = "That clown looks like he means business."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "destroyer"
icon_living = "destroyer"
icon_dead = "destroyer_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/chlown
name = "A Clown?"
desc = "No."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "chlown"
icon_living = "chlown"
icon_dead = "chlown_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/scary
name = "A Clown?"
desc = "Hey that clown looks familiar!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "scary_clown"
icon_living = "scary_clown"
icon_dead = "scary_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/flesh
name = "A Clown?"
desc = "WOOOOO STREAKING WOOOO!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "fleshclown"
icon_living = "fleshclown"
icon_dead = "flesh_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/clowns
name = "Definitely a singular clown"
desc = "Is it one clown, or many clowns in not a trenchcoat?"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "clowns"
icon_living = "clowns"
icon_dead = "clowns_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/mutant
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "mutant"
icon_living = "mutant"
icon_dead = "mutant_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/blob
name = "A Clown?"
desc = "Go to a gym fatty!"
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "blob"
icon_living = "blob"
icon_dead = "blob_dead"
icon_gib = "generic_gib"
vis_height = 64
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/mayor
name = "A clown?"
desc = "One speaks in riddles..."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/giantclowns.dmi'
icon_state = "c_mayor"
icon_living = "c_mayor"
icon_dead = "mayor_dead"
icon_gib = "generic_gib"
vis_height = 96
old_x = -16
old_y = 0
default_pixel_x = -16
pixel_x = -16
pixel_y = 0
/mob/living/simple_mob/mobs_monsters/clowns/honkling
name = "A Clown?"
desc = "Oh sweet space christ."
tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown
icon = 'icons/mob/mobs_monsters/tgclowns.dmi'
icon_state = "honkling"
icon_living = "honkling"
icon_dead = "honkling_dead"
icon_gib = "generic_gib"
vis_height = 32
/mob/living/simple_mob/mobs_monsters/clowns/normal
name = "Clown"
desc = "A regular, every tuesday Clown."
tt_desc = "E Homo sapiens corydon" //this is a clown
icon = 'icons/mob/mobs_monsters/newclowns.dmi'
icon_state = "c_normal"
icon_living = "c_normal"
icon_dead = "clown_dead"
icon_gib = "generic_gib"
vis_height = 32
faction = "clown"
loot_list = list(/obj/item/weapon/bikehorn = 100)
response_help = "pokes"
response_disarm = "gently pushes aside"
response_harm = "hits"