Fix final roles

This commit is contained in:
skizzerz 2015-10-30 20:28:32 -05:00
parent cb07d67a8f
commit e60a32d400

View File

@ -1017,6 +1017,7 @@ class SleepyMode(GameMode):
for seer in seers: for seer in seers:
var.ROLES["seer"].remove(seer) var.ROLES["seer"].remove(seer)
var.ROLES["doomsayer"].add(seer) var.ROLES["doomsayer"].add(seer)
var.FINAL_ROLES[seer] = "doomsayer"
pm(cli, seer, ("You feel something rushing into you and taking control over your mind and body. It causes you to rapidly " + pm(cli, seer, ("You feel something rushing into you and taking control over your mind and body. It causes you to rapidly " +
"start transforming into a werewolf, and you realize your vision powers can now be used to inflict malady " + "start transforming into a werewolf, and you realize your vision powers can now be used to inflict malady " +
"on the unwary. You are now a \u0002doomsayer\u0002.")) "on the unwary. You are now a \u0002doomsayer\u0002."))
@ -1024,12 +1025,14 @@ class SleepyMode(GameMode):
for harlot in harlots: for harlot in harlots:
var.ROLES["harlot"].remove(harlot) var.ROLES["harlot"].remove(harlot)
var.ROLES["succubus"].add(harlot) var.ROLES["succubus"].add(harlot)
var.FINAL_ROLES[harlot] = "succubus"
pm(cli, harlot, ("You feel something rushing into you and taking control over your mind and body. You are now a " + pm(cli, harlot, ("You feel something rushing into you and taking control over your mind and body. You are now a " +
"\u0002succubus\u0002. Your job is to entrance the village, bringing them all under your absolute " + "\u0002succubus\u0002. Your job is to entrance the village, bringing them all under your absolute " +
"control.")) "control."))
for cultist in cultists: for cultist in cultists:
var.ROLES["cultist"].remove(cultist) var.ROLES["cultist"].remove(cultist)
var.ROLES["demoniac"].add(cultist) var.ROLES["demoniac"].add(cultist)
var.FINAL_ROLES[cultist] = "demoniac"
pm(cli, cultist, ("You feel something rushing into you and taking control over your mind and body, showing you your new purpose in life. " + pm(cli, cultist, ("You feel something rushing into you and taking control over your mind and body, showing you your new purpose in life. " +
"There are far greater evils than the wolves lurking in the shadows, and by sacrificing all of the wolves, you can " + "There are far greater evils than the wolves lurking in the shadows, and by sacrificing all of the wolves, you can " +
"unleash those evils upon the world. You are now a \u0002demoniac\u0002.")) "unleash those evils upon the world. You are now a \u0002demoniac\u0002."))