mirror of
https://github.com/Skyrat-SS13/Skyrat-tg.git
synced 2026-08-21 11:58:46 +01:00
21 lines
515 B
Plaintext
21 lines
515 B
Plaintext
/// The syndicate infiltrator shuttle port.
|
|
/obj/docking_port/mobile/infiltrator
|
|
name = "syndicate infiltrator"
|
|
id = "syndicate"
|
|
movement_force = list("KNOCKDOWN" = 0, "THROW" = 0)
|
|
hidden = TRUE
|
|
dheight = 1
|
|
dwidth = 12
|
|
height = 17
|
|
width = 23
|
|
dir = 8
|
|
port_direction = 4
|
|
|
|
/obj/docking_port/mobile/infiltrator/Initialize(mapload)
|
|
. = ..()
|
|
SSpoints_of_interest.make_point_of_interest(src)
|
|
|
|
/obj/docking_port/mobile/infiltrator/Destroy(force)
|
|
SSpoints_of_interest.remove_point_of_interest(src)
|
|
return ..()
|