mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Adds/ports the AI Triumvirate station trait. (triple ai mode as a VERY rare trait) (#25957)
* yippie itt works * Update tripAI.dm * Update code/modules/admin/verbs/tripAI.dm Co-authored-by: Matt <116982774+Burzah@users.noreply.github.com> Signed-off-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> * Update code/datums/station_traits/neutral_traits.dm Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> --------- Signed-off-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Co-authored-by: Matt <116982774+Burzah@users.noreply.github.com>
This commit is contained in:
@@ -64,3 +64,19 @@
|
||||
/datum/station_trait/hangover/revert()
|
||||
. = ..()
|
||||
SSjobs.drunken_spawning = FALSE
|
||||
|
||||
/datum/station_trait/triple_ai
|
||||
name = "AI Triumvirate"
|
||||
trait_type = STATION_TRAIT_NEUTRAL
|
||||
weight = 1
|
||||
show_in_report = TRUE
|
||||
report_message = "As part of Operation Magi, your station has been equipped with three Nanotrasen Artificial Intelligence models. Please try not to break them."
|
||||
trait_to_give = STATION_TRAIT_TRIAI
|
||||
|
||||
/datum/station_trait/triple_ai/New()
|
||||
. = ..()
|
||||
SSticker.triai = TRUE
|
||||
|
||||
/datum/station_trait/triple_ai/revert()
|
||||
. = ..()
|
||||
SSticker.triai = FALSE
|
||||
|
||||
Reference in New Issue
Block a user