create route 2 gate map

This commit is contained in:
Chase Manning 2023-10-03 20:22:29 +01:00
commit d2e94fc8d4

36
src/maps/route-2-gate.ts Normal file
View file

@ -0,0 +1,36 @@
import image from "../assets/map/route-2-gate.png";
import { MapId, MapType } from "./map-types";
const route2Gate: MapType = {
name: "Route 2 Gate",
image,
height: 8,
width: 10,
start: {
x: 4,
y: 6,
},
walls: {
0: [0, 1, 2, 3, 4, 6, 7, 8, 9],
2: [0, 6, 8, 9],
3: [0, 6, 8, 9],
4: [0, 9],
5: [0, 6, 8, 9],
6: [0, 6, 8, 9],
7: [0, 9],
},
fences: {},
grass: {},
text: {},
maps: {},
exits: {
7: [4, 5],
},
exitReturnPos: {
x: 3,
y: 44,
},
exitReturnMap: MapId.Route2,
};
export default route2Gate;