mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
Weapon type design datums will now get proper description.
Also fixes two names I forgot to fix before.
This commit is contained in:
@@ -71,7 +71,7 @@
|
|||||||
|
|
||||||
/obj/item/mecha_parts/mecha_equipment/weapon/energy/riggedlaser
|
/obj/item/mecha_parts/mecha_equipment/weapon/energy/riggedlaser
|
||||||
equip_cooldown = 30
|
equip_cooldown = 30
|
||||||
name = "jury-rigged welder-Laser"
|
name = "jury-rigged welder-laser"
|
||||||
desc = "While not regulation, this inefficient weapon can be attached to working exo-suits in desperate, or malicious, times."
|
desc = "While not regulation, this inefficient weapon can be attached to working exo-suits in desperate, or malicious, times."
|
||||||
icon_state = "mecha_laser"
|
icon_state = "mecha_laser"
|
||||||
energy_drain = 80
|
energy_drain = 80
|
||||||
|
|||||||
@@ -753,6 +753,7 @@ datum/design/item/stock_part
|
|||||||
build_type = PROTOLATHE
|
build_type = PROTOLATHE
|
||||||
|
|
||||||
datum/design/item/stock_part/AssembleDesignName()
|
datum/design/item/stock_part/AssembleDesignName()
|
||||||
|
..()
|
||||||
name = "Component design ([item_name])"
|
name = "Component design ([item_name])"
|
||||||
|
|
||||||
datum/design/item/stock_part/AssembleDesignDesc()
|
datum/design/item/stock_part/AssembleDesignDesc()
|
||||||
@@ -1017,7 +1018,7 @@ datum/design/circuit/smes_cell
|
|||||||
///////////////Power Items//////////////
|
///////////////Power Items//////////////
|
||||||
////////////////////////////////////////
|
////////////////////////////////////////
|
||||||
datum/design/item/light_replacer
|
datum/design/item/light_replacer
|
||||||
name = "Light Replacer"
|
name = "Light replacer"
|
||||||
desc = "A device to automatically replace lights. Refill with working lightbulbs."
|
desc = "A device to automatically replace lights. Refill with working lightbulbs."
|
||||||
id = "light_replacer"
|
id = "light_replacer"
|
||||||
req_tech = list("magnets" = 3, "materials" = 4)
|
req_tech = list("magnets" = 3, "materials" = 4)
|
||||||
@@ -1246,7 +1247,7 @@ datum/design/item/weapon/AssembleDesignDesc()
|
|||||||
if(!desc)
|
if(!desc)
|
||||||
if(build_path)
|
if(build_path)
|
||||||
var/obj/item/I = build_path
|
var/obj/item/I = build_path
|
||||||
desc = I.desc
|
desc = initial(I.desc)
|
||||||
..()
|
..()
|
||||||
|
|
||||||
datum/design/item/weapon/nuclear_gun
|
datum/design/item/weapon/nuclear_gun
|
||||||
|
|||||||
Reference in New Issue
Block a user