Advertisement
kirkins

Untitled

Jun 19th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. module.exports = [
  2. {
  3. "id": 1,
  4. "text": "it's one week till graduation",
  5. "choices": [
  6. {
  7. "text": "plan summer vacation",
  8. "result": "you start doing research on a summer vacation",
  9. "requiredEvent": 2
  10. },
  11. {
  12. "text": "look for summer job",
  13. "result": "you start looking for a summer job",
  14. "requiredEvent": 3,
  15. "types": ["career"]
  16. }
  17. ]
  18. },
  19. {
  20. "id": 2,
  21. "text": "You found a few options for a trip.",
  22. "choices": [
  23. {
  24. "text": "Waterfall camping spot 2 hours from home",
  25. "result": "you decide to go to the waterfall near home"
  26. },
  27. {
  28. "text": "Beach in Florida",
  29. "result": "you book a flight to Florida"
  30. }
  31. ]
  32. },
  33. {
  34. "id": 3,
  35. "text": "You found a job at a local grocery store",
  36. "choices": [
  37. {
  38. "text": "take job",
  39. "result": "you decide to take the job",
  40. "effects": {
  41. "job": "grocery store clerk",
  42. "salary": 500
  43. }
  44. },
  45. {
  46. "text": "keep looking",
  47. "result": "you decide to keep looking"
  48. }
  49. ]
  50. },
  51. {
  52. "id": 4,
  53. "text": "your boss asks you to work the weekend",
  54. "choices": [
  55. {
  56. "text": "yes",
  57. "result": "you decide to do it",
  58. "type": "career"
  59. },
  60. {
  61. "text": "no",
  62. "result": "you tell your boss you can't"
  63. }
  64. ]
  65. },
  66. {
  67. "id": 5,
  68. "text": "What financial services would you like to learn about today?",
  69. "npc": "BankAssistant",
  70. "choices": [
  71. {
  72. "text": "Opening a bank account",
  73. "result": "info here"
  74. },
  75. {
  76. "text": "Getting a credit card",
  77. "result": "info here"
  78. }
  79. ]
  80. }
  81. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement