Death Star graphic set added

This commit is contained in:
Mal
2023-09-23 20:39:10 +02:00
parent 014152b011
commit 6f548a1b47
3 changed files with 20 additions and 6 deletions

View File

@@ -5,7 +5,8 @@ let GraphicSet = [
tiles: 8,
scale: 3,
backgroundColor: '#6096ff',
backgroundImage: null
backgroundImage: null,
tilePreview: 5
},
{
name: 'Moon',
@@ -13,8 +14,18 @@ let GraphicSet = [
tiles: 2,
scale: 3,
backgroundColor: 'black',
backgroundImage: 'background_earth.jpg'
}
backgroundImage: 'background_earth.jpg',
tilePreview: 1
},
{
name: 'Death Star',
tileset: 'deathstar.png',
tiles: 96,
scale: 1,
backgroundColor: '#171721',
backgroundImage: null,
tilePreview: 1
}
];
export default GraphicSet;