mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Honksquad clowns now spawn with comic sans and title (#21139)
* Honksquad now spawn with comic sans and title * Minor spelling mistake --------- Co-authored-by: adrermail@gmail.com <adrermail@gmail.com>
This commit is contained in:
co-authored by
adrermail@gmail.com <adrermail@gmail.com>
parent
21e8a74105
commit
417c0e8f49
@@ -1353,13 +1353,18 @@
|
||||
backpack_contents.Add(/obj/item/gun/throw/piecannon)
|
||||
backpack_contents[/obj/item/gun/throw/piecannon] = 1
|
||||
|
||||
var/clown_rank = pick("Trickster First Class", "Master Clown", "Major Prankster")
|
||||
var/clown_name = pick(GLOB.clown_names)
|
||||
H.real_name = "[clown_rank] [clown_name]"
|
||||
|
||||
/datum/outfit/admin/honksquad/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
. = ..()
|
||||
if(visualsOnly)
|
||||
return
|
||||
|
||||
// Setup their clumsy gene
|
||||
// Setup their clumsy and comic sans gene
|
||||
H.dna.SetSEState(GLOB.clumsyblock, TRUE)
|
||||
H.dna.SetSEState(GLOB.comicblock, TRUE)
|
||||
H.check_mutations = TRUE
|
||||
|
||||
// Setup their headset
|
||||
@@ -1371,11 +1376,11 @@
|
||||
var/obj/item/pda/P = H.wear_pda
|
||||
if(istype(P))
|
||||
P.owner = H.real_name
|
||||
P.ownjob = "Clown"
|
||||
P.ownjob = "Emergency Response Clown"
|
||||
P.name = "PDA-[H.real_name] ([P.ownjob])"
|
||||
|
||||
// And their ID
|
||||
var/obj/item/card/id/I = H.wear_id
|
||||
if(istype(I))
|
||||
apply_to_card(I, H, list(ACCESS_CLOWN), "Clown")
|
||||
apply_to_card(I, H, list(ACCESS_CLOWN), "Emergency Response Clown")
|
||||
H.sec_hud_set_ID()
|
||||
|
||||
Reference in New Issue
Block a user