Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export default {
  2.     name: 'Level 1',
  3.     player: {
  4.         constructor_data: {
  5.             pos_x: 0,
  6.             pos_y: 5
  7.         },
  8.     },
  9.     characters: [],
  10.     objects: [
  11.         {
  12.             slug: 'ground',
  13.             constructor_data: {
  14.                 pos_x: 200,
  15.                 pos_y: 0,
  16.                 width: 30,
  17.                 height: 60
  18.             }
  19.         },
  20.         {
  21.             slug: 'ground',
  22.             constructor_data: {
  23.                 pos_x: 300,
  24.                 pos_y: 0,
  25.                 width: 30,
  26.                 height: 80
  27.             }
  28.         },
  29.         {
  30.             slug: 'ground',
  31.             constructor_data: {
  32.                 pos_x: 380,
  33.                 pos_y: 0,
  34.                 width: 30,
  35.                 height: 120
  36.             }
  37.         },
  38.         {
  39.             slug: 'ground',
  40.             constructor_data: {
  41.                 pos_x: 0,
  42.                 pos_y: 300,
  43.                 width: 200,
  44.                 height: 10
  45.             }
  46.         },
  47.         {
  48.             slug: 'ground',
  49.             constructor_data: {
  50.                 pos_x: 250,
  51.                 pos_y: 230,
  52.                 width: 50,
  53.                 height: 20
  54.             }
  55.         },
  56.         {
  57.             slug: 'ground',
  58.             constructor_data: {
  59.                 pos_x: 330,
  60.                 pos_y: 180,
  61.                 width: 50,
  62.                 height: 20
  63.             }
  64.         },
  65.         {
  66.             slug: 'ground',
  67.             constructor_data: {
  68.                 pos_x: 450,
  69.                 pos_y: 0,
  70.                 width: 30,
  71.                 height: 70
  72.             }
  73.         },
  74.         {
  75.             slug: 'ground',
  76.             constructor_data: {
  77.                 pos_x: 165,
  78.                 pos_y: 240,
  79.                 width: 10,
  80.                 height: 60
  81.             }
  82.         },
  83.         {
  84.             slug: 'ground',
  85.             constructor_data: {
  86.                 pos_x: 0,
  87.                 pos_y: 0,
  88.                 width: 800,
  89.                 height: 5
  90.             }
  91.         }
  92.     ],
  93.     background: {
  94.         type: 'rectangle',
  95.         color: 'black'
  96.     }
  97. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement