mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
15 lines
394 B
Plaintext
15 lines
394 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 all_species)
|
|
var/datum/species/S = all_species[species]
|
|
S.blood_color = "rainbow"
|
|
for(var/obj/effect/decal/cleanable/blood/B in world)
|
|
B.basecolor = "rainbow"
|
|
B.update_icon()
|