ferry.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "events": {
  3. "encounters": [
  4. {
  5. "name": "get-to-know-friendly-person",
  6. "probability": 0.05,
  7. "karma-probability-modifier": 2.00,
  8. "explanations": ["You get to know a friendly person during the time you are on the ferry. Turns out they need to head in the same direction as you are heading after landing. They offer you a ride on their personal vehicle, to get you to your next stop faster."],
  9. "actions": [],
  10. "default-effects": ["delay", "additional-costs"]
  11. }
  12. ],
  13. "general": [
  14. {
  15. "name": "delayed-departure",
  16. "probability": 0.10,
  17. "karma-probability-modifier": -1.00,
  18. "explanations": ["no explanations"],
  19. "actions": [],
  20. "default-effects": ["delay"]
  21. },
  22. {
  23. "name": "delayed-arrival",
  24. "probability": 0.05,
  25. "karma-probability-modifier": -1.00,
  26. "explanations": ["no explanations"],
  27. "actions": [],
  28. "default-effects": ["delay"]
  29. },
  30. {
  31. "name": "cancelled",
  32. "probability": 0.03,
  33. "karma-probability-modifier": -1.00,
  34. "explanations": ["no explanations"],
  35. "actions": [],
  36. "default-effects": ["delay", "unusable", "route-change"]
  37. },
  38. {
  39. "name": "crash",
  40. "probability": 0.001,
  41. "karma-probability-modifier": -1.00,
  42. "explanations": ["no explanations"],
  43. "actions": [],
  44. "default-effects": ["delay", "unusable", "route-change"]
  45. }
  46. ]
  47. }
  48. }