Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. {
  2. "rooms": {
  3. "0": {
  4. "on_entry": null,
  5. "on_discover": null,
  6. "description": "This is a room description.",
  7. "quirks": {}
  8. }
  9. },
  10. "items": {
  11. "0": {
  12. "name": "Bolas",
  13. "description": "A rope with two metal balls on the ends.",
  14. "on_use": null
  15. }
  16. },
  17. "monsters": {
  18. "0": {
  19. "name": "Snake",
  20. "description": "It's a bit dry.",
  21. "power": 1
  22. }
  23. },
  24. "events": {
  25. "0": {
  26. "name": "Mysterious Chest",
  27. "description": "You discover a mysterious chest. It's locked",
  28. "actions": [
  29. {
  30. "prompt": "Attempt to force the chest open.",
  31. "on_success": null,
  32. "on_fail": null,
  33. "chance": 2
  34. },
  35. {
  36. "prompt": "Ignore it",
  37. "on_success": null,
  38. "on_fail": null,
  39. "chance": 0
  40. }
  41. ]
  42. }
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement