mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-11-21 09:00:44 +00:00
✨ add pewter museum 2f map
This commit is contained in:
parent
084d9be2b5
commit
b78f6a2eab
1 changed files with 43 additions and 0 deletions
43
src/maps/pewter-museum-2f.ts
Normal file
43
src/maps/pewter-museum-2f.ts
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
import image from "../assets/map/pewter-museum-2f.png";
|
||||
import { MapId, MapType } from "./map-types";
|
||||
|
||||
const pewterMuseum2f: MapType = {
|
||||
name: "Pewter Museum 2F",
|
||||
image,
|
||||
height: 8,
|
||||
width: 14,
|
||||
start: {
|
||||
x: 7,
|
||||
y: 6,
|
||||
},
|
||||
walls: {
|
||||
0: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13],
|
||||
1: [10, 11, 12],
|
||||
2: [10, 11, 12],
|
||||
4: [1, 2, 3, 4],
|
||||
5: [1, 2, 3, 4, 8],
|
||||
6: [8],
|
||||
7: [8],
|
||||
},
|
||||
fences: {},
|
||||
grass: {},
|
||||
text: {
|
||||
2: {
|
||||
11: ["SPACE SHUTTLE COLUMBIA"],
|
||||
},
|
||||
5: {
|
||||
2: ["Meteorite that fell on Mt. Moon", "(MOON STONE?)"],
|
||||
},
|
||||
},
|
||||
maps: {},
|
||||
exits: {
|
||||
7: [7],
|
||||
},
|
||||
exitReturnPos: {
|
||||
x: 7,
|
||||
y: 6,
|
||||
},
|
||||
exitReturnMap: MapId.PewterCityMuseum1f,
|
||||
};
|
||||
|
||||
export default pewterMuseum2f;
|
||||
Loading…
Add table
Add a link
Reference in a new issue