mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 10:21:52 +00:00
- Adds a new Scatter type of gateway, abductor, which strips the person's gear and deposits them somewhere else - Nerfs Expedition Phasers and Holdout Phasers - Reduces the number of full size phasers in Exploration from 4 to 3 - Slightly buffs melee mobs - Removes humanoid mobs from Virgo 3B Wilderness - Removes ADG from one of the POIs from V2
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
/obj/effect/landmark
|
|
var/abductor = 0
|
|
|
|
/obj/effect/landmark/late_antag
|
|
name = "Antag Latespawn"
|
|
var/antag_id
|
|
|
|
/obj/effect/landmark/late_antag/Initialize()
|
|
. = ..()
|
|
var/datum/antagonist/A = all_antag_types[antag_id]
|
|
if(istype(A))
|
|
A.starting_locations |= get_turf(src)
|
|
var/list/allpoints = all_antag_spawnpoints[A.landmark_id]
|
|
allpoints |= get_turf(src)
|
|
|
|
/obj/effect/landmark/late_antag/ert
|
|
name = "Response Team - Lateload"
|
|
antag_id = MODE_ERT
|
|
|
|
/obj/effect/landmark/late_antag/trader
|
|
name = "Trader - Lateload"
|
|
antag_id = MODE_TRADE
|
|
|
|
/obj/effect/landmark/late_antag/wizard
|
|
name = "Wizard - Lateload"
|
|
antag_id = MODE_WIZARD
|
|
|
|
/obj/effect/landmark/late_antag/technomancer
|
|
name = "Technomancer - Lateload"
|
|
antag_id = MODE_TECHNOMANCER
|
|
|
|
/obj/effect/landmark/late_antag/mercenary
|
|
name = "Mercenary - Lateload"
|
|
antag_id = MODE_MERCENARY
|
|
|
|
/obj/effect/landmark/late_antag/ninja
|
|
name = "Ninja - Lateload"
|
|
antag_id = MODE_NINJA
|
|
|
|
/obj/effect/landmark/late_antag/raider
|
|
name = "Raider - Lateload"
|
|
antag_id = MODE_RAIDER |