roads.json 554 B

1234567891011121314151617181920212223242526
  1. {
  2. "dirtRoad":
  3. {
  4. "index": 1,
  5. "text" : "Dirt road",
  6. "shortIdentifier": "pd", //must be 2 characters
  7. "tilesFilename": "dirtrd",
  8. "moveCost": 75
  9. },
  10. "gravelRoad":
  11. {
  12. "index": 2,
  13. "text" : "Gravel road",
  14. "shortIdentifier": "pg",
  15. "tilesFilename": "gravrd",
  16. "moveCost": 65
  17. },
  18. "cobblestoneRoad":
  19. {
  20. "index": 3,
  21. "text" : "Cobblestone road",
  22. "shortIdentifier": "pc",
  23. "tilesFilename": "cobbrd",
  24. "moveCost": 50
  25. }
  26. }