Advertisement
Guest User

sample-transport-json

a guest
Jan 24th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.    "hubs":[
  3.       {
  4.          "name":"city",
  5.          "description":"a city of lights",
  6.          "key":"1111-2222-4312-3333",
  7.          "type":"com.westeroscraft.transport.impl.city.City",
  8.          "world":"world",
  9.          "location":{
  10.             "x":0,
  11.             "y":60,
  12.             "z":0
  13.          },
  14.          "radius":10,
  15.          "zones":[
  16.             {
  17.                "name":"castle sea port",
  18.                "description":"a sea zone",
  19.                "key":"1111-1234-4312-3333",
  20.                "type":"com.westeroscraft.transport.impl.city.Dock",
  21.                "radius":5,
  22.                "location":{
  23.                   "x":1,
  24.                   "y":60,
  25.                   "z":1
  26.                },
  27.                "agent":{
  28.                   "name":"harbor guy",
  29.                   "description":"the harbor master guy",
  30.                   "type":"com.westeroscraft.transport.impl.city.HarborMaster",
  31.                   "zone":"1111-1234-4312-3333"
  32.                }
  33.             },
  34.             {
  35.                "name":"kings landing port",
  36.                "description":"another sea zone",
  37.                "key":"1111-1234-4312-3334",
  38.                "type":"com.westeroscraft.transport.impl.city.Dock",
  39.                "radius":5,
  40.                "location":{
  41.                   "x":10,
  42.                   "y":60,
  43.                   "z":10
  44.                },
  45.                "agent":{
  46.                   "name":"other harbor guy",
  47.                   "description":"the harbor master guy for the other harbor",
  48.                   "type":"com.westeroscraft.transport.impl.city.HarborMaster",
  49.                   "zone":"1111-1234-4312-3334"
  50.                }
  51.             }
  52.          ]
  53.       }
  54.    ],
  55.    "pathways":[
  56.       {
  57.          "key":"2222-1234-4321-2222",
  58.          "name":"castle to castle",
  59.          "description":"a path from a castle to another castle",
  60.          "type":"com.westeroscraft.transport.impl.pathway.PathwayBase",
  61.          "blocked":"some of the road is being repaired",
  62.          "start":"1111-1234-4312-3333",
  63.          "end":"1111-1234-4312-3334",
  64.          "nodes":[
  65.             {
  66.                "x":2,
  67.                "y":60,
  68.                "z":2,
  69.                "stop":false
  70.             },
  71.             {
  72.                "x":2,
  73.                "y":60,
  74.                "z":3,
  75.                "stop":false
  76.             },
  77.             {
  78.                "x":3,
  79.                "y":60,
  80.                "z":3,
  81.                "stop":false
  82.             }
  83.          ]
  84.       }
  85.    ],
  86.    "travelers":[
  87.       {
  88.          "key":"2222-1234-4321-2233",
  89.          "name":"boat 1",
  90.          "description":"a basic boat",
  91.          "type":"com.westeroscraft.transport.impl.city.Boat",
  92.          "pathway":"2222-1234-4321-2222"
  93.       }
  94.    ]
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement