diff --git a/code/modules/power/cells/power_cells_ch.dm b/code/modules/power/cells/power_cells_ch.dm index 12e5048c68..36e0416c71 100644 --- a/code/modules/power/cells/power_cells_ch.dm +++ b/code/modules/power/cells/power_cells_ch.dm @@ -16,18 +16,31 @@ icon_state = "wcell" maxcharge = 1000 charge_amount = 20 - desc = "This 'cell' holds a max charge of 1k and self recharges over time. It is specialized for weaponary although a bit too msall for some weapons" + desc = "This 'cell' holds a max charge of 1k and self recharges over time. It is specialized for weaponary although a bit too small for some weapons" self_recharge = TRUE origin_tech = list(TECH_POWER = 7, TECH_MATERIAL = 6,TECH_BLUESPACE = 6,TECH_COMBAT = 1) +/obj/item/weapon/cell/device/hightech + name = "Self-charging device power cell" + maxcharge = 1000 + charge_amount = 20 + desc = "This 'cell' holds a max charge of 1k and self recharges over time. It is specialized for devices." + self_recharge = TRUE + origin_tech = list(TECH_POWER = 7, TECH_MATERIAL = 6,TECH_BLUESPACE = 6) + /obj/item/weapon/cell/device/weapon/hightech/empty/initialize() . = ..() charge = 0 update_icon() +/obj/item/weapon/cell/device/hightech/empty/initialize() + . = ..() + charge = 0 + update_icon() + //////DESIGN SECTION TO BE MOVED TO DESIGNS////////////// -/datum/design/item/powercell/high/hightech +/datum/design/item/powercell/weapon/hightech name = "Self-charging weapon cell" id = "selfch_cell_weapon" req_tech = list(TECH_POWER = 5, TECH_MATERIAL = 5,TECH_BLUESPACE = 5,TECH_COMBAT = 3) @@ -35,3 +48,12 @@ build_path = /obj/item/weapon/cell/device/weapon/hightech category = "Misc" sort_string = "DAAAF" //Unique Letter String, this decides how the list of printable items is arranged + +/datum/design/item/powercell/device/hightech + name = "Self-charging device cell" + id = "selfch_cell_device" + req_tech = list(TECH_POWER = 5, TECH_MATERIAL = 5,TECH_BLUESPACE = 5) + materials = list(DEFAULT_WALL_MATERIAL = 2000,"glass" = 500, "silver" = 500) + build_path = /obj/item/weapon/cell/device/hightech + category = "Misc" + sort_string = "DAAAE" //Unique Letter String, this decides how the list of printable items is arranged