mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-18 10:47:16 +01:00
fun fact, i made this on fungus code (maconha station) so you can say it was ported from mushroom :)
18 lines
506 B
Plaintext
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()
|