quests.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. [
  2. {
  3. "name": "Tutorial",
  4. "quests": [
  5. {
  6. "questId": "tutorial_1",
  7. "questName": "Quest Dialog",
  8. "description": "Welcome to Factory Craft!\nThis is a tutorial quest to get you started.\nYou have already completed it by opening the quest dialog.\nHere you can see all current open or completed quests.\nCompleting a quest can make other quests visible.\nYou can view all current quests by clicking on a quest category on the left.",
  9. "imagePath": "data/images/gui_icons.ltdb/questdialog.png",
  10. "requirements": [
  11. {
  12. "id": "1",
  13. "description": "Open the quest dialog",
  14. "type": "open_dialog",
  15. "dialogId": "quests"
  16. }
  17. ],
  18. "rewards": [
  19. {
  20. "rewardId": "1",
  21. "type": "give_items",
  22. "items": [
  23. {
  24. "item": {
  25. "type": "Flint"
  26. },
  27. "count": 10
  28. }
  29. ]
  30. }
  31. ]
  32. }
  33. ]
  34. }
  35. ]