From 6e85d6c519e9de55b57040f757d84f49cb358646 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 21 Jan 2018 00:17:41 -0500 Subject: [PATCH] Ruins xenoarch forever * Reduces radiation artifact's extreme power * Just removes scramble artifact until someone wants to make it actually interesting * Reduce range of tier3 artifacts to max of 100 given the map size * Dorms protect from anomalies --- code/modules/xenoarcheaology/effect.dm | 4 ++-- code/modules/xenoarcheaology/effects/radiate.dm | 2 +- vorestation.dme | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/xenoarcheaology/effect.dm b/code/modules/xenoarcheaology/effect.dm index 7a922f1149..9a19c75441 100644 --- a/code/modules/xenoarcheaology/effect.dm +++ b/code/modules/xenoarcheaology/effect.dm @@ -32,7 +32,7 @@ if(3) //large range, long charge time chargelevelmax = rand(20, 120) - effectrange = rand(20, 200) + effectrange = rand(20, 100) //VOREStation Edit - Map size. /datum/artifact_effect/proc/ToggleActivate(var/reveal_toggle = 1) //so that other stuff happens first @@ -119,7 +119,7 @@ /proc/GetAnomalySusceptibility(var/mob/living/carbon/human/H) if(!istype(H)) return 1 - + if(istype(get_area(H),/area/crew_quarters/sleep)) return 0 //VOREStation Edit - Dorms are protected from anomalies var/protected = 0 //anomaly suits give best protection, but excavation suits are almost as good diff --git a/code/modules/xenoarcheaology/effects/radiate.dm b/code/modules/xenoarcheaology/effects/radiate.dm index 6c8d37838a..a083cdddbc 100644 --- a/code/modules/xenoarcheaology/effects/radiate.dm +++ b/code/modules/xenoarcheaology/effects/radiate.dm @@ -20,5 +20,5 @@ /datum/artifact_effect/radiate/DoEffectPulse() if(holder) - radiation_repository.radiate(holder, ((radiation_amount * 25) * (sqrt(src.effectrange)))) //Need to get feedback on this + radiation_repository.radiate(holder, ((radiation_amount * 3) * (sqrt(src.effectrange)))) //Need to get feedback on this //VOREStation Edit - Was too crazy-strong. return 1 diff --git a/vorestation.dme b/vorestation.dme index 016970a2c2..6cc2b4f3ca 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2671,7 +2671,6 @@ #include "code\modules\xenoarcheaology\effects\cellcharge.dm" #include "code\modules\xenoarcheaology\effects\celldrain.dm" #include "code\modules\xenoarcheaology\effects\cold.dm" -#include "code\modules\xenoarcheaology\effects\dnaswitch.dm" #include "code\modules\xenoarcheaology\effects\emp.dm" #include "code\modules\xenoarcheaology\effects\forcefield.dm" #include "code\modules\xenoarcheaology\effects\gasco2.dm"