quests.json 979 B

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