mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-08 15:47:52 +01:00
8af8a43d6f
Signed-off-by: Mloc-Hibernia <colmohici@gmail.com>
17 lines
372 B
Plaintext
17 lines
372 B
Plaintext
// Blob Overmind Controls
|
|
|
|
|
|
/mob/camera/blob/CtrlClickOn(var/atom/A) // Expand blob
|
|
var/turf/T = get_turf(A)
|
|
if(T)
|
|
expand_blob(T)
|
|
|
|
/mob/camera/blob/MiddleClickOn(var/atom/A) // Rally spores
|
|
var/turf/T = get_turf(A)
|
|
if(T)
|
|
rally_spores(T)
|
|
|
|
/mob/camera/blob/AltClickOn(var/atom/A) // Create a shield
|
|
var/turf/T = get_turf(A)
|
|
if(T)
|
|
create_shield(T) |