mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
## About The Pull Request - null all GAGS vars for brass wirecutters as it doesn't use GAGS - Repath `mothbomb.dmi` so it actually gets deployed with the server - Generate map icons - Fix 150+ crafting material parity failures - Fix airlock lights not working - Fix certain species missing eyes ## Why It's Good For The Game Don't like red X ## Proof Of Testing If this PR is green check then you Know
71 lines
2.4 KiB
Plaintext
71 lines
2.4 KiB
Plaintext
#define BRASS_TOOLSPEED_MOD 0.5
|
|
|
|
/obj/item/wirecutters/brass
|
|
name = "brass wirecutters"
|
|
desc = "A pair of wirecutters made of brass. The handle feels faintly warm."
|
|
resistance_flags = FIRE_PROOF | ACID_PROOF
|
|
icon = 'modular_skyrat/modules/clock_cult/icons/tools.dmi'
|
|
icon_state = "cutters_brass"
|
|
flags_1 = null
|
|
random_color = FALSE
|
|
toolspeed = BRASS_TOOLSPEED_MOD
|
|
greyscale_config = null
|
|
greyscale_config_belt = null
|
|
greyscale_config_inhand_left = null
|
|
greyscale_config_inhand_right = null
|
|
greyscale_colors = null
|
|
|
|
/obj/item/screwdriver/brass
|
|
name = "brass screwdriver"
|
|
desc = "A screwdriver made of brass. The handle feels warm to the touch."
|
|
resistance_flags = FIRE_PROOF | ACID_PROOF
|
|
icon = 'modular_skyrat/modules/clock_cult/icons/tools.dmi'
|
|
icon_state = "screwdriver_brass"
|
|
post_init_icon_state = null
|
|
toolspeed = BRASS_TOOLSPEED_MOD
|
|
random_color = FALSE
|
|
greyscale_config = null
|
|
greyscale_config_belt = null
|
|
greyscale_config_inhand_left = null
|
|
greyscale_config_inhand_right = null
|
|
greyscale_colors = null
|
|
|
|
/obj/item/weldingtool/experimental/brass
|
|
name = "brass welding tool"
|
|
desc = "A brass welder that seems to constantly refuel itself. It is faintly warm to the touch."
|
|
resistance_flags = FIRE_PROOF | ACID_PROOF
|
|
icon = 'modular_skyrat/modules/clock_cult/icons/tools.dmi'
|
|
icon_state = "welder_brass"
|
|
toolspeed = BRASS_TOOLSPEED_MOD
|
|
|
|
/obj/item/crowbar/brass
|
|
name = "brass crowbar"
|
|
desc = "A brass crowbar. It feels faintly warm to the touch."
|
|
resistance_flags = FIRE_PROOF | ACID_PROOF
|
|
icon = 'modular_skyrat/modules/clock_cult/icons/tools.dmi'
|
|
icon_state = "crowbar_brass"
|
|
worn_icon_state = "crowbar"
|
|
toolspeed = BRASS_TOOLSPEED_MOD
|
|
|
|
/obj/item/wrench/brass
|
|
name = "brass wrench"
|
|
desc = "A brass wrench. It's faintly warm to the touch."
|
|
resistance_flags = FIRE_PROOF | ACID_PROOF
|
|
icon = 'modular_skyrat/modules/clock_cult/icons/tools.dmi'
|
|
icon_state = "wrench_brass"
|
|
toolspeed = BRASS_TOOLSPEED_MOD
|
|
|
|
/obj/item/storage/belt/utility/clock
|
|
name = "old toolbelt"
|
|
desc = "Holds tools. This one's seen better days, though. There's the outline of a cog roughly cut into the leather on one side."
|
|
|
|
/obj/item/storage/belt/utility/clock/PopulateContents()
|
|
new /obj/item/screwdriver/brass(src)
|
|
new /obj/item/crowbar/brass(src)
|
|
new /obj/item/weldingtool/experimental/brass(src)
|
|
new /obj/item/wirecutters/brass(src)
|
|
new /obj/item/wrench/brass(src)
|
|
new /obj/item/multitool(src)
|
|
|
|
#undef BRASS_TOOLSPEED_MOD
|