caa-game/src/levels/1-4.js

54 lines
1.2 KiB
JavaScript

const tileSize = 32;
let level = {
tiles: [
1, 2, 2, 2, 2, 2, 2, 2, 6,
4, 21, 25, 23, 21, 28, 29, 27, 7,
4, 18, 20, 17, 17, 17, 17, 18, 7,
4, 17, 17, 19, 17, 17, 17, 17, 7,
4, 17, 17, 17, 17, 20, 17, 17, 7,
4, 17, 20, 17, 17, 17, 19, 17, 7,
4, 17, 18, 17, 17, 17, 17, 20, 7,
4, 17, 17, 17, 17, 17, 19, 17, 7,
14, 15, 11, 16, 47, 12, 11, 10, 13,
0, 0, 0, 14, 50, 13, 0, 0, 0, 0,
],
size: {
w: 9 * tileSize,
h: 10 * tileSize
},
startPos: [
{ x: 4 * tileSize, y: 6 * tileSize }
],
entities: [
{
type: "Portal",
pos: { x: 4 * tileSize, y: 8 * tileSize },
texture: "Door_s",
action: (_player, level) => {
level.switch = { module: __dirname + "/1-2.js", pos: 2 };
},
key: ""
},
{
type: "Portal",
pos: { x: 4 * tileSize, y: 3 * tileSize },
texture: "Ladder",
action: (_player, level) => {
level.switch = { module: __dirname + "/2-1.js", pos: 0 };
},
key: "1-4"
},
{
type: "Rock",
pos: { x: 7 * tileSize, y: 7 * tileSize },
},
{
type: "Rock",
pos: { x: tileSize, y: 2 * tileSize },
texture: "Big"
}
]
};
module.exports = level;