Files
S.P.L.U.R.T-Station-13/modular_sand/code/game/objects/items/tools/weldingtool.dm
T
c8082e1009 Compliance with standards (#134)
* enjoy

* Update shuttles.dm

sowwy

Co-authored-by: Maksxpl <18237380+maksxpl@users.noreply.github.com>
2021-01-19 12:44:08 -03:00

18 lines
509 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 = "makeshift_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()
. = ..()
create_reagents(max_fuel)
reagents.add_reagent(/datum/reagent/fuel, 0)
update_icon()