mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-11-03 01:18:58 +00:00
✨ create mt moon 3f map
This commit is contained in:
parent
c267202c2e
commit
4ff90e594a
1 changed files with 64 additions and 0 deletions
64
src/maps/mt-moon-3f.ts
Normal file
64
src/maps/mt-moon-3f.ts
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
import image from "../assets/map/mt-moon-3f.png";
|
||||
import music from "../assets/music/maps/mt-moon.mp3";
|
||||
import getEncounterData from "./get-location-data";
|
||||
import { MapId, MapType } from "./map-types";
|
||||
|
||||
// TODO Add propper exit
|
||||
|
||||
const mtMoon3f: MapType = {
|
||||
name: "Mt Moon 3F",
|
||||
image,
|
||||
music,
|
||||
cave: true,
|
||||
height: 28,
|
||||
width: 28,
|
||||
start: {
|
||||
x: 0,
|
||||
y: 0,
|
||||
},
|
||||
walls: {
|
||||
0: [],
|
||||
1: [20, 21, 22, 23, 24, 25, 26, 27],
|
||||
2: [19],
|
||||
3: [4, 5, 6, 7, 19],
|
||||
4: [3, 8, 27, 26, 25, 24, 23, 22, 21, 20],
|
||||
5: [3, 8],
|
||||
6: [3, 8],
|
||||
7: [3, 8, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25],
|
||||
8: [3, 8, 13, 26],
|
||||
9: [3, 8, 13, 26],
|
||||
10: [3, 8, 13, 26],
|
||||
11: [3, 8, 13, 26],
|
||||
12: [3, 8, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 24],
|
||||
13: [3, 8, 24, 25, 26, 27],
|
||||
14: [3, 8, 23],
|
||||
15: [3, 21, 20, 19, 18, 15, 14, 13, 12, 11, 10, 9, 8, 23],
|
||||
16: [3, 22, 23],
|
||||
17: [3, 22, 23],
|
||||
18: [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23],
|
||||
19: [23],
|
||||
20: [23],
|
||||
21: [23],
|
||||
22: [23],
|
||||
23: [23],
|
||||
24: [23],
|
||||
25: [23, 22, 21, 20, 19, 18, 17, 16, 15, 13, 12, 11, 10, 14],
|
||||
26: [9],
|
||||
27: [9],
|
||||
},
|
||||
|
||||
fences: {},
|
||||
grass: {},
|
||||
text: {},
|
||||
maps: {},
|
||||
exits: {},
|
||||
exitReturnPos: {
|
||||
x: 1,
|
||||
y: 1,
|
||||
},
|
||||
encounters: getEncounterData("mt-moon-b1f"),
|
||||
exitReturnMap: MapId.MtMoon1f,
|
||||
trainers: [],
|
||||
};
|
||||
|
||||
export default mtMoon3f;
|
||||
Loading…
Add table
Add a link
Reference in a new issue