Fix final roles
This commit is contained in:
parent
cb07d67a8f
commit
e60a32d400
@ -1017,6 +1017,7 @@ class SleepyMode(GameMode):
|
||||
for seer in seers:
|
||||
var.ROLES["seer"].remove(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 " +
|
||||
"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."))
|
||||
@ -1024,12 +1025,14 @@ class SleepyMode(GameMode):
|
||||
for harlot in harlots:
|
||||
var.ROLES["harlot"].remove(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 " +
|
||||
"\u0002succubus\u0002. Your job is to entrance the village, bringing them all under your absolute " +
|
||||
"control."))
|
||||
for cultist in cultists:
|
||||
var.ROLES["cultist"].remove(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. " +
|
||||
"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."))
|
||||
|
Loading…
x
Reference in New Issue
Block a user