mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-27 00:03:49 +01:00
44671e31e8
* The start * Getting a bit further * Slight ammo casing update * Istype helper and foam blockage * Adds status effect * Foam blockage and status effect fixes * Autolathe ammo + stun * aaaaaaaa * Adds uplink item * Actual slowdown * Makes attacking a bit faster again * Ammo increase to 12 * Sirryan review * Adds sprites - almost working * Lots of fixes + mineral doors * Mineral doors don't open with foam
12 lines
623 B
Plaintext
12 lines
623 B
Plaintext
/obj/item/pai_cable/proc/plugin(obj/machinery/M as obj, mob/user as mob)
|
|
if(isairlock(M) || istype(M, /obj/machinery/camera))
|
|
user.visible_message("[user] inserts [src] into a data port on [M].", "You insert [src] into a data port on [M].", "You hear the satisfying click of a wire jack fastening into place.")
|
|
user.drop_item()
|
|
src.loc = M
|
|
src.machine = M
|
|
else
|
|
user.visible_message("[user] dumbly fumbles to find a place on [M] to plug in [src].", "There aren't any ports on [M] that match the jack belonging to [src].")
|
|
|
|
/obj/item/pai_cable/attack(obj/machinery/M as obj, mob/user as mob)
|
|
src.plugin(M, user)
|