Merge pull request #2807 from VOREStation/aro-xeno

Ruins xenoarch forever
This commit is contained in:
Arokha Sieyes
2018-01-21 17:43:43 -05:00
committed by GitHub
3 changed files with 3 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -2675,7 +2675,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"