mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
41bdd33f07
## About The Pull Request **This should be TMed first, given the limitations of my hardware and that I could only spawn myself to test this, means new problems could pop up and that the PR could cause unexpected issues on live.** Closes #94603 and #89708 First and foremost, the infiltrator will no longer spawn alongside the syndicate base. Instead it will spawn independently and then dock unto the base when a nuclear operative squad is spawned. This eliminates the possibility of lazyloads messing up the shuttle and having it spawn unfinished. The change however will cause the base to spawn without the infiltrator when its spawned by hijacking. Second, this pr adds a variant of the basic infiltrator that spawns with the bananium bomb instead, and adds a check for which shuttle it should spawn. Normal ops will spawn with basic infiltrator as usual, while clownops will have the bananium version spawn by default when the ruleset is called by dynamic. ## Why It's Good For The Game Makes an admeme button work (clownops) and fixes infiltrator clipping. Less of a hassle for everyone. ## Changelog 🆑 fix: The Syndicate infiltrator no longer spawns in the nuclear base, and instead spawns alongside nukies, eliminating lazyload clipping. fix: Clownops now spawn with a bananium bomb in their infiltrator. /🆑
19 lines
770 B
Plaintext
19 lines
770 B
Plaintext
/datum/map_template/shuttle/infiltrator
|
|
port_id = "infiltrator"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/infiltrator/basic
|
|
suffix = "basic"
|
|
name = "basic syndicate infiltrator"
|
|
description = "Base Syndicate infiltrator, spawned by default for nukeops to use."
|
|
|
|
/datum/map_template/shuttle/infiltrator/advanced
|
|
suffix = "advanced"
|
|
name = "advanced syndicate infiltrator"
|
|
description = "A much larger version of the standard Syndicate infiltrator that feels more like Kilostation. Has APCs, but power is not a concern for nuclear operatives. Also comes with atmos!"
|
|
|
|
/datum/map_template/shuttle/infiltrator/clown
|
|
suffix = "clown"
|
|
name = "clown syndicate infiltrator"
|
|
description = "A version of the base infiltrator that spawns with a bananiumbomb"
|