Avatar: The Last Airbender

Discussion in 'Review' started by Slowkii, May 20, 2013.

Thread Status:
Not open for further replies.
  1. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    Hey guys! I've done work on themes before, but never really got into coding, but I decided to learn! Me and Roild worked on this theme till it was balanced, and up to par. There might be Grammatical errors I have missed, if so let me know! The coding is valid from JSONlint and Ricekirby's checker, so I hope you all like!

    P.S. The power of a role is in proportion to the game size.

    Raw Code
    http://pastebin.com/raw.php?i=zKeKkEbq[/HIDE]

    Code
    Code (text):
    1. {
    2.     "name": "Avatar",
    3.     "author": [
    4.         "Slowkii",
    5.         "Roild"
    6.     ],
    7.     "summary": "The world is at war with the Fire Nation.... Only the Avatar, Master of all four elements can stop them! The problem is.... Not only the fire nation, but the Outcasts, the Dai Li and the Sandbenders have joined the war! Can the Heros stop them all before Szosan's comet arrives? If you find any bugs, contact Lickitung, Slowkii or Roild.",
    8.     "sides": [
    9.         {
    10.             "side": "village",
    11.             "translation": "Heroes",
    12.             "winmsg": "The heroes have done it! ~Players~ extinguished the Fire Nation's Flame, putting the world at peace once again."
    13.         },
    14.         {
    15.             "side": "FN",
    16.             "translation": "Fire Nation",
    17.             "winmsg": "Muahahaha! The world has been engulfed in Flame! ~Players~ have finally conquered the world!"
    18.         },
    19.         {
    20.             "side": "out",
    21.             "translation": "Outcasts",
    22.             "winmsg": "Zuko no longer needs his honor.... Him and Iroh can now serve tea in peace."
    23.         },
    24.         {
    25.             "side": "DL",
    26.             "translation": "Dai Li",
    27.             "winmsg": "There is no war.... Ba Sing Se is a peaceful and safe city, and the Dai Li, ~Players~, have made sure that that remains the truth."
    28.         },
    29.         {
    30.             "side": "sand",
    31.             "translation": "Sand Benders",
    32.             "winmsg": "The Sand Benders, having won the war, have migrated back to the desert... ~Players~ are free to kidnap whoever they want!"
    33.         }
    34.     ],
    35.     "roles": [
    36.         {
    37.             "role": "frozen1",
    38.             "translation": "Frozen Aang",
    39.             "side": "village",
    40.             "help": "You are Aang! Slight problem, though.... You're frozen! Use /wake [yourname] to convert to a Bender! Make sure to contact Appa.",
    41.             "info": "Can convert into Water or Air Aang randomly. Cannot be killed, has 0 votes and is immune to distraction. Appa is revealed to him.",
    42.             "actions": {
    43.                 "startup": {
    44.                     "revealRole": "appa1"
    45.                 },
    46.                 "kill": {
    47.                     "mode": "ignore"
    48.                 },
    49.                 "distract": {
    50.                     "mode": "ignore"
    51.                 },
    52.                 "night": {
    53.                     "wake": {
    54.                         "command": [
    55.                             "convert"
    56.                         ],
    57.                         "priority": 50,
    58.                         "common": "Self",
    59.                         "newRole": {
    60.                             "random": {
    61.                                 "aangwater1": 0.1,
    62.                                 "aangair1": 0.1
    63.                             }
    64.                         },
    65.                         "target": "OnlySelf"
    66.                     }
    67.                 }
    68.             }
    69.         },
    70.         {
    71.             "role": "frozen2",
    72.             "translation": "Frozen Aang",
    73.             "side": "village",
    74.             "hide": true,
    75.             "help": "You are Aang! Slight problem, though.... You're frozen! Use /wake [yourname] to convert to a Bender! Make sure to contact Appa.",
    76.             "info": "Can convert into Water, Air or Earth Aang randomly. Cannot be killed, has 0 votes and is immune to distraction. Appa is revealed to him.",
    77.             "actions": {
    78.                 "startup": {
    79.                     "revealRole": "appa2"
    80.                 },
    81.                 "kill": {
    82.                     "mode": "ignore"
    83.                 },
    84.                 "distract": {
    85.                     "mode": "ignore"
    86.                 },
    87.                 "night": {
    88.                     "wake": {
    89.                         "command": [
    90.                             "convert"
    91.                         ],
    92.                         "priority": 50,
    93.                         "hide": true,
    94.                         "common": "Self",
    95.                         "newRole": {
    96.                             "random": {
    97.                                 "aangwater2": 0.2,
    98.                                 "aangair2": 0.2,
    99.                                 "aangearth2": 0.2
    100.                             }
    101.                         },
    102.                         "target": "OnlySelf"
    103.                     }
    104.                 }
    105.             }
    106.         },
    107.         {
    108.             "role": "frozen3",
    109.             "translation": "Frozen Aang",
    110.             "side": "village",
    111.             "hide": true,
    112.             "help": "You are Aang! Slight problem, though.... You're frozen! Use /wake [yourname] to convert to a Bender! Make sure to contact Appa.",
    113.             "info": "Can convert into Fire, Water, Air or Earth Aang randomly. Cannot be killed, has 0 votes and is immune to distraction. Appa is revealed to him.",
    114.             "actions": {
    115.                 "startup": {
    116.                     "revealRole": "appa3"
    117.                 },
    118.                 "kill": {
    119.                     "mode": "ignore"
    120.                 },
    121.                 "distract": {
    122.                     "mode": "ignore"
    123.                 },
    124.                 "night": {
    125.                     "wake": {
    126.                         "command": [
    127.                             "convert"
    128.                         ],
    129.                         "priority": 50,
    130.                         "hide": true,
    131.                         "common": "Self",
    132.                         "newRole": {
    133.                             "random": {
    134.                                 "aangwater3": 0.1,
    135.                                 "aangair3": 0.1,
    136.                                 "aangfire3": 0.1,
    137.                                 "aangearth3": 0.1
    138.                             }
    139.                         },
    140.                         "target": "OnlySelf"
    141.                     }
    142.                 }
    143.             }
    144.         },
    145.         {
    146.             "role": "aangwater1",
    147.             "translation": "Aang (Water)",
    148.             "side": "village",
    149.             "help": "You are Water Aang! You have mastered the Water Element and can now distract with Ice! You have 3 votes, too!",
    150.             "info": "Can distract one person during night. In games of 5-9, has 3 votes. In games of 10-20, has 3-5 votes. In games of 21+, has 3-8 votes.",
    151.             "actions": {
    152.                 "vote": 3,
    153.                 "night": {
    154.                     "distract": {
    155.                         "target": "AnyButSelf",
    156.                         "common": "Self",
    157.                         "priority": 1,
    158.                         "distractmsg": "The Avatar froze you, and it took all night to thaw out. You couldn't complete your ~Action~!",
    159.                         "teammsg": "You and your partner were frozen all night, and it took till sunrise to thaw out! You couldn't complete your ~Action~!"
    160.                     }
    161.                 }
    162.             }
    163.         },
    164.         {
    165.             "role": "aangwater2",
    166.             "translation": "Aang (Water)",
    167.             "side": "village",
    168.             "hide": true,
    169.             "help": "You are Water Aang! You have mastered the Water Element and can now distract with Ice! You have 2-6 votes, too!",
    170.             "info": "Can distract one person during night. In games of 5-9, has 3 votes. In games of 10-20, has 3-5 votes. In games of 21+, has 3-8 votes.",
    171.             "actions": {
    172.                 "vote": [
    173.                     2,
    174.                     6
    175.                 ],
    176.                 "night": {
    177.                     "distract": {
    178.                         "target": "AnyButSelf",
    179.                         "common": "Self",
    180.                         "priority": 1,
    181.                         "distractmsg": "The Avatar froze you, and it took all night to thaw out. You couldn't complete your ~Action~!",
    182.                         "teammsg": "You and your partner were frozen all night, and it took till sunrise to thaw out! You couldn't complete your ~Action~!"
    183.                     }
    184.                 }
    185.             }
    186.         },
    187.         {
    188.             "role": "aangwater3",
    189.             "translation": "Aang (Water)",
    190.             "side": "village",
    191.             "hide": true,
    192.             "help": "You are Water Aang! You have mastered the Water Element and can now distract with Ice! You have 3-9 votes, too!",
    193.             "info": "Can distract one person during night. In games of 5-9, has 3 votes. In games of 10-20, has 3-5 votes. In games of 21+, has 3-8 votes.",
    194.             "actions": {
    195.                 "vote": [
    196.                     3,
    197.                     9
    198.                 ],
    199.                 "night": {
    200.                     "distract": {
    201.                         "target": "AnyButSelf",
    202.                         "common": "Self",
    203.                         "priority": 1,
    204.                         "distractmsg": "The Avatar froze you, and it took all night to thaw out. You couldn't complete your ~Action~!",
    205.                         "teammsg": "You and your partner were frozen all night, and it took till sunrise to thaw out! You couldn't complete your ~Action~!"
    206.                     }
    207.                 }
    208.             }
    209.         },
    210.         {
    211.             "role": "aangair1",
    212.             "translation": "Aang (Air)",
    213.             "side": "village",
    214.             "help": "Air is your natural element! You are fast and watchful, and can /inspect someone each night.",
    215.             "info": "Has 30% chance to evade kills. Can inspect once per night.",
    216.             "actions": {
    217.                 "kill": {
    218.                     "mode": {
    219.                         "evadeChance": 0.3
    220.                     }
    221.                 },
    222.                 "night": {
    223.                     "inspect": {
    224.                         "target": "AnyButSelf",
    225.                         "common": "Self",
    226.                         "priority": 30
    227.                     }
    228.                 }
    229.             }
    230.         },
    231.         {
    232.             "role": "aangair2",
    233.             "translation": "Aang (Air)",
    234.             "side": "village",
    235.             "hide": true,
    236.             "help": "Air is your natural element! You are fast and watchful, and can /inspect someone each night.",
    237.             "info": "Has a 40% chance to evade kills. Can inspect once per night.",
    238.             "actions": {
    239.                 "kill": {
    240.                     "mode": {
    241.                         "evadeChance": 0.4
    242.                     }
    243.                 },
    244.                 "night": {
    245.                     "inspect": {
    246.                         "target": "AnyButSelf",
    247.                         "common": "Self",
    248.                         "priority": 30
    249.                     }
    250.                 }
    251.             }
    252.         },
    253.         {
    254.             "role": "aangair3",
    255.             "translation": "Aang (Air)",
    256.             "side": "village",
    257.             "hide": true,
    258.             "help": "Air is your natural element! You are fast and watchful, and can inspect someone each night.",
    259.             "info": "Has a 50% chance to evade kills. Can inspect 1 person per night.",
    260.             "actions": {
    261.                 "kill": {
    262.                     "mode": {
    263.                         "evadeChance": 0.5
    264.                     }
    265.                 },
    266.                 "night": {
    267.                     "inspect": {
    268.                         "target": "AnyButSelf",
    269.                         "common": "Self",
    270.                         "priority": 30
    271.                     }
    272.                 }
    273.             }
    274.         },
    275.         {
    276.             "role": "aangearth2",
    277.             "translation": "Aang (Earth)",
    278.             "side": "village",
    279.             "help": "A strong stance makes a strong earthbender.You can /kill each night. Don't forget, you can /protect yourself once, but you have 0 votes.",
    280.             "info": "Can kill once per night, and has a 1 charge selfprotect. Has 0 votes.",
    281.             "actions": {
    282.                 "vote": 0,
    283.                 "night": {
    284.                     "kill": {
    285.                         "target": "AnyButSelf",
    286.                         "common": "Self",
    287.                         "priority": 15
    288.                     },
    289.                     "protect": {
    290.                         "target": "Any",
    291.                         "common": "Self",
    292.                         "priority": 2,
    293.                         "charges": 1
    294.                     }
    295.                 }
    296.             }
    297.         },
    298.         {
    299.             "role": "aangearth3",
    300.             "translation": "Aang (Earth)",
    301.             "side": "village",
    302.             "hide": true,
    303.             "help": "A strong stance makes a strong earthbender.You can /kill each night. Don't forget, you can /protect yourself twice, but you have 0 votes.",
    304.             "info": "Can kill once per night, and has a 2 charge self protect. Has 0 votes.",
    305.             "actions": {
    306.                 "vote": 0,
    307.                 "night": {
    308.                     "kill": {
    309.                         "target": "AnyButSelf",
    310.                         "common": "Self",
    311.                         "priority": 15
    312.                     },
    313.                     "protect": {
    314.                         "target": "Any",
    315.                         "common": "Self",
    316.                         "priority": 2,
    317.                         "charges": 2
    318.                     }
    319.                 }
    320.             }
    321.         },
    322.         {
    323.             "role": "aangfire3",
    324.             "translation": "Aang (Fire)",
    325.             "side": "village",
    326.             "help": "The power of the flames... You can kill during the standby phase! You have -2 votes, and will Kill Azula/Sokka if they try to get you.",
    327.             "info": "Can kill during standby phase. Has -2 votes and revenges daykills.",
    328.             "actions": {
    329.                 "standby": {
    330.                     "kill": {
    331.                         "target": "AnyButSelf",
    332.                         "msg": "You can kill now by typing /kill [name]!",
    333.                         "killmsg": "Aang steadied his breathing.... And shot fire at ~Target~! They were reduced to ash!"
    334.                     }
    335.                 },
    336.                 "daykill": "bomb",
    337.                 "daykillrevengemsg": "~Target~ tried to kill ~Self~, but Aang put up a fight!",
    338.                 "vote": -2
    339.             }
    340.         },
    341.         {
    342.             "role": "katara1",
    343.             "translation": "Katara",
    344.             "side": "village",
    345.             "help": "You are Katara, the master Water Bender! You can freeze someone at night using /freeze, but it may fail!",
    346.             "info": "Can distract once per night, but it may fail.",
    347.             "actions": {
    348.                 "night": {
    349.                     "freeze": {
    350.                         "command": [
    351.                             "distract"
    352.                         ],
    353.                         "failChance": 0.3,
    354.                         "target": "AnyButSelf",
    355.                         "common": "Self",
    356.                         "priority": 1,
    357.                         "distractmsg": "C-c-c-cold.... So cold.... Who knew a women could water bend!? You couldn't complete your ~Action~!",
    358.                         "teammsg": "Your partner was frozen by Katara! It took you all night t get him thawed!"
    359.                     }
    360.                 }
    361.             }
    362.         },
    363.         {
    364.             "role": "katara2",
    365.             "translation": "Katara",
    366.             "side": "village",
    367.             "hide": true,
    368.             "help": "You are Katara, the master Water Bender! You can freeze someone at night using /freeze, but it may fail! Also, you have a chance of getting a  -1 voteshield!",
    369.             "info": "Can distract once per night (May fail), and has a 50% chance of having a  -1 voteshield.",
    370.             "actions": {
    371.                 "night": {
    372.                     "freeze": {
    373.                         "command": [
    374.                             "distract"
    375.                         ],
    376.                         "failChance": 0.25,
    377.                         "target": "AnyButSelf",
    378.                         "common": "Self",
    379.                         "priority": 1,
    380.                         "distractmsg": "C-c-c-cold.... So cold.... Who knew a women could water bend!? You couldn't complete your ~Action~!",
    381.                         "teammsg": "Your partner was frozen by Katara! It took you all night t get him thawed!"
    382.                     }
    383.                 },
    384.                 "voteshield": [
    385.                     -1,
    386.                     1
    387.                 ]
    388.             }
    389.         },
    390.         {
    391.             "role": "katara3",
    392.             "translation": "Katara",
    393.             "side": "village",
    394.             "hide": true,
    395.             "help": "You are Katara, the master Water Bender! You can freeze someone at night uing /freeze! You have a chance of getting a voteshield, too!",
    396.             "info": "Has 1/3 of a chance to get either 0, -1 or -2 voteshield. Can distract once per night (With a failchance).",
    397.             "actions": {
    398.                 "night": {
    399.                     "freeze": {
    400.                         "command": [
    401.                             "distract"
    402.                         ],
    403.                         "failChance": 0.2,
    404.                         "target": "AnyButSelf",
    405.                         "common": "Self",
    406.                         "priority": 1,
    407.                         "distractmsg": "C-c-c-cold.... So cold.... Who knew a women could water bend!? You couldn't complete your ~Action~!",
    408.                         "teammsg": "Your partner was frozen by Katara! It took you all night t get him thawed!"
    409.                     }
    410.                 },
    411.                 "voteshield": [
    412.                     -2,
    413.                     1
    414.                 ]
    415.             }
    416.         },
    417.         {
    418.             "role": "toph2",
    419.             "translation": "Toph Bei Fong",
    420.             "side": "village",
    421.             "help": "Toph Bei Fong.... The innocent little blind girl. Well, to your parents that is! Being the blind bandit, you can use your earthbending to /protect someone! You can't be haxed because you can feela someone sneak up on you.",
    422.             "info": "Can protect once per night. Cannot be haxed.",
    423.             "actions": {
    424.                 "night": {
    425.                     "protect": {
    426.                         "target": "AnyButSelf",
    427.                         "common": "Role",
    428.                         "priority": 3
    429.                     }
    430.                 },
    431.                 "avoidHax": [
    432.                     "protect"
    433.                 ]
    434.             }
    435.         },
    436.         {
    437.             "role": "toph3",
    438.             "translation": "Toph Bei Fong",
    439.             "side": "village",
    440.             "hide": true,
    441.             "help": "Toph Bei Fong.... The innocent little blind girl. Well, to your parents that is! Being the blind bandit, you can use your earthbending to /protect someone! You can't be haxed because you can feel someone sneak up on you, nor can you be distracted, due to blindness.",
    442.             "info": "Can protect once per night. Cannot be haxed or distracted.",
    443.             "actions": {
    444.                 "distract": {
    445.                     "mode": "ignore"
    446.                 },
    447.                 "night": {
    448.                     "protect": {
    449.                         "target": "AnyButSelf",
    450.                         "common": "Role",
    451.                         "priority": 3
    452.                     }
    453.                 },
    454.                 "avoidHax": [
    455.                     "protect"
    456.                 ]
    457.             }
    458.         },
    459.         {
    460.             "role": "sokka1",
    461.             "translation": "Sokka",
    462.             "side": "village",
    463.             "help": "Now, having discovered the avatar, t is your job to /protect him! You must destroy the Fire Nation and avenge your mother!",
    464.             "info": "Can protect once per night.",
    465.             "actions": {
    466.                 "night": {
    467.                     "protect": {
    468.                         "target": "AnyButSelf",
    469.                         "common": "Role",
    470.                         "priority": 3
    471.                     }
    472.                 }
    473.             }
    474.         },
    475.         {
    476.             "role": "sokka2",
    477.             "translation": "Sokka",
    478.             "side": "village",
    479.             "help": "Now that toph can protect Aang, you have been working on your boomerang skills.... You can use /boom to use your boomerang once during the standby phase, although you may be reveaed!",
    480.             "info": "Can daykill once per game (May be revealed).",
    481.             "actions": {
    482.                 "standby": {
    483.                     "boom": {
    484.                         "command": "kill",
    485.                         "target": "AnyButSelf",
    486.                         "recharge": 99,
    487.                         "msg": "Use /boom to take someone by suprise!",
    488.                         "killmsg": "WHOOM! A boomerang flew past ~Target~'s face! He breaths out a sigh of releif, only to be hit by it coming back!",
    489.                         "revealChance": 0.4,
    490.                         "revealmsg": "Sokka cheered out in triump! Everyone turned around and saw that ~Self~ is Sokka!"
    491.                     }
    492.                 }
    493.             }
    494.         },
    495.         {
    496.             "role": "sokka3",
    497.             "translation": "Sokka",
    498.             "side": "village",
    499.             "hide": true,
    500.             "help": "Now that toph can protect Aang, you have been working on your boomerang skills.... You can use /boom to use your boomerang once during the standby phase! You might be revealed, though....  Being the genius you are, you naturally have 2 votes.",
    501.             "info": "Can daykill once per game and has 2 votes.",
    502.             "actions": {
    503.                 "standby": {
    504.                     "boom": {
    505.                         "command": "kill",
    506.                         "target": "AnyButSelf",
    507.                         "recharge": 99,
    508.                         "msg": "Use /boom to take someone by suprise!",
    509.                         "killmsg": "WHOOM! A boomerang flew past ~Target~'s face! He breaths out a sigh of releif, only to be hit by it coming back!",
    510.                         "revealChance": 0.3,
    511.                         "revealmsg": "Sokka cheered out in triump! Everyone turned around and saw that ~Self~ is Sokka!"
    512.                     }
    513.                 }
    514.             }
    515.         },
    516.         {
    517.             "role": "appa1",
    518.             "translation": "Appa",
    519.             "side": "village",
    520.             "help": "You're Appa! Although you have no ommands, sometimes when you fly around, you see things!",
    521.             "info": "Has a 5% hax chance to find out who is being targeted, and 1% who is the killer.",
    522.             "actions": {
    523.                 "hax": {
    524.                     "kill": {
    525.                         "revealTeam": 0.05,
    526.                         "revealPlayer": 0.01
    527.                     }
    528.                 }
    529.             }
    530.         },
    531.         {
    532.             "role": "appa2",
    533.             "translation": "Appa",
    534.             "side": "village",
    535.             "hide": true,
    536.             "help": "You're Appa! Although you have no ommands, sometimes when you fly around, you see things!",
    537.             "info": "Has a 10% hax chance to find out who is being targeted, and 3% who is the killer.",
    538.             "actions": {
    539.                 "hax": {
    540.                     "kill": {
    541.                         "revealTeam": 0.1,
    542.                         "revealPlayer": 0.05
    543.                     },
    544.                     "poison": {
    545.                         "revealTeam": 0.1,
    546.                         "revealPlayer": 0.03
    547.                     }
    548.                 }
    549.             }
    550.         },
    551.         {
    552.             "role": "appa3",
    553.             "translation": "Appa",
    554.             "side": "village",
    555.             "hide": true,
    556.             "help": "You're Appa! Although you have no ommands, sometimes when you fly around, you see things!",
    557.             "info": "Has a 15% hax chance to find out who is being targeted, and 5% who is the killer.",
    558.             "actions": {
    559.                 "hax": {
    560.                     "kill": {
    561.                         "revealTeam": 0.15,
    562.                         "revealPlayer": 0.1
    563.                     },
    564.                     "poison": {
    565.                         "revealTeam": 0.15,
    566.                         "revealPlayer": 0.05
    567.                     }
    568.                 }
    569.             }
    570.         },
    571.         {
    572.             "role": "momo",
    573.             "translation": "Mo-Mo",
    574.             "side": "village",
    575.             "help": "So... Hungry.... Use /stalk to follow someone and see who they visited (and see if they have food!)",
    576.             "info": "Can stalk once per night.",
    577.             "actions": {
    578.                 "night": {
    579.                     "stalk": {
    580.                         "target": "AnyButSelf",
    581.                         "common": "Self",
    582.                         "priority": 100
    583.                     }
    584.                 }
    585.             }
    586.         },
    587.         {
    588.             "role": "gyatso",
    589.             "translation": "Monk Gyatso",
    590.             "side": "village",
    591.             "help": "One of the wise monks of the Souther Air Temple, you, Monk Gyatso, have learned safegaurding techniques! Use them to protect your disciple, Aang.",
    592.             "info": "Can safegaurd once per night.",
    593.             "actions": {
    594.                 "night": {
    595.                     "safeguard": {
    596.                         "target": "AnyButSelf",
    597.                         "common": "Self",
    598.                         "priority": 2
    599.                     }
    600.                 }
    601.             }
    602.         },
    603.         {
    604.             "role": "tho",
    605.             "translation": "Tho",
    606.             "side": "village",
    607.             "help": "You're just a casual bender! You can't do anything, but you can join the political side of the war by voting!",
    608.             "info": "Reveals as Fire Nation Soldier. Sided with Heroes.",
    609.             "actions": {
    610.                 "inspect": {
    611.                     "revealAs": "fnsoldier"
    612.                 },
    613.                 "lynch": {
    614.                     "revealAs": "fnsoldier"
    615.                 },
    616.                 "startup": {
    617.                     "revealAs": "bender"
    618.                 },
    619.                 "onlist": "fnsoldier"
    620.             }
    621.         },
    622.         {
    623.             "role": "due",
    624.             "translation": "Due",
    625.             "side": "village",
    626.             "help": "You're just a casual bender! You can't do anything, but you can join the political side of the war by voting!",
    627.             "info": "Reveals as Fire Nation Soldier. Sided with Heroes.",
    628.             "actions": {
    629.                 "inspect": {
    630.                     "revealAs": "fnsoldier"
    631.                 },
    632.                 "lynch": {
    633.                     "revealAs": "fnsoldier"
    634.                 },
    635.                 "startup": {
    636.                     "revealAs": "bender"
    637.                 },
    638.                 "onlist": "fnsoldier"
    639.             }
    640.         },
    641.         {
    642.             "role": "bender",
    643.             "translation": "Bender",
    644.             "side": "village",
    645.             "help": "You're just a casual bender! You can't do anything, but you can join the political side of the war by voting!",
    646.             "info": "Just a casual bender, sided with Heroes.",
    647.             "actions": {}
    648.         },
    649.         {
    650.             "role": "fnsoldier",
    651.             "translation": "Fire-Nation Soldier",
    652.             "side": "FN",
    653.             "help": "Fire is a brutal unforgiving element, and you can harness it to kill once per night with your team!",
    654.             "info": "Has a shared kill with team once per night.",
    655.             "actions": {
    656.                 "startup": "team-reveal-with-roles",
    657.                 "night": {
    658.                     "kill": {
    659.                         "target": "AnyButTeam",
    660.                         "common": "Role",
    661.                         "priority": 11,
    662.                         "broadcast": "team"
    663.                     }
    664.                 }
    665.             }
    666.         },
    667.         {
    668.             "role": "fnsoldier2",
    669.             "translation": "Fire-Nation Soldier",
    670.             "side": "FN",
    671.             "hide": true,
    672.             "help": "Fire is a brutal unforgiving element, and you can harness it to kill once every other night with your team!",
    673.             "info": "Has a shared kill with team once every other night.",
    674.             "actions": {
    675.                 "startup": "team-reveal-with-roles",
    676.                 "night": {
    677.                     "kill": {
    678.                         "target": "AnyButTeam",
    679.                         "common": "Role",
    680.                         "priority": 11,
    681.                         "recharge": 2,
    682.                         "broadcast": "team"
    683.                     }
    684.                 }
    685.             }
    686.         },
    687.         {
    688.             "role": "azula",
    689.             "translation": "Princess Azula",
    690.             "side": "FN",
    691.             "help": "You are the feared princess Azula! Strike with /light to use your lightning during the standby phase!",
    692.             "info": "Can daykill. Sided with the Fire Nation.",
    693.             "actions": {
    694.                 "startup": "team-reveal-with-roles",
    695.                 "standby": {
    696.                     "lightning": {
    697.                         "command": "kill",
    698.                         "target": "AnyButTeam",
    699.                         "msg": "Use /lightning to smite a foe!",
    700.                         "killmsg": "Azula strikes ~Target~ with a bolt of lighting! ~Target~ had no chance of surviving....."
    701.                     }
    702.                 }
    703.             }
    704.         },
    705.         {
    706.             "role": "ty lee1",
    707.             "translation": "Ty Lee",
    708.             "side": "FN",
    709.             "help": "You're Ty Lee! You can distract people by numbing their nerves, and you also have 1.5 votes!",
    710.             "info": "Can distract and has 1.5 votes.",
    711.             "actions": {
    712.                 "vote": 1.5,
    713.                 "startup": "team-reveal-with-roles",
    714.                 "night": {
    715.                     "distract": {
    716.                         "target": "AnyButTeam",
    717.                         "common": "Self",
    718.                         "priority": 1,
    719.                         "distractmsg": "Ty Lee immobolized you last night! You couldn't move and inch!",
    720.                         "teammsg": "Your partner stopped moving! You had to gaurd them all night..."
    721.                     }
    722.                 }
    723.             }
    724.         },
    725.         {
    726.             "role": "ty lee2",
    727.             "translation": "Ty Lee",
    728.             "side": "FN",
    729.             "hide": true,
    730.             "help": "You're Ty Lee! You can distract people by numbing their nerves, and you also have 2.5 votes!",
    731.             "info": "Can distract and has 2.5 votes.",
    732.             "actions": {
    733.                 "vote": 2.5,
    734.                 "startup": "team-reveal-with-roles",
    735.                 "night": {
    736.                     "distract": {
    737.                         "target": "AnyButTeam",
    738.                         "common": "Self",
    739.                         "priority": 1,
    740.                         "distractmsg": "Ty Lee immobolized you last night! You couldn't move and inch!",
    741.                         "teammsg": "Your partner stopped moving! You had to gaurd them all night..."
    742.                     }
    743.                 }
    744.             }
    745.         },
    746.         {
    747.             "role": "ty lee3",
    748.             "translation": "Ty Lee",
    749.             "side": "FN",
    750.             "hide": true,
    751.             "help": "You're Ty Lee! You can distract people by numbing their nerves, and you also have 3 votes!",
    752.             "info": "Can distract and has 3 votes.",
    753.             "actions": {
    754.                 "vote": 3,
    755.                 "startup": "team-reveal-with-roles",
    756.                 "night": {
    757.                     "distract": {
    758.                         "target": "AnyButTeam",
    759.                         "common": "Self",
    760.                         "priority": 1,
    761.                         "distractmsg": "Ty Lee immobolized you last night! You couldn't move and inch!",
    762.                         "teammsg": "Your partner stopped moving! You had to gaurd them all night..."
    763.                     }
    764.                 }
    765.             }
    766.         },
    767.         {
    768.             "role": "mai",
    769.             "translation": "Mai",
    770.             "side": "FN",
    771.             "help": "You are Mai! Being skilled with weapons, youan poison someone once each night.",
    772.             "info": "Can poison each night. Poison lasts 1 day.",
    773.             "actions": {
    774.                 "startup": "team-reveal-with-roles",
    775.                 "night": {
    776.                     "poison": {
    777.                         "target": "AnyButTeam",
    778.                         "common": "Role",
    779.                         "priority": 40,
    780.                         "count": 2
    781.                     }
    782.                 },
    783.                 "onDeath": {
    784.                     "convertRoles": {
    785.                         "zuko2": "bspirit",
    786.                         "zuko3": "bspirit"
    787.                     },
    788.                     "convertmsg": "After Mai's death, Zuko becoms enraged! He decides to put on the blue mask once again...."
    789.                 }
    790.             }
    791.         },
    792.         {
    793.             "role": "ozai",
    794.             "translation": "FireLord Ozai",
    795.             "side": "FN",
    796.             "help": "You are the great Fire Lord, Ozai! Grandson of Szosan, you can kill once per night! You have a voteshield, and you kill distractors!",
    797.             "info": "Can kill once per night. Has a -2 voteshield and kills distractors.",
    798.             "actions": {
    799.                 "voteshield": -2,
    800.                 "startup": "team-reveal-with-roles",
    801.                 "distract": {
    802.                     "mode": "ChangeTarget",
    803.                     "hookermsg": "You tried to distract the fire lord, and he showed you the true power of FireBending...",
    804.                     "msg": "Someone tried to distract you, but you killed them!"
    805.                 },
    806.                 "night": {
    807.                     "kill": {
    808.                         "target": "AnyButTeam",
    809.                         "common": "Self",
    810.                         "priority": 18,
    811.                         "broadcast": "team"
    812.                     }
    813.                 }
    814.             }
    815.         },
    816.         {
    817.             "role": "zuko1",
    818.             "translation": "Prince Zuko",
    819.             "side": "out",
    820.             "help": "You are Prince Zuko! You must regain your honor, by finding the avatar! You can ignore distractors and kill each night.",
    821.             "info": "Ignores ditractions and kills each night.",
    822.             "actions": {
    823.                 "distract": {
    824.                     "mode": "ignore"
    825.                 },
    826.                 "night": {
    827.                     "kill": {
    828.                         "target": "AnyButSelf",
    829.                         "priority": 6,
    830.                         "common": "Self"
    831.                     }
    832.                 }
    833.             }
    834.         },
    835.         {
    836.             "role": "zuko2",
    837.             "translation": "Zuko",
    838.             "side": "out",
    839.             "help": "Finding the Avatar no longer matters! All you want is to be left alone! Kill anyone who gets in your way....",
    840.             "info": "Evades daykills. Has 1 kill per night.",
    841.             "actions": {
    842.                 "startup": "team-reveal-with-roles",
    843.                 "daykill": "evade",
    844.                 "night": {
    845.                     "kill": {
    846.                         "target": "AnyButTeam",
    847.                         "common": "Self",
    848.                         "priority": 9
    849.                     }
    850.                 }
    851.             }
    852.         },
    853.         {
    854.             "role": "zuko3",
    855.             "translation": "Zuko",
    856.             "side": "out",
    857.             "hide": true,
    858.             "help": "You have now come to realize that your Uncle, Iroh, means a lot to you. Work with him to restore peace!",
    859.             "info": "Has 1 kill per night, revenges daykills.",
    860.             "actions": {
    861.                 "startup": "team-reveal-with-roles",
    862.                 "daykill": "bomb",
    863.                 "daykillrevengemsg": "~Target~ tried to Zuko, ~Self~, but Iroh came and helped him! Sadly, Iroh couldn't heal Zuko's wounds....",
    864.                 "night": {
    865.                     "kill": {
    866.                         "target": "AnyButTeam",
    867.                         "common": "Self",
    868.                         "priority": 9
    869.                     }
    870.                 }
    871.             }
    872.         },
    873.         {
    874.             "role": "bspirit",
    875.             "translation": "Blue Spirit",
    876.             "side": "out",
    877.             "help": "Mai! No.... It is time to put on the mask once again.... You can kill once, with the highest priority, by using /slash and you now kill distractors! You will still have a normal kill, though.",
    878.             "info": "Has a 1 charge kill that ignores BGs (except Earth Aang's), can kill once per night, and kills distractors. CAN be daykilled",
    879.             "actions": {
    880.                 "distract": {
    881.                     "mode": "ChangeTarget",
    882.                     "hookermsg": "You tried to distract the Blue Spirit, and he sliced you to bits!",
    883.                     "msg": "Someone tried to distract you, so you killed them!"
    884.                 },
    885.                 "night": {
    886.                     "slash": {
    887.                         "command": [
    888.                             "kill"
    889.                         ],
    890.                         "target": "AnyButTeam",
    891.                         "common": "Self",
    892.                         "priority": 2,
    893.                         "limit": 1
    894.                     },
    895.                     "kill": {
    896.                         "target": "AnyButTeam",
    897.                         "common": "Self",
    898.                         "priority": 7
    899.                     }
    900.                 }
    901.             }
    902.         },
    903.         {
    904.             "role": "iroh",
    905.             "translation": "Iroh",
    906.             "side": "out",
    907.             "help": "Being a master of tea, you can /poison someone every other night. It takes 1 day to kill, and you can /protect Zuko Every night! Due to being such a powerful Bender, anyone who makes an action on you will become poisoned!",
    908.             "info": "Can poison every other night, and can protect once per night. Will poison anyone who makes an action on him.",
    909.             "actions": {
    910.                 "startup": "team-reveal-with-roles",
    911.                 "night": {
    912.                     "poison": {
    913.                         "target": "AnyButTeam",
    914.                         "common": "Role",
    915.                         "priority": 40,
    916.                         "recharge": 2,
    917.                         "count": 2
    918.                     },
    919.                     "protect": {
    920.                         "target": "AnyButSelf",
    921.                         "common": "Role",
    922.                         "priority": 3
    923.                     }
    924.                 },
    925.                 "kill": {
    926.                     "mode": "poisonattacker",
    927.                     "count": 3,
    928.                     "msg": "You tried to attack Iroh! He rubbed some wierd leaf on you....",
    929.                     "poisonDeadMessage": "That leaf Iroh rubbed on you... It turned out to be poisonous!"
    930.                 },
    931.                 "distract": {
    932.                     "mode": "poisonattacker",
    933.                     "count": 3,
    934.                     "msg": "You tried to distract Iroh... And ended up having tea with him. But, your head is a little fuzzy now...",
    935.                     "poisonDeadMessage": "The tea you had with Iroh... was poison!"
    936.                 },
    937.                 "stalk": {
    938.                     "mode": "poisonattacker",
    939.                     "count": 3,
    940.                     "msg": "You were stalking Iroh.. and he gave you some food! It tasted a litte funny, although.....",
    941.                     "poisonDeadMessage": "Those berries from Iroh were nice.... but sadly, they were poisonous."
    942.                 },
    943.                 "poison": {
    944.                     "mode": "poisonattacker",
    945.                     "count": 3,
    946.                     "msg": "You poisoned Iroh... bu he gave you a dose of his own medicine!",
    947.                     "poisonDeadMessage": "Gah! Bested at your own game, and by and old man, too..."
    948.                 },
    949.                 "protect": {
    950.                     "mode": "poisonattacker",
    951.                     "count": 3,
    952.                     "msg": "You protected Iroh, and he gave you tea for a thank you gift! It tasted... different, somehow....",
    953.                     "poisonDeadMessage": "Just because he is old, doesn't mean he's not dangerous... He poisoned your tea!"
    954.                 }
    955.             }
    956.         },
    957.         {
    958.             "role": "longfeng",
    959.             "translation": "Long Feng",
    960.             "side": "DL",
    961.             "help": "You are Long Feng! As the leader of the Dai Li, you can brainwash people with /wash! They will turn into your minions, but only Fire Nation Soldiers and Benders can be converted....",
    962.             "info": "Can convert Fire Naton Soldiers, Benders and Sand Benders into Dai Li soldiers.",
    963.             "actions": {
    964.                 "night": {
    965.                     "wash": {
    966.                         "command": [
    967.                             "convert"
    968.                         ],
    969.                         "target": "Any",
    970.                         "common": "Self",
    971.                         "priority": 3,
    972.                         "newRole": "dlsoldier",
    973.                         "canConvert": [
    974.                             "bender",
    975.                             "fnsoldier",
    976.                             "tho",
    977.                             "sand1",
    978.                             "sand2",
    979.                             "sand3",
    980.                             "due"
    981.                         ]
    982.                     }
    983.                 }
    984.             }
    985.         },
    986.         {
    987.             "role": "dlsoldier",
    988.             "translation": "Dai-Li Soldier",
    989.             "side": "DL",
    990.             "help": "There is no war.... That is what Long Feng has taught you. Use protect one night and kill the next night, shared with your partners if you want to win.",
    991.             "info": "A converted Bender, Sand Bender or Fire Nation Soldier. Can kill and protect on alternating nights.",
    992.             "actions": {
    993.                 "night": {
    994.                     "kill": {
    995.                         "target": "AnyButTeam",
    996.                         "common": "Role",
    997.                         "priority": 12,
    998.                         "broadcast": "team",
    999.                         "recharge": 2,
    1000.                         "restrict": [
    1001.                             "protect"
    1002.                         ]
    1003.                     },
    1004.                     "protect": {
    1005.                         "target": "AnyButSelf",
    1006.                         "common": "Role",
    1007.                         "priority": 3,
    1008.                         "broadcast": "team",
    1009.                         "recharge": 2,
    1010.                         "restrict": [
    1011.                             "protect"
    1012.                         ]
    1013.                     }
    1014.                 }
    1015.             }
    1016.         },
    1017.         {
    1018.             "role": "sand1",
    1019.             "translation": "Sandbender",
    1020.             "side": "sand",
    1021.             "help": "You're a Sandbender! You can /hold someone once a night, which will constrict them with sand and stop them from moving. You can also kill once every other night, shared with your team!",
    1022.             "info": "Can Distract once per night. Shares a kill with team every other night.",
    1023.             "actions": {
    1024.                 "startup": "team-reveal-with-roles",
    1025.                 "night": {
    1026.                     "hold": {
    1027.                         "command": [
    1028.                             "distract"
    1029.                         ],
    1030.                         "target": "AnyButTeam",
    1031.                         "common": "Self",
    1032.                         "priority": 1,
    1033.                         "broadcast": "team"
    1034.                     },
    1035.                     "kill": {
    1036.                         "target": "AnyButTeam",
    1037.                         "common": "Team",
    1038.                         "priority": 15,
    1039.                         "broadcast": "team",
    1040.                         "recharge": 1
    1041.                     }
    1042.                 }
    1043.             }
    1044.         },
    1045.         {
    1046.             "role": "sand2",
    1047.             "translation": "Sandbender",
    1048.             "side": "sand",
    1049.             "help": "You're a Sandbender! You can /kill once every two nights, shared wth the other Sandbender!",
    1050.             "info": "Has 1 kill every other night. Shared with the other Sandbenders.",
    1051.             "actions": {
    1052.                 "startup": "team-reveal-with-roles",
    1053.                 "night": {
    1054.                     "kill": {
    1055.                         "target": "AnyButTeam",
    1056.                         "common": "Team",
    1057.                         "priority": 15,
    1058.                         "broadcast": "team",
    1059.                         "recharge": 1
    1060.                     }
    1061.                 }
    1062.             }
    1063.         },
    1064.         {
    1065.             "role": "sand3",
    1066.             "translation": "Sandbender",
    1067.             "side": "sand",
    1068.             "help": "You're a sanbender! Being good friends with the King Of Ba Sing Se, you have a voteshield and 2 votes!",
    1069.             "info": "Has a -1 voteshield and 2 votes.",
    1070.             "actions": {
    1071.                 "startup": "team-reveal-with-roles",
    1072.                 "vote": 2,
    1073.                 "voteshield": -1
    1074.             }
    1075.         }
    1076.     ],
    1077.     "roles1": [
    1078.         "frozen1",
    1079.         "katara1",
    1080.         "zuko1",
    1081.         "sokka1",
    1082.         "fnsoldier",
    1083.         "appa1",
    1084.         "fnsoldier",
    1085.         "bender",
    1086.         "tho"
    1087.     ],
    1088.     "roles2": [
    1089.         "frozen2",
    1090.         "katara2",
    1091.         "zuko2",
    1092.         "toph2",
    1093.         "fnsoldier",
    1094.         "fnsoldier",
    1095.         "bender",
    1096.         "tho",
    1097.         "momo",
    1098.         "appa2",
    1099.         "gyatso",
    1100.         "iroh",
    1101.         "ty lee1",
    1102.         "bender"
    1103.     ],
    1104.     "roles3": [
    1105.         "frozen2",
    1106.         "katara3",
    1107.         "zuko2",
    1108.         "toph3",
    1109.         "azula",
    1110.         "fnsoldier2",
    1111.         "bender",
    1112.         "tho",
    1113.         "momo",
    1114.         "appa2",
    1115.         "gyatso",
    1116.         "iroh",
    1117.         "ty lee2",
    1118.         "bender",
    1119.         "longfeng",
    1120.         "fnsoldier2",
    1121.         "sokka2",
    1122.         "sand2",
    1123.         "mai",
    1124.         "bender"
    1125.     ],
    1126.     "roles4": [
    1127.         "frozen3",
    1128.         "katara3",
    1129.         "zuko3",
    1130.         "toph3",
    1131.         "azula",
    1132.         "fnsoldier2",
    1133.         "bender",
    1134.         "tho",
    1135.         "momo",
    1136.         "appa3",
    1137.         "gyatso",
    1138.         "iroh",
    1139.         "ty lee3",
    1140.         "bender",
    1141.         "longfeng",
    1142.         "sokka3",
    1143.         "sand2",
    1144.         "mai",
    1145.         "bender",
    1146.         "sand1",
    1147.         "ozai",
    1148.         "sand2",
    1149.         "bender",
    1150.         "sand3",
    1151.         "fnsoldier2",
    1152.         "bender",
    1153.         "due",
    1154.         "sand2",
    1155.         "bender",
    1156.         "fnsoldier2"
    1157.     ],
    1158.     "villageCantLoseRoles": [
    1159.         "aangwater1",
    1160.         "aangwater2",
    1161.         "aangwater3",
    1162.         "aangearth2",
    1163.         "aangearth3",
    1164.         "aangfire3",
    1165.         "katara3",
    1166.         "sokka2",
    1167.         "sokka3"
    1168.     ],
    1169.     "killmsg": "+King Bumi: ~Player~ (~Role~) was lost during the war... Oh well!",
    1170.     "killusermsg": "You died during the battle...."
    1171. }
    [/HIDE]

    Sides
    Dai Li:
    • Dai-Li Soldier
    • Long Feng
    Fire Nation:
    • Fire-Nation Soldier
    • Fire-Nation Soldier
    • FireLord Ozai
    • Mai
    • Princess Azula
    • Ty Lee
    • Ty Lee
    • Ty Lee
    Heroes:
    • Aang (Air)
    • Aang (Air)
    • Aang (Air)
    • Aang (Earth)
    • Aang (Earth)
    • Aang (Fire)
    • Aang (Water)
    • Aang (Water)
    • Aang (Water)
    • Appa
    • Appa
    • Appa
    • Bender
    • Due
    • Frozen Aang
    • Frozen Aang
    • Frozen Aang
    • Katara
    • Katara
    • Katara
    • Mo-Mo
    • Monk Gyatso
    • Sokka
    • Sokka
    • Sokka
    • Tho
    • Toph Bei Fong
    • Toph Bei Fong
    Outcasts:
    • Blue Spirit
    • Iroh
    • Prince Zuko
    • Zuko
    • Zuko
    Sand Benders:
    • Sandbender
    • Sandbender
    • Sandbender
    [/HIDE]

    Roles:
    Heroes

    FrozenAang(frozen1)
    HelpText:You are Aang! Slight problem, though.... You're frozen! Use /wake[yourname] to convert to a Bender! Make sure to contactAppa.
    Abilities:

    • Night Actions:
      • Wake: Convert Can only be used on itself.
        • Can convert to Aang (Water) [50.00%] or Aang (Air) [50.00%] (Any role).
    • Can't be killed.
    • Can't be distracted.
    • Knows Appa.

    FrozenAang(frozen2)
    HelpText:You are Aang! Slight problem, though.... You're frozen! Use /wake[yourname] to convert to a Bender! Make sure to contactAppa.
    Abilities:

    • Night Actions:
      • Wake: Convert Can only be used on itself.
        • Can convert to Aang (Water) [33.33%], Aang (Air) [33.33%] or Aang (Earth) [33.33%] (Any role).
    • Can't be killed.
    • Can't be distracted.
    • Knows Appa.

    FrozenAang(frozen3)
    HelpText:You are Aang! Slight problem, though.... You're frozen! Use /wake[yourname] to convert to a Bender! Make sure to contactAppa.
    Abilities:

    • Night Actions:
      • Wake: Convert Can only be used on itself.
        • Can convert to Aang (Water) [25.00%], Aang (Air) [25.00%], Aang (Fire) [25.00%] or Aang (Earth) [25.00%] (Any role).
    • Can't be killed.
    • Can't be distracted.
    • Knows Appa.

    Aang(Water)(aangwater1)
    HelpText:You are Water Aang! You have mastered the Water Element and can nowdistract with Ice! You have 3 votes, too!
    Abilities:

    • Night Actions:
      • Distract:
    • Vote counts as 3.

    Aang(Water)(aangwater2)
    HelpText:You are Water Aang! You have mastered the Water Element and can nowdistract with Ice! You have 2-6 votes, too!
    Abilities:

    • Night Actions:
      • Distract:
    • Vote counts randomly from 2 to 5.

    Aang(Water)(aangwater3)
    HelpText:You are Water Aang! You have mastered the Water Element and can nowdistract with Ice! You have 3-9 votes, too!
    Abilities:

    • Night Actions:
      • Distract:
    • Vote counts randomly from 3 to 8.

    Aang(Air)(aangair1)
    HelpText:Air is your natural element! You are fast and watchful, and can/inspect someone each night.
    Abilities:

    • Night Actions:
      • Inspect:
    • Has a 30% chance of evading kill.

    Aang(Air)(aangair2)
    HelpText:Air is your natural element! You are fast and watchful, and can/inspect someone each night.
    Abilities:

    • Night Actions:
      • Inspect:
    • Has a 40% chance of evading kill.

    Aang(Air)(aangair3)
    HelpText:Air is your natural element! You are fast and watchful, and caninspect someone each night.
    Abilities:

    • Night Actions:
      • Inspect:
    • Has a 50% chance of evading kill.

    Aang(Earth)(aangearth2)
    HelpText:A strong stance makes a strong earthbender.You can /kill each night.Don't forget, you can /protect yourself once, but you have 0votes.
    Abilities:

    • Night Actions:
      • Kill:
      • Protect: Can be used 1 times during the game.
    • Vote counts as 0.

    Aang(Earth)(aangearth3)
    HelpText:A strong stance makes a strong earthbender.You can /kill each night.Don't forget, you can /protect yourself twice, but you have 0votes.
    Abilities:

    • Night Actions:
      • Kill:
      • Protect: Can be used 2 times during the game.
    • Vote counts as 0.

    Aang(Fire)(aangfire3)
    HelpText:The power of the flames... You can kill during the standby phase! Youhave -2 votes, and will Kill Azula/Sokka if they try to getyou.
    Abilities:

    • Standby Actions:
      • Kill: User is not revealed.
    • Kill attacker when daykilled.
    • Vote counts as -2.

    Katara(katara1)
    HelpText:You are Katara, the master Water Bender! You can freeze someone atnight using /freeze, but it may fail!
    Abilities:

    • Night Actions:
      • Freeze: Distract Has a 30% chance of failing.

    Katara(katara2)
    HelpText:You are Katara, the master Water Bender! You can freeze someone atnight using /freeze, but it may fail! Also, you have a chance ofgetting a -1 voteshield!
    Abilities:

    • Night Actions:
      • Freeze: Distract Has a 25% chance of failing.
    • Random Voteshield from-1 to 0.

    Katara(katara3)
    HelpText:You are Katara, the master Water Bender! You can freeze someone atnight uing /freeze! You have a chance of getting a voteshield,too!
    Abilities:

    • Night Actions:
      • Freeze: Distract Has a 20% chance of failing.
    • Random Voteshield from-2 to 0.

    TophBei Fong(toph2)
    HelpText:Toph Bei Fong.... The innocent little blind girl. Well, to yourparents that is! Being the blind bandit, you can use yourearthbending to /protect someone! You can't be haxed because you canfeela someone sneak up on you.
    Abilities:

    • Night Actions:
      • Protect: Can't be haxed. Shared with role.

    TophBei Fong(toph3)
    HelpText:Toph Bei Fong.... The innocent little blind girl. Well, to yourparents that is! Being the blind bandit, you can use yourearthbending to /protect someone! You can't be haxed because you canfeel someone sneak up on you, nor can you be distracted, due toblindness.
    Abilities:

    • Night Actions:
      • Protect: Can't be haxed. Shared with role.
    • Can't be distracted.

    Sokka(sokka1)
    HelpText:Now, having discovered the avatar, t is your job to /protect him! Youmust destroy the Fire Nation and avenge your mother!
    Abilities:

    • Night Actions:
      • Protect: Shared with role.

    Sokka(sokka2)
    HelpText:Now that toph can protect Aang, you have been working on yourboomerang skills.... You can use /boom to use your boomerang onceduring the standby phase, although you may be reveaed!
    Abilities:

    • Standby Actions:
      • Boom: Kill. 40% chance of revealing user. Can be used every 99 days.

    Sokka(sokka3)
    HelpText:Now that toph can protect Aang, you have been working on yourboomerang skills.... You can use /boom to use your boomerang onceduring the standby phase! You might be revealed, though.... Being thegenius you are, you naturally have 2 votes.
    Abilities:

    • Standby Actions:
      • Boom: Kill. 30% chance of revealing user. Can be used every 99 days.

    Appa(appa1)
    HelpText:You're Appa! Although you have no ommands, sometimes when you flyaround, you see things!
    Abilities:

    • Gets night hax on:
      • Kill: Team/Action/Target (5%). Player/Team (1%).

    Appa(appa2)
    HelpText:You're Appa! Although you have no ommands, sometimes when you flyaround, you see things!
    Abilities:

    • Gets night hax on:
      • Kill: Team/Action/Target (10%). Player/Team (5%).
      • Poison: Team/Action/Target (10%). Player/Team (3%).

    Appa(appa3)
    HelpText:You're Appa! Although you have no ommands, sometimes when you flyaround, you see things!
    Abilities:

    • Gets night hax on:
      • Kill: Team/Action/Target (15%). Player/Team (10%).
      • Poison: Team/Action/Target (15%). Player/Team (5%).

    Mo-Mo(momo)
    HelpText:So... Hungry.... Use /stalk to follow someone and see who theyvisited (and see if they have food!)
    Abilities:

    • Night Actions:
      • Stalk:

    MonkGyatso(gyatso)
    HelpText:One of the wise monks of the Souther Air Temple, you, Monk Gyatso,have learned safegaurding techniques! Use them to protect yourdisciple, Aang.
    Abilities:

    • Night Actions:
      • Safeguard:

    Tho(tho)
    HelpText:You're just a casual bender! You can't do anything, but you can jointhe political side of the war by voting!
    Abilities:

    • Inspected as Fire-Nation Soldier.
    • Reveal as Fire-Nation Soldier if lynched.
    • Appears as Fire-Nation Soldier at Current Roles list.
    • Sees itself as Bender.

    Due(due)
    HelpText:You're just a casual bender! You can't do anything, but you can jointhe political side of the war by voting!
    Abilities:

    • Inspected as Fire-Nation Soldier.
    • Reveal as Fire-Nation Soldier if lynched.
    • Appears as Fire-Nation Soldier at Current Roles list.
    • Sees itself as Bender.

    Bender(bender)
    HelpText:You're just a casual bender! You can't do anything, but you can jointhe political side of the war by voting!
    Abilities:



    FireNation

    Fire-NationSoldier(fnsoldier)
    HelpText:Fire is a brutal unforgiving element, and you can harness it to killonce per night with your team!
    Abilities:

    • Night Actions:
      • Kill: Shared with role.
    • Knows teammates.

    Fire-NationSoldier(fnsoldier2)
    HelpText:Fire is a brutal unforgiving element, and you can harness it to killonce every other night with your team!
    Abilities:

    • Night Actions:
      • Kill: Shared with role. Can be used every 2 nights.
    • Knows teammates.

    PrincessAzula(azula)
    HelpText:You are the feared princess Azula! Strike with /light to use yourlightning during the standby phase!
    Abilities:

    • Standby Actions:
      • Lightning: Kill. User is not revealed.
    • Knows teammates.

    TyLee(tylee1)
    HelpText:You're Ty Lee! You can distract people by numbing their nerves, andyou also have 1.5 votes!
    Abilities:

    • Night Actions:
      • Distract:
    • Vote counts as 1.5.
    • Knows teammates.

    TyLee(tylee2)
    HelpText:You're Ty Lee! You can distract people by numbing their nerves, andyou also have 2.5 votes!
    Abilities:

    • Night Actions:
      • Distract:
    • Vote counts as 2.5.
    • Knows teammates.

    TyLee(tylee3)
    HelpText:You're Ty Lee! You can distract people by numbing their nerves, andyou also have 3 votes!
    Abilities:

    • Night Actions:
      • Distract:
    • Vote counts as 3.
    • Knows teammates.

    Mai(mai)
    HelpText:You are Mai! Being skilled with weapons, youan poison someone onceeach night.
    Abilities:

    • Night Actions:
      • Poison: Kills after 1 days. Shared with role.
    • On Death:
      • Convert the following roles: Zuko (to Blue Spirit) and Zuko (to Blue Spirit).
    • Knows teammates.

    FireLordOzai(ozai)
    HelpText:You are the great Fire Lord, Ozai! Grandson of Szosan, you can killonce per night! You have a voteshield, and you killdistractors!
    Abilities:

    • Night Actions:
      • Kill:
    • Kills anyone that distract this role (action is canceled).
    • Voteshield of -2.
    • Knows teammates.



    Outcasts

    PrinceZuko(zuko1)
    HelpText:You are Prince Zuko! You must regain your honor, by finding theavatar! You can ignore distractors and kill each night.
    Abilities:

    • Night Actions:
      • Kill:
    • Can't be distracted.

    Zuko(zuko2)
    HelpText:Finding the Avatar no longer matters! All you want is to be leftalone! Kill anyone who gets in your way....
    Abilities:

    • Night Actions:
      • Kill:
    • Can't be daykilled.
    • Knows teammates.

    Zuko(zuko3)
    HelpText:You have now come to realize that your Uncle, Iroh, means a lot toyou. Work with him to restore peace!
    Abilities:

    • Night Actions:
      • Kill:
    • Kill attacker when daykilled.
    • Knows teammates.

    BlueSpirit(bspirit)
    HelpText:Mai! No.... It is time to put on the mask once again.... You can killonce, with the highest priority, by using /slash and you now killdistractors! You will still have a normal kill, though.
    Abilities:

    • Night Actions:
      • Slash: Kill Can be used 1 times per night.
      • Kill:
    • Kills anyone that distract this role (action is canceled).

    Iroh(iroh)
    HelpText:Being a master of tea, you can /poison someone every other night. Ittakes 1 day to kill, and you can /protect Zuko Every night! Due tobeing such a powerful Bender, anyone who makes an action on you willbecome poisoned!
    Abilities:

    • Night Actions:
      • Poison: Kills after 1 days. Shared with role. Can be used every 2 nights.
      • Protect: Shared with role.
    • Poison anyone that kill this role for 2 turns.
    • Poison anyone that protect this role for 2 turns.
    • Poison anyone that distract this role for 2 turns.
    • Poison anyone that poison this role for 2 turns.
    • Poison anyone that stalk this role for 2 turns.
    • Knows teammates.



    DaiLi

    LongFeng(longfeng)
    HelpText:You are Long Feng! As the leader of the Dai Li, you can brainwashpeople with /wash! They will turn into your minions, but only FireNation Soldiers and Benders can be converted....
    Abilities:

    • Night Actions:
      • Wash: Convert
        • Can convert to Dai-Li Soldier (Bender, Fire-Nation Soldier, Tho, Sandbender, Sandbender, Sandbender).

    Dai-LiSoldier(dlsoldier)
    HelpText:There is no war.... That is what Long Feng has taught you. Useprotect one night and kill the next night, shared with your partnersif you want to win.
    Abilities:

    • Night Actions:
      • Kill: Shared with role. Can be used every 2 nights. Can't use protect during the same night this action is used.
      • Protect: Shared with role. Can be used every 2 nights. Can't use protect during the same night this action is used.



    SandBenders

    Sandbender(sand1)
    HelpText:You're a Sandbender! You can /hold someone once a night, which willconstrict them with sand and stop them from moving. You can also killonce every other night, shared with your team!
    Abilities:

    • Night Actions:
      • Hold: Distract
      • Kill: Shared with team. Can be used every 1 nights.
    • Knows teammates.

    Sandbender(sand2)
    HelpText:You're a Sandbender! You can /kill once every two nights, shared wththe other Sandbender!
    Abilities:

    • Night Actions:
      • Kill: Shared with team. Can be used every 1 nights.
    • Knows teammates.

    Sandbender(sand3)
    HelpText:You're a sanbender! Being good friends with the King Of Ba Sing Se,you have a voteshield and 2 votes!
    Abilities:

    • Vote counts as 2.
    • Voteshield of -1.
    • Knows teammates.


    [/HIDE]

    Spawn List
    List1 (5~9players):
    1. Frozen Aang (frozen1)
    2. Katara (katara1)
    3. Prince Zuko (zuko1)
    4. Sokka (sokka1)
    5. Fire-Nation Soldier (fnsoldier)
    6. Appa (appa1)
    7. Fire-Nation Soldier (fnsoldier)
    8. Bender (bender)
    9. Tho (tho)

    List2 (10~14players):


    1. Frozen Aang (frozen2)
    2. Katara (katara2)
    3. Zuko (zuko2)
    4. Toph Bei Fong (toph2)
    5. Fire-Nation Soldier (fnsoldier)
    6. Fire-Nation Soldier (fnsoldier)
    7. Bender (bender)
    8. Tho (tho)
    9. Mo-Mo (momo)
    10. Appa (appa2)
    11. Monk Gyatso (gyatso)
    12. Iroh (iroh)
    13. Ty Lee (ty lee1)
    14. Bender (bender)

    List3 (15~20players):


    1. Frozen Aang (frozen2)
    2. Katara (katara3)
    3. Zuko (zuko2)
    4. Toph Bei Fong (toph3)
    5. Princess Azula (azula)
    6. Fire-Nation Soldier (fnsoldier2)
    7. Bender (bender)
    8. Tho (tho)
    9. Mo-Mo (momo)
    10. Appa (appa2)
    11. Monk Gyatso (gyatso)
    12. Iroh (iroh)
    13. Ty Lee (ty lee2)
    14. Bender (bender)
    15. Long Feng (longfeng)
    16. Fire-Nation Soldier (fnsoldier2)
    17. Sokka (sokka2)
    18. Sandbender (sand2)
    19. Mai (mai)
    20. Bender (bender)

    List4 (21~30players):


    1. Frozen Aang (frozen3)
    2. Katara (katara3)
    3. Zuko (zuko3)
    4. Toph Bei Fong (toph3)
    5. Princess Azula (azula)
    6. Fire-Nation Soldier (fnsoldier2)
    7. Bender (bender)
    8. Tho (tho)
    9. Mo-Mo (momo)
    10. Appa (appa3)
    11. Monk Gyatso (gyatso)
    12. Iroh (iroh)
    13. Ty Lee (ty lee3)
    14. Bender (bender)
    15. Long Feng (longfeng)
    16. Sokka (sokka3)
    17. Sandbender (sand2)
    18. Mai (mai)
    19. Bender (bender)
    20. Sandbender (sand1)
    21. FireLord Ozai (ozai)
    22. Sandbender (sand2)
    23. Bender (bender)
    24. Sandbender (sand3)
    25. Fire-Nation Soldier (fnsoldier2)
    26. Bender (bender)
    27. Due (due)
    28. Sandbender (sand2)
    29. Bender (bender)
    30. Fire-Nation Soldier (fnsoldier2)


    [/HIDE]

    Priority List
    [1]Katara (Freeze)
    [1]Sandbender (Hold)
    [1]Katara (Freeze)
    [1]Aang (Water) (Distract)
    [1]Aang (Water) (Distract)
    [1]Ty Lee (Distract)
    [1]Katara (Freeze)
    [1]Ty Lee (Distract)
    [1]Aang (Water) (Distract)
    [1]Ty Lee (Distract)
    [2]Monk Gyatso (Safeguard)
    [2]Aang (Earth) (Protect)
    [2]Aang (Earth) (Protect)
    [2]Blue Spirit (Slash)
    [3]Toph Bei Fong (Protect)
    [3]Toph Bei Fong (Protect)
    [3]Long Feng (Wash)
    [3]Dai-Li Soldier (Protect)
    [3]Sokka (Protect)
    [3]Iroh (Protect)
    [6]Prince Zuko (Kill)
    [7]Blue Spirit (Kill)
    [9]Zuko (Kill)
    [9]Zuko (Kill)
    [11]Fire-Nation Soldier (Kill)
    [11]Fire-Nation Soldier (Kill)
    [12]Dai-Li Soldier (Kill)
    [15]Aang (Earth) (Kill)
    [15]Sandbender (Kill)
    [15]Aang (Earth) (Kill)
    [15]Sandbender (Kill)
    [18]FireLord Ozai (Kill)
    [30]Aang (Air) (Inspect)
    [30]Aang (Air) (Inspect)
    [30]Aang (Air) (Inspect)
    [40]Iroh (Poison)
    [40]Mai (Poison)
    [50]Frozen Aang (Wake)
    [50] Frozen Aang (Wake)
    [50] Frozen Aang(Wake)


    [100]Mo-Mo (Stalk)[/HIDE]


    I would have done strategies, but I am not good at that sort of writing.
    And thats it! I'd just like to let you guys know, that I could have never done this without Roild. Or ricekirby, for that matter.

    CHANGELOG

    Edit 1
    Added Due to the Change List for Long Feng. [/HIDE]

    Edit 2
    Some grammar errors fixed and I fixed /roles.[/HIDE]
     
    Last edited: May 24, 2013
  2. Not L

    Not L Fairy Princess

    Joined:
    Jan 9, 2012
    Messages:
    193
    Likes Received:
    0
    Looks sound enough, but I'm not sure how the balance will line up. It seems like your village is a bit strong Test [1]
     
  3. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    Thanks! Keep in mind that the bad guys control the kills, and there are a few enemy distracts and BGs. Long Feng can really hurt them, too. Iroh will fuck over water, air or earth aang, not to mention azula lurking around.

    I've added Due to the changelist for Long Feng.
     
    Last edited: May 21, 2013
  4. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    We had a test, just need to fix infos and typos.
     
  5. Windblown

    Windblown sable knight

    Joined:
    Aug 12, 2012
    Messages:
    841
    Likes Received:
    169
    I guess the village's slight advantage on paper is counteracted by the mafia's edge in votes.
    Not bad; although the description for the Dai-Li soldiers made me feel that they could reflect nightkills on their attackers instead of having a nightkill themselves. I think it'd be cool; it'd be a change from all those kills flying around.
     
  6. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    A bomb?

    P.S, currently thinking of setting min players to 7 or 9, thoughts?
     
  7. Not L

    Not L Fairy Princess

    Joined:
    Jan 9, 2012
    Messages:
    193
    Likes Received:
    0
    Please post logs if you ever test
     
  8. Slowkii

    Slowkii Banned

    Joined:
    Jan 28, 2013
    Messages:
    603
    Likes Received:
    0
    It wasn't a full on test, and it was on PO2 where the scripts are glitchy, so it wasn't worthy of logs.
     
  9. Roild

    Roild Member

    Joined:
    Jul 21, 2012
    Messages:
    861
    Likes Received:
    11
    PO Trainer Name:
    Roild
    Well, I'm still an author on this, so I can take care of it. For the most part, the game revolves around 3 peaks. Lowest, medium/normal peak, high/strongest peak.
     
  10. Roild

    Roild Member

    Joined:
    Jul 21, 2012
    Messages:
    861
    Likes Received:
    11
    PO Trainer Name:
    Roild
    Yep. I'm still the author of this. Maybe I'll just make a new thread for this instead, considering it won't get OP changes with slowkii gone.
     
  11. Not L

    Not L Fairy Princess

    Joined:
    Jan 9, 2012
    Messages:
    193
    Likes Received:
    0
    Requesting a lock on this thread. If Roild ever decides to reboot it, he'll make a new thread
     
Thread Status:
Not open for further replies.