mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Remove reagent ids and use typepaths where applicable * Remove reagent ids and use typepaths where applicable * Resolves some easier conflicts * Resolves medical_tools.dm * Resolves robots.dm * Handles cinnamon Wow, I cannot do this manually. Fuckin' regex time. * Removes 27 merge conflicts (!!!!!) * Makes it actually half-attempt to compile * I just -- I give up, it's over * mk * mk * mk * hm * ok * what a bloody chain reaction jesus * ok * and done * went threw and changed the ones I missed * ok * dangit altoids hurry the fek up * Fixes whatever I found find thru this regex: reagents[\s\w]*=[\s\w]*list\([^\/]+\)
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
/obj/item/stack/light_w
|
|
name = "wired glass tile"
|
|
singular_name = "wired glass floor tile"
|
|
desc = "A glass tile, which is wired, somehow."
|
|
icon = 'icons/obj/tiles.dmi'
|
|
icon_state = "glass_wire"
|
|
w_class = WEIGHT_CLASS_NORMAL
|
|
force = 3
|
|
throwforce = 5
|
|
throw_speed = 3
|
|
throw_range = 7
|
|
flags_1 = CONDUCT_1
|
|
max_amount = 60
|
|
grind_results = list(/datum/reagent/silicon = 20, /datum/reagent/copper = 5)
|
|
|
|
/obj/item/stack/light_w/attackby(obj/item/O, mob/user, params)
|
|
if(istype(O, /obj/item/stack/sheet/metal))
|
|
var/obj/item/stack/sheet/metal/M = O
|
|
if (M.use(1))
|
|
var/obj/item/L = new /obj/item/stack/tile/light(user.drop_location())
|
|
to_chat(user, "<span class='notice'>You make a light tile.</span>")
|
|
L.add_fingerprint(user)
|
|
use(1)
|
|
else
|
|
to_chat(user, "<span class='warning'>You need one metal sheet to finish the light tile!</span>")
|
|
else
|
|
return ..()
|
|
|
|
/obj/item/stack/light_w/wirecutter_act(mob/living/user, obj/item/I)
|
|
var/atom/Tsec = user.drop_location()
|
|
var/obj/item/stack/cable_coil/CC = new (Tsec, 5)
|
|
CC.add_fingerprint(user)
|
|
var/obj/item/stack/sheet/glass/G = new (Tsec)
|
|
G.add_fingerprint(user)
|
|
use(1)
|