mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-15 00:53:23 +01:00
Fixes skin tones for syndibase spawner (#27299)
* woeuponspawners * begone blank space * Update code/modules/ruins/syndicate_space_base.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> --------- Signed-off-by: Bm0n <92271472+Bm0n@users.noreply.github.com> Co-authored-by: Bmon <no@email.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
assignedrole = "Syndicate Researcher"
|
||||
del_types = list() // Necessary to prevent del_types from removing radio!
|
||||
allow_species_pick = TRUE
|
||||
skin_tone = 255
|
||||
skin_tone = 2
|
||||
|
||||
/obj/effect/mob_spawn/human/alive/spacebase_syndicate/Destroy()
|
||||
var/obj/structure/fluff/empty_sleeper/syndicate/S = new /obj/structure/fluff/empty_sleeper/syndicate(get_turf(src))
|
||||
@@ -67,3 +67,10 @@
|
||||
var/random_name = random_name(pick(MALE,FEMALE), H.dna.species.name)
|
||||
H.rename_character(H.real_name, random_name)
|
||||
H.job = "Syndi Researcher" // ensures they show up right in player panel for admins
|
||||
if(isunathi(H) || isvulpkanin(H) || istajaran(H) || isskrell(H))
|
||||
H.change_skin_color("#B2B2B2")
|
||||
if(ismoth(H))
|
||||
H.change_markings("White Fly Head Markings", "head")
|
||||
H.change_markings("White Fly Markings", "body")
|
||||
H.change_head_accessory("White Fly Antennae")
|
||||
H.change_body_accessory("White Fly Wings")
|
||||
|
||||
Reference in New Issue
Block a user