Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.31 KB | None | 0 0
  1. {
  2. "name": "SSBB",
  3. "author": "Hoboman 2.0",
  4. "sides": [
  5. {
  6. "side": "mafia",
  7. "translation": "Koopa"
  8. },
  9. {
  10. "side": "mafia1",
  11. "translation": "Hyrulian Mafia"
  12. },
  13. {
  14. "side": "Meta Knight",
  15. "translation": "Meta Knight"
  16. },
  17. {
  18. "side": "mafia2",
  19. "translation": "Wario Mafia"
  20. },
  21. {
  22. "side": "mafia3",
  23. "translation": "Penguin Mafia"
  24. },
  25. {
  26. "side": "Ice Climbers",
  27. "translation": "Ice Climbers"
  28. },
  29. {
  30. "side": "village",
  31. "translation": "Good people"
  32. },
  33. {
  34. "side": "wolf",
  35. "translation": "Wolf"
  36. },
  37. {
  38. "side": "godfather",
  39. "translation": "Marshmallow"
  40. }
  41. ],
  42. "roles": [
  43. {
  44. "role": "villager",
  45. "translation": "Mario",
  46. "side": "village",
  47. "help": "You don’t have any special commands during the night, but you do have a tiny chance to find out who is going to be killed! Vote to remove people in the day!",
  48. "actions": {
  49. "hax": {
  50. "kill": {
  51. "revealTeam": 0.05,
  52. "revealPlayer": 0.02
  53. }
  54. }
  55. }
  56. },
  57. {
  58. "role": "sonic",
  59. "translation": "Sonic",
  60. "side": "village",
  61. "help": "You are the fastest thing alive! You have a 60% chance of dodging kills during the night(No command), but due to being so annoying, you vote counts as 0",
  62. "actions": {
  63. "vote": 0,
  64. "kill": {
  65. "mode": "object",
  66. "evadeChance": 0.6
  67. }
  68. }
  69. },
  70. {
  71. "role": "luigi",
  72. "translation": "Luigi",
  73. "side": "village",
  74. "help": "You don’t have any special commands during the night! Oh, and your vote counts as -1!",
  75. "actions": {
  76. "vote": -1,
  77. "startup": "role-reveal"
  78. }
  79. },
  80. {
  81. "role": "inspector",
  82. "translation": "Lucas",
  83. "side": "village",
  84. "help": "Type /Inspect [name] to find his/her identity! Due to being a minor, you vote only counts for .5 though.",
  85. "actions": {
  86. "vote": 0.5,
  87. "night": {
  88. "inspect": {
  89. "target": "AnyButSelf",
  90. "common": "Self",
  91. "priority": 30
  92. }
  93. }
  94. }
  95. },
  96. {
  97. "role": "ness",
  98. "translation": "Ness",
  99. "side": "village",
  100. "help": "Because of your mastery of PSI, you can type /Protect [name] to protect someone, even yourself! PSI also allows you have a small chance of finding out who gets killed next!(No action). Your vote counts for .5 though, due to being a minor.",
  101. "actions": {
  102. "vote": 0.5,
  103. "night": {
  104. "protect": {
  105. "target": "Any",
  106. "common": "Role",
  107. "priority": 4,
  108. "broadcast": "role"
  109. }},
  110. "hax": {
  111. "kill": {
  112. "revealTeam": 0.3,
  113. "revealPlayer": 0.1
  114. }
  115. }
  116.  
  117. }
  118. },
  119. {
  120. "role": "bodyguard",
  121. "translation": "Donkey Kong",
  122. "side": "village",
  123. "help": "Type /Protect [name] to protect someone! Because you are an ape, you are immune to distraction!",
  124. "actions": {
  125. "night": {
  126. "protect": {
  127. "target": "AnyButSelf",
  128. "common": "Role",
  129. "priority": 5,
  130. "broadcast": "role"
  131. }
  132. },
  133. "startup": "role-reveal",
  134. "distract": {
  135. "mode": "ignore"
  136. }
  137. }
  138. },
  139. {
  140. "role": "mafia",
  141. "translation": "Bowser",
  142. "side": "mafia",
  143. "help": "Type /fire [name] to kill someone!",
  144. "actions": {
  145. "night": {
  146. "fire": {
  147. "target": "AnyButTeam",
  148. "common": "Team",
  149. "priority": 11,
  150. "broadcast": "team",
  151. "command": "kill"
  152. }
  153. },
  154. "startup": "team-reveal"
  155. }
  156. },
  157. {
  158. "role": "werewolf",
  159. "translation": "Wolf",
  160. "side": "wolf",
  161. "help": "Type /kill [name] to kill someone!",
  162. "actions": {
  163. "night": {
  164. "kill": {
  165. "target": "AnyButSelf",
  166. "common": "Self",
  167. "priority": 10
  168. }
  169. },
  170. "distract": {
  171. "mode": "ChangeTarget",
  172. "hookermsg": "You tried to distract Wolf (what an idea, srsly), you were ravishly shot at!",
  173. "msg": "The ~Distracter~ came to you last night! You devoured her instead !"
  174. },
  175. "avoidHax": [
  176. "kill"
  177. ]
  178. }
  179. },
  180. {
  181. "role": "hooker",
  182. "translation": "Peach",
  183. "side": "village",
  184. "help": "Type /Distract [name] to distract someone! Vote to remove people in the day! Due to being a princess, your vote counts as 2!",
  185. "actions": {
  186. "vote": 2,
  187. "night": {
  188. "distract": {
  189. "target": "AnyButSelf",
  190. "common": "Self",
  191. "priority": 1
  192. }
  193. }
  194. }
  195. },
  196. {
  197. "role": "mayor",
  198. "translation": "Captain Falcon",
  199. "side": "village",
  200. "help": "You don't have any special commands during the night! Vote to remove people in the day! /kill to remove people with a falcon punch! YOU WILL BE REVEALED IF YOU CHOOSE TO DAYKILL. (your vote counts as 3)",
  201. "actions": {
  202. "vote": 3,
  203. "standby": {
  204. "kill": {
  205. "target": "AnyButSelf",
  206. "msg": "You can kill now using /kill [name] :",
  207. "killmsg": "~Self~ pulls out a fist and punches it through ~Target~'s chest! FALCON PAUWNCH!"
  208. }
  209. }
  210. }
  211. },
  212. {
  213. "role": "spy",
  214. "translation": "Snake",
  215. "side": "village",
  216. "help": "You can find out who is going to get killed/poisoned next, and who is going to be inspected next!(no command for this ability) Vote to remove people in the day! You can type in /sneak, but it won’t do anything.",
  217. "actions": {
  218. "hax": {
  219. "kill": {
  220. "revealTeam": 0.35,
  221. "revealPlayer": 0.15
  222. },
  223. "poison": {
  224. "revealTeam": 0.25,
  225. "revealPlayer": 0.15
  226. },
  227. "inspect": {
  228. "revealTeam": 0.2,
  229. "revealPlayer": 0.1
  230. }
  231. }
  232. }
  233. },
  234. {
  235. "role": "godfather",
  236. "translation": "Jigglypuff",
  237. "side": "godfather",
  238. "help": "Type /rest [name] to kill someone! You can kill 2 targets, Type /rest [name2] again to select your second target!",
  239. "actions": {
  240. "night": {
  241. "kill": {
  242. "target": "AnyButSelf",
  243. "common": "Self",
  244. "priority": 21,
  245. "limit": 2
  246. }
  247. },
  248. "distract": {
  249. "mode": "ChangeTarget",
  250. "hookermsg": "You tried to seduce the Marshmallow, you were rested when you least expected it!",
  251. "msg": "The ~Distracter~ came to you last night! You killed her instead!"
  252. },
  253. "avoidHax": [
  254. "kill"
  255. ]
  256. }
  257. },
  258. {
  259. "role": "vigilante",
  260. "translation": "Link",
  261. "side": "village",
  262. "help": "Type /Kill [name] to kill someone using the Master Sword!(don't kill the good people!) Type /Kill [name2] to kill another person!(Again, don't kill the good people) ",
  263. "actions": {
  264. "night": {
  265. "kill": {
  266. "target": "AnyButSelf",
  267. "common": "Self",
  268. "priority": 19,
  269. "limit": 2
  270. }
  271. }
  272. }
  273. },
  274. {
  275. "role": "samus",
  276. "translation": "Samus",
  277. "side": "village",
  278. "help": "Type /Kill [name] to kill someone using a missile! (don't kill the good people!) Type /distract to distract someone!",
  279. "actions": {
  280. "night": {
  281. "kill": {
  282. "target": "AnyButSelf",
  283. "common": "Self",
  284. "priority": 20
  285. },
  286. "distract": {
  287. "target": "AnyButSelf",
  288. "common": "Self",
  289. "priority": 2
  290. }
  291. }
  292. }
  293. },
  294. {
  295. "role": "mafia1",
  296. "translation": "Ganondorf",
  297. "side": "mafia1",
  298. "help": "Type /Kill [name] to kill someone!",
  299. "actions": {
  300. "night": {
  301. "kill": {
  302. "target": "AnyButTeam",
  303. "common": "Team",
  304. "priority": 12,
  305. "broadcast": "team"
  306. }
  307. },
  308. "startup": "team-reveal"
  309. }
  310. },
  311. {
  312. "role": "mafia2",
  313. "translation": "Wario",
  314. "side": "mafia2",
  315. "help": "Type /poison [name] to poison someone! They die the following night, and this goes through protect!",
  316. "actions": {
  317. "night": {
  318. "poison": {
  319. "target": "AnyButTeam",
  320. "common": "Team",
  321. "priority": 11,
  322. "broadcast": "team"
  323. }
  324. },
  325. "startup": "team-reveal"
  326. }
  327. },
  328. {
  329. "role": "mafiaboss2",
  330. "translation": "Wario Man",
  331. "side": "mafia2",
  332. "help": "Type /kill [name] to kill someone! Type /poison [name] to poison someone! They die the following night, and this goes through protect!",
  333. "actions": {
  334. "night": {
  335. "poison": {
  336. "target": "AnyButTeam",
  337. "common": "Team",
  338. "priority": 11,
  339. "broadcast": "team"
  340. },
  341. "kill": {
  342. "target": "AnyButTeam",
  343. "common": "Team",
  344. "priority": 11,
  345. "broadcast": "team"
  346. }
  347. },
  348. "startup": "team-reveal"
  349. }
  350. },
  351. {
  352. "role": "mafia3",
  353. "translation": "King Dedede",
  354. "side": "mafia3",
  355. "help": "Type /Kill [name] to kill someone! Your vote counts for 4",
  356. "actions": {
  357. "vote": 4,
  358. "night": {
  359. "kill": {
  360. "target": "AnyButTeam",
  361. "common": "Team",
  362. "priority": 13,
  363. "broadcast": "team"
  364. }
  365. },
  366. "startup": "team-reveal"
  367. }
  368. },
  369. {
  370. "role": "mafiaboss1",
  371. "translation": "Ganon",
  372. "side": "mafia1",
  373. "help": "Type /Kill [name] to kill someone! You can't be distracted!",
  374. "actions": {
  375. "night": {
  376. "kill": {
  377. "target": "AnyButTeam",
  378. "common": "Team",
  379. "priority": 12,
  380. "broadcast": "team"
  381. }
  382. },
  383. "distract": {
  384. "mode": "ignore"
  385. },
  386. "startup": "team-reveal"
  387. }
  388. },
  389. {
  390. "role": "Meta Knight",
  391. "translation": "Meta Knight",
  392. "side": "Meta Knight",
  393. "help": "Type /Kill [name] during the day phase to kill someone! You will not be revealed when you kill! You are allied with yourself!",
  394. "actions": {
  395. "standby": {
  396. "kill": {
  397. "target": "AnyButSelf",
  398. "msg": "You can kill now using /kill [name] :",
  399. "killmsg": "Meta Knight pulls out the holy sword, Galaxia, and strikes it through ~Target~'s chest!"
  400. }
  401. }
  402. }
  403. },
  404. {
  405. "role": "samurai",
  406. "translation": "Marth",
  407. "side": "village",
  408. "help": "Type /Kill [name] during the day phase to kill someone! You will not be revealed when you kill! You are allied with the Good people.",
  409. "actions": {
  410. "standby": {
  411. "kill": {
  412. "target": "AnyButSelf",
  413. "msg": "You can kill now using /kill [name] :",
  414. "killmsg": "Marth pulls out a sword and strikes it through ~Target~'s chest! Critical Hit!"
  415. }
  416. }
  417. }
  418. },
  419. {
  420. "role": "miller",
  421. "translation": "Sheik",
  422. "side": "village",
  423. "help": "You don’t have any special commands during the night! Vote to remove people in the day! Oh, and due to being a shady character, Lucas sees you as mafia!",
  424. "actions": {
  425. "inspect": {
  426. "revealAs": "mafia"
  427. }
  428. }
  429. },
  430. {
  431. "role": "IceClimbers",
  432. "translation": "Ice Climbers",
  433. "side": "Ice Climbers",
  434. "help": "You are the ice climbers. You are two people. Your vote counts as 2 during the day! You can /hammer to kill someone during the night! You are immune to distraction! Vote to remove people in the day!",
  435. "actions": {
  436. "night": {
  437. "hammer": {
  438. "command": "kill",
  439. "common": "Self",
  440. "target": "AnyButSelf",
  441. "priority": 16
  442. },
  443. "distract": {
  444. "target": "AnyButSelf",
  445. "common": "Self",
  446. "priority": 15
  447. }
  448. },
  449. "vote": 2
  450. }
  451. }
  452. ],
  453. "roles1": [
  454. "bodyguard",
  455. "mafia",
  456. "inspector",
  457. "werewolf",
  458. "hooker",
  459. "villager",
  460. "mafia",
  461. "villager",
  462. "miller",
  463. "villager",
  464. "mayor"
  465. ],
  466. "roles2": [
  467. "bodyguard",
  468. "mafia1",
  469. "mafia1",
  470. "inspector",
  471. "hooker",
  472. "villager",
  473. "mafia2",
  474. "mafia2",
  475. "luigi",
  476. "mayor",
  477. "luigi",
  478. "villager",
  479. "Meta Knight",
  480. "spy",
  481. "samus",
  482. "villager",
  483. "mafia3",
  484. "mafiaboss1",
  485. "sonic",
  486. "vigilante",
  487. "villager",
  488. "ness",
  489. "IceClimbers",
  490. "mafiaboss2",
  491. "godfather",
  492. "mafia2",
  493. "samurai",
  494. "luigi",
  495. "mafia3",
  496. "werewolf",
  497. "mafia1",
  498. "bodyguard",
  499. "luigi",
  500. "villager"
  501. ],
  502. "villageCantLoseRoles": [
  503. "mayor",
  504. "vigilante",
  505. "samurai",
  506. "samus",
  507. "hooker"
  508. ],
  509. "killmsg": "±Announcer ~Player~(~Role~) has been thrown off of the screen!",
  510. "killusermsg": "You have been thrown off the screen!"
  511. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement