mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 04:36:45 +01:00
Qareen Almost Completion
- Added the Qareen to the spawnable antagonists list - Finished modifications to the "Bliss", "Harvest" and "Malfunction" abilities - All that's left now is the manifestation (but I couldn't find any spriters for it so...) - Probably needs to be balanced
This commit is contained in:
@@ -165,6 +165,13 @@
|
||||
else
|
||||
message_admins("[key_name_admin(usr)] tried to create a revenant. Unfortunately, there were no candidates available.")
|
||||
log_admin("[key_name(usr)] failed to create a revenant.")
|
||||
if("qareen")
|
||||
if(src.makeQareen())
|
||||
message_admins("[key_name(usr)] created a qareen.")
|
||||
log_admin("[key_name(usr)] created a qareen.")
|
||||
else
|
||||
message_admins("[key_name_admin(usr)] tried to create a qareen. Unfortunately, there were no candidates available.")
|
||||
log_admin("[key_name(usr)] failed to create a qareen.")
|
||||
|
||||
else if(href_list["forceevent"])
|
||||
if(!check_rights(R_FUN))
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
<a href='?src=[REF(src)];[HrefToken()];makeAntag=centcom'>Make CentCom Response Team (Requires Ghosts)</a><br>
|
||||
<a href='?src=[REF(src)];[HrefToken()];makeAntag=abductors'>Make Abductor Team (Requires Ghosts)</a><br>
|
||||
<a href='?src=[REF(src)];[HrefToken()];makeAntag=revenant'>Make Revenant (Requires Ghost)</a><br>
|
||||
<a href='?src=[REF(src)];[HrefToken()];makeAntag=qareen'>Make Qareen (Requires Ghost)</a><br>
|
||||
"}
|
||||
|
||||
var/datum/browser/popup = new(usr, "oneclickantag", "Quick-Create Antagonist", 400, 400)
|
||||
@@ -460,3 +461,7 @@
|
||||
/datum/admins/proc/makeRevenant()
|
||||
new /datum/round_event/ghost_role/revenant(TRUE, TRUE)
|
||||
return 1
|
||||
|
||||
/datum/admins/proc/makeQareen()
|
||||
new /datum/round_event/ghost_role/qareen(TRUE, TRUE)
|
||||
return 1
|
||||
|
||||
Reference in New Issue
Block a user