mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-22 05:34:49 +01:00
3995338290
Co-authored-by: Raeschen <rycoop29@gmail.com>
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
/datum/admin_secret_item/fun_secret/paintbal_mode
|
|
name = "Paintball Mode"
|
|
|
|
/datum/admin_secret_item/fun_secret/paintbal_mode/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
for(var/species in GLOB.all_species)
|
|
var/datum/species/S = GLOB.all_species[species]
|
|
S.blood_color = "rainbow"
|
|
for(var/obj/effect/decal/cleanable/blood/B in world)
|
|
B.basecolor = "rainbow"
|
|
B.update_icon()
|