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:
Iosyf
2022-09-28 21:19:28 +03:00
parent 89147b792a
commit fda19d3d11
6 changed files with 132 additions and 104 deletions
+7
View File
@@ -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