Graveyard terrain and background tiles implemented

This commit is contained in:
Mal
2025-05-16 23:08:35 +02:00
parent e97c04ed19
commit fc990c12aa
25 changed files with 504 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
let GraphicSet = [
const GraphicSet = [
{
name: 'Nature',
tileset: 'landscape01.jpg',
@@ -9,6 +9,7 @@ let GraphicSet = [
tilePreview: 5,
primaryTiles: 8,
gravity: 9.806,
tilesetBackground: null,
},
{
name: 'Moon',
@@ -20,6 +21,7 @@ let GraphicSet = [
tilePreview: 1,
primaryTiles: 2,
gravity: 2.4515,
tilesetBackground: null,
},
{
name: 'Death Star',
@@ -31,6 +33,7 @@ let GraphicSet = [
tilePreview: 3,
primaryTiles: 6,
gravity: 9.806,
tilesetBackground: null,
},
{
name: 'Nature 2.0',
@@ -42,6 +45,7 @@ let GraphicSet = [
tilePreview: 46,
primaryTiles: 3,
gravity: 9.806,
tilesetBackground: null,
},
{
name: 'Io',
@@ -53,6 +57,7 @@ let GraphicSet = [
tilePreview: 2,
primaryTiles: 6,
gravity: 1.796,
tilesetBackground: null,
},
{
name: 'Southpole',
@@ -64,7 +69,24 @@ let GraphicSet = [
tilePreview: 2,
primaryTiles: 7,
gravity: 9.806,
tilesetBackground: null,
},
{
name: 'Graveyard',
tileset: 'graveyard.png',
tiles: 304,
scale: 1,
backgroundColor: '#000000',
backgroundImage: 'background-graveyard.jpg',
tilePreview: 2,
primaryTiles: 19,
gravity: 9.806,
tilesetBackground: {
path: 'graveyard-background.png',
tiles: 2,
scale: 1,
}
}
];
export default GraphicSet;