2020-02-14 00:12:24 +01:00
|
|
|
let GraphicSet = [
|
|
|
|
{
|
|
|
|
name: 'Nature',
|
|
|
|
tileset: 'landscape01.jpg',
|
|
|
|
tiles: 8,
|
|
|
|
scale: 3,
|
|
|
|
backgroundColor: '#6096ff',
|
2023-09-23 20:39:10 +02:00
|
|
|
backgroundImage: null,
|
2023-09-24 01:48:01 +02:00
|
|
|
tilePreview: 5,
|
|
|
|
primaryTiles: 8,
|
2023-09-27 22:05:06 +02:00
|
|
|
gravity: 2,
|
2020-02-14 00:12:24 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Moon',
|
|
|
|
tileset: 'moon.jpg',
|
|
|
|
tiles: 2,
|
|
|
|
scale: 3,
|
|
|
|
backgroundColor: 'black',
|
2023-09-23 20:39:10 +02:00
|
|
|
backgroundImage: 'background_earth.jpg',
|
2023-09-24 01:48:01 +02:00
|
|
|
tilePreview: 1,
|
|
|
|
primaryTiles: 2,
|
2023-09-27 22:05:06 +02:00
|
|
|
gravity: 0.5,
|
2023-09-23 20:39:10 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Death Star',
|
|
|
|
tileset: 'deathstar.png',
|
|
|
|
tiles: 96,
|
|
|
|
scale: 1,
|
|
|
|
backgroundColor: '#171721',
|
|
|
|
backgroundImage: null,
|
2023-09-27 22:05:06 +02:00
|
|
|
tilePreview: 3,
|
2023-09-24 01:48:01 +02:00
|
|
|
primaryTiles: 6,
|
2023-09-27 22:05:06 +02:00
|
|
|
gravity: 2,
|
2023-09-24 03:11:30 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Nature 2.0',
|
|
|
|
tileset: 'nature.png',
|
|
|
|
tiles: 48,
|
|
|
|
scale: 3,
|
|
|
|
backgroundColor: '#6096ff',
|
|
|
|
backgroundImage: null,
|
2023-09-27 22:05:06 +02:00
|
|
|
tilePreview: 46,
|
2023-09-24 03:11:30 +02:00
|
|
|
primaryTiles: 3,
|
2023-09-27 22:05:06 +02:00
|
|
|
gravity: 2,
|
2023-09-23 20:39:10 +02:00
|
|
|
}
|
2020-02-14 00:12:24 +01:00
|
|
|
];
|
|
|
|
|
2023-09-18 22:33:55 +02:00
|
|
|
export default GraphicSet;
|