From 1f1860302c2779db435b5b0f972afbaf60e0a1e4 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 21 Feb 2019 09:10:45 +0100 Subject: [PATCH 1/4] Major buff to sciences Excavation suit Equal to minings suit in most regards since they need to deal with the same little shits. --- code/modules/xenoarcheaology/tools/equipment.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/xenoarcheaology/tools/equipment.dm b/code/modules/xenoarcheaology/tools/equipment.dm index 1c2b1f9773..66e9aaef04 100644 --- a/code/modules/xenoarcheaology/tools/equipment.dm +++ b/code/modules/xenoarcheaology/tools/equipment.dm @@ -17,7 +17,8 @@ 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) + armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) + can_breach = 0 allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit) slowdown = 1 @@ -26,4 +27,5 @@ 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) + armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) + can_breach = 0 From c76c06f1f351a9b09fad6ad2ab12af6dbcf40a0e Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 21 Feb 2019 09:18:09 +0100 Subject: [PATCH 2/4] Update equipment.dm --- code/modules/xenoarcheaology/tools/equipment.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/xenoarcheaology/tools/equipment.dm b/code/modules/xenoarcheaology/tools/equipment.dm index 66e9aaef04..4521b58586 100644 --- a/code/modules/xenoarcheaology/tools/equipment.dm +++ b/code/modules/xenoarcheaology/tools/equipment.dm @@ -18,7 +18,7 @@ icon_state = "cespace_suit" item_state = "cespace_suit" armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) - can_breach = 0 + var/can_breach = 0 allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit) slowdown = 1 @@ -28,4 +28,4 @@ icon_state = "cespace_helmet" item_state = "cespace_helmet" armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) - can_breach = 0 + var/can_breach = 0 From 46226ee7205bb18618570717fe5e2254015712ef Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 21 Feb 2019 09:34:25 +0100 Subject: [PATCH 3/4] Update equipment.dm --- code/modules/xenoarcheaology/tools/equipment.dm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/xenoarcheaology/tools/equipment.dm b/code/modules/xenoarcheaology/tools/equipment.dm index 4521b58586..bd5053dcdd 100644 --- a/code/modules/xenoarcheaology/tools/equipment.dm +++ b/code/modules/xenoarcheaology/tools/equipment.dm @@ -18,7 +18,6 @@ icon_state = "cespace_suit" item_state = "cespace_suit" armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) - var/can_breach = 0 allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit) slowdown = 1 @@ -28,4 +27,10 @@ icon_state = "cespace_helmet" item_state = "cespace_helmet" armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) - var/can_breach = 0 + +/obj/item/clothing/head/helmet/space/anomaly/New() + ..() + can_breach = 0 +/obj/item/clothing/suit/space/anomaly/New() + ..() + can_breach = 0 From 80a37c54cf7eaa5f4c4d9412b4d21eca7b4f81e4 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 21 Feb 2019 09:40:44 +0100 Subject: [PATCH 4/4] Update equipment.dm --- code/modules/xenoarcheaology/tools/equipment.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/xenoarcheaology/tools/equipment.dm b/code/modules/xenoarcheaology/tools/equipment.dm index bd5053dcdd..7e85bc8a40 100644 --- a/code/modules/xenoarcheaology/tools/equipment.dm +++ b/code/modules/xenoarcheaology/tools/equipment.dm @@ -28,9 +28,6 @@ item_state = "cespace_helmet" armor = list(melee = 50, bullet = 5, laser = 20, energy = 5, bomb = 0, bio = 100, rad = 100) -/obj/item/clothing/head/helmet/space/anomaly/New() - ..() - can_breach = 0 /obj/item/clothing/suit/space/anomaly/New() ..() can_breach = 0