Files
Dexxiol 735e82f192 crackhead tools
fun fact, i made this on fungus code (maconha station) so you can say it was ported from mushroom :)
2023-07-26 03:06:15 +03:00

18 lines
506 B
Plaintext

/obj/item/weldingtool/makeshift
name = "Makeshift Welding Tool"
desc = "You begin to think that your hands would do a better job."
icon = 'modular_sand/icons/obj/tools.dmi'
icon_state = "welder"
max_fuel = 10
w_class = WEIGHT_CLASS_TINY
custom_materials = list(/datum/material/iron=30, /datum/material/glass=10)
change_icons = 0
toolspeed = 2.5
/obj/item/weldingtool/makeshift/Initialize(mapload)
. = ..()
create_reagents(max_fuel)
reagents.add_reagent(/datum/reagent/fuel, 0)
update_icon()