Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 3.06 KB | None | 0 0
  1.     umake_muscleman1 => {
  2.          name => "Body Builder",
  3.          roletext => "You are a professional bodybuilder. On day three the judges will anounce the winner of your last major contest. Good luck!",
  4.          actions => [],
  5.          status => {
  6.              evolveto => 'umake_muscleman2',
  7.              transform => 'umake_muscleman3',
  8.              onday3 => 'action:transform ? evolve #S',
  9.          },
  10.          setup => "town",
  11.          rarity => 500,
  12.          nonadaptive => 1,
  13.          power => 0.51,
  14.      minplayers => 5,
  15.      },
  16.  
  17.     umake_muscleman2 => {
  18.          name => "Successful Body Builder",
  19.          roletext => "You are a professional bodybuilder. Congratulations on winning the state finals! Now you can focus on other things, like using your lean muscle for the good of the town. You have a 50% chance of surviving kills, and you have a 50% chance of killing an attacker when you guard someone.",
  20.          actions => ["kill","protect","guard"],
  21.          status => {
  22.              evolveto => 'monkik',
  23.              guard => 'a',
  24.              onnight => 'action:protect #S ? none',
  25.              replaceguard => 'guard ? protect',
  26.          },
  27.          setup => "town",
  28.          rarity => 1000,
  29.          nonadaptive => 1,
  30.          power => 0.52,
  31.      minplayers => 5,
  32.      },
  33.  
  34.     umake_muscleman3 => {
  35.          name => "Failed Body Builder",
  36.          roletext => "You are a professional bodybuilder. You lost the state finals and are now depressed. Every time you are voted, you die a little inside and might commit suicide.",
  37.          actions => [],
  38.          status => {
  39.              onvoted => 'action:suicide ? none ? none ? none ? none ? none ? none',
  40.          },
  41.          setup => "town",
  42.          rarity => 1000,
  43.          nonadaptive => 1,
  44.          power => 0.1,
  45.      minplayers => 5,
  46.      },
  47.  
  48.  
  49.      umake_fire => {
  50.          name => "Pyro Maniac",
  51.          roletext => "You are a Pyro Maniac, your life revolves around fire. If you are voted, all the matches in your pocket will light and you will run around on fire, killing yourself and anyone that has been primed.",
  52.          actions => [],
  53.          status => {
  54.              evolveto => 'skulk',
  55.              onday => 'action:prime #S'
  56.              onvoted => 'action:prime #1 \\ ignite'
  57.          },
  58.          setup => "town",
  59.          rarity => 500,
  60.          minplayers => 5
  61.      },
  62.  
  63.      umake_black => {
  64.          name => "Obama",
  65.          roletext => "If you are voted by one person, everyone will soon bandwagon.",
  66.          actions => [],
  67.          status => {
  68.              evolveto => 'skulk',
  69.              onvoted => 'action:forcevote #* #S'
  70.          },
  71.          setup => "survivor",
  72.          rarity => 500,
  73.      },
  74.  
  75.      umake_hotshizzle => {
  76.          name => "Noob",
  77.          roletext => "If you are voted by anyone, you will OMGUS.",
  78.          actions => [],
  79.          status => {
  80.              evolveto => 'umake_cookie',
  81.              onvoted => 'action:forcevote #S #1'
  82.          },
  83.          setup => "survivor",
  84.          rarity => 500,
  85.          minplayers => 5
  86.      },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement