mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 01:24:21 +01:00
9ab415d742
* Fixed false anomaly announcements. * Update _anomaly.dm * Update anomaly_bioscrambler.dm * Update anomaly_bluespace.dm * Fix merge conflicts --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
21 lines
953 B
Plaintext
21 lines
953 B
Plaintext
/datum/round_event_control/anomaly/anomaly_vortex
|
|
name = "Anomaly: Vortex"
|
|
typepath = /datum/round_event/anomaly/anomaly_vortex
|
|
|
|
min_players = 20
|
|
max_occurrences = 2
|
|
weight = 10
|
|
description = "This anomaly sucks in and detonates items."
|
|
min_wizard_trigger_potency = 3
|
|
max_wizard_trigger_potency = 7
|
|
|
|
/datum/round_event/anomaly/anomaly_vortex
|
|
start_when = ANOMALY_START_DANGEROUS_TIME
|
|
announce_when = ANOMALY_ANNOUNCE_DANGEROUS_TIME
|
|
anomaly_path = /obj/effect/anomaly/bhole
|
|
|
|
/datum/round_event/anomaly/anomaly_vortex/announce(fake)
|
|
if(isnull(impact_area))
|
|
impact_area = placer.findValidArea()
|
|
priority_announce("Localized high-intensity vortex anomaly detected on [ANOMALY_ANNOUNCE_DANGEROUS_TEXT] [impact_area.name]", "Anomaly Alert", ANNOUNCER_VORTEXANOMALIES) //SKYRAT EDIT CHANGE - ORIGINAL: priority_announce("Localized high-intensity vortex anomaly detected on [ANOMALY_ANNOUNCE_DANGEROUS_TEXT] [impact_area.name]", "Anomaly Alert")
|