mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-20 19:49:39 +01:00
15 lines
467 B
Plaintext
15 lines
467 B
Plaintext
/datum/round_event_control/wisdomcow
|
|
name = "Wisdom cow"
|
|
typepath = /datum/round_event/wisdomcow
|
|
max_occurrences = 1
|
|
weight = 20
|
|
|
|
/datum/round_event/wisdomcow/announce(fake)
|
|
priority_announce("A wise cow has been spotted in the area. Be sure to ask for her advice.", "Nanotrasen Cow Ranching Agency")
|
|
|
|
/datum/round_event/wisdomcow/start()
|
|
var/turf/targetloc = get_safe_random_station_turf()
|
|
new /mob/living/basic/cow/wisdom(targetloc)
|
|
do_smoke(1, targetloc)
|
|
|