diff --git a/baystation12.dme b/baystation12.dme index cfeaafc50b..87a6be7b3a 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -774,10 +774,10 @@ #include "code\modules\customitems\item_defines.dm" #include "code\modules\customitems\item_spawning.dm" #include "code\modules\destilery\main.dm" -#include "code\modules\detectivework\detective_work.dm" -#include "code\modules\detectivework\evidence.dm" -#include "code\modules\detectivework\footprints_and_rag.dm" -#include "code\modules\detectivework\scanner.dm" +#include "code\modules\DetectiveWork\detective_work.dm" +#include "code\modules\DetectiveWork\evidence.dm" +#include "code\modules\DetectiveWork\footprints_and_rag.dm" +#include "code\modules\DetectiveWork\scanner.dm" #include "code\modules\events\alien_infestation.dm" #include "code\modules\events\blob.dm" #include "code\modules\events\brand_intelligence.dm" @@ -1143,11 +1143,11 @@ #include "code\modules\research\xenoarchaeology\finds\finds_misc.dm" #include "code\modules\research\xenoarchaeology\finds\finds_talkingitem.dm" #include "code\modules\research\xenoarchaeology\tools\bunsen_burner.dm" -#include "code\modules\research\xenoarchaeology\tools\spacesuit.dm" +#include "code\modules\research\xenoarchaeology\tools\anomaly_suit.dm" #include "code\modules\research\xenoarchaeology\tools\tools.dm" #include "code\modules\research\xenoarchaeology\tools\tools_coresampler.dm" #include "code\modules\research\xenoarchaeology\tools\tools_depthscanner.dm" -#include "code\modules\research\xenoarchaeology\tools\tools_excav.dm" +#include "code\modules\research\xenoarchaeology\tools\tools_pickaxe.dm" #include "code\modules\research\xenoarchaeology\tools\tools_locater.dm" #include "code\modules\research\xenoarchaeology\unknown\unknown.dm" #include "code\modules\research\xenoarchaeology\unknown\unknown_analysis.dm" diff --git a/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm b/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm new file mode 100644 index 0000000000..6539f3d183 --- /dev/null +++ b/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm @@ -0,0 +1,30 @@ + +//changes: rad protection up to 100 from 20/50 respectively +/obj/item/clothing/suit/bio_suit/anomaly + name = "Anomaly suit" + desc = "A sealed bio suit capable of insulating against exotic alien energies" + icon_state = "engspace_suit" + item_state = "engspace_suit" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) + +/obj/item/clothing/head/bio_hood/anomaly + name = "Anomaly hood" + desc = "A sealed bio hood capable of insulating against exotic alien energies." + icon_state = "engspace_helmet" + item_state = "engspace_helmet" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) + +/obj/item/clothing/suit/space/anomaly + name = "Excavation suit" + desc = "A pressure resistant excavation suit partially capable of insulating against exotic alien energies." + icon_state = "cespace_suit" + item_state = "cespace_suit" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) + allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank) + +/obj/item/clothing/head/helmet/space/anomaly + name = "Excavation hood" + desc = "A pressure resistant excavation hood partially capable of insulating against exotic alien energies." + icon_state = "cespace_helmet" + item_state = "cespace_helmet" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) diff --git a/code/modules/research/xenoarchaeology/tools/spacesuit.dm b/code/modules/research/xenoarchaeology/tools/spacesuit.dm deleted file mode 100644 index 2ff4ff266e..0000000000 --- a/code/modules/research/xenoarchaeology/tools/spacesuit.dm +++ /dev/null @@ -1,13 +0,0 @@ - -/obj/item/clothing/suit/bio_suit/anomaly - name = "Anomaly Suit" - desc = "A sealed bio suit capable of resisting exotic alien energies and low pressure environments." - icon_state = "engspace_suit" - item_state = "engspace_suit" - allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/emergency_oxygen) - -/obj/item/clothing/head/bio_hood/anomaly - name = "Anomaly Hood" - desc = "A sealed bio hood capable of resisting exotic alien energies and low pressure environments." - icon_state = "engspace_helmet" - item_state = "engspace_helmet" diff --git a/code/modules/research/xenoarchaeology/tools/tools_excav.dm b/code/modules/research/xenoarchaeology/tools/tools_pickaxe.dm similarity index 100% rename from code/modules/research/xenoarchaeology/tools/tools_excav.dm rename to code/modules/research/xenoarchaeology/tools/tools_pickaxe.dm