Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions code/modules/clothing/spacesuits/hardsuit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -827,3 +827,40 @@
strip_delay = 130
max_heat_protection_temperature = FIRE_IMMUNITY_MAX_TEMP_PROTECT
actions_types = list()

//POWERARMORS
//Currently are no different from normal hardsuits, except maybe for the higher armor ratings.

/obj/item/clothing/head/helmet/space/hardsuit/powerarmor_t45b
name = "Salvaged T-45b helmet"
desc = "It's some barely-functional power armor helmet from a by-gone age."
icon_state = "hardsuit0-t45b"
item_state = "t45b_helm"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 25)
item_color = "t45b"

/obj/item/clothing/suit/space/hardsuit/powerarmor_t45b
name = "Salvaged T-45b power armor"
desc = "It's some barely-functional power armor, probably hundreds of years old."
icon_state = "hardsuit-t45b"
item_state = "t45b_hardsuit"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 25)
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/powerarmor_t45b
item_color = "t45b"

/obj/item/clothing/head/helmet/space/hardsuit/powerarmor_advanced
name = "Advanced power helmet"
desc = "It's an advanced power armor Mk I helmet. It looks somewhat threatening."
icon_state = "hardsuit0-advancedpa1"
item_state = "advpa1_helm"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 25)
item_color = "advancedpa1"

/obj/item/clothing/suit/space/hardsuit/powerarmor_advanced
name = "Advanced power armor"
desc = "An advanced suit of power armor. It looks pretty impressive and threatening."
icon_state = "hardsuit-advancedpa1"
item_state = "advpa1_hardsuit"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 25)
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/powerarmor_advanced
item_color = "advancedpa1"
Binary file modified icons/mob/head.dmi
Binary file not shown.
Binary file modified icons/mob/suit.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.
38 changes: 0 additions & 38 deletions yogstation/code/modules/clothing/spacesuits/hardsuit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,3 @@

/obj/item/clothing/suit/space/hardsuit/security
jetpack = /obj/item/tank/jetpack/suit

//POWERARMORS
//Currently are no different from normal hardsuits, except maybe for the higher armor ratings.
/obj/item/clothing/head/helmet/space/hardsuit/powerarmor
alternate_worn_icon = 'yogstation/icons/mob/head.dmi'
icon = 'yogstation/icons/obj/clothing/hats.dmi'
/obj/item/clothing/suit/space/hardsuit/powerarmor
alternate_worn_icon = 'yogstation/icons/mob/suit.dmi'
icon = 'yogstation/icons/obj/clothing/suits.dmi'

/obj/item/clothing/head/helmet/space/hardsuit/powerarmor/t45b
name = "Salvaged T-45b helmet"
desc = "It's some barely-functional power armor helmet from a by-gone age."
icon_state = "t45bhelmet"
item_state = "t45bhelmet"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 25)
/obj/item/clothing/suit/space/hardsuit/powerarmor/t45b
name = "Salvaged T-45b power armor"
desc = "It's some barely-functional power armor, probably hundreds of years old."
icon_state = "t45bpowerarmor"
item_state = "t45bpowerarmor"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 25)
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/powerarmor/t45b

/obj/item/clothing/head/helmet/space/hardsuit/powerarmor/advanced
name = "Advanced power helmet"
desc = "It's an advanced power armor Mk I helmet. It looks somewhat threatening."
icon_state = "advhelmet1"
item_state = "advhelmet1"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 25)
/obj/item/clothing/suit/space/hardsuit/powerarmor/advanced
name = "Advanced power armor"
desc = "An advanced suit of power armor. It looks pretty impressive and threatening."
icon_state = "advpowerarmor1"
item_state = "advpowerarmor1"
armor = list("melee" = 50, "bullet" = 48, "laser" = 25, "energy" = 25, "bomb" = 48, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 25)
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/powerarmor/advanced