mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-31 00:26:56 +01:00
* enjoy * Update shuttles.dm sowwy Co-authored-by: Maksxpl <18237380+maksxpl@users.noreply.github.com>
18 lines
509 B
Plaintext
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()
|