Buff Shadekin Empathy (And other hive languages)

This commit is contained in:
Casey
2023-01-24 20:53:21 +00:00
committed by CHOMPStation2
parent 94033f7538
commit 2aee076fee
8 changed files with 58 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
/mob
var/hive_lang_range = 0
/mob/proc/adjust_hive_range()
set name = "Adjust Special Language Range"
set desc = "Changes the range you will transmit your hive language to!"
set category = "IC"
var/option = tgui_alert(src, "What range?", "Adjust special language range", list("Global","This Z level","Local", "Subtle"))
switch(option)
if("Global")
hive_lang_range = 0
if("This Z level")
hive_lang_range = -1
if("Local")
hive_lang_range = world.view
if("Subtle")
hive_lang_range = 1