mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-08-26 11:17:14 +00:00
🚀 implement full mt moon cave network
This commit is contained in:
parent
819870208a
commit
b628698b83
3 changed files with 137 additions and 8 deletions
|
@ -67,11 +67,7 @@ const mtMoon1f: MapType = {
|
||||||
15: ["Beware! ZUBAT is a blood sucker!"],
|
15: ["Beware! ZUBAT is a blood sucker!"],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
maps: {
|
maps: {},
|
||||||
15: {
|
|
||||||
25: MapId.MtMoon2f,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
exits: {
|
exits: {
|
||||||
35: [14, 15],
|
35: [14, 15],
|
||||||
},
|
},
|
||||||
|
@ -79,6 +75,35 @@ const mtMoon1f: MapType = {
|
||||||
x: 68,
|
x: 68,
|
||||||
y: 6,
|
y: 6,
|
||||||
},
|
},
|
||||||
|
teleports: {
|
||||||
|
11: {
|
||||||
|
17: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 24,
|
||||||
|
y: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
15: {
|
||||||
|
25: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 26,
|
||||||
|
y: 16,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
5: {
|
||||||
|
5: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 6,
|
||||||
|
y: 6,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
exitReturnMap: MapId.Route3,
|
exitReturnMap: MapId.Route3,
|
||||||
encounters: getEncounterData("mt-moon-1f"),
|
encounters: getEncounterData("mt-moon-1f"),
|
||||||
trainers: [
|
trainers: [
|
||||||
|
|
|
@ -88,6 +88,45 @@ const mtMoon2f: MapType = {
|
||||||
text: {},
|
text: {},
|
||||||
maps: {},
|
maps: {},
|
||||||
exits: {},
|
exits: {},
|
||||||
|
teleports: {
|
||||||
|
7: {
|
||||||
|
5: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 22,
|
||||||
|
y: 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
9: {
|
||||||
|
25: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 18,
|
||||||
|
y: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
17: {
|
||||||
|
21: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 20,
|
||||||
|
y: 17,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
27: {
|
||||||
|
15: {
|
||||||
|
map: MapId.MtMoon3f,
|
||||||
|
pos: {
|
||||||
|
x: 14,
|
||||||
|
y: 26,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
encounters: getEncounterData("mt-moon-b2f"),
|
encounters: getEncounterData("mt-moon-b2f"),
|
||||||
exitReturnPos: {
|
exitReturnPos: {
|
||||||
x: 1,
|
x: 1,
|
||||||
|
|
|
@ -8,8 +8,8 @@ import { MapId, MapType } from "./map-types";
|
||||||
const mtMoon3f: MapType = {
|
const mtMoon3f: MapType = {
|
||||||
name: "Mt Moon 3F",
|
name: "Mt Moon 3F",
|
||||||
image,
|
image,
|
||||||
music,
|
|
||||||
cave: true,
|
cave: true,
|
||||||
|
music,
|
||||||
height: 28,
|
height: 28,
|
||||||
width: 28,
|
width: 28,
|
||||||
start: {
|
start: {
|
||||||
|
@ -52,9 +52,74 @@ const mtMoon3f: MapType = {
|
||||||
text: {},
|
text: {},
|
||||||
maps: {},
|
maps: {},
|
||||||
exits: {},
|
exits: {},
|
||||||
|
teleports: {
|
||||||
|
3: {
|
||||||
|
23: {
|
||||||
|
map: MapId.MtMoon2f,
|
||||||
|
pos: {
|
||||||
|
x: 4,
|
||||||
|
y: 6,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
5: {
|
||||||
|
5: {
|
||||||
|
map: MapId.MtMoon1f,
|
||||||
|
pos: {
|
||||||
|
x: 7,
|
||||||
|
y: 5,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
9: {
|
||||||
|
25: {
|
||||||
|
map: MapId.MtMoon1f,
|
||||||
|
pos: {
|
||||||
|
x: 16,
|
||||||
|
y: 12,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
11: {
|
||||||
|
17: {
|
||||||
|
map: MapId.MtMoon2f,
|
||||||
|
pos: {
|
||||||
|
x: 26,
|
||||||
|
y: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
17: {
|
||||||
|
21: {
|
||||||
|
map: MapId.MtMoon2f,
|
||||||
|
pos: {
|
||||||
|
x: 22,
|
||||||
|
y: 16,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
15: {
|
||||||
|
25: {
|
||||||
|
map: MapId.MtMoon1f,
|
||||||
|
pos: {
|
||||||
|
x: 26,
|
||||||
|
y: 14,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
27: {
|
||||||
|
13: {
|
||||||
|
map: MapId.MtMoon2f,
|
||||||
|
pos: {
|
||||||
|
x: 16,
|
||||||
|
y: 26,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
exitReturnPos: {
|
exitReturnPos: {
|
||||||
x: 1,
|
x: 6,
|
||||||
y: 1,
|
y: 5,
|
||||||
},
|
},
|
||||||
encounters: getEncounterData("mt-moon-b1f"),
|
encounters: getEncounterData("mt-moon-b1f"),
|
||||||
exitReturnMap: MapId.MtMoon1f,
|
exitReturnMap: MapId.MtMoon1f,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue