mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2025-09-11 02:57:36 +02:00
Graveyard terrain and background tiles implemented
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user