mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-10-12 23:50:19 +00:00
✨ create route 2 gate map
This commit is contained in:
parent
0f7877f381
commit
d2e94fc8d4
1 changed files with 36 additions and 0 deletions
36
src/maps/route-2-gate.ts
Normal file
36
src/maps/route-2-gate.ts
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue