mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-25 14:16:58 +01:00
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.com>
34 lines
802 B
Plaintext
34 lines
802 B
Plaintext
/*
|
|
* Brass Tools
|
|
*/
|
|
|
|
//Crowbar
|
|
/obj/item/tool/crowbar/brass
|
|
icon_state = "crowbar_brass"
|
|
item_state = "crowbar"
|
|
|
|
//Cutters
|
|
/obj/item/tool/wirecutters/brass
|
|
icon_state = "cutters_brass"
|
|
item_state = "cutters_yellow"
|
|
random_color = FALSE // CHOMPFix, no more not-brass brass tools.
|
|
|
|
//Screwdriver
|
|
/obj/item/tool/screwdriver/brass
|
|
icon_state = "screwdriver_brass"
|
|
item_state = "screwdriver_black"
|
|
random_color = FALSE // CHOMPFix, no more not-brass brass tools.
|
|
|
|
//Wrench
|
|
/obj/item/tool/wrench/brass
|
|
icon_state = "wrench_brass"
|
|
item_state = "wrench_brass"
|
|
|
|
//Welder
|
|
/obj/item/weldingtool/brass
|
|
name = "brass welding tool"
|
|
desc = "A welder made from brass fittings."
|
|
icon_state = "brasswelder"
|
|
max_fuel = 20
|
|
matter = list(MAT_STEEL = MATERIAL_COST(0.035), MAT_GLASS = MATERIAL_COST(0.03))
|