Skip to content
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions code/modules/events/portal_storm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,40 @@
/mob/living/basic/construct/wraith/hostile = 6,
)

// OCULIS EDIT ADDITION START - MORE_PORTAL_STORMS
/datum/round_event_control/portal_storm_xenomorph
name = "Portal Storm: Aliens"
typepath = /datum/round_event/portal_storm/xenomorph
weight = 1
min_players = 20
earliest_start = 30 MINUTES
category = EVENT_CATEGORY_ENTITIES
description = "Xenomorphs pour out of portals."

/datum/round_event/portal_storm/xenomorph
boss_types = list(/mob/living/basic/alien/queen = 1)
hostile_types = list(
/mob/living/basic/alien = 7,
/mob/living/basic/alien/drone = 5,
)

/datum/round_event_control/portal_storm_netherworld
name = "Portal Storm: Netherworld"
typepath = /datum/round_event/portal_storm/netherworld
weight = 1
min_players = 15
earliest_start = 30 MINUTES
category = EVENT_CATEGORY_ENTITIES
description = "Netherworld creatures pour out of portals."

/datum/round_event/portal_storm/netherworld
boss_types = list(/mob/living/basic/migo = 4)
hostile_types = list(
/mob/living/basic/creature/hatchling = 9,
/mob/living/basic/creature = 7,
)
// OCULIS EDIT ADDITION END

/datum/round_event/portal_storm
start_when = 7
end_when = 999
Expand Down