Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds new speed for refurbished armor + nerfs powered scrap armor #2595

Merged
merged 3 commits into from
Jul 3, 2023
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
1 change: 1 addition & 0 deletions code/modules/clothing/head/f13heavy_helmets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
item_state = "t45hotrod_helm"
armor = ARMOR_VALUE_SALVAGE
armor_tokens = list( ARMOR_MODIFIER_UP_FIRE_T3, ARMOR_MODIFIER_DOWN_MELEE_T2, ARMOR_MODIFIER_UP_LASER_T3,)
slowdown = ARMOR_SLOWDOWN_REPA * ARMOR_SLOWDOWN_GLOBAL_MULT

/obj/item/clothing/head/helmet/f13/heavy/salvaged_pa/t45b/ncr
name = "ncr salvaged T-45b helmet"
Expand Down
4 changes: 3 additions & 1 deletion code/modules/clothing/suits/arfsuits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3399,14 +3399,16 @@
icon_state = "t45bpowerarmor"
item_state = "t45bpowerarmor"
armor = ARMOR_VALUE_SALVAGE
slowdown = ARMOR_SLOWDOWN_SALVAGE * ARMOR_SLOWDOWN_GLOBAL_MULT
slowdown = ARMOR_SLOWDOWN_REPA * ARMOR_SLOWDOWN_GLOBAL_MULT
salvaged_type = /obj/item/clothing/suit/armor/heavy/salvaged_pa/t45b

/obj/item/clothing/suit/armor/power_armor/t45b/raider
name = "powered scrap suit"
desc = "A monumentously heavy suit of rusty metal and car parts. Either an actual power armor exoskeleton or some home-built substitute sits embedded under all that rust. Is this some attempt at power armor???"
icon_state = "raiderpa"
item_state = "raiderpa"
armor = ARMOR_VALUE_SALVAGE
slowdown = ARMOR_SLOWDOWN_REPA * ARMOR_SLOWDOWN_GLOBAL_MULT
mutantrace_variation = STYLE_DIGITIGRADE
salvaged_type = /obj/item/clothing/suit/armor/medium/raider/raidermetal

Expand Down
Loading