Config.js 762 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. var Bricks = [
  2. {
  3. // 1
  4. art: 1,
  5. color: 'yellow',
  6. type: 'animal',
  7. name: 'bird'
  8. },
  9. {
  10. // 2
  11. art: 2,
  12. color: 'green',
  13. type: 'animal',
  14. name: 'bird'
  15. },
  16. {
  17. // 3
  18. art: 3,
  19. color: 'blue',
  20. type: 'animal',
  21. name: 'bird'
  22. },
  23. {
  24. // 4
  25. art: 4,
  26. color: 'red',
  27. type: 'animal',
  28. name: 'bird'
  29. },
  30. {
  31. // 5
  32. art: 5,
  33. color: 'blue',
  34. type: 'car',
  35. name: 'car'
  36. },
  37. {
  38. // 6
  39. art: 6,
  40. color: 'blue',
  41. type: 'animal',
  42. name: 'fish'
  43. },
  44. {
  45. // 7
  46. art: 7,
  47. color: 'red',
  48. type: 'animal',
  49. name: 'squirell'
  50. },
  51. {
  52. // 8
  53. art: 8,
  54. color: 'yellow',
  55. type: 'glass',
  56. name: 'glass'
  57. },
  58. {
  59. // 9
  60. art: 9,
  61. color: 'green',
  62. type: 'music',
  63. name: 'music'
  64. },
  65. {
  66. // 10
  67. art: 10,
  68. color: 'gray',
  69. type: 'animal',
  70. name: 'cat'
  71. }
  72. ];