Raging Mages: A Magistake (#9891)

Added a new gamemode, Magistake, where a group of four rookie mages take the skipjack on a joyride to the station.
    Magical staves now show their ammo on the HUD.
    Magic missile no longer targets fellow magic users.

Note to maintainers: This should be added to the server's config after being merged, to allow it to happen in Secret.
This commit is contained in:
Geeves
2020-09-19 13:43:28 +03:00
committed by GitHub
parent 54f83927b4
commit da7bb8392c
21 changed files with 358 additions and 21 deletions
+2 -2
View File
@@ -187,9 +187,9 @@ proc/getsensorlevel(A)
/mob/living/proc/is_wizard(exclude_apprentice = FALSE)
if(exclude_apprentice)
return mind && mind.assigned_role == "Space Wizard"
return mind && (mind.assigned_role == "Space Wizard" || mind.assigned_role == "Raider Mage")
else
return mind && (mind.assigned_role == "Space Wizard" || mind.assigned_role == "Apprentice")
return mind && (mind.assigned_role == "Space Wizard" || mind.assigned_role == "Raider Mage" || mind.assigned_role == "Apprentice")
/mob/proc/is_berserk()
return FALSE