Skip to content

Commit

Permalink
Hotrod Refurbished + Recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
RinPin committed Jul 3, 2023
1 parent 1cb0951 commit 1fe0e9d
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
25 changes: 25 additions & 0 deletions code/datums/components/crafting/recipes/recipes_misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,31 @@
subcategory = CAT_SCAVENGING
always_available = FALSE

/datum/crafting_recipe/repair_t45/hotrod
name = "Refurbished T-45b Hotrod Power Armor"
result = /obj/item/clothing/suit/armor/power_armor/t45b/hotrod
reqs = list(/obj/item/clothing/suit/armor/heavy/salvaged_pa/t45b/hotrod = 1,
/obj/item/stack/cable_coil = 5,
/obj/item/stack/crafting/electronicparts = 5,
/obj/item/stock_parts/manipulator/pico = 1,
/obj/item/stock_parts/cell/ammo/mfc = 1)
time = 35
category = CAT_CRAFTING
subcategory = CAT_SCAVENGING
always_available = FALSE

/datum/crafting_recipe/repair_t45_helm/hotrod
name = "Refurbished T-45b Hotrod Power Armor Helmet"
result = /obj/item/clothing/head/helmet/f13/power_armor/t45b/hotrod
reqs = list(/obj/item/clothing/head/helmet/f13/heavy/salvaged_pa/t45b/hotrod = 1,
/obj/item/stack/cable_coil = 5,
/obj/item/stack/crafting/electronicparts = 2)
time = 25
category = CAT_CRAFTING
subcategory = CAT_SCAVENGING
always_available = FALSE


/datum/crafting_recipe/teachboy
name = "Refurbish Educational Pip-Boy 2000"
result = /obj/item/pda/teachboy
Expand Down
5 changes: 4 additions & 1 deletion code/datums/traits/good.dm
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ GLOBAL_LIST_INIT(pa_repair, list(
/datum/crafting_recipe/repair_t45,
/datum/crafting_recipe/repair_t45_helm,
/datum/crafting_recipe/scrap_pa,
/datum/crafting_recipe/scrap_pa_helm))
/datum/crafting_recipe/scrap_pa_helm,
/datum/crafting_recipe/repair_t45/hotrod,
/datum/crafting_recipe/repair_t45_helm/hotrod))


GLOBAL_LIST_INIT(weapons_of_texarkana, list(
/datum/crafting_recipe/policepistol,
Expand Down
9 changes: 9 additions & 0 deletions code/modules/clothing/head/f13heavy_helmets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@
item_state = "t45hotrod_helm"
armor_tokens = list(ARMOR_MODIFIER_UP_FIRE_T3)

/obj/item/clothing/head/helmet/f13/power_armor/t45b/hotrod
name = "Refurbished T-45b Hotrod helmet"
desc = "This power armor helmet was restored and modified to protect against flames and high intensity lasers at the cost of some protection against blunt trauma."
icon_state = "t45hotrod_helm"
item_state = "t45hotrod_helm"
armor = ARMOR_VALUE_SALVAGE
salvaged_type = /obj/item/clothing/head/helmet/f13/heavy/salvaged_pa/t45b/hotrod
armor_tokens = list( ARMOR_MODIFIER_UP_FIRE_T3, ARMOR_MODIFIER_DOWN_MELEE_T2, ARMOR_MODIFIER_UP_LASER_T3,)

/obj/item/clothing/head/helmet/f13/heavy/salvaged_pa/t45b/tribal
name = "tribal t-45b headdress"
desc = "A salvaged T-45b powered armor, with the servos removed and a feathered headdress. Certain bits of plating have been stripped out to retain more freedom of movement."
Expand Down
11 changes: 11 additions & 0 deletions code/modules/clothing/suits/arfsuits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3463,6 +3463,17 @@
icon_state = "t51bpowerarmor_bos"
item_state = "t51bpowerarmor_bos"

/obj/item/clothing/suit/armor/power_armor/t45b/hotrod
name = "Refurbished T-45b Hotrod power armor"
desc = "It's a set of T-45b power armor with a with some of its plating replaced by ablative, fire resistant armor. This set has exhaust pipes piped to the pauldrons, flames erupting from them."
icon_state = "t45hotrod"
item_state = "t45hotrod"
armor = ARMOR_VALUE_SALVAGE
slowdown = ARMOR_SLOWDOWN_PA * ARMOR_SLOWDOWN_GLOBAL_MULT
salvaged_type = /obj/item/clothing/suit/armor/heavy/salvaged_pa/t45b/hotrod
armor_tokens = list(ARMOR_MODIFIER_UP_FIRE_T3, ARMOR_MODIFIER_DOWN_MELEE_T2, ARMOR_MODIFIER_UP_LASER_T3, )


/obj/item/clothing/suit/armor/power_armor/excavator
name = "excavator power armor"
desc = "Developed by Garrahan Mining Co. in collaboration with West Tek, the Excavator-class power armor was designed to protect miners from rockfalls and airborne contaminants while increasing the speed at which they could work. "
Expand Down

0 comments on commit 1fe0e9d

Please sign in to comment.