Files
S.P.L.U.R.T-Station-13/code/modules/events/floorcluwne.dm
SandPoot 54641ce201 send
2023-01-23 20:44:28 -03:00

25 lines
862 B
Plaintext

/datum/round_event_control/floor_cluwne
name = "Floor Cluwne"
typepath = /datum/round_event/floor_cluwne
max_occurrences = 0
min_players = 20
weight = 10
category = EVENT_CATEGORY_ENTITIES
description = "Spawns a floor cluwne, will hunt a random player and most likely gib them, prepare for adminhelps."
/datum/round_event/floor_cluwne/start()
var/list/spawn_locs = list()
for(var/X in GLOB.xeno_spawn)
spawn_locs += X
if(!spawn_locs.len)
message_admins("No valid spawn locations found, aborting...")
return MAP_ERROR
var/turf/T = get_turf(pick(spawn_locs))
var/mob/living/simple_animal/hostile/floor_cluwne/S = new(T)
playsound(S, 'sound/misc/bikehorn_creepy.ogg', 50, 1, -1)
message_admins("A floor cluwne has been spawned at [COORD(T)][ADMIN_JMP(T)]")
log_game("A floor cluwne has been spawned at [COORD(T)]")
return SUCCESSFUL_SPAWN