ref: 2718c36065e7eb201a149938bcdd51987c4e56b6
parent: c85050497c1bd062e9cd40bf5b32fa3beca366cc
parent: 36f8cd1477b8ebe0537e99abd3ba53471a2e16c4
author: Rangi <35663410+Rangi42@users.noreply.github.com>
date: Sat Jul 4 12:19:15 EDT 2020
Merge pull request #257 from Rangi42/master More reorganization
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,60 +1,180 @@
-# Linux
+# Instructions
- sudo apt-get install make git gcc
+These instructions explain how to set up the tools required to build **pokered**, including [**rgbds**](https://github.com/rednex/rgbds), which assembles the source files into a ROM.
- sudo apt-get install byacc flex pkg-config libpng-dev
- git clone https://github.com/rednex/rgbds
- cd rgbds
- sudo make install
- cd ..
+If you run into trouble, ask for help on IRC or Discord (see [README.md](README.md)).
- git clone https://github.com/pret/pokered
- cd pokered
-To build **pokered.gbc** and **pokeblue.gbc**:
+## Windows 10
- make
+Download and install [**Windows Subsystem for Linux**](https://docs.microsoft.com/en-us/windows/wsl/install-win10). Then open the **WSL terminal**.
-To build them individually:
+WSL has its own file system that's not accessible from Windows, but Windows files *are* accessible from WSL. So you're going to want to install pokered within Windows. You'll have to change the **current working directory** every time you open WSL.
- make red
- make blue
+For example, if you want to store pokered in **C:\Users\\*\<user>*\Desktop**, enter this command:
+```bash
+cd /mnt/c/Users/<user>/Desktop
+```
-# Mac
+(The Windows `C:\` drive is called `/mnt/c/` in WSL. Replace *\<user>* in the example path with your username.)
-Get [**Homebrew**](http://brew.sh/).
+Then follow [the instructions for **Linux**](#linux).
-Then in **Terminal**, run:
+If this doesn't work, try following [the regular Windows instructions](#windows) below.
- xcode-select --install
- brew install rgbds
- git clone https://github.com/pret/pokered
- cd pokered
+## Windows
-To build **pokered.gbc** and **pokeblue.gbc**:
+Download [**Cygwin**](http://cygwin.com/install.html): **setup-x86_64.exe** for 64-bit Windows, **setup-x86.exe** for 32-bit.
- make
+Run setup and leave the default settings. At the "**Select Packages**" step, choose to install the following, all of which are in the "**Devel**" category:
+- `make`
+- `git`
+- `gcc-core`
-# Windows
+Double click on the text that says "**Skip**" next to each package to select the most recent version to install.
-Download [**Cygwin**](http://cygwin.com/install.html): **setup-x86_64.exe** for 64-bit Windows, **setup-x86.exe** for 32-bit.
+Then download [**rgbds**](https://github.com/rednex/rgbds/releases/): the latest **win64.zip** or **win32.zip** release. Extract it and put all the `exe` and `dll` files individually in **C:\cygwin64\usr\local\bin**.
-Run setup and leave the default settings. At "Select Packages", choose to install the following:
+**Note: If you already have an older rgbds, you will need to update to 0.4.0.** Ignore this if you have never installed rgbds before. If a version newer than 0.4.0 does not work, try downloading 0.4.0.
+Now open the **Cygwin terminal** and enter the following commands.
+
+Cygwin has its own file system that's within Windows, at **C:\cygwin64\home\\*\<user>***. If you don't want to store pokered there, you'll have to change the **current working directory** every time you open Cygwin.
+
+For example, if you want to store pokered in **C:\Users\\*\<user>*\Desktop**:
+
+```bash
+cd /cygdrive/c/Users/<user>/Desktop
+```
+
+(The Windows `C:\` drive is called `/cygdrive/c/` in Cygwin. Replace *\<user>* in the example path with your username.)
+
+Now you're ready to [build **pokered**](#build-pokered).
+
+
+## Mac OS X
+
+Install [**Homebrew**](https://brew.sh/). Follow the official instructions.
+
+Open **Terminal** and enter the following commands.
+
+To install **rgbds**:
+
+```bash
+brew install rgbds
+```
+
+Now you're ready to [build **pokered**](#build-pokered).
+
+
+## Linux
+
+Open **Terminal** and enter the following commands, depending on which distro you're using.
+
+### Debian or Ubuntu
+
+To install the software required for **pokered**:
+
+```bash
+sudo apt-get install make gcc git
+```
+
+To install **rgbds**:
+
+```bash
+sudo apt-get install pkg-config flex bison libpng-dev
+git clone -b v0.4.0 --depth=1 https://github.com/rednex/rgbds
+sudo make -C rgbds install
+```
+
+### OpenSUSE
+
+To install the software required for **pokered**:
+
+```bash
+sudo zypper install make gcc git
+```
+
+To install **rgbds**:
+
+```bash
+sudo zypper install pkg-config flex bison libpng16-devel
+git clone -b v0.4.0 --depth=1 https://github.com/rednex/rgbds
+sudo make -C rgbds install
+```
+
+### Arch Linux
+
+To install the software required for **pokered**:
+
+```bash
+sudo pacman -S make gcc git
+```
+
+**rgbds** is available on the [AUR](https://aur.archlinux.org/packages/rgbds/).
+
+Alternatively, to install **rgbds** manually:
+
+```bash
+sudo pacman -S pkg-config flex bison libpng
+git clone -b v0.4.0 --depth=1 https://github.com/rednex/rgbds
+sudo make -C rgbds install
+```
+
+### Termux
+
+To install the software required for **pokered**:
+
+```bash
+sudo apt install make clang git sed
+```
+
+To install **rgbds**:
+
+```bash
+sudo apt install rgbds
+```
+
+### Other distros
+
+If your distro is not listed here, try to find the required software in its repositories:
+
- `make`
+- `gcc` (or `clang`)
- `git`
-- `gcc-core`
+- `rgbds`
-Then download [**rgbds**](https://github.com/rednex/rgbds/releases/): the latest **win64.tar.gz** or **win32.tar.gz** release. Extract it and put all the `exe` and `dll` files individually in **C:\cygwin64\usr\local\bin**.
+If `rgbds` is not available, you'll also need these:
-In the **Cygwin terminal**, enter these commands:
+- `pkg-config`
+- `flex`
+- `bison`
+- `libpng` (and the development headers)
- git clone https://github.com/pret/pokered
- cd pokered
+To install **rgbds**:
+```bash
+git clone -b v0.4.0 --depth=1 https://github.com/rednex/rgbds
+sudo make -C rgbds install
+```
+
+Now you're ready to [build **pokered**](#build-pokered).
+
+
+## Build pokered
+
+To download the **pokered** source files:
+
+```bash
+git clone https://github.com/pret/pokered
+cd pokered
+```
+
To build **pokered.gbc** and **pokeblue.gbc**:
- make
+```bash
+make
+```
--- a/Makefile
+++ b/Makefile
@@ -5,11 +5,11 @@
home.o \
main.o \
maps.o \
-pics.o \
-sprites.o \
text.o \
-tilesets.o \
wram.o \
+gfx/pics.o \
+gfx/sprites.o \
+gfx/tilesets.o
pokered_obj := $(rom_obj:.o=_red.o)
pokeblue_obj := $(rom_obj:.o=_blue.o)
@@ -35,48 +35,66 @@
.PHONY: all red blue clean tidy compare tools
all: $(roms)
-red: pokered.gbc
+red: pokered.gbc
blue: pokeblue.gbc
-# For contributors to make sure a change didn't affect the contents of the rom.
-compare: $(roms)
- @$(MD5) roms.md5
-
clean:
- rm -f $(roms) $(pokered_obj) $(pokeblue_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
- find . \( -iname '*.1bpp' -o -iname '*.2bpp' -o -iname '*.pic' \) -exec rm {} +
+ rm -f $(roms) $(pokered_obj) $(pokeblue_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o
+ find gfx \( -iname '*.1bpp' -o -iname '*.2bpp' -o -iname '*.pic' \) -delete
$(MAKE) clean -C tools/
tidy:
- rm -f $(roms) $(pokered_obj) $(pokeblue_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
+ rm -f $(roms) $(pokered_obj) $(pokeblue_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o
$(MAKE) clean -C tools/
+# For contributors to make sure a change didn't affect the original contents of the ROMs.
+compare: $(roms)
+ @$(MD5) roms.md5
+
tools:
$(MAKE) -C tools/
+RGBASMFLAGS = -h -Weverything
+# Create a sym/map for debug purposes if `make` run with `DEBUG=1`
+ifeq ($(DEBUG),1)
+RGBASMFLAGS += -E
+endif
+
+$(pokered_obj): RGBASMFLAGS += -D _RED
+$(pokeblue_obj): RGBASMFLAGS += -D _BLUE
+
+rgbdscheck.o: rgbdscheck.asm
+ $(RGBASM) -o $@ $<
+
+# The dep rules have to be explicit or else missing files won't be reported.
+# As a side effect, they're evaluated immediately instead of when the rule is invoked.
+# It doesn't look like $(shell) can be deferred so there might not be a better way.
+define DEP
+$1: $2 $$(shell tools/scan_includes $2) | rgbdscheck.o
+ $$(RGBASM) $$(RGBASMFLAGS) -o $$@ $$<
+endef
+
# Build tools when building the rom.
# This has to happen before the rules are processed, since that's when scan_includes is run.
ifeq (,$(filter clean tools,$(MAKECMDGOALS)))
+
$(info $(shell $(MAKE) -C tools))
+
+# Dependencies for objects (drop _red and _blue from asm file basenames)
+$(foreach obj, $(pokered_obj), $(eval $(call DEP,$(obj),$(obj:_red.o=.asm))))
+$(foreach obj, $(pokeblue_obj), $(eval $(call DEP,$(obj),$(obj:_blue.o=.asm))))
+
endif
%.asm: ;
-%_red.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
-$(pokered_obj): %_red.o: %.asm $$(dep)
- $(RGBASM) -D _RED -h -o $@ $*.asm
-
-%_blue.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
-$(pokeblue_obj): %_blue.o: %.asm $$(dep)
- $(RGBASM) -D _BLUE -h -o $@ $*.asm
-
pokered_opt = -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED"
pokeblue_opt = -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE"
-%.gbc: $$(%_obj)
- $(RGBLINK) -d -m $*.map -n $*.sym -l layout.link -o $@ $^
+%.gbc: $$(%_obj) layout.link
+ $(RGBLINK) -d -m $*.map -n $*.sym -l layout.link -o $@ $(filter %.o,$^)
$(RGBFIX) $($*_opt) $@
--- a/audio/engine_1.asm
+++ b/audio/engine_1.asm
@@ -925,7 +925,7 @@
ld e, [hl]
inc hl
ld d, [hl]
- ld hl, $ff30 ; wave pattern RAM
+ ld hl, rWave_0
ld b, $f
ld a, $0 ; stop hardware channel 3
ld [rNR30], a
--- a/audio/engine_2.asm
+++ b/audio/engine_2.asm
@@ -936,7 +936,7 @@
ld e, [hl]
inc hl
ld d, [hl]
- ld hl, $ff30 ; wave pattern RAM
+ ld hl, rWave_0
ld b, $f
ld a, $0 ; stop hardware channel 3
ld [rNR30], a
--- a/audio/engine_3.asm
+++ b/audio/engine_3.asm
@@ -925,7 +925,7 @@
ld e, [hl]
inc hl
ld d, [hl]
- ld hl, $ff30 ; wave pattern RAM
+ ld hl, rWave_0
ld b, $f
ld a, $0 ; stop hardware channel 3
ld [rNR30], a
--- a/audio/music/yellow/meetjessiejames.asm
+++ /dev/null
@@ -1,308 +1,0 @@
-Music_MeetJessieJames_Ch1::
- tempo 144
- volume 7, 7
- duty_cycle 3
- vibrato 8, 1, 4
- note_type 12, 11, 2
- octave 3
- note G#, 1
- note G_, 1
- note F#, 2
- note F_, 2
- note E_, 2
- note D#, 2
- note D_, 2
- note C#, 2
- note C_, 2
- note_type 12, 11, 6
- note D#, 12
- note C_, 4
-
-Music_MeetJessieJames_branch_83187::
- note_type 12, 11, 2
- octave 4
- note D_, 16
- rest 12
- note_type 12, 11, 4
- octave 3
- note A#, 4
- rest 16
- rest 8
- note_type 12, 11, 2
- octave 2
- note A_, 2
- octave 3
- note A#, 2
- note A_, 4
- note D_, 1
- note D#, 1
- note D#, 2
- note D#, 2
- note D_, 2
- note D#, 2
- note D_, 2
- note D#, 2
- note F_, 2
- note D_, 1
- note D#, 1
- note D#, 2
- note D#, 2
- note D_, 2
- octave 2
- note A#, 4
- note_type 12, 11, 4
- octave 3
- note B_, 4
- note_type 12, 11, 2
- note D_, 1
- note D#, 1
- note D#, 2
- note D#, 2
- note D_, 2
- note D#, 2
- note D_, 2
- note D#, 2
- note F_, 2
- note D_, 1
- note D#, 1
- note D#, 2
- note D#, 2
- note D_, 2
- octave 2
- note A#, 2
- octave 3
- note B_, 2
- note_type 12, 11, 4
- note A#, 4
- sound_loop 0, Music_MeetJessieJames_branch_83187
-
-
-Music_MeetJessieJames_Ch2::
- duty_cycle 3
- vibrato 6, 1, 5
- note_type 12, 12, 2
- octave 4
- note D_, 1
- note C#, 1
- note C_, 2
- octave 3
- note B_, 2
- note A#, 2
- note A_, 2
- note G#, 2
- note G_, 2
- note F#, 2
- note_type 12, 12, 7
- note A_, 12
- octave 4
- note C#, 4
-
-Music_MeetJessieJames_branch_831df::
- note_type 12, 12, 2
- octave 3
- note C#, 1
- note D_, 1
- note D_, 2
- note D_, 2
- note C#, 2
- note D_, 2
- note C#, 2
- note D_, 2
- note E_, 2
- note C#, 1
- note D_, 1
- note D_, 2
- note D_, 2
- note C#, 2
- octave 2
- note A_, 4
- note_type 12, 12, 5
- octave 4
- note C#, 4
- note_type 12, 12, 2
- note D_, 1
- octave 3
- note D_, 1
- note D_, 2
- note D_, 2
- note C#, 2
- note D_, 2
- note C#, 2
- note D_, 2
- note E_, 2
- note C#, 1
- note D_, 1
- note D_, 2
- note D_, 2
- note C#, 2
- note_type 12, 12, 6
- octave 4
- note D_, 8
- note_type 12, 12, 2
- note D#, 6
- note F_, 4
- note D#, 4
- octave 3
- note A#, 2
- octave 4
- note D#, 6
- note F_, 4
- note D#, 2
- note_type 12, 12, 5
- note D_, 4
- note_type 12, 12, 2
- note D#, 6
- note F_, 4
- note D#, 4
- octave 3
- note A#, 2
- octave 4
- note D#, 4
- note F_, 4
- note_type 12, 12, 5
- note D#, 8
- sound_loop 0, Music_MeetJessieJames_branch_831df
-
-
-Music_MeetJessieJames_Ch3::
- note_type 12, 1, 0
- rest 16
- rest 8
- octave 4
- note D_, 2
- octave 3
- note A_, 2
- octave 4
- note C_, 2
- note D#, 2
-
-Music_MeetJessieJames_branch_83235::
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A#, 2
- note A_, 2
- note D#, 2
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- note A_, 1
- rest 1
- note D_, 1
- rest 1
- octave 3
- note A_, 2
- octave 4
- note C_, 2
- note D_, 2
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- octave 3
- note A#, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note E_, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- note A#, 1
- rest 1
- note D#, 1
- rest 1
- octave 3
- note A#, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note E_, 1
- rest 1
- sound_loop 0, Music_MeetJessieJames_branch_83235
--- a/audio/music/yellow/surfingpikachu.asm
+++ /dev/null
@@ -1,690 +1,0 @@
-Music_SurfingPikachu_Ch1::
- tempo 117
- volume 7, 7
- duty_cycle 3
- vibrato 8, 1, 4
- note_type 12, 11, 3
- octave 3
- note E_, 6
- note_type 12, 11, 2
- note F#, 2
- note_type 12, 11, 3
- note E_, 6
- note_type 12, 11, 2
- note F#, 16
- rest 2
- note_type 12, 11, 3
- note E_, 6
- note_type 12, 11, 2
- note A_, 2
- note_type 12, 11, 3
- note E_, 6
- note_type 12, 11, 2
- note A_, 14
- note_type 12, 11, 2
- note D#, 2
- note C#, 1
- note D#, 1
- octave 2
- note B_, 6
- octave 3
- note E_, 4
- note E_, 4
- note E_, 8
- note G#, 4
- note G#, 4
- note G#, 2
-
-Music_SurfingPikachu_branch_82d1a::
- note_type 12, 11, 3
- octave 3
- note G#, 4
- note E_, 4
- note F#, 4
- note E_, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note G#, 2
- note F#, 2
- note E_, 2
- note D#, 2
- note E_, 2
- note D#, 2
- note C#, 6
- note F#, 2
- note A_, 8
- octave 2
- note B_, 6
- octave 3
- note E_, 2
- note G#, 8
- note G#, 4
- note E_, 4
- note F#, 4
- note E_, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note G#, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note E_, 2
- note G#, 2
- note F#, 6
- note E_, 2
- note F#, 1
- rest 3
- note A_, 4
- duty_cycle 0
- note_type 12, 11, 2
- note G#, 1
- note F#, 1
- note G#, 2
- note B_, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note E_, 2
- note D#, 2
- note F#, 2
- note F#, 2
- note D#, 2
- note F#, 2
- note B_, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note B_, 1
- note A#, 1
- note B_, 2
- note G#, 2
- note E_, 2
- note G#, 2
- note G_, 2
- note G#, 2
- note A_, 2
- octave 4
- note C#, 2
- note C_, 2
- note C#, 3
- octave 3
- note F#, 1
- note A_, 2
- note G#, 2
- note F#, 2
- note A_, 2
- note E_, 3
- note E_, 1
- note B_, 2
- note A_, 2
- note G#, 6
- note E_, 1
- note F_, 1
- note F#, 2
- note F#, 2
- note D#, 2
- note F#, 2
- note B_, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note B_, 1
- note A#, 1
- note B_, 2
- note G#, 2
- note E_, 2
- note G#, 2
- note G_, 2
- note G#, 2
- note A_, 2
- octave 4
- note C#, 2
- note C_, 2
- note C#, 3
- octave 3
- note F#, 1
- note A_, 2
- note G#, 2
- note A_, 2
- octave 4
- note D#, 2
- note E_, 2
- note E_, 1
- note D#, 1
- note E_, 1
- note D#, 1
- note E_, 1
- note D#, 1
- note E_, 8
- duty_cycle 3
- sound_loop 0, Music_SurfingPikachu_branch_82d1a
-
-
-Music_SurfingPikachu_Ch2::
- duty_cycle 3
- vibrato 6, 1, 5
- note_type 12, 12, 4
- octave 3
- note B_, 6
- note_type 12, 12, 2
- octave 4
- note E_, 2
- note_type 12, 12, 4
- octave 3
- note B_, 6
- note_type 12, 12, 2
- octave 4
- note E_, 2
- note_type 12, 11, 2
- octave 3
- note B_, 2
- octave 4
- note C#, 2
- note D#, 2
- note C#, 2
- octave 3
- note B_, 2
- note A_, 2
- note G#, 2
- note F#, 2
- note_type 12, 12, 4
- octave 4
- note C#, 6
- note_type 12, 12, 2
- note F#, 2
- note_type 12, 12, 4
- note C#, 6
- note_type 12, 12, 2
- note F#, 2
- note_type 12, 11, 2
- note C#, 2
- note D#, 2
- note E_, 2
- note D#, 2
- note C#, 2
- octave 3
- note B_, 2
- note A_, 2
- note G#, 2
- note_type 12, 12, 2
- note E_, 6
- note B_, 4
- note B_, 4
- note B_, 8
- note B_, 4
- note B_, 4
- note B_, 2
-
-Music_SurfingPikachu_branch_82de0::
- note_type 12, 12, 6
- octave 4
- note E_, 4
- octave 3
- note B_, 4
- note A_, 4
- octave 4
- note C#, 4
- octave 3
- note B_, 6
- note A_, 2
- note G#, 8
- note F#, 6
- note A_, 2
- octave 4
- note C#, 8
- octave 3
- note E_, 6
- note G#, 2
- note B_, 8
- octave 4
- note E_, 4
- octave 3
- note B_, 4
- note A_, 4
- octave 4
- note C#, 4
- octave 3
- note B_, 6
- octave 4
- note D#, 2
- note E_, 8
- note D#, 6
- note C#, 2
- note D#, 1
- rest 3
- note F#, 4
- note E_, 10
- note_type 12, 12, 6
- duty_cycle 2
- note E_, 2
- note D#, 2
- note C#, 2
- octave 3
- note B_, 6
- octave 4
- note C#, 2
- note D#, 4
- octave 3
- note B_, 4
- octave 4
- note E_, 6
- note F#, 2
- note G#, 8
- note A_, 6
- note G#, 2
- note A_, 4
- note F#, 4
- note G#, 10
- note E_, 2
- note D#, 2
- note C#, 2
- octave 3
- note B_, 6
- octave 4
- note C#, 2
- note D#, 4
- octave 3
- note B_, 4
- octave 4
- note E_, 6
- note F#, 2
- note G#, 8
- note A_, 4
- note F#, 4
- note D#, 4
- octave 5
- note C#, 4
- octave 4
- note B_, 8
- note_type 12, 12, 2
- octave 5
- note E_, 4
- note_type 12, 12, 6
- duty_cycle 3
- octave 3
- note B_, 1
- note A#, 1
- note B_, 1
- octave 4
- note C#, 1
- sound_loop 0, Music_SurfingPikachu_branch_82de0
-
-
-Music_SurfingPikachu_Ch3::
- note_type 12, 1, 0
- octave 4
- note B_, 6
- octave 5
- note C#, 1
- rest 1
- octave 4
- note B_, 6
- octave 5
- note C#, 1
- rest 1
- octave 4
- note B_, 1
- rest 1
- note A_, 1
- rest 1
- note G#, 1
- rest 1
- note A_, 1
- rest 1
- note B_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- note D#, 1
- rest 1
- note C#, 1
- rest 1
- octave 4
- note A_, 6
- octave 5
- note C#, 1
- rest 1
- octave 4
- note A_, 6
- octave 5
- note C#, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- note G#, 1
- rest 1
- note F#, 1
- rest 1
- note E_, 1
- rest 1
- note F#, 1
- rest 1
- note G#, 1
- rest 1
- note A_, 1
- rest 1
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note D#, 1
- rest 1
-
-Music_SurfingPikachu_branch_82ea0::
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- note C_, 1
- note C#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- octave 5
- note E_, 1
- note D#, 1
- note E_, 1
- rest 1
- octave 4
- note D#, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note B_, 1
- rest 1
- note A_, 1
- rest 1
- note G#, 1
- rest 1
- note F#, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note D_, 1
- rest 1
- note D#, 1
- rest 1
- note F#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- note D#, 1
- rest 1
- note F#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note C#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note C#, 1
- rest 1
- note A_, 1
- rest 1
- note B_, 1
- note A#, 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note F#, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note D_, 1
- rest 1
- note D#, 1
- rest 1
- note F#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- note D#, 1
- rest 1
- note F#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note C#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- note D#, 1
- rest 1
- note B_, 1
- rest 1
- note B_, 1
- rest 1
- note A_, 1
- rest 1
- note A_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note D#, 1
- rest 1
- sound_loop 0, Music_SurfingPikachu_branch_82ea0
--- a/audio/music/yellow/yellowintro.asm
+++ /dev/null
@@ -1,484 +1,0 @@
-Music_YellowIntro_Ch1::
- tempo 116
- volume 7, 7
- duty_cycle 3
- vibrato 8, 1, 4
- note_type 12, 11, 2
- octave 3
- note G#, 2
- note B_, 4
- note B_, 4
- note B_, 4
- note B_, 4
- note B_, 4
- note B_, 3
- note A#, 1
- note B_, 2
- note B_, 10
- note_type 12, 11, 6
- octave 4
- note C#, 1
- note C_, 1
- note C#, 10
- octave 3
- note G#, 1
- note G_, 1
- note G#, 4
- note B_, 4
- octave 4
- note E_, 4
- note F#, 8
- note E_, 8
- octave 3
- note A_, 4
- note B_, 4
- octave 4
- note C#, 4
- octave 3
- note B_, 4
- note G#, 6
- note_type 12, 11, 2
- note B_, 2
- note_type 12, 11, 6
- note G#, 6
- note_type 12, 11, 2
- note B_, 2
- note_type 12, 11, 6
- octave 4
- note E_, 6
- note_type 12, 11, 2
- note G#, 2
- note_type 12, 11, 6
- note E_, 6
- note_type 12, 11, 2
- note G#, 2
- note_type 12, 11, 6
- octave 3
- note A_, 4
- note F#, 4
- note A_, 4
- note B_, 4
- note F#, 4
- note G#, 4
- note A_, 2
- note G#, 2
- note F#, 2
- note D#, 2
- note_type 12, 11, 3
- note B_, 2
- octave 4
- note E_, 4
- note E_, 4
- note E_, 4
- note E_, 2
- note C#, 2
- note F#, 4
- note F#, 3
- note D#, 1
- note F#, 2
- note F#, 8
- note_type 12, 11, 6
- note F#, 1
- note F_, 1
- note F#, 8
- octave 3
- note B_, 1
- note A#, 1
- note B_, 8
- octave 4
- note F#, 1
- note F_, 1
- note F#, 2
- note_type 12, 11, 3
- note F#, 1
- note E_, 1
- note D#, 1
- note C#, 1
- note_type 12, 11, 2
- octave 3
- note B_, 16
- sound_ret
-
-
-Music_YellowIntro_Ch2::
- duty_cycle 2
- vibrato 6, 1, 5
- note_type 12, 12, 2
- octave 3
- note B_, 2
- octave 4
- note E_, 4
- note E_, 4
- note E_, 4
- note E_, 4
- note E_, 4
- note E_, 3
- note D#, 1
- note E_, 2
- note E_, 4
- note_type 12, 12, 5
- note G#, 1
- note G_, 1
- note G#, 10
- octave 3
- note B_, 1
- note A#, 1
- note B_, 6
- note_type 12, 12, 7
- octave 4
- note E_, 4
- note G#, 4
- note B_, 4
- octave 5
- note C#, 16
- octave 4
- note A_, 4
- note G#, 4
- note F#, 4
- note E_, 4
- octave 3
- note B_, 6
- note_type 12, 12, 2
- octave 4
- note E_, 2
- note_type 12, 12, 7
- octave 3
- note B_, 6
- note_type 12, 12, 2
- octave 4
- note E_, 2
- note_type 12, 12, 7
- note G#, 6
- note_type 12, 12, 2
- note B_, 2
- note_type 12, 12, 7
- note G#, 6
- note_type 12, 12, 2
- note B_, 2
- note_type 12, 12, 7
- note C#, 4
- octave 3
- note A_, 4
- octave 4
- note C#, 4
- note D#, 4
- note E_, 2
- note D#, 2
- note C#, 2
- note D#, 4
- note D#, 2
- note C#, 2
- octave 3
- note B_, 2
- note_type 12, 12, 3
- octave 4
- note E_, 2
- note G#, 4
- note G#, 4
- note G#, 4
- note G#, 2
- note F#, 2
- note A_, 4
- note A_, 3
- note F#, 1
- note A_, 2
- note A_, 4
- note_type 12, 12, 7
- note B_, 1
- note A#, 1
- note B_, 8
- note B_, 1
- note A#, 1
- note B_, 8
- note B_, 1
- note A#, 1
- note B_, 6
- note_type 12, 12, 3
- note B_, 1
- note A_, 1
- note G#, 1
- note F#, 1
- note_type 12, 12, 2
- note E_, 16
- sound_ret
-
-
-Music_YellowIntro_Ch3::
- note_type 12, 1, 0
- octave 4
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- octave 3
- note B_, 1
- rest 1
- octave 4
- note C#, 1
- rest 1
- note D#, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note C#, 1
- rest 1
- note A_, 1
- rest 1
- note F#, 1
- rest 1
- note A_, 1
- rest 1
- note C#, 1
- rest 1
- note A_, 1
- rest 1
- note A_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note B_, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note B_, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note E_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note A_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- octave 5
- note C#, 1
- rest 1
- octave 4
- note B_, 1
- rest 1
- note A_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note G#, 1
- rest 1
- note B_, 1
- rest 1
- note E_, 1
- rest 1
- note B_, 1
- rest 1
- note A_, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note E_, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note E_, 1
- rest 1
- octave 5
- note E_, 1
- rest 1
- octave 4
- note A_, 1
- rest 1
- octave 5
- note F#, 1
- rest 1
- octave 4
- note F#, 1
- rest 1
- octave 5
- note C#, 1
- rest 3
- note F#, 1
- rest 1
- octave 4
- note F#, 1
- note G#, 1
- note A_, 1
- octave 5
- note C#, 1
- note E_, 1
- rest 15
- sound_ret
--- a/audio/music/yellow/yellowunusedsong.asm
+++ /dev/null
@@ -1,326 +1,0 @@
-Music_YellowUnusedSong_Ch1::
- tempo 140
- volume 7, 7
- duty_cycle 3
- vibrato 8, 1, 4
- note_type 8, 11, 2
- octave 3
- note A_, 6
- note A_, 2
- note A_, 2
- note A_, 2
- note A#, 6
- note A#, 6
- note G_, 6
- note G_, 6
- note A_, 6
- note E_, 6
- note A_, 6
- note A_, 2
- note A_, 2
- note A_, 2
- note A#, 6
- note A#, 6
- note A_, 6
- note G_, 6
- note A_, 12
-
-Music_YellowUnusedSong_branch_82fde::
- note A_, 6
- note A_, 2
- note A_, 2
- note A_, 2
- note A#, 6
- note A#, 6
- note G_, 6
- note G_, 6
- note A_, 6
- note E_, 6
- note A_, 6
- note A_, 2
- note A_, 2
- note A_, 2
- note A#, 6
- note A#, 6
- note G_, 6
- octave 4
- note D#, 6
- note D_, 12
- rest 16
- rest 16
- rest 16
- rest 16
- rest 16
- rest 16
- octave 3
- note A_, 6
- note A_, 2
- note A_, 2
- note A_, 2
- note A#, 6
- note A#, 6
- note G_, 6
- note G_, 6
- note A_, 6
- note E_, 6
- note A_, 6
- note A_, 2
- note A_, 2
- note A_, 2
- note A#, 6
- note A#, 6
- note A_, 6
- note G_, 6
- note A_, 12
- sound_loop 0, Music_YellowUnusedSong_branch_82fde
-
-
-Music_YellowUnusedSong_Ch2::
- duty_cycle 2
- note_type 8, 12, 2
- octave 4
- note D_, 6
- note D_, 2
- note D_, 2
- note D_, 2
- note D#, 6
- note D#, 6
- note C_, 6
- note C_, 6
- note D_, 6
- octave 3
- note A_, 6
- octave 4
- note D_, 6
- note D_, 2
- note D_, 2
- note D_, 2
- note D#, 6
- note D#, 6
- note D_, 6
- note A#, 6
- note A_, 12
-
-Music_YellowUnusedSong_branch_8302a::
- note D_, 6
- note D_, 2
- note D_, 2
- note D_, 2
- note D#, 6
- note D#, 6
- note C_, 6
- note C_, 6
- note D_, 6
- octave 3
- note A_, 6
- octave 4
- note D_, 6
- note D_, 2
- note D_, 2
- note D_, 2
- note D#, 6
- note D#, 6
- note C_, 6
- note G#, 6
- note G_, 12
- note_type 8, 9, 0
- octave 3
- note D#, 16
- note D#, 8
- note D#, 16
- note D#, 8
- octave 2
- note A#, 16
- note A#, 8
- octave 3
- note D#, 12
- note F_, 12
- note_type 8, 12, 2
- octave 4
- note D_, 6
- note D_, 2
- note D_, 2
- note D_, 2
- note D#, 6
- note D#, 6
- note C_, 6
- note C_, 6
- note D_, 6
- octave 3
- note A_, 6
- octave 4
- note D_, 6
- note D_, 2
- note D_, 2
- note D_, 2
- note D#, 6
- note D#, 6
- note D_, 6
- note A#, 6
- note A_, 12
- sound_loop 0, Music_YellowUnusedSong_branch_8302a
-
-
-Music_YellowUnusedSong_Ch3::
- note_type 12, 1, 0
- vibrato 2, 1, 5
- rest 16
- rest 12
- octave 4
- note C_, 4
- note D_, 8
- note D#, 8
- note G_, 8
- note A#, 8
-
-Music_YellowUnusedSong_branch_83075::
- note A_, 8
- note A#, 8
- note G_, 8
- note A_, 4
- note D_, 4
- note A_, 8
- note A#, 8
- octave 5
- note C#, 8
- note D_, 8
- note D#, 16
- note D#, 16
- octave 4
- note A#, 16
- octave 5
- note D#, 8
- note F_, 8
- octave 4
- note D_, 16
- note D_, 16
- octave 4
- note D_, 8
- note D#, 8
- note G_, 8
- note A#, 8
- sound_loop 0, Music_YellowUnusedSong_branch_83075
-
-
-Music_YellowUnusedSong_Ch4::
- drum_speed 12
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 4
- drum_note 3, 4
-
-Music_YellowUnusedSong_branch_830c3::
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 4
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 4
- drum_speed 8
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_speed 12
- drum_note 3, 4
- drum_note 3, 4
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 2
- drum_note 3, 4
- drum_note 3, 4
- sound_loop 0, Music_YellowUnusedSong_branch_830c3
--- a/audio/play_battle_music.asm
+++ b/audio/play_battle_music.asm
@@ -2,9 +2,9 @@
xor a
ld [wAudioFadeOutControl], a
ld [wLowHealthAlarm], a
- dec a
+ dec a ; SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
- call PlaySound ; stop music
+ call PlaySound
call DelayFrame
ld c, BANK(Music_GymLeaderBattle)
ld a, [wGymLeaderNo]
--- a/audio/pokedex_rating_sfx.asm
+++ b/audio/pokedex_rating_sfx.asm
@@ -1,5 +1,5 @@
PlayPokedexRatingSfx::
- ld a, [$ffdc]
+ ld a, [hDexRatingNumMonsOwned]
ld c, $0
ld hl, OwnedMonValues
.getSfxPointer
@@ -10,7 +10,7 @@
jr .getSfxPointer
.gotSfxPointer
push bc
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySoundWaitForCurrent
pop bc
--- a/audio/wave_instruments.asm
+++ b/audio/wave_instruments.asm
@@ -13,7 +13,7 @@
; these are the definitions for the channel 3 instruments
; each instrument definition is made up of 32 points (nibbles) that form
; the graph of the wave
-; the current instrument is copied to $FF30
+; the current instrument is copied to rWave_0--rWave_f
.wave0
db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11
--- a/constants.asm
+++ b/constants.asm
@@ -1,6 +1,7 @@
-INCLUDE "macros.asm"
INCLUDE "charmap.asm"
+INCLUDE "macros.asm"
+
INCLUDE "hram.asm"
INCLUDE "vram.asm"
@@ -7,9 +8,13 @@
INCLUDE "constants/hardware_constants.asm"
INCLUDE "constants/oam_constants.asm"
INCLUDE "constants/misc_constants.asm"
-
+INCLUDE "constants/gfx_constants.asm"
+INCLUDE "constants/input_constants.asm"
+INCLUDE "constants/serial_constants.asm"
+INCLUDE "constants/script_constants.asm"
INCLUDE "constants/pokemon_constants.asm"
INCLUDE "constants/pokedex_constants.asm"
+INCLUDE "constants/pokemon_data_constants.asm"
INCLUDE "constants/trainer_constants.asm"
INCLUDE "constants/item_constants.asm"
INCLUDE "constants/type_constants.asm"
@@ -16,17 +21,21 @@
INCLUDE "constants/move_constants.asm"
INCLUDE "constants/move_animation_constants.asm"
INCLUDE "constants/move_effect_constants.asm"
-INCLUDE "constants/status_constants.asm"
+INCLUDE "constants/battle_constants.asm"
+INCLUDE "constants/icon_constants.asm"
INCLUDE "constants/sprite_constants.asm"
+INCLUDE "constants/sprite_data_constants.asm"
INCLUDE "constants/palette_constants.asm"
-INCLUDE "constants/evolution_constants.asm"
INCLUDE "constants/list_constants.asm"
INCLUDE "constants/map_constants.asm"
-INCLUDE "constants/connection_constants.asm"
+INCLUDE "constants/map_data_constants.asm"
+INCLUDE "constants/map_object_constants.asm"
INCLUDE "constants/hide_show_constants.asm"
INCLUDE "constants/credits_constants.asm"
+INCLUDE "constants/audio_constants.asm"
INCLUDE "constants/music_constants.asm"
-INCLUDE "constants/tilesets.asm"
+INCLUDE "constants/tileset_constants.asm"
INCLUDE "constants/starter_mons.asm"
INCLUDE "constants/event_constants.asm"
INCLUDE "constants/text_constants.asm"
+INCLUDE "constants/menu_constants.asm"
--- /dev/null
+++ b/constants/audio_constants.asm
@@ -1,0 +1,59 @@
+; pitch
+ const_def
+ const C_ ; 0
+ const C# ; 1
+ const D_ ; 2
+ const D# ; 3
+ const E_ ; 4
+ const F_ ; 5
+ const F# ; 6
+ const G_ ; 7
+ const G# ; 8
+ const A_ ; 9
+ const A# ; A
+ const B_ ; B
+
+; channel
+ const_def
+ const Ch1 ; 0
+ const Ch2 ; 1
+ const Ch3 ; 2
+ const Ch4 ; 3
+ const Ch5 ; 4
+ const Ch6 ; 5
+ const Ch7 ; 6
+ const Ch8 ; 7
+
+; HW sound channel register base addresses
+HW_CH1_BASE EQU (rNR10 % $100)
+HW_CH2_BASE EQU ((rNR21 % $100) - 1)
+HW_CH3_BASE EQU (rNR30 % $100)
+HW_CH4_BASE EQU ((rNR41 % $100) - 1)
+
+; HW sound channel enable bit masks
+HW_CH1_ENABLE_MASK EQU %00010001
+HW_CH2_ENABLE_MASK EQU %00100010
+HW_CH3_ENABLE_MASK EQU %01000100
+HW_CH4_ENABLE_MASK EQU %10001000
+
+; HW sound channel disable bit masks
+HW_CH1_DISABLE_MASK EQU (~HW_CH1_ENABLE_MASK & $ff)
+HW_CH2_DISABLE_MASK EQU (~HW_CH2_ENABLE_MASK & $ff)
+HW_CH3_DISABLE_MASK EQU (~HW_CH3_ENABLE_MASK & $ff)
+HW_CH4_DISABLE_MASK EQU (~HW_CH4_ENABLE_MASK & $ff)
+
+REG_DUTY_SOUND_LEN EQU 1
+REG_VOLUME_ENVELOPE EQU 2
+REG_FREQUENCY_LO EQU 3
+
+; wChannelFlags1 constants
+BIT_PERFECT_PITCH EQU 0 ; controlled by toggle_perfect_pitch command
+BIT_SOUND_CALL EQU 1 ; if in sound call
+BIT_NOISE_OR_SFX EQU 2 ; if channel is the music noise channel or an SFX channel
+BIT_VIBRATO_DIRECTION EQU 3 ; if the pitch is above or below normal (cycles)
+BIT_PITCH_SLIDE_ON EQU 4 ; if pitch slide is active
+BIT_PITCH_SLIDE_DECREASING EQU 5 ; if the pitch slide frequency is decreasing (instead of increasing)
+BIT_ROTATE_DUTY_CYCLE EQU 6 ; if rotating duty cycle
+
+; wChannelFlags2 constant (only has one flag)
+BIT_EXECUTE_MUSIC EQU 0 ; if in execute music
--- /dev/null
+++ b/constants/battle_constants.asm
@@ -1,0 +1,51 @@
+MAX_LEVEL EQU 100
+
+NUM_MOVES EQU 4
+NUM_STATS EQU 5
+NUM_STAT_MODS EQU 8
+NUM_DVS EQU 2
+
+; D733 flags
+BIT_TEST_BATTLE EQU 0
+
+; battle type constants
+BATTLE_TYPE_NORMAL EQU 0
+BATTLE_TYPE_OLD_MAN EQU 1
+BATTLE_TYPE_SAFARI EQU 2
+
+; fixed damage constants
+SONICBOOM_DAMAGE EQU 20
+DRAGON_RAGE_DAMAGE EQU 40
+
+; non-volatile statuses
+SLP EQU %111 ; sleep counter
+PSN EQU 3
+BRN EQU 4
+FRZ EQU 5
+PAR EQU 6
+
+; volatile statuses 1
+STORING_ENERGY EQU 0 ; Bide
+THRASHING_ABOUT EQU 1 ; e.g. Thrash
+ATTACKING_MULTIPLE_TIMES EQU 2 ; e.g. Double Kick, Fury Attack
+FLINCHED EQU 3
+CHARGING_UP EQU 4 ; e.g. Solar Beam, Fly
+USING_TRAPPING_MOVE EQU 5 ; e.g. Wrap
+INVULNERABLE EQU 6 ; charging up Fly/Dig
+CONFUSED EQU 7
+
+; volatile statuses 2
+USING_X_ACCURACY EQU 0
+PROTECTED_BY_MIST EQU 1
+GETTING_PUMPED EQU 2 ; Focus Energy
+; EQU 3 ; unused
+HAS_SUBSTITUTE_UP EQU 4
+NEEDS_TO_RECHARGE EQU 5 ; Hyper Beam
+USING_RAGE EQU 6
+SEEDED EQU 7
+
+; volatile statuses 3
+BADLY_POISONED EQU 0
+HAS_LIGHT_SCREEN_UP EQU 1
+HAS_REFLECT_UP EQU 2
+TRANSFORMED EQU 3
--- a/constants/connection_constants.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-; width of east/west connections
-; height of north/south connections
-MAP_BORDER EQU 3
-
-; connection directions
-EAST EQU 1
-WEST EQU 2
-SOUTH EQU 4
-NORTH EQU 8
--- a/constants/credits_constants.asm
+++ b/constants/credits_constants.asm
@@ -1,5 +1,4 @@
-const_value = 0
-
+ const_def
const CRED_VERSION ; $00
const CRED_TAJIRI ; $01
const CRED_TA_OOTA ; $02
@@ -64,4 +63,3 @@
const CRED_FUKUI ; $3D
const CRED_CLUB ; $3E
const CRED_PAAD ; $3F
-
--- a/constants/event_constants.asm
+++ b/constants/event_constants.asm
@@ -1,2562 +1,2561 @@
-const_value = 0
-
- const EVENT_FOLLOWED_OAK_INTO_LAB ; 000, (D747, bit 0)
- const EVENT_001 ; 001, (D747, bit 1)
- const EVENT_002 ; 002, (D747, bit 2)
- const EVENT_HALL_OF_FAME_DEX_RATING ; 003, (D747, bit 3)
- const EVENT_004 ; 004, (D747, bit 4)
- const EVENT_005 ; 005, (D747, bit 5)
- const EVENT_PALLET_AFTER_GETTING_POKEBALLS ; 006, (D747, bit 6)
- const EVENT_007 ; 007, (D747, bit 7)
- const EVENT_008 ; 008, (D748, bit 0)
- const EVENT_009 ; 009, (D748, bit 1)
- const EVENT_00A ; 00A, (D748, bit 2)
- const EVENT_00B ; 00B, (D748, bit 3)
- const EVENT_00C ; 00C, (D748, bit 4)
- const EVENT_00D ; 00D, (D748, bit 5)
- const EVENT_00E ; 00E, (D748, bit 6)
- const EVENT_00F ; 00F, (D748, bit 7)
- const EVENT_010 ; 010, (D749, bit 0)
- const EVENT_011 ; 011, (D749, bit 1)
- const EVENT_012 ; 012, (D749, bit 2)
- const EVENT_013 ; 013, (D749, bit 3)
- const EVENT_014 ; 014, (D749, bit 4)
- const EVENT_015 ; 015, (D749, bit 5)
- const EVENT_016 ; 016, (D749, bit 6)
- const EVENT_017 ; 017, (D749, bit 7)
- const EVENT_GOT_TOWN_MAP ; 018, (D74A, bit 0)
- const EVENT_ENTERED_BLUES_HOUSE ; 019, (D74A, bit 1)
- const EVENT_DAISY_WALKING ; 01A, (D74A, bit 2)
- const EVENT_01B ; 01B, (D74A, bit 3)
- const EVENT_01C ; 01C, (D74A, bit 4)
- const EVENT_01D ; 01D, (D74A, bit 5)
- const EVENT_01E ; 01E, (D74A, bit 6)
- const EVENT_01F ; 01F, (D74A, bit 7)
- const EVENT_FOLLOWED_OAK_INTO_LAB_2 ; 020, (D74B, bit 0)
- const EVENT_OAK_ASKED_TO_CHOOSE_MON ; 021, (D74B, bit 1)
- const EVENT_GOT_STARTER ; 022, (D74B, bit 2)
- const EVENT_BATTLED_RIVAL_IN_OAKS_LAB ; 023, (D74B, bit 3)
- const EVENT_GOT_POKEBALLS_FROM_OAK ; 024, (D74B, bit 4)
- const EVENT_GOT_POKEDEX ; 025, (D74B, bit 5)
- const EVENT_PALLET_AFTER_GETTING_POKEBALLS_2 ; 026, (D74B, bit 6)
- const EVENT_OAK_APPEARED_IN_PALLET ; 027, (D74B, bit 7)
- const EVENT_VIRIDIAN_GYM_OPEN ; 028, (D74C, bit 0)
- const EVENT_GOT_TM42 ; 029, (D74C, bit 1)
- const EVENT_02A ; 02A, (D74C, bit 2)
- const EVENT_02B ; 02B, (D74C, bit 3)
- const EVENT_02C ; 02C, (D74C, bit 4)
- const EVENT_02D ; 02D, (D74C, bit 5)
- const EVENT_02E ; 02E, (D74C, bit 6)
- const EVENT_02F ; 02F, (D74C, bit 7)
- const EVENT_030 ; 030, (D74D, bit 0)
- const EVENT_031 ; 031, (D74D, bit 1)
- const EVENT_032 ; 032, (D74D, bit 2)
- const EVENT_033 ; 033, (D74D, bit 3)
- const EVENT_034 ; 034, (D74D, bit 4)
- const EVENT_035 ; 035, (D74D, bit 5)
- const EVENT_036 ; 036, (D74D, bit 6)
- const EVENT_037 ; 037, (D74D, bit 7)
- const EVENT_OAK_GOT_PARCEL ; 038, (D74E, bit 0)
- const EVENT_GOT_OAKS_PARCEL ; 039, (D74E, bit 1)
- const EVENT_03A ; 03A, (D74E, bit 2)
- const EVENT_03B ; 03B, (D74E, bit 3)
- const EVENT_03C ; 03C, (D74E, bit 4)
- const EVENT_03D ; 03D, (D74E, bit 5)
- const EVENT_03E ; 03E, (D74E, bit 6)
- const EVENT_03F ; 03F, (D74E, bit 7)
- const EVENT_040 ; 040, (D74F, bit 0)
- const EVENT_041 ; 041, (D74F, bit 1)
- const EVENT_042 ; 042, (D74F, bit 2)
- const EVENT_043 ; 043, (D74F, bit 3)
- const EVENT_044 ; 044, (D74F, bit 4)
- const EVENT_045 ; 045, (D74F, bit 5)
- const EVENT_046 ; 046, (D74F, bit 6)
- const EVENT_047 ; 047, (D74F, bit 7)
- const EVENT_048 ; 048, (D750, bit 0)
- const EVENT_049 ; 049, (D750, bit 1)
- const EVENT_04A ; 04A, (D750, bit 2)
- const EVENT_04B ; 04B, (D750, bit 3)
- const EVENT_04C ; 04C, (D750, bit 4)
- const EVENT_04D ; 04D, (D750, bit 5)
- const EVENT_04E ; 04E, (D750, bit 6)
- const EVENT_04F ; 04F, (D750, bit 7)
- const EVENT_GOT_TM27 ; 050, (D751, bit 0)
- const EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI ; 051, (D751, bit 1)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_0 ; 052, (D751, bit 2)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_1 ; 053, (D751, bit 3)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_2 ; 054, (D751, bit 4)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_3 ; 055, (D751, bit 5)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_4 ; 056, (D751, bit 6)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_5 ; 057, (D751, bit 7)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_6 ; 058, (D752, bit 0)
- const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_7 ; 059, (D752, bit 1)
- const EVENT_05A ; 05A, (D752, bit 2)
- const EVENT_05B ; 05B, (D752, bit 3)
- const EVENT_05C ; 05C, (D752, bit 4)
- const EVENT_05D ; 05D, (D752, bit 5)
- const EVENT_05E ; 05E, (D752, bit 6)
- const EVENT_05F ; 05F, (D752, bit 7)
- const EVENT_060 ; 060, (D753, bit 0)
- const EVENT_061 ; 061, (D753, bit 1)
- const EVENT_062 ; 062, (D753, bit 2)
- const EVENT_063 ; 063, (D753, bit 3)
- const EVENT_064 ; 064, (D753, bit 4)
- const EVENT_065 ; 065, (D753, bit 5)
- const EVENT_066 ; 066, (D753, bit 6)
- const EVENT_067 ; 067, (D753, bit 7)
- const EVENT_BOUGHT_MUSEUM_TICKET ; 068, (D754, bit 0)
- const EVENT_GOT_OLD_AMBER ; 069, (D754, bit 1)
- const EVENT_06A ; 06A, (D754, bit 2)
- const EVENT_06B ; 06B, (D754, bit 3)
- const EVENT_06C ; 06C, (D754, bit 4)
- const EVENT_06D ; 06D, (D754, bit 5)
- const EVENT_06E ; 06E, (D754, bit 6)
- const EVENT_06F ; 06F, (D754, bit 7)
- const EVENT_070 ; 070, (D755, bit 0)
- const EVENT_071 ; 071, (D755, bit 1)
- const EVENT_BEAT_PEWTER_GYM_TRAINER_0 ; 072, (D755, bit 2)
- const EVENT_073 ; 073, (D755, bit 3)
- const EVENT_074 ; 074, (D755, bit 4)
- const EVENT_075 ; 075, (D755, bit 5)
- const EVENT_GOT_TM34 ; 076, (D755, bit 6)
- const EVENT_BEAT_BROCK ; 077, (D755, bit 7)
- const EVENT_078 ; 078, (D756, bit 0)
- const EVENT_079 ; 079, (D756, bit 1)
- const EVENT_07A ; 07A, (D756, bit 2)
- const EVENT_07B ; 07B, (D756, bit 3)
- const EVENT_07C ; 07C, (D756, bit 4)
- const EVENT_07D ; 07D, (D756, bit 5)
- const EVENT_07E ; 07E, (D756, bit 6)
- const EVENT_07F ; 07F, (D756, bit 7)
- const EVENT_080 ; 080, (D757, bit 0)
- const EVENT_081 ; 081, (D757, bit 1)
- const EVENT_082 ; 082, (D757, bit 2)
- const EVENT_083 ; 083, (D757, bit 3)
- const EVENT_084 ; 084, (D757, bit 4)
- const EVENT_085 ; 085, (D757, bit 5)
- const EVENT_086 ; 086, (D757, bit 6)
- const EVENT_087 ; 087, (D757, bit 7)
- const EVENT_088 ; 088, (D758, bit 0)
- const EVENT_089 ; 089, (D758, bit 1)
- const EVENT_08A ; 08A, (D758, bit 2)
- const EVENT_08B ; 08B, (D758, bit 3)
- const EVENT_08C ; 08C, (D758, bit 4)
- const EVENT_08D ; 08D, (D758, bit 5)
- const EVENT_08E ; 08E, (D758, bit 6)
- const EVENT_08F ; 08F, (D758, bit 7)
- const EVENT_090 ; 090, (D759, bit 0)
- const EVENT_091 ; 091, (D759, bit 1)
- const EVENT_092 ; 092, (D759, bit 2)
- const EVENT_093 ; 093, (D759, bit 3)
- const EVENT_094 ; 094, (D759, bit 4)
- const EVENT_095 ; 095, (D759, bit 5)
- const EVENT_096 ; 096, (D759, bit 6)
- const EVENT_097 ; 097, (D759, bit 7)
- const EVENT_BEAT_CERULEAN_RIVAL ; 098, (D75A, bit 0)
- const EVENT_099 ; 099, (D75A, bit 1)
- const EVENT_09A ; 09A, (D75A, bit 2)
- const EVENT_09B ; 09B, (D75A, bit 3)
- const EVENT_09C ; 09C, (D75A, bit 4)
- const EVENT_09D ; 09D, (D75A, bit 5)
- const EVENT_09E ; 09E, (D75A, bit 6)
- const EVENT_09F ; 09F, (D75A, bit 7)
- const EVENT_0A0 ; 0A0, (D75B, bit 0)
- const EVENT_0A1 ; 0A1, (D75B, bit 1)
- const EVENT_0A2 ; 0A2, (D75B, bit 2)
- const EVENT_0A3 ; 0A3, (D75B, bit 3)
- const EVENT_0A4 ; 0A4, (D75B, bit 4)
- const EVENT_0A5 ; 0A5, (D75B, bit 5)
- const EVENT_0A6 ; 0A6, (D75B, bit 6)
- const EVENT_BEAT_CERULEAN_ROCKET_THIEF ; 0A7, (D75B, bit 7)
- const EVENT_0A8 ; 0A8, (D75C, bit 0)
- const EVENT_0A9 ; 0A9, (D75C, bit 1)
- const EVENT_0AA ; 0AA, (D75C, bit 2)
- const EVENT_0AB ; 0AB, (D75C, bit 3)
- const EVENT_0AC ; 0AC, (D75C, bit 4)
- const EVENT_0AD ; 0AD, (D75C, bit 5)
- const EVENT_0AE ; 0AE, (D75C, bit 6)
- const EVENT_0AF ; 0AF, (D75C, bit 7)
- const EVENT_0B0 ; 0B0, (D75D, bit 0)
- const EVENT_0B1 ; 0B1, (D75D, bit 1)
- const EVENT_0B2 ; 0B2, (D75D, bit 2)
- const EVENT_0B3 ; 0B3, (D75D, bit 3)
- const EVENT_0B4 ; 0B4, (D75D, bit 4)
- const EVENT_0B5 ; 0B5, (D75D, bit 5)
- const EVENT_0B6 ; 0B6, (D75D, bit 6)
- const EVENT_0B7 ; 0B7, (D75D, bit 7)
- const EVENT_0B8 ; 0B8, (D75E, bit 0)
- const EVENT_0B9 ; 0B9, (D75E, bit 1)
- const EVENT_BEAT_CERULEAN_GYM_TRAINER_0 ; 0BA, (D75E, bit 2)
- const EVENT_BEAT_CERULEAN_GYM_TRAINER_1 ; 0BB, (D75E, bit 3)
- const EVENT_0BC ; 0BC, (D75E, bit 4)
- const EVENT_0BD ; 0BD, (D75E, bit 5)
- const EVENT_GOT_TM11 ; 0BE, (D75E, bit 6)
- const EVENT_BEAT_MISTY ; 0BF, (D75E, bit 7)
- const EVENT_GOT_BICYCLE ; 0C0, (D75F, bit 0)
- const EVENT_0C1 ; 0C1, (D75F, bit 1)
- const EVENT_0C2 ; 0C2, (D75F, bit 2)
- const EVENT_0C3 ; 0C3, (D75F, bit 3)
- const EVENT_0C4 ; 0C4, (D75F, bit 4)
- const EVENT_0C5 ; 0C5, (D75F, bit 5)
- const EVENT_0C6 ; 0C6, (D75F, bit 6)
- const EVENT_0C7 ; 0C7, (D75F, bit 7)
- const EVENT_0C8 ; 0C8, (D760, bit 0)
- const EVENT_0C9 ; 0C9, (D760, bit 1)
- const EVENT_0CA ; 0CA, (D760, bit 2)
- const EVENT_0CB ; 0CB, (D760, bit 3)
- const EVENT_0CC ; 0CC, (D760, bit 4)
- const EVENT_0CD ; 0CD, (D760, bit 5)
- const EVENT_0CE ; 0CE, (D760, bit 6)
- const EVENT_0CF ; 0CF, (D760, bit 7)
- const EVENT_0D0 ; 0D0, (D761, bit 0)
- const EVENT_0D1 ; 0D1, (D761, bit 1)
- const EVENT_0D2 ; 0D2, (D761, bit 2)
- const EVENT_0D3 ; 0D3, (D761, bit 3)
- const EVENT_0D4 ; 0D4, (D761, bit 4)
- const EVENT_0D5 ; 0D5, (D761, bit 5)
- const EVENT_0D6 ; 0D6, (D761, bit 6)
- const EVENT_0D7 ; 0D7, (D761, bit 7)
- const EVENT_0D8 ; 0D8, (D762, bit 0)
- const EVENT_0D9 ; 0D9, (D762, bit 1)
- const EVENT_0DA ; 0DA, (D762, bit 2)
- const EVENT_0DB ; 0DB, (D762, bit 3)
- const EVENT_0DC ; 0DC, (D762, bit 4)
- const EVENT_0DD ; 0DD, (D762, bit 5)
- const EVENT_0DE ; 0DE, (D762, bit 6)
- const EVENT_0DF ; 0DF, (D762, bit 7)
- const EVENT_0E0 ; 0E0, (D763, bit 0)
- const EVENT_0E1 ; 0E1, (D763, bit 1)
- const EVENT_0E2 ; 0E2, (D763, bit 2)
- const EVENT_0E3 ; 0E3, (D763, bit 3)
- const EVENT_0E4 ; 0E4, (D763, bit 4)
- const EVENT_0E5 ; 0E5, (D763, bit 5)
- const EVENT_0E6 ; 0E6, (D763, bit 6)
- const EVENT_0E7 ; 0E7, (D763, bit 7)
- const EVENT_0E8 ; 0E8, (D764, bit 0)
- const EVENT_0E9 ; 0E9, (D764, bit 1)
- const EVENT_0EA ; 0EA, (D764, bit 2)
- const EVENT_0EB ; 0EB, (D764, bit 3)
- const EVENT_0EC ; 0EC, (D764, bit 4)
- const EVENT_0ED ; 0ED, (D764, bit 5)
- const EVENT_POKEMON_TOWER_RIVAL_ON_LEFT ; 0EE, (D764, bit 6)
- const EVENT_BEAT_POKEMON_TOWER_RIVAL ; 0EF, (D764, bit 7)
- const EVENT_0F0 ; 0F0, (D765, bit 0)
- const EVENT_BEAT_POKEMONTOWER_3_TRAINER_0 ; 0F1, (D765, bit 1)
- const EVENT_BEAT_POKEMONTOWER_3_TRAINER_1 ; 0F2, (D765, bit 2)
- const EVENT_BEAT_POKEMONTOWER_3_TRAINER_2 ; 0F3, (D765, bit 3)
- const EVENT_0F4 ; 0F4, (D765, bit 4)
- const EVENT_0F5 ; 0F5, (D765, bit 5)
- const EVENT_0F6 ; 0F6, (D765, bit 6)
- const EVENT_0F7 ; 0F7, (D765, bit 7)
- const EVENT_0F8 ; 0F8, (D766, bit 0)
- const EVENT_BEAT_POKEMONTOWER_4_TRAINER_0 ; 0F9, (D766, bit 1)
- const EVENT_BEAT_POKEMONTOWER_4_TRAINER_1 ; 0FA, (D766, bit 2)
- const EVENT_BEAT_POKEMONTOWER_4_TRAINER_2 ; 0FB, (D766, bit 3)
- const EVENT_0FC ; 0FC, (D766, bit 4)
- const EVENT_0FD ; 0FD, (D766, bit 5)
- const EVENT_0FE ; 0FE, (D766, bit 6)
- const EVENT_0FF ; 0FF, (D766, bit 7)
- const EVENT_100 ; 100, (D767, bit 0)
- const EVENT_101 ; 101, (D767, bit 1)
- const EVENT_BEAT_POKEMONTOWER_5_TRAINER_0 ; 102, (D767, bit 2)
- const EVENT_BEAT_POKEMONTOWER_5_TRAINER_1 ; 103, (D767, bit 3)
- const EVENT_BEAT_POKEMONTOWER_5_TRAINER_2 ; 104, (D767, bit 4)
- const EVENT_BEAT_POKEMONTOWER_5_TRAINER_3 ; 105, (D767, bit 5)
- const EVENT_106 ; 106, (D767, bit 6)
- const EVENT_IN_PURIFIED_ZONE ; 107, (D767, bit 7)
- const EVENT_108 ; 108, (D768, bit 0)
- const EVENT_BEAT_POKEMONTOWER_6_TRAINER_0 ; 109, (D768, bit 1)
- const EVENT_BEAT_POKEMONTOWER_6_TRAINER_1 ; 10A, (D768, bit 2)
- const EVENT_BEAT_POKEMONTOWER_6_TRAINER_2 ; 10B, (D768, bit 3)
- const EVENT_10C ; 10C, (D768, bit 4)
- const EVENT_10D ; 10D, (D768, bit 5)
- const EVENT_10E ; 10E, (D768, bit 6)
- const EVENT_BEAT_GHOST_MAROWAK ; 10F, (D768, bit 7)
- const EVENT_110 ; 110, (D769, bit 0)
- const EVENT_BEAT_POKEMONTOWER_7_TRAINER_0 ; 111, (D769, bit 1)
- const EVENT_BEAT_POKEMONTOWER_7_TRAINER_1 ; 112, (D769, bit 2)
- const EVENT_BEAT_POKEMONTOWER_7_TRAINER_2 ; 113, (D769, bit 3)
- const EVENT_114 ; 114, (D769, bit 4)
- const EVENT_115 ; 115, (D769, bit 5)
- const EVENT_116 ; 116, (D769, bit 6)
- const EVENT_RESCUED_MR_FUJI_2 ; 117, (D769, bit 7)
- const EVENT_118 ; 118, (D76A, bit 0)
- const EVENT_119 ; 119, (D76A, bit 1)
- const EVENT_11A ; 11A, (D76A, bit 2)
- const EVENT_11B ; 11B, (D76A, bit 3)
- const EVENT_11C ; 11C, (D76A, bit 4)
- const EVENT_11D ; 11D, (D76A, bit 5)
- const EVENT_11E ; 11E, (D76A, bit 6)
- const EVENT_11F ; 11F, (D76A, bit 7)
- const EVENT_120 ; 120, (D76B, bit 0)
- const EVENT_121 ; 121, (D76B, bit 1)
- const EVENT_122 ; 122, (D76B, bit 2)
- const EVENT_123 ; 123, (D76B, bit 3)
- const EVENT_124 ; 124, (D76B, bit 4)
- const EVENT_125 ; 125, (D76B, bit 5)
- const EVENT_126 ; 126, (D76B, bit 6)
- const EVENT_127 ; 127, (D76B, bit 7)
- const EVENT_GOT_POKE_FLUTE ; 128, (D76C, bit 0)
- const EVENT_129 ; 129, (D76C, bit 1)
- const EVENT_12A ; 12A, (D76C, bit 2)
- const EVENT_12B ; 12B, (D76C, bit 3)
- const EVENT_12C ; 12C, (D76C, bit 4)
- const EVENT_12D ; 12D, (D76C, bit 5)
- const EVENT_12E ; 12E, (D76C, bit 6)
- const EVENT_12F ; 12F, (D76C, bit 7)
- const EVENT_130 ; 130, (D76D, bit 0)
- const EVENT_131 ; 131, (D76D, bit 1)
- const EVENT_132 ; 132, (D76D, bit 2)
- const EVENT_133 ; 133, (D76D, bit 3)
- const EVENT_134 ; 134, (D76D, bit 4)
- const EVENT_135 ; 135, (D76D, bit 5)
- const EVENT_136 ; 136, (D76D, bit 6)
- const EVENT_137 ; 137, (D76D, bit 7)
- const EVENT_138 ; 138, (D76E, bit 0)
- const EVENT_139 ; 139, (D76E, bit 1)
- const EVENT_13A ; 13A, (D76E, bit 2)
- const EVENT_13B ; 13B, (D76E, bit 3)
- const EVENT_13C ; 13C, (D76E, bit 4)
- const EVENT_13D ; 13D, (D76E, bit 5)
- const EVENT_13E ; 13E, (D76E, bit 6)
- const EVENT_13F ; 13F, (D76E, bit 7)
- const EVENT_140 ; 140, (D76F, bit 0)
- const EVENT_141 ; 141, (D76F, bit 1)
- const EVENT_142 ; 142, (D76F, bit 2)
- const EVENT_143 ; 143, (D76F, bit 3)
- const EVENT_144 ; 144, (D76F, bit 4)
- const EVENT_145 ; 145, (D76F, bit 5)
- const EVENT_146 ; 146, (D76F, bit 6)
- const EVENT_147 ; 147, (D76F, bit 7)
- const EVENT_148 ; 148, (D770, bit 0)
- const EVENT_149 ; 149, (D770, bit 1)
- const EVENT_14A ; 14A, (D770, bit 2)
- const EVENT_14B ; 14B, (D770, bit 3)
- const EVENT_14C ; 14C, (D770, bit 4)
- const EVENT_14D ; 14D, (D770, bit 5)
- const EVENT_14E ; 14E, (D770, bit 6)
- const EVENT_14F ; 14F, (D770, bit 7)
- const EVENT_150 ; 150, (D771, bit 0)
- const EVENT_GOT_BIKE_VOUCHER ; 151, (D771, bit 1)
- const EVENT_152 ; 152, (D771, bit 2)
- const EVENT_153 ; 153, (D771, bit 3)
- const EVENT_154 ; 154, (D771, bit 4)
- const EVENT_155 ; 155, (D771, bit 5)
- const EVENT_SEEL_FAN_BOAST ; 156, (D771, bit 6)
- const EVENT_PIKACHU_FAN_BOAST ; 157, (D771, bit 7)
- const EVENT_158 ; 158, (D772, bit 0)
- const EVENT_159 ; 159, (D772, bit 1)
- const EVENT_15A ; 15A, (D772, bit 2)
- const EVENT_15B ; 15B, (D772, bit 3)
- const EVENT_15C ; 15C, (D772, bit 4)
- const EVENT_15D ; 15D, (D772, bit 5)
- const EVENT_15E ; 15E, (D772, bit 6)
- const EVENT_15F ; 15F, (D772, bit 7)
- const EVENT_2ND_LOCK_OPENED ; 160, (D773, bit 0)
- const EVENT_1ST_LOCK_OPENED ; 161, (D773, bit 1)
- const EVENT_BEAT_VERMILION_GYM_TRAINER_0 ; 162, (D773, bit 2)
- const EVENT_BEAT_VERMILION_GYM_TRAINER_1 ; 163, (D773, bit 3)
- const EVENT_BEAT_VERMILION_GYM_TRAINER_2 ; 164, (D773, bit 4)
- const EVENT_165 ; 165, (D773, bit 5)
- const EVENT_GOT_TM24 ; 166, (D773, bit 6)
- const EVENT_BEAT_LT_SURGE ; 167, (D773, bit 7)
- const EVENT_168 ; 168, (D774, bit 0)
- const EVENT_169 ; 169, (D774, bit 1)
- const EVENT_16A ; 16A, (D774, bit 2)
- const EVENT_16B ; 16B, (D774, bit 3)
- const EVENT_16C ; 16C, (D774, bit 4)
- const EVENT_16D ; 16D, (D774, bit 5)
- const EVENT_16E ; 16E, (D774, bit 6)
- const EVENT_16F ; 16F, (D774, bit 7)
- const EVENT_170 ; 170, (D775, bit 0)
- const EVENT_171 ; 171, (D775, bit 1)
- const EVENT_172 ; 172, (D775, bit 2)
- const EVENT_173 ; 173, (D775, bit 3)
- const EVENT_174 ; 174, (D775, bit 4)
- const EVENT_175 ; 175, (D775, bit 5)
- const EVENT_176 ; 176, (D775, bit 6)
- const EVENT_177 ; 177, (D775, bit 7)
- const EVENT_178 ; 178, (D776, bit 0)
- const EVENT_179 ; 179, (D776, bit 1)
- const EVENT_17A ; 17A, (D776, bit 2)
- const EVENT_17B ; 17B, (D776, bit 3)
- const EVENT_17C ; 17C, (D776, bit 4)
- const EVENT_17D ; 17D, (D776, bit 5)
- const EVENT_17E ; 17E, (D776, bit 6)
- const EVENT_17F ; 17F, (D776, bit 7)
- const EVENT_GOT_TM41 ; 180, (D777, bit 0)
- const EVENT_181 ; 181, (D777, bit 1)
- const EVENT_182 ; 182, (D777, bit 2)
- const EVENT_183 ; 183, (D777, bit 3)
- const EVENT_184 ; 184, (D777, bit 4)
- const EVENT_185 ; 185, (D777, bit 5)
- const EVENT_186 ; 186, (D777, bit 6)
- const EVENT_187 ; 187, (D777, bit 7)
- const EVENT_188 ; 188, (D778, bit 0)
- const EVENT_189 ; 189, (D778, bit 1)
- const EVENT_18A ; 18A, (D778, bit 2)
- const EVENT_18B ; 18B, (D778, bit 3)
- const EVENT_GOT_TM13 ; 18C, (D778, bit 4)
- const EVENT_GOT_TM48 ; 18D, (D778, bit 5)
- const EVENT_GOT_TM49 ; 18E, (D778, bit 6)
- const EVENT_GOT_TM18 ; 18F, (D778, bit 7)
- const EVENT_190 ; 190, (D779, bit 0)
- const EVENT_191 ; 191, (D779, bit 1)
- const EVENT_192 ; 192, (D779, bit 2)
- const EVENT_193 ; 193, (D779, bit 3)
- const EVENT_194 ; 194, (D779, bit 4)
- const EVENT_195 ; 195, (D779, bit 5)
- const EVENT_196 ; 196, (D779, bit 6)
- const EVENT_197 ; 197, (D779, bit 7)
- const EVENT_198 ; 198, (D77A, bit 0)
- const EVENT_199 ; 199, (D77A, bit 1)
- const EVENT_19A ; 19A, (D77A, bit 2)
- const EVENT_19B ; 19B, (D77A, bit 3)
- const EVENT_19C ; 19C, (D77A, bit 4)
- const EVENT_19D ; 19D, (D77A, bit 5)
- const EVENT_19E ; 19E, (D77A, bit 6)
- const EVENT_19F ; 19F, (D77A, bit 7)
- const EVENT_1A0 ; 1A0, (D77B, bit 0)
- const EVENT_1A1 ; 1A1, (D77B, bit 1)
- const EVENT_1A2 ; 1A2, (D77B, bit 2)
- const EVENT_1A3 ; 1A3, (D77B, bit 3)
- const EVENT_1A4 ; 1A4, (D77B, bit 4)
- const EVENT_1A5 ; 1A5, (D77B, bit 5)
- const EVENT_1A6 ; 1A6, (D77B, bit 6)
- const EVENT_1A7 ; 1A7, (D77B, bit 7)
- const EVENT_GOT_TM21 ; 1A8, (D77C, bit 0)
- const EVENT_BEAT_ERIKA ; 1A9, (D77C, bit 1)
- const EVENT_BEAT_CELADON_GYM_TRAINER_0 ; 1AA, (D77C, bit 2)
- const EVENT_BEAT_CELADON_GYM_TRAINER_1 ; 1AB, (D77C, bit 3)
- const EVENT_BEAT_CELADON_GYM_TRAINER_2 ; 1AC, (D77C, bit 4)
- const EVENT_BEAT_CELADON_GYM_TRAINER_3 ; 1AD, (D77C, bit 5)
- const EVENT_BEAT_CELADON_GYM_TRAINER_4 ; 1AE, (D77C, bit 6)
- const EVENT_BEAT_CELADON_GYM_TRAINER_5 ; 1AF, (D77C, bit 7)
- const EVENT_BEAT_CELADON_GYM_TRAINER_6 ; 1B0, (D77D, bit 0)
- const EVENT_1B1 ; 1B1, (D77D, bit 1)
- const EVENT_1B2 ; 1B2, (D77D, bit 2)
- const EVENT_1B3 ; 1B3, (D77D, bit 3)
- const EVENT_1B4 ; 1B4, (D77D, bit 4)
- const EVENT_1B5 ; 1B5, (D77D, bit 5)
- const EVENT_1B6 ; 1B6, (D77D, bit 6)
- const EVENT_1B7 ; 1B7, (D77D, bit 7)
- const EVENT_1B8 ; 1B8, (D77E, bit 0)
- const EVENT_FOUND_ROCKET_HIDEOUT ; 1B9, (D77E, bit 1)
- const EVENT_GOT_10_COINS ; 1BA, (D77E, bit 2)
- const EVENT_GOT_20_COINS ; 1BB, (D77E, bit 3)
- const EVENT_GOT_20_COINS_2 ; 1BC, (D77E, bit 4)
- const EVENT_1BD ; 1BD, (D77E, bit 5)
- const EVENT_1BE ; 1BE, (D77E, bit 6)
- const EVENT_1BF ; 1BF, (D77E, bit 7)
- const EVENT_1C0 ; 1C0, (D77F, bit 0)
- const EVENT_1C1 ; 1C1, (D77F, bit 1)
- const EVENT_1C2 ; 1C2, (D77F, bit 2)
- const EVENT_1C3 ; 1C3, (D77F, bit 3)
- const EVENT_1C4 ; 1C4, (D77F, bit 4)
- const EVENT_1C5 ; 1C5, (D77F, bit 5)
- const EVENT_1C6 ; 1C6, (D77F, bit 6)
- const EVENT_1C7 ; 1C7, (D77F, bit 7)
- const EVENT_1C8 ; 1C8, (D780, bit 0)
- const EVENT_1C9 ; 1C9, (D780, bit 1)
- const EVENT_1CA ; 1CA, (D780, bit 2)
- const EVENT_1CB ; 1CB, (D780, bit 3)
- const EVENT_1CC ; 1CC, (D780, bit 4)
- const EVENT_1CD ; 1CD, (D780, bit 5)
- const EVENT_1CE ; 1CE, (D780, bit 6)
- const EVENT_1CF ; 1CF, (D780, bit 7)
- const EVENT_1D0 ; 1D0, (D781, bit 0)
- const EVENT_1D1 ; 1D1, (D781, bit 1)
- const EVENT_1D2 ; 1D2, (D781, bit 2)
- const EVENT_1D3 ; 1D3, (D781, bit 3)
- const EVENT_1D4 ; 1D4, (D781, bit 4)
- const EVENT_1D5 ; 1D5, (D781, bit 5)
- const EVENT_1D6 ; 1D6, (D781, bit 6)
- const EVENT_1D7 ; 1D7, (D781, bit 7)
- const EVENT_1D8 ; 1D8, (D782, bit 0)
- const EVENT_1D9 ; 1D9, (D782, bit 1)
- const EVENT_1DA ; 1DA, (D782, bit 2)
- const EVENT_1DB ; 1DB, (D782, bit 3)
- const EVENT_1DC ; 1DC, (D782, bit 4)
- const EVENT_1DD ; 1DD, (D782, bit 5)
- const EVENT_1DE ; 1DE, (D782, bit 6)
- const EVENT_1DF ; 1DF, (D782, bit 7)
- const EVENT_GOT_COIN_CASE ; 1E0, (D783, bit 0)
- const EVENT_1E1 ; 1E1, (D783, bit 1)
- const EVENT_1E2 ; 1E2, (D783, bit 2)
- const EVENT_1E3 ; 1E3, (D783, bit 3)
- const EVENT_1E4 ; 1E4, (D783, bit 4)
- const EVENT_1E5 ; 1E5, (D783, bit 5)
- const EVENT_1E6 ; 1E6, (D783, bit 6)
- const EVENT_1E7 ; 1E7, (D783, bit 7)
- const EVENT_1E8 ; 1E8, (D784, bit 0)
- const EVENT_1E9 ; 1E9, (D784, bit 1)
- const EVENT_1EA ; 1EA, (D784, bit 2)
- const EVENT_1EB ; 1EB, (D784, bit 3)
- const EVENT_1EC ; 1EC, (D784, bit 4)
- const EVENT_1ED ; 1ED, (D784, bit 5)
- const EVENT_1EE ; 1EE, (D784, bit 6)
- const EVENT_1EF ; 1EF, (D784, bit 7)
- const EVENT_1F0 ; 1F0, (D785, bit 0)
- const EVENT_1F1 ; 1F1, (D785, bit 1)
- const EVENT_1F2 ; 1F2, (D785, bit 2)
- const EVENT_1F3 ; 1F3, (D785, bit 3)
- const EVENT_1F4 ; 1F4, (D785, bit 4)
- const EVENT_1F5 ; 1F5, (D785, bit 5)
- const EVENT_1F6 ; 1F6, (D785, bit 6)
- const EVENT_1F7 ; 1F7, (D785, bit 7)
- const EVENT_1F8 ; 1F8, (D786, bit 0)
- const EVENT_1F9 ; 1F9, (D786, bit 1)
- const EVENT_1FA ; 1FA, (D786, bit 2)
- const EVENT_1FB ; 1FB, (D786, bit 3)
- const EVENT_1FC ; 1FC, (D786, bit 4)
- const EVENT_1FD ; 1FD, (D786, bit 5)
- const EVENT_1FE ; 1FE, (D786, bit 6)
- const EVENT_1FF ; 1FF, (D786, bit 7)
- const EVENT_200 ; 200, (D787, bit 0)
- const EVENT_201 ; 201, (D787, bit 1)
- const EVENT_202 ; 202, (D787, bit 2)
- const EVENT_203 ; 203, (D787, bit 3)
- const EVENT_204 ; 204, (D787, bit 4)
- const EVENT_205 ; 205, (D787, bit 5)
- const EVENT_206 ; 206, (D787, bit 6)
- const EVENT_207 ; 207, (D787, bit 7)
- const EVENT_208 ; 208, (D788, bit 0)
- const EVENT_209 ; 209, (D788, bit 1)
- const EVENT_20A ; 20A, (D788, bit 2)
- const EVENT_20B ; 20B, (D788, bit 3)
- const EVENT_20C ; 20C, (D788, bit 4)
- const EVENT_20D ; 20D, (D788, bit 5)
- const EVENT_20E ; 20E, (D788, bit 6)
- const EVENT_20F ; 20F, (D788, bit 7)
- const EVENT_210 ; 210, (D789, bit 0)
- const EVENT_211 ; 211, (D789, bit 1)
- const EVENT_212 ; 212, (D789, bit 2)
- const EVENT_213 ; 213, (D789, bit 3)
- const EVENT_214 ; 214, (D789, bit 4)
- const EVENT_215 ; 215, (D789, bit 5)
- const EVENT_216 ; 216, (D789, bit 6)
- const EVENT_217 ; 217, (D789, bit 7)
- const EVENT_218 ; 218, (D78A, bit 0)
- const EVENT_219 ; 219, (D78A, bit 1)
- const EVENT_21A ; 21A, (D78A, bit 2)
- const EVENT_21B ; 21B, (D78A, bit 3)
- const EVENT_21C ; 21C, (D78A, bit 4)
- const EVENT_21D ; 21D, (D78A, bit 5)
- const EVENT_21E ; 21E, (D78A, bit 6)
- const EVENT_21F ; 21F, (D78A, bit 7)
- const EVENT_220 ; 220, (D78B, bit 0)
- const EVENT_221 ; 221, (D78B, bit 1)
- const EVENT_222 ; 222, (D78B, bit 2)
- const EVENT_223 ; 223, (D78B, bit 3)
- const EVENT_224 ; 224, (D78B, bit 4)
- const EVENT_225 ; 225, (D78B, bit 5)
- const EVENT_226 ; 226, (D78B, bit 6)
- const EVENT_227 ; 227, (D78B, bit 7)
- const EVENT_228 ; 228, (D78C, bit 0)
- const EVENT_229 ; 229, (D78C, bit 1)
- const EVENT_22A ; 22A, (D78C, bit 2)
- const EVENT_22B ; 22B, (D78C, bit 3)
- const EVENT_22C ; 22C, (D78C, bit 4)
- const EVENT_22D ; 22D, (D78C, bit 5)
- const EVENT_22E ; 22E, (D78C, bit 6)
- const EVENT_22F ; 22F, (D78C, bit 7)
- const EVENT_230 ; 230, (D78D, bit 0)
- const EVENT_231 ; 231, (D78D, bit 1)
- const EVENT_232 ; 232, (D78D, bit 2)
- const EVENT_233 ; 233, (D78D, bit 3)
- const EVENT_234 ; 234, (D78D, bit 4)
- const EVENT_235 ; 235, (D78D, bit 5)
- const EVENT_236 ; 236, (D78D, bit 6)
- const EVENT_237 ; 237, (D78D, bit 7)
- const EVENT_GOT_HM04 ; 238, (D78E, bit 0)
- const EVENT_GAVE_GOLD_TEETH ; 239, (D78E, bit 1)
- const EVENT_23A ; 23A, (D78E, bit 2)
- const EVENT_23B ; 23B, (D78E, bit 3)
- const EVENT_23C ; 23C, (D78E, bit 4)
- const EVENT_23D ; 23D, (D78E, bit 5)
- const EVENT_23E ; 23E, (D78E, bit 6)
- const EVENT_23F ; 23F, (D78E, bit 7)
- const EVENT_240 ; 240, (D78F, bit 0)
- const EVENT_241 ; 241, (D78F, bit 1)
- const EVENT_242 ; 242, (D78F, bit 2)
- const EVENT_243 ; 243, (D78F, bit 3)
- const EVENT_244 ; 244, (D78F, bit 4)
- const EVENT_245 ; 245, (D78F, bit 5)
- const EVENT_246 ; 246, (D78F, bit 6)
- const EVENT_247 ; 247, (D78F, bit 7)
- const EVENT_248 ; 248, (D790, bit 0)
- const EVENT_249 ; 249, (D790, bit 1)
- const EVENT_24A ; 24A, (D790, bit 2)
- const EVENT_24B ; 24B, (D790, bit 3)
- const EVENT_24C ; 24C, (D790, bit 4)
- const EVENT_24D ; 24D, (D790, bit 5)
- const EVENT_SAFARI_GAME_OVER ; 24E, (D790, bit 6)
- const EVENT_IN_SAFARI_ZONE ; 24F, (D790, bit 7)
- const EVENT_250 ; 250, (D791, bit 0)
- const EVENT_251 ; 251, (D791, bit 1)
- const EVENT_252 ; 252, (D791, bit 2)
- const EVENT_253 ; 253, (D791, bit 3)
- const EVENT_254 ; 254, (D791, bit 4)
- const EVENT_255 ; 255, (D791, bit 5)
- const EVENT_256 ; 256, (D791, bit 6)
- const EVENT_257 ; 257, (D791, bit 7)
- const EVENT_GOT_TM06 ; 258, (D792, bit 0)
- const EVENT_BEAT_KOGA ; 259, (D792, bit 1)
- const EVENT_BEAT_FUCHSIA_GYM_TRAINER_0 ; 25A, (D792, bit 2)
- const EVENT_BEAT_FUCHSIA_GYM_TRAINER_1 ; 25B, (D792, bit 3)
- const EVENT_BEAT_FUCHSIA_GYM_TRAINER_2 ; 25C, (D792, bit 4)
- const EVENT_BEAT_FUCHSIA_GYM_TRAINER_3 ; 25D, (D792, bit 5)
- const EVENT_BEAT_FUCHSIA_GYM_TRAINER_4 ; 25E, (D792, bit 6)
- const EVENT_BEAT_FUCHSIA_GYM_TRAINER_5 ; 25F, (D792, bit 7)
- const EVENT_260 ; 260, (D793, bit 0)
- const EVENT_261 ; 261, (D793, bit 1)
- const EVENT_262 ; 262, (D793, bit 2)
- const EVENT_263 ; 263, (D793, bit 3)
- const EVENT_264 ; 264, (D793, bit 4)
- const EVENT_265 ; 265, (D793, bit 5)
- const EVENT_266 ; 266, (D793, bit 6)
- const EVENT_267 ; 267, (D793, bit 7)
- const EVENT_268 ; 268, (D794, bit 0)
- const EVENT_269 ; 269, (D794, bit 1)
- const EVENT_26A ; 26A, (D794, bit 2)
- const EVENT_26B ; 26B, (D794, bit 3)
- const EVENT_26C ; 26C, (D794, bit 4)
- const EVENT_26D ; 26D, (D794, bit 5)
- const EVENT_26E ; 26E, (D794, bit 6)
- const EVENT_26F ; 26F, (D794, bit 7)
- const EVENT_270 ; 270, (D795, bit 0)
- const EVENT_271 ; 271, (D795, bit 1)
- const EVENT_272 ; 272, (D795, bit 2)
- const EVENT_273 ; 273, (D795, bit 3)
- const EVENT_274 ; 274, (D795, bit 4)
- const EVENT_275 ; 275, (D795, bit 5)
- const EVENT_276 ; 276, (D795, bit 6)
- const EVENT_277 ; 277, (D795, bit 7)
- const EVENT_MANSION_SWITCH_ON ; 278, (D796, bit 0)
- const EVENT_279 ; 279, (D796, bit 1)
- const EVENT_27A ; 27A, (D796, bit 2)
- const EVENT_27B ; 27B, (D796, bit 3)
- const EVENT_27C ; 27C, (D796, bit 4)
- const EVENT_27D ; 27D, (D796, bit 5)
- const EVENT_27E ; 27E, (D796, bit 6)
- const EVENT_27F ; 27F, (D796, bit 7)
- const EVENT_280 ; 280, (D797, bit 0)
- const EVENT_281 ; 281, (D797, bit 1)
- const EVENT_282 ; 282, (D797, bit 2)
- const EVENT_283 ; 283, (D797, bit 3)
- const EVENT_284 ; 284, (D797, bit 4)
- const EVENT_285 ; 285, (D797, bit 5)
- const EVENT_286 ; 286, (D797, bit 6)
- const EVENT_287 ; 287, (D797, bit 7)
- const EVENT_288 ; 288, (D798, bit 0)
- const EVENT_BEAT_MANSION_1_TRAINER_0 ; 289, (D798, bit 1)
- const EVENT_28A ; 28A, (D798, bit 2)
- const EVENT_28B ; 28B, (D798, bit 3)
- const EVENT_28C ; 28C, (D798, bit 4)
- const EVENT_28D ; 28D, (D798, bit 5)
- const EVENT_28E ; 28E, (D798, bit 6)
- const EVENT_28F ; 28F, (D798, bit 7)
- const EVENT_290 ; 290, (D799, bit 0)
- const EVENT_291 ; 291, (D799, bit 1)
- const EVENT_292 ; 292, (D799, bit 2)
- const EVENT_293 ; 293, (D799, bit 3)
- const EVENT_294 ; 294, (D799, bit 4)
- const EVENT_295 ; 295, (D799, bit 5)
- const EVENT_296 ; 296, (D799, bit 6)
- const EVENT_297 ; 297, (D799, bit 7)
- const EVENT_GOT_TM38 ; 298, (D79A, bit 0)
- const EVENT_BEAT_BLAINE ; 299, (D79A, bit 1)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_0 ; 29A, (D79A, bit 2)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_1 ; 29B, (D79A, bit 3)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_2 ; 29C, (D79A, bit 4)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_3 ; 29D, (D79A, bit 5)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_4 ; 29E, (D79A, bit 6)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_5 ; 29F, (D79A, bit 7)
- const EVENT_BEAT_CINNABAR_GYM_TRAINER_6 ; 2A0, (D79B, bit 0)
- const EVENT_2A1 ; 2A1, (D79B, bit 1)
- const EVENT_2A2 ; 2A2, (D79B, bit 2)
- const EVENT_2A3 ; 2A3, (D79B, bit 3)
- const EVENT_2A4 ; 2A4, (D79B, bit 4)
- const EVENT_2A5 ; 2A5, (D79B, bit 5)
- const EVENT_2A6 ; 2A6, (D79B, bit 6)
- const EVENT_2A7 ; 2A7, (D79B, bit 7)
- const EVENT_CINNABAR_GYM_GATE0_UNLOCKED ; 2A8, (D79C, bit 0) doesn't exist, but the bit is set
- const EVENT_CINNABAR_GYM_GATE1_UNLOCKED ; 2A9, (D79C, bit 1)
- const EVENT_CINNABAR_GYM_GATE2_UNLOCKED ; 2AA, (D79C, bit 2)
- const EVENT_CINNABAR_GYM_GATE3_UNLOCKED ; 2AB, (D79C, bit 3)
- const EVENT_CINNABAR_GYM_GATE4_UNLOCKED ; 2AC, (D79C, bit 4)
- const EVENT_CINNABAR_GYM_GATE5_UNLOCKED ; 2AD, (D79C, bit 5)
- const EVENT_CINNABAR_GYM_GATE6_UNLOCKED ; 2AE, (D79C, bit 6)
- const EVENT_2AF ; 2AF, (D79C, bit 7)
- const EVENT_2B0 ; 2B0, (D79D, bit 0)
- const EVENT_2B1 ; 2B1, (D79D, bit 1)
- const EVENT_2B2 ; 2B2, (D79D, bit 2)
- const EVENT_2B3 ; 2B3, (D79D, bit 3)
- const EVENT_2B4 ; 2B4, (D79D, bit 4)
- const EVENT_2B5 ; 2B5, (D79D, bit 5)
- const EVENT_2B6 ; 2B6, (D79D, bit 6)
- const EVENT_2B7 ; 2B7, (D79D, bit 7)
- const EVENT_2B8 ; 2B8, (D79E, bit 0)
- const EVENT_2B9 ; 2B9, (D79E, bit 1)
- const EVENT_2BA ; 2BA, (D79E, bit 2)
- const EVENT_2BB ; 2BB, (D79E, bit 3)
- const EVENT_2BC ; 2BC, (D79E, bit 4)
- const EVENT_2BD ; 2BD, (D79E, bit 5)
- const EVENT_2BE ; 2BE, (D79E, bit 6)
- const EVENT_2BF ; 2BF, (D79E, bit 7)
- const EVENT_2C0 ; 2C0, (D79F, bit 0)
- const EVENT_2C1 ; 2C1, (D79F, bit 1)
- const EVENT_2C2 ; 2C2, (D79F, bit 2)
- const EVENT_2C3 ; 2C3, (D79F, bit 3)
- const EVENT_2C4 ; 2C4, (D79F, bit 4)
- const EVENT_2C5 ; 2C5, (D79F, bit 5)
- const EVENT_2C6 ; 2C6, (D79F, bit 6)
- const EVENT_2C7 ; 2C7, (D79F, bit 7)
- const EVENT_2C8 ; 2C8, (D7A0, bit 0)
- const EVENT_2C9 ; 2C9, (D7A0, bit 1)
- const EVENT_2CA ; 2CA, (D7A0, bit 2)
- const EVENT_2CB ; 2CB, (D7A0, bit 3)
- const EVENT_2CC ; 2CC, (D7A0, bit 4)
- const EVENT_2CD ; 2CD, (D7A0, bit 5)
- const EVENT_2CE ; 2CE, (D7A0, bit 6)
- const EVENT_2CF ; 2CF, (D7A0, bit 7)
- const EVENT_2D0 ; 2D0, (D7A1, bit 0)
- const EVENT_2D1 ; 2D1, (D7A1, bit 1)
- const EVENT_2D2 ; 2D2, (D7A1, bit 2)
- const EVENT_2D3 ; 2D3, (D7A1, bit 3)
- const EVENT_2D4 ; 2D4, (D7A1, bit 4)
- const EVENT_2D5 ; 2D5, (D7A1, bit 5)
- const EVENT_2D6 ; 2D6, (D7A1, bit 6)
- const EVENT_GOT_TM35 ; 2D7, (D7A1, bit 7)
- const EVENT_2D8 ; 2D8, (D7A2, bit 0)
- const EVENT_2D9 ; 2D9, (D7A2, bit 1)
- const EVENT_2DA ; 2DA, (D7A2, bit 2)
- const EVENT_2DB ; 2DB, (D7A2, bit 3)
- const EVENT_2DC ; 2DC, (D7A2, bit 4)
- const EVENT_2DD ; 2DD, (D7A2, bit 5)
- const EVENT_2DE ; 2DE, (D7A2, bit 6)
- const EVENT_2DF ; 2DF, (D7A2, bit 7)
- const EVENT_GAVE_FOSSIL_TO_LAB ; 2E0, (D7A3, bit 0)
- const EVENT_LAB_STILL_REVIVING_FOSSIL ; 2E1, (D7A3, bit 1)
- const EVENT_LAB_HANDING_OVER_FOSSIL_MON ; 2E2, (D7A3, bit 2)
- const EVENT_2E3 ; 2E3, (D7A3, bit 3)
- const EVENT_2E4 ; 2E4, (D7A3, bit 4)
- const EVENT_2E5 ; 2E5, (D7A3, bit 5)
- const EVENT_2E6 ; 2E6, (D7A3, bit 6)
- const EVENT_2E7 ; 2E7, (D7A3, bit 7)
- const EVENT_2E8 ; 2E8, (D7A4, bit 0)
- const EVENT_2E9 ; 2E9, (D7A4, bit 1)
- const EVENT_2EA ; 2EA, (D7A4, bit 2)
- const EVENT_2EB ; 2EB, (D7A4, bit 3)
- const EVENT_2EC ; 2EC, (D7A4, bit 4)
- const EVENT_2ED ; 2ED, (D7A4, bit 5)
- const EVENT_2EE ; 2EE, (D7A4, bit 6)
- const EVENT_2EF ; 2EF, (D7A4, bit 7)
- const EVENT_2F0 ; 2F0, (D7A5, bit 0)
- const EVENT_2F1 ; 2F1, (D7A5, bit 1)
- const EVENT_2F2 ; 2F2, (D7A5, bit 2)
- const EVENT_2F3 ; 2F3, (D7A5, bit 3)
- const EVENT_2F4 ; 2F4, (D7A5, bit 4)
- const EVENT_2F5 ; 2F5, (D7A5, bit 5)
- const EVENT_2F6 ; 2F6, (D7A5, bit 6)
- const EVENT_2F7 ; 2F7, (D7A5, bit 7)
- const EVENT_2F8 ; 2F8, (D7A6, bit 0)
- const EVENT_2F9 ; 2F9, (D7A6, bit 1)
- const EVENT_2FA ; 2FA, (D7A6, bit 2)
- const EVENT_2FB ; 2FB, (D7A6, bit 3)
- const EVENT_2FC ; 2FC, (D7A6, bit 4)
- const EVENT_2FD ; 2FD, (D7A6, bit 5)
- const EVENT_2FE ; 2FE, (D7A6, bit 6)
- const EVENT_2FF ; 2FF, (D7A6, bit 7)
- const EVENT_300 ; 300, (D7A7, bit 0)
- const EVENT_301 ; 301, (D7A7, bit 1)
- const EVENT_302 ; 302, (D7A7, bit 2)
- const EVENT_303 ; 303, (D7A7, bit 3)
- const EVENT_304 ; 304, (D7A7, bit 4)
- const EVENT_305 ; 305, (D7A7, bit 5)
- const EVENT_306 ; 306, (D7A7, bit 6)
- const EVENT_307 ; 307, (D7A7, bit 7)
- const EVENT_308 ; 308, (D7A8, bit 0)
- const EVENT_309 ; 309, (D7A8, bit 1)
- const EVENT_30A ; 30A, (D7A8, bit 2)
- const EVENT_30B ; 30B, (D7A8, bit 3)
- const EVENT_30C ; 30C, (D7A8, bit 4)
- const EVENT_30D ; 30D, (D7A8, bit 5)
- const EVENT_30E ; 30E, (D7A8, bit 6)
- const EVENT_30F ; 30F, (D7A8, bit 7)
- const EVENT_310 ; 310, (D7A9, bit 0)
- const EVENT_311 ; 311, (D7A9, bit 1)
- const EVENT_312 ; 312, (D7A9, bit 2)
- const EVENT_313 ; 313, (D7A9, bit 3)
- const EVENT_314 ; 314, (D7A9, bit 4)
- const EVENT_315 ; 315, (D7A9, bit 5)
- const EVENT_316 ; 316, (D7A9, bit 6)
- const EVENT_317 ; 317, (D7A9, bit 7)
- const EVENT_318 ; 318, (D7AA, bit 0)
- const EVENT_319 ; 319, (D7AA, bit 1)
- const EVENT_31A ; 31A, (D7AA, bit 2)
- const EVENT_31B ; 31B, (D7AA, bit 3)
- const EVENT_31C ; 31C, (D7AA, bit 4)
- const EVENT_31D ; 31D, (D7AA, bit 5)
- const EVENT_31E ; 31E, (D7AA, bit 6)
- const EVENT_31F ; 31F, (D7AA, bit 7)
- const EVENT_320 ; 320, (D7AB, bit 0)
- const EVENT_321 ; 321, (D7AB, bit 1)
- const EVENT_322 ; 322, (D7AB, bit 2)
- const EVENT_323 ; 323, (D7AB, bit 3)
- const EVENT_324 ; 324, (D7AB, bit 4)
- const EVENT_325 ; 325, (D7AB, bit 5)
- const EVENT_326 ; 326, (D7AB, bit 6)
- const EVENT_327 ; 327, (D7AB, bit 7)
- const EVENT_328 ; 328, (D7AC, bit 0)
- const EVENT_329 ; 329, (D7AC, bit 1)
- const EVENT_32A ; 32A, (D7AC, bit 2)
- const EVENT_32B ; 32B, (D7AC, bit 3)
- const EVENT_32C ; 32C, (D7AC, bit 4)
- const EVENT_32D ; 32D, (D7AC, bit 5)
- const EVENT_32E ; 32E, (D7AC, bit 6)
- const EVENT_32F ; 32F, (D7AC, bit 7)
- const EVENT_330 ; 330, (D7AD, bit 0)
- const EVENT_331 ; 331, (D7AD, bit 1)
- const EVENT_332 ; 332, (D7AD, bit 2)
- const EVENT_333 ; 333, (D7AD, bit 3)
- const EVENT_334 ; 334, (D7AD, bit 4)
- const EVENT_335 ; 335, (D7AD, bit 5)
- const EVENT_336 ; 336, (D7AD, bit 6)
- const EVENT_337 ; 337, (D7AD, bit 7)
- const EVENT_338 ; 338, (D7AE, bit 0)
- const EVENT_339 ; 339, (D7AE, bit 1)
- const EVENT_33A ; 33A, (D7AE, bit 2)
- const EVENT_33B ; 33B, (D7AE, bit 3)
- const EVENT_33C ; 33C, (D7AE, bit 4)
- const EVENT_33D ; 33D, (D7AE, bit 5)
- const EVENT_33E ; 33E, (D7AE, bit 6)
- const EVENT_33F ; 33F, (D7AE, bit 7)
- const EVENT_GOT_TM31 ; 340, (D7AF, bit 0)
- const EVENT_341 ; 341, (D7AF, bit 1)
- const EVENT_342 ; 342, (D7AF, bit 2)
- const EVENT_343 ; 343, (D7AF, bit 3)
- const EVENT_344 ; 344, (D7AF, bit 4)
- const EVENT_345 ; 345, (D7AF, bit 5)
- const EVENT_346 ; 346, (D7AF, bit 6)
- const EVENT_347 ; 347, (D7AF, bit 7)
- const EVENT_348 ; 348, (D7B0, bit 0)
- const EVENT_349 ; 349, (D7B0, bit 1)
- const EVENT_34A ; 34A, (D7B0, bit 2)
- const EVENT_34B ; 34B, (D7B0, bit 3)
- const EVENT_34C ; 34C, (D7B0, bit 4)
- const EVENT_34D ; 34D, (D7B0, bit 5)
- const EVENT_34E ; 34E, (D7B0, bit 6)
- const EVENT_34F ; 34F, (D7B0, bit 7)
- const EVENT_DEFEATED_FIGHTING_DOJO ; 350, (D7B1, bit 0)
- const EVENT_BEAT_KARATE_MASTER ; 351, (D7B1, bit 1)
- const EVENT_BEAT_FIGHTING_DOJO_TRAINER_0 ; 352, (D7B1, bit 2)
- const EVENT_BEAT_FIGHTING_DOJO_TRAINER_1 ; 353, (D7B1, bit 3)
- const EVENT_BEAT_FIGHTING_DOJO_TRAINER_2 ; 354, (D7B1, bit 4)
- const EVENT_BEAT_FIGHTING_DOJO_TRAINER_3 ; 355, (D7B1, bit 5)
- const EVENT_GOT_HITMONLEE ; 356, (D7B1, bit 6)
- const EVENT_GOT_HITMONCHAN ; 357, (D7B1, bit 7)
- const EVENT_358 ; 358, (D7B2, bit 0)
- const EVENT_359 ; 359, (D7B2, bit 1)
- const EVENT_35A ; 35A, (D7B2, bit 2)
- const EVENT_35B ; 35B, (D7B2, bit 3)
- const EVENT_35C ; 35C, (D7B2, bit 4)
- const EVENT_35D ; 35D, (D7B2, bit 5)
- const EVENT_35E ; 35E, (D7B2, bit 6)
- const EVENT_35F ; 35F, (D7B2, bit 7)
- const EVENT_GOT_TM46 ; 360, (D7B3, bit 0)
- const EVENT_BEAT_SABRINA ; 361, (D7B3, bit 1)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_0 ; 362, (D7B3, bit 2)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_1 ; 363, (D7B3, bit 3)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_2 ; 364, (D7B3, bit 4)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_3 ; 365, (D7B3, bit 5)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_4 ; 366, (D7B3, bit 6)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_5 ; 367, (D7B3, bit 7)
- const EVENT_BEAT_SAFFRON_GYM_TRAINER_6 ; 368, (D7B4, bit 0)
- const EVENT_369 ; 369, (D7B4, bit 1)
- const EVENT_36A ; 36A, (D7B4, bit 2)
- const EVENT_36B ; 36B, (D7B4, bit 3)
- const EVENT_36C ; 36C, (D7B4, bit 4)
- const EVENT_36D ; 36D, (D7B4, bit 5)
- const EVENT_36E ; 36E, (D7B4, bit 6)
- const EVENT_36F ; 36F, (D7B4, bit 7)
- const EVENT_370 ; 370, (D7B5, bit 0)
- const EVENT_371 ; 371, (D7B5, bit 1)
- const EVENT_372 ; 372, (D7B5, bit 2)
- const EVENT_373 ; 373, (D7B5, bit 3)
- const EVENT_374 ; 374, (D7B5, bit 4)
- const EVENT_375 ; 375, (D7B5, bit 5)
- const EVENT_376 ; 376, (D7B5, bit 6)
- const EVENT_377 ; 377, (D7B5, bit 7)
- const EVENT_378 ; 378, (D7B6, bit 0)
- const EVENT_379 ; 379, (D7B6, bit 1)
- const EVENT_37A ; 37A, (D7B6, bit 2)
- const EVENT_37B ; 37B, (D7B6, bit 3)
- const EVENT_37C ; 37C, (D7B6, bit 4)
- const EVENT_37D ; 37D, (D7B6, bit 5)
- const EVENT_37E ; 37E, (D7B6, bit 6)
- const EVENT_37F ; 37F, (D7B6, bit 7)
- const EVENT_380 ; 380, (D7B7, bit 0)
- const EVENT_381 ; 381, (D7B7, bit 1)
- const EVENT_382 ; 382, (D7B7, bit 2)
- const EVENT_383 ; 383, (D7B7, bit 3)
- const EVENT_384 ; 384, (D7B7, bit 4)
- const EVENT_385 ; 385, (D7B7, bit 5)
- const EVENT_386 ; 386, (D7B7, bit 6)
- const EVENT_387 ; 387, (D7B7, bit 7)
- const EVENT_388 ; 388, (D7B8, bit 0)
- const EVENT_389 ; 389, (D7B8, bit 1)
- const EVENT_38A ; 38A, (D7B8, bit 2)
- const EVENT_38B ; 38B, (D7B8, bit 3)
- const EVENT_38C ; 38C, (D7B8, bit 4)
- const EVENT_38D ; 38D, (D7B8, bit 5)
- const EVENT_38E ; 38E, (D7B8, bit 6)
- const EVENT_38F ; 38F, (D7B8, bit 7)
- const EVENT_390 ; 390, (D7B9, bit 0)
- const EVENT_391 ; 391, (D7B9, bit 1)
- const EVENT_392 ; 392, (D7B9, bit 2)
- const EVENT_393 ; 393, (D7B9, bit 3)
- const EVENT_394 ; 394, (D7B9, bit 4)
- const EVENT_395 ; 395, (D7B9, bit 5)
- const EVENT_396 ; 396, (D7B9, bit 6)
- const EVENT_SILPH_CO_RECEPTIONIST_AT_DESK ; 397, (D7B9, bit 7)
- const EVENT_398 ; 398, (D7BA, bit 0)
- const EVENT_399 ; 399, (D7BA, bit 1)
- const EVENT_39A ; 39A, (D7BA, bit 2)
- const EVENT_39B ; 39B, (D7BA, bit 3)
- const EVENT_39C ; 39C, (D7BA, bit 4)
- const EVENT_39D ; 39D, (D7BA, bit 5)
- const EVENT_39E ; 39E, (D7BA, bit 6)
- const EVENT_39F ; 39F, (D7BA, bit 7)
- const EVENT_3A0 ; 3A0, (D7BB, bit 0)
- const EVENT_3A1 ; 3A1, (D7BB, bit 1)
- const EVENT_3A2 ; 3A2, (D7BB, bit 2)
- const EVENT_3A3 ; 3A3, (D7BB, bit 3)
- const EVENT_3A4 ; 3A4, (D7BB, bit 4)
- const EVENT_3A5 ; 3A5, (D7BB, bit 5)
- const EVENT_3A6 ; 3A6, (D7BB, bit 6)
- const EVENT_3A7 ; 3A7, (D7BB, bit 7)
- const EVENT_3A8 ; 3A8, (D7BC, bit 0)
- const EVENT_3A9 ; 3A9, (D7BC, bit 1)
- const EVENT_3AA ; 3AA, (D7BC, bit 2)
- const EVENT_3AB ; 3AB, (D7BC, bit 3)
- const EVENT_3AC ; 3AC, (D7BC, bit 4)
- const EVENT_3AD ; 3AD, (D7BC, bit 5)
- const EVENT_3AE ; 3AE, (D7BC, bit 6)
- const EVENT_3AF ; 3AF, (D7BC, bit 7)
- const EVENT_GOT_TM29 ; 3B0, (D7BD, bit 0)
- const EVENT_3B1 ; 3B1, (D7BD, bit 1)
- const EVENT_3B2 ; 3B2, (D7BD, bit 2)
- const EVENT_3B3 ; 3B3, (D7BD, bit 3)
- const EVENT_3B4 ; 3B4, (D7BD, bit 4)
- const EVENT_3B5 ; 3B5, (D7BD, bit 5)
- const EVENT_3B6 ; 3B6, (D7BD, bit 6)
- const EVENT_3B7 ; 3B7, (D7BD, bit 7)
- const EVENT_3B8 ; 3B8, (D7BE, bit 0)
- const EVENT_3B9 ; 3B9, (D7BE, bit 1)
- const EVENT_3BA ; 3BA, (D7BE, bit 2)
- const EVENT_3BB ; 3BB, (D7BE, bit 3)
- const EVENT_3BC ; 3BC, (D7BE, bit 4)
- const EVENT_3BD ; 3BD, (D7BE, bit 5)
- const EVENT_3BE ; 3BE, (D7BE, bit 6)
- const EVENT_3BF ; 3BF, (D7BE, bit 7)
- const EVENT_GOT_POTION_SAMPLE ; 3C0, (D7BF, bit 0)
- const EVENT_3C1 ; 3C1, (D7BF, bit 1)
- const EVENT_3C2 ; 3C2, (D7BF, bit 2)
- const EVENT_3C3 ; 3C3, (D7BF, bit 3)
- const EVENT_3C4 ; 3C4, (D7BF, bit 4)
- const EVENT_3C5 ; 3C5, (D7BF, bit 5)
- const EVENT_3C6 ; 3C6, (D7BF, bit 6)
- const EVENT_3C7 ; 3C7, (D7BF, bit 7)
- const EVENT_3C8 ; 3C8, (D7C0, bit 0)
- const EVENT_3C9 ; 3C9, (D7C0, bit 1)
- const EVENT_3CA ; 3CA, (D7C0, bit 2)
- const EVENT_3CB ; 3CB, (D7C0, bit 3)
- const EVENT_3CC ; 3CC, (D7C0, bit 4)
- const EVENT_3CD ; 3CD, (D7C0, bit 5)
- const EVENT_3CE ; 3CE, (D7C0, bit 6)
- const EVENT_3CF ; 3CF, (D7C0, bit 7)
- const EVENT_3D0 ; 3D0, (D7C1, bit 0)
- const EVENT_3D1 ; 3D1, (D7C1, bit 1)
- const EVENT_3D2 ; 3D2, (D7C1, bit 2)
- const EVENT_3D3 ; 3D3, (D7C1, bit 3)
- const EVENT_3D4 ; 3D4, (D7C1, bit 4)
- const EVENT_3D5 ; 3D5, (D7C1, bit 5)
- const EVENT_3D6 ; 3D6, (D7C1, bit 6)
- const EVENT_3D7 ; 3D7, (D7C1, bit 7)
- const EVENT_GOT_HM05 ; 3D8, (D7C2, bit 0)
- const EVENT_3D9 ; 3D9, (D7C2, bit 1)
- const EVENT_3DA ; 3DA, (D7C2, bit 2)
- const EVENT_3DB ; 3DB, (D7C2, bit 3)
- const EVENT_3DC ; 3DC, (D7C2, bit 4)
- const EVENT_3DD ; 3DD, (D7C2, bit 5)
- const EVENT_3DE ; 3DE, (D7C2, bit 6)
- const EVENT_3DF ; 3DF, (D7C2, bit 7)
- const EVENT_3E0 ; 3E0, (D7C3, bit 0)
- const EVENT_3E1 ; 3E1, (D7C3, bit 1)
- const EVENT_BEAT_ROUTE_3_TRAINER_0 ; 3E2, (D7C3, bit 2)
- const EVENT_BEAT_ROUTE_3_TRAINER_1 ; 3E3, (D7C3, bit 3)
- const EVENT_BEAT_ROUTE_3_TRAINER_2 ; 3E4, (D7C3, bit 4)
- const EVENT_BEAT_ROUTE_3_TRAINER_3 ; 3E5, (D7C3, bit 5)
- const EVENT_BEAT_ROUTE_3_TRAINER_4 ; 3E6, (D7C3, bit 6)
- const EVENT_BEAT_ROUTE_3_TRAINER_5 ; 3E7, (D7C3, bit 7)
- const EVENT_BEAT_ROUTE_3_TRAINER_6 ; 3E8, (D7C4, bit 0)
- const EVENT_BEAT_ROUTE_3_TRAINER_7 ; 3E9, (D7C4, bit 1)
- const EVENT_3EA ; 3EA, (D7C4, bit 2)
- const EVENT_3EB ; 3EB, (D7C4, bit 3)
- const EVENT_3EC ; 3EC, (D7C4, bit 4)
- const EVENT_3ED ; 3ED, (D7C4, bit 5)
- const EVENT_3EE ; 3EE, (D7C4, bit 6)
- const EVENT_3EF ; 3EF, (D7C4, bit 7)
- const EVENT_3F0 ; 3F0, (D7C5, bit 0)
- const EVENT_3F1 ; 3F1, (D7C5, bit 1)
- const EVENT_BEAT_ROUTE_4_TRAINER_0 ; 3F2, (D7C5, bit 2)
- const EVENT_3F3 ; 3F3, (D7C5, bit 3)
- const EVENT_3F4 ; 3F4, (D7C5, bit 4)
- const EVENT_3F5 ; 3F5, (D7C5, bit 5)
- const EVENT_3F6 ; 3F6, (D7C5, bit 6)
- const EVENT_3F7 ; 3F7, (D7C5, bit 7)
- const EVENT_3F8 ; 3F8, (D7C6, bit 0)
- const EVENT_3F9 ; 3F9, (D7C6, bit 1)
- const EVENT_3FA ; 3FA, (D7C6, bit 2)
- const EVENT_3FB ; 3FB, (D7C6, bit 3)
- const EVENT_3FC ; 3FC, (D7C6, bit 4)
- const EVENT_3FD ; 3FD, (D7C6, bit 5)
- const EVENT_3FE ; 3FE, (D7C6, bit 6)
- const EVENT_BOUGHT_MAGIKARP ; 3FF, (D7C6, bit 7)
- const EVENT_400 ; 400, (D7C7, bit 0)
- const EVENT_401 ; 401, (D7C7, bit 1)
- const EVENT_402 ; 402, (D7C7, bit 2)
- const EVENT_403 ; 403, (D7C7, bit 3)
- const EVENT_404 ; 404, (D7C7, bit 4)
- const EVENT_405 ; 405, (D7C7, bit 5)
- const EVENT_406 ; 406, (D7C7, bit 6)
- const EVENT_407 ; 407, (D7C7, bit 7)
- const EVENT_408 ; 408, (D7C8, bit 0)
- const EVENT_409 ; 409, (D7C8, bit 1)
- const EVENT_40A ; 40A, (D7C8, bit 2)
- const EVENT_40B ; 40B, (D7C8, bit 3)
- const EVENT_40C ; 40C, (D7C8, bit 4)
- const EVENT_40D ; 40D, (D7C8, bit 5)
- const EVENT_40E ; 40E, (D7C8, bit 6)
- const EVENT_40F ; 40F, (D7C8, bit 7)
- const EVENT_410 ; 410, (D7C9, bit 0)
- const EVENT_BEAT_ROUTE_6_TRAINER_0 ; 411, (D7C9, bit 1)
- const EVENT_BEAT_ROUTE_6_TRAINER_1 ; 412, (D7C9, bit 2)
- const EVENT_BEAT_ROUTE_6_TRAINER_2 ; 413, (D7C9, bit 3)
- const EVENT_BEAT_ROUTE_6_TRAINER_3 ; 414, (D7C9, bit 4)
- const EVENT_BEAT_ROUTE_6_TRAINER_4 ; 415, (D7C9, bit 5)
- const EVENT_BEAT_ROUTE_6_TRAINER_5 ; 416, (D7C9, bit 6)
- const EVENT_417 ; 417, (D7C9, bit 7)
- const EVENT_418 ; 418, (D7CA, bit 0)
- const EVENT_419 ; 419, (D7CA, bit 1)
- const EVENT_41A ; 41A, (D7CA, bit 2)
- const EVENT_41B ; 41B, (D7CA, bit 3)
- const EVENT_41C ; 41C, (D7CA, bit 4)
- const EVENT_41D ; 41D, (D7CA, bit 5)
- const EVENT_41E ; 41E, (D7CA, bit 6)
- const EVENT_41F ; 41F, (D7CA, bit 7)
- const EVENT_420 ; 420, (D7CB, bit 0)
- const EVENT_421 ; 421, (D7CB, bit 1)
- const EVENT_422 ; 422, (D7CB, bit 2)
- const EVENT_423 ; 423, (D7CB, bit 3)
- const EVENT_424 ; 424, (D7CB, bit 4)
- const EVENT_425 ; 425, (D7CB, bit 5)
- const EVENT_426 ; 426, (D7CB, bit 6)
- const EVENT_427 ; 427, (D7CB, bit 7)
- const EVENT_428 ; 428, (D7CC, bit 0)
- const EVENT_429 ; 429, (D7CC, bit 1)
- const EVENT_42A ; 42A, (D7CC, bit 2)
- const EVENT_42B ; 42B, (D7CC, bit 3)
- const EVENT_42C ; 42C, (D7CC, bit 4)
- const EVENT_42D ; 42D, (D7CC, bit 5)
- const EVENT_42E ; 42E, (D7CC, bit 6)
- const EVENT_42F ; 42F, (D7CC, bit 7)
- const EVENT_430 ; 430, (D7CD, bit 0)
- const EVENT_BEAT_ROUTE_8_TRAINER_0 ; 431, (D7CD, bit 1)
- const EVENT_BEAT_ROUTE_8_TRAINER_1 ; 432, (D7CD, bit 2)
- const EVENT_BEAT_ROUTE_8_TRAINER_2 ; 433, (D7CD, bit 3)
- const EVENT_BEAT_ROUTE_8_TRAINER_3 ; 434, (D7CD, bit 4)
- const EVENT_BEAT_ROUTE_8_TRAINER_4 ; 435, (D7CD, bit 5)
- const EVENT_BEAT_ROUTE_8_TRAINER_5 ; 436, (D7CD, bit 6)
- const EVENT_BEAT_ROUTE_8_TRAINER_6 ; 437, (D7CD, bit 7)
- const EVENT_BEAT_ROUTE_8_TRAINER_7 ; 438, (D7CE, bit 0)
- const EVENT_BEAT_ROUTE_8_TRAINER_8 ; 439, (D7CE, bit 1)
- const EVENT_43A ; 43A, (D7CE, bit 2)
- const EVENT_43B ; 43B, (D7CE, bit 3)
- const EVENT_43C ; 43C, (D7CE, bit 4)
- const EVENT_43D ; 43D, (D7CE, bit 5)
- const EVENT_43E ; 43E, (D7CE, bit 6)
- const EVENT_43F ; 43F, (D7CE, bit 7)
- const EVENT_440 ; 440, (D7CF, bit 0)
- const EVENT_BEAT_ROUTE_9_TRAINER_0 ; 441, (D7CF, bit 1)
- const EVENT_BEAT_ROUTE_9_TRAINER_1 ; 442, (D7CF, bit 2)
- const EVENT_BEAT_ROUTE_9_TRAINER_2 ; 443, (D7CF, bit 3)
- const EVENT_BEAT_ROUTE_9_TRAINER_3 ; 444, (D7CF, bit 4)
- const EVENT_BEAT_ROUTE_9_TRAINER_4 ; 445, (D7CF, bit 5)
- const EVENT_BEAT_ROUTE_9_TRAINER_5 ; 446, (D7CF, bit 6)
- const EVENT_BEAT_ROUTE_9_TRAINER_6 ; 447, (D7CF, bit 7)
- const EVENT_BEAT_ROUTE_9_TRAINER_7 ; 448, (D7D0, bit 0)
- const EVENT_BEAT_ROUTE_9_TRAINER_8 ; 449, (D7D0, bit 1)
- const EVENT_44A ; 44A, (D7D0, bit 2)
- const EVENT_44B ; 44B, (D7D0, bit 3)
- const EVENT_44C ; 44C, (D7D0, bit 4)
- const EVENT_44D ; 44D, (D7D0, bit 5)
- const EVENT_44E ; 44E, (D7D0, bit 6)
- const EVENT_44F ; 44F, (D7D0, bit 7)
- const EVENT_450 ; 450, (D7D1, bit 0)
- const EVENT_BEAT_ROUTE_10_TRAINER_0 ; 451, (D7D1, bit 1)
- const EVENT_BEAT_ROUTE_10_TRAINER_1 ; 452, (D7D1, bit 2)
- const EVENT_BEAT_ROUTE_10_TRAINER_2 ; 453, (D7D1, bit 3)
- const EVENT_BEAT_ROUTE_10_TRAINER_3 ; 454, (D7D1, bit 4)
- const EVENT_BEAT_ROUTE_10_TRAINER_4 ; 455, (D7D1, bit 5)
- const EVENT_BEAT_ROUTE_10_TRAINER_5 ; 456, (D7D1, bit 6)
- const EVENT_457 ; 457, (D7D1, bit 7)
- const EVENT_458 ; 458, (D7D2, bit 0)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_0 ; 459, (D7D2, bit 1)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_1 ; 45A, (D7D2, bit 2)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_2 ; 45B, (D7D2, bit 3)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_3 ; 45C, (D7D2, bit 4)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_4 ; 45D, (D7D2, bit 5)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_5 ; 45E, (D7D2, bit 6)
- const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_6 ; 45F, (D7D2, bit 7)
- const EVENT_460 ; 460, (D7D3, bit 0)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_0 ; 461, (D7D3, bit 1)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_1 ; 462, (D7D3, bit 2)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_2 ; 463, (D7D3, bit 3)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_3 ; 464, (D7D3, bit 4)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_4 ; 465, (D7D3, bit 5)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_5 ; 466, (D7D3, bit 6)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_6 ; 467, (D7D3, bit 7)
- const EVENT_BEAT_POWER_PLANT_VOLTORB_7 ; 468, (D7D4, bit 0)
- const EVENT_BEAT_ZAPDOS ; 469, (D7D4, bit 1)
- const EVENT_46A ; 46A, (D7D4, bit 2)
- const EVENT_46B ; 46B, (D7D4, bit 3)
- const EVENT_46C ; 46C, (D7D4, bit 4)
- const EVENT_46D ; 46D, (D7D4, bit 5)
- const EVENT_46E ; 46E, (D7D4, bit 6)
- const EVENT_46F ; 46F, (D7D4, bit 7)
- const EVENT_470 ; 470, (D7D5, bit 0)
- const EVENT_BEAT_ROUTE_11_TRAINER_0 ; 471, (D7D5, bit 1)
- const EVENT_BEAT_ROUTE_11_TRAINER_1 ; 472, (D7D5, bit 2)
- const EVENT_BEAT_ROUTE_11_TRAINER_2 ; 473, (D7D5, bit 3)
- const EVENT_BEAT_ROUTE_11_TRAINER_3 ; 474, (D7D5, bit 4)
- const EVENT_BEAT_ROUTE_11_TRAINER_4 ; 475, (D7D5, bit 5)
- const EVENT_BEAT_ROUTE_11_TRAINER_5 ; 476, (D7D5, bit 6)
- const EVENT_BEAT_ROUTE_11_TRAINER_6 ; 477, (D7D5, bit 7)
- const EVENT_BEAT_ROUTE_11_TRAINER_7 ; 478, (D7D6, bit 0)
- const EVENT_BEAT_ROUTE_11_TRAINER_8 ; 479, (D7D6, bit 1)
- const EVENT_BEAT_ROUTE_11_TRAINER_9 ; 47A, (D7D6, bit 2)
- const EVENT_47B ; 47B, (D7D6, bit 3)
- const EVENT_47C ; 47C, (D7D6, bit 4)
- const EVENT_47D ; 47D, (D7D6, bit 5)
- const EVENT_47E ; 47E, (D7D6, bit 6)
- const EVENT_GOT_ITEMFINDER ; 47F, (D7D6, bit 7)
- const EVENT_GOT_TM39 ; 480, (D7D7, bit 0)
- const EVENT_481 ; 481, (D7D7, bit 1)
- const EVENT_BEAT_ROUTE_12_TRAINER_0 ; 482, (D7D7, bit 2)
- const EVENT_BEAT_ROUTE_12_TRAINER_1 ; 483, (D7D7, bit 3)
- const EVENT_BEAT_ROUTE_12_TRAINER_2 ; 484, (D7D7, bit 4)
- const EVENT_BEAT_ROUTE_12_TRAINER_3 ; 485, (D7D7, bit 5)
- const EVENT_BEAT_ROUTE_12_TRAINER_4 ; 486, (D7D7, bit 6)
- const EVENT_BEAT_ROUTE_12_TRAINER_5 ; 487, (D7D7, bit 7)
- const EVENT_BEAT_ROUTE_12_TRAINER_6 ; 488, (D7D8, bit 0)
- const EVENT_489 ; 489, (D7D8, bit 1)
- const EVENT_48A ; 48A, (D7D8, bit 2)
- const EVENT_48B ; 48B, (D7D8, bit 3)
- const EVENT_48C ; 48C, (D7D8, bit 4)
- const EVENT_48D ; 48D, (D7D8, bit 5)
- const EVENT_FIGHT_ROUTE12_SNORLAX ; 48E, (D7D8, bit 6)
- const EVENT_BEAT_ROUTE12_SNORLAX ; 48F, (D7D8, bit 7)
- const EVENT_490 ; 490, (D7D9, bit 0)
- const EVENT_BEAT_ROUTE_13_TRAINER_0 ; 491, (D7D9, bit 1)
- const EVENT_BEAT_ROUTE_13_TRAINER_1 ; 492, (D7D9, bit 2)
- const EVENT_BEAT_ROUTE_13_TRAINER_2 ; 493, (D7D9, bit 3)
- const EVENT_BEAT_ROUTE_13_TRAINER_3 ; 494, (D7D9, bit 4)
- const EVENT_BEAT_ROUTE_13_TRAINER_4 ; 495, (D7D9, bit 5)
- const EVENT_BEAT_ROUTE_13_TRAINER_5 ; 496, (D7D9, bit 6)
- const EVENT_BEAT_ROUTE_13_TRAINER_6 ; 497, (D7D9, bit 7)
- const EVENT_BEAT_ROUTE_13_TRAINER_7 ; 498, (D7DA, bit 0)
- const EVENT_BEAT_ROUTE_13_TRAINER_8 ; 499, (D7DA, bit 1)
- const EVENT_BEAT_ROUTE_13_TRAINER_9 ; 49A, (D7DA, bit 2)
- const EVENT_49B ; 49B, (D7DA, bit 3)
- const EVENT_49C ; 49C, (D7DA, bit 4)
- const EVENT_49D ; 49D, (D7DA, bit 5)
- const EVENT_49E ; 49E, (D7DA, bit 6)
- const EVENT_49F ; 49F, (D7DA, bit 7)
- const EVENT_4A0 ; 4A0, (D7DB, bit 0)
- const EVENT_BEAT_ROUTE_14_TRAINER_0 ; 4A1, (D7DB, bit 1)
- const EVENT_BEAT_ROUTE_14_TRAINER_1 ; 4A2, (D7DB, bit 2)
- const EVENT_BEAT_ROUTE_14_TRAINER_2 ; 4A3, (D7DB, bit 3)
- const EVENT_BEAT_ROUTE_14_TRAINER_3 ; 4A4, (D7DB, bit 4)
- const EVENT_BEAT_ROUTE_14_TRAINER_4 ; 4A5, (D7DB, bit 5)
- const EVENT_BEAT_ROUTE_14_TRAINER_5 ; 4A6, (D7DB, bit 6)
- const EVENT_BEAT_ROUTE_14_TRAINER_6 ; 4A7, (D7DB, bit 7)
- const EVENT_BEAT_ROUTE_14_TRAINER_7 ; 4A8, (D7DC, bit 0)
- const EVENT_BEAT_ROUTE_14_TRAINER_8 ; 4A9, (D7DC, bit 1)
- const EVENT_BEAT_ROUTE_14_TRAINER_9 ; 4AA, (D7DC, bit 2)
- const EVENT_4AB ; 4AB, (D7DC, bit 3)
- const EVENT_4AC ; 4AC, (D7DC, bit 4)
- const EVENT_4AD ; 4AD, (D7DC, bit 5)
- const EVENT_4AE ; 4AE, (D7DC, bit 6)
- const EVENT_4AF ; 4AF, (D7DC, bit 7)
- const EVENT_GOT_EXP_ALL ; 4B0, (D7DD, bit 0)
- const EVENT_BEAT_ROUTE_15_TRAINER_0 ; 4B1, (D7DD, bit 1)
- const EVENT_BEAT_ROUTE_15_TRAINER_1 ; 4B2, (D7DD, bit 2)
- const EVENT_BEAT_ROUTE_15_TRAINER_2 ; 4B3, (D7DD, bit 3)
- const EVENT_BEAT_ROUTE_15_TRAINER_3 ; 4B4, (D7DD, bit 4)
- const EVENT_BEAT_ROUTE_15_TRAINER_4 ; 4B5, (D7DD, bit 5)
- const EVENT_BEAT_ROUTE_15_TRAINER_5 ; 4B6, (D7DD, bit 6)
- const EVENT_BEAT_ROUTE_15_TRAINER_6 ; 4B7, (D7DD, bit 7)
- const EVENT_BEAT_ROUTE_15_TRAINER_7 ; 4B8, (D7DE, bit 0)
- const EVENT_BEAT_ROUTE_15_TRAINER_8 ; 4B9, (D7DE, bit 1)
- const EVENT_BEAT_ROUTE_15_TRAINER_9 ; 4BA, (D7DE, bit 2)
- const EVENT_4BB ; 4BB, (D7DE, bit 3)
- const EVENT_4BC ; 4BC, (D7DE, bit 4)
- const EVENT_4BD ; 4BD, (D7DE, bit 5)
- const EVENT_4BE ; 4BE, (D7DE, bit 6)
- const EVENT_4BF ; 4BF, (D7DE, bit 7)
- const EVENT_4C0 ; 4C0, (D7DF, bit 0)
- const EVENT_BEAT_ROUTE_16_TRAINER_0 ; 4C1, (D7DF, bit 1)
- const EVENT_BEAT_ROUTE_16_TRAINER_1 ; 4C2, (D7DF, bit 2)
- const EVENT_BEAT_ROUTE_16_TRAINER_2 ; 4C3, (D7DF, bit 3)
- const EVENT_BEAT_ROUTE_16_TRAINER_3 ; 4C4, (D7DF, bit 4)
- const EVENT_BEAT_ROUTE_16_TRAINER_4 ; 4C5, (D7DF, bit 5)
- const EVENT_BEAT_ROUTE_16_TRAINER_5 ; 4C6, (D7DF, bit 6)
- const EVENT_4C7 ; 4C7, (D7DF, bit 7)
- const EVENT_FIGHT_ROUTE16_SNORLAX ; 4C8, (D7E0, bit 0)
- const EVENT_BEAT_ROUTE16_SNORLAX ; 4C9, (D7E0, bit 1)
- const EVENT_4CA ; 4CA, (D7E0, bit 2)
- const EVENT_4CB ; 4CB, (D7E0, bit 3)
- const EVENT_4CC ; 4CC, (D7E0, bit 4)
- const EVENT_4CD ; 4CD, (D7E0, bit 5)
- const EVENT_GOT_HM02 ; 4CE, (D7E0, bit 6)
- const EVENT_RESCUED_MR_FUJI ; 4CF, (D7E0, bit 7)
- const EVENT_4D0 ; 4D0, (D7E1, bit 0)
- const EVENT_BEAT_ROUTE_17_TRAINER_0 ; 4D1, (D7E1, bit 1)
- const EVENT_BEAT_ROUTE_17_TRAINER_1 ; 4D2, (D7E1, bit 2)
- const EVENT_BEAT_ROUTE_17_TRAINER_2 ; 4D3, (D7E1, bit 3)
- const EVENT_BEAT_ROUTE_17_TRAINER_3 ; 4D4, (D7E1, bit 4)
- const EVENT_BEAT_ROUTE_17_TRAINER_4 ; 4D5, (D7E1, bit 5)
- const EVENT_BEAT_ROUTE_17_TRAINER_5 ; 4D6, (D7E1, bit 6)
- const EVENT_BEAT_ROUTE_17_TRAINER_6 ; 4D7, (D7E1, bit 7)
- const EVENT_BEAT_ROUTE_17_TRAINER_7 ; 4D8, (D7E2, bit 0)
- const EVENT_BEAT_ROUTE_17_TRAINER_8 ; 4D9, (D7E2, bit 1)
- const EVENT_BEAT_ROUTE_17_TRAINER_9 ; 4DA, (D7E2, bit 2)
- const EVENT_4DB ; 4DB, (D7E2, bit 3)
- const EVENT_4DC ; 4DC, (D7E2, bit 4)
- const EVENT_4DD ; 4DD, (D7E2, bit 5)
- const EVENT_4DE ; 4DE, (D7E2, bit 6)
- const EVENT_4DF ; 4DF, (D7E2, bit 7)
- const EVENT_4E0 ; 4E0, (D7E3, bit 0)
- const EVENT_BEAT_ROUTE_18_TRAINER_0 ; 4E1, (D7E3, bit 1)
- const EVENT_BEAT_ROUTE_18_TRAINER_1 ; 4E2, (D7E3, bit 2)
- const EVENT_BEAT_ROUTE_18_TRAINER_2 ; 4E3, (D7E3, bit 3)
- const EVENT_4E4 ; 4E4, (D7E3, bit 4)
- const EVENT_4E5 ; 4E5, (D7E3, bit 5)
- const EVENT_4E6 ; 4E6, (D7E3, bit 6)
- const EVENT_4E7 ; 4E7, (D7E3, bit 7)
- const EVENT_4E8 ; 4E8, (D7E4, bit 0)
- const EVENT_4E9 ; 4E9, (D7E4, bit 1)
- const EVENT_4EA ; 4EA, (D7E4, bit 2)
- const EVENT_4EB ; 4EB, (D7E4, bit 3)
- const EVENT_4EC ; 4EC, (D7E4, bit 4)
- const EVENT_4ED ; 4ED, (D7E4, bit 5)
- const EVENT_4EE ; 4EE, (D7E4, bit 6)
- const EVENT_4EF ; 4EF, (D7E4, bit 7)
- const EVENT_4F0 ; 4F0, (D7E5, bit 0)
- const EVENT_BEAT_ROUTE_19_TRAINER_0 ; 4F1, (D7E5, bit 1)
- const EVENT_BEAT_ROUTE_19_TRAINER_1 ; 4F2, (D7E5, bit 2)
- const EVENT_BEAT_ROUTE_19_TRAINER_2 ; 4F3, (D7E5, bit 3)
- const EVENT_BEAT_ROUTE_19_TRAINER_3 ; 4F4, (D7E5, bit 4)
- const EVENT_BEAT_ROUTE_19_TRAINER_4 ; 4F5, (D7E5, bit 5)
- const EVENT_BEAT_ROUTE_19_TRAINER_5 ; 4F6, (D7E5, bit 6)
- const EVENT_BEAT_ROUTE_19_TRAINER_6 ; 4F7, (D7E5, bit 7)
- const EVENT_BEAT_ROUTE_19_TRAINER_7 ; 4F8, (D7E6, bit 0)
- const EVENT_BEAT_ROUTE_19_TRAINER_8 ; 4F9, (D7E6, bit 1)
- const EVENT_BEAT_ROUTE_19_TRAINER_9 ; 4FA, (D7E6, bit 2)
- const EVENT_4FB ; 4FB, (D7E6, bit 3)
- const EVENT_4FC ; 4FC, (D7E6, bit 4)
- const EVENT_4FD ; 4FD, (D7E6, bit 5)
- const EVENT_4FE ; 4FE, (D7E6, bit 6)
- const EVENT_4FF ; 4FF, (D7E6, bit 7)
- const EVENT_IN_SEAFOAM_ISLANDS ; 500, (D7E7, bit 0)
- const EVENT_BEAT_ROUTE_20_TRAINER_0 ; 501, (D7E7, bit 1)
- const EVENT_BEAT_ROUTE_20_TRAINER_1 ; 502, (D7E7, bit 2)
- const EVENT_BEAT_ROUTE_20_TRAINER_2 ; 503, (D7E7, bit 3)
- const EVENT_BEAT_ROUTE_20_TRAINER_3 ; 504, (D7E7, bit 4)
- const EVENT_BEAT_ROUTE_20_TRAINER_4 ; 505, (D7E7, bit 5)
- const EVENT_BEAT_ROUTE_20_TRAINER_5 ; 506, (D7E7, bit 6)
- const EVENT_BEAT_ROUTE_20_TRAINER_6 ; 507, (D7E7, bit 7)
- const EVENT_BEAT_ROUTE_20_TRAINER_7 ; 508, (D7E8, bit 0)
- const EVENT_BEAT_ROUTE_20_TRAINER_8 ; 509, (D7E8, bit 1)
- const EVENT_BEAT_ROUTE_20_TRAINER_9 ; 50A, (D7E8, bit 2)
- const EVENT_50B ; 50B, (D7E8, bit 3)
- const EVENT_50C ; 50C, (D7E8, bit 4)
- const EVENT_50D ; 50D, (D7E8, bit 5)
- const EVENT_SEAFOAM1_BOULDER1_DOWN_HOLE ; 50E, (D7E8, bit 6)
- const EVENT_SEAFOAM1_BOULDER2_DOWN_HOLE ; 50F, (D7E8, bit 7)
- const EVENT_510 ; 510, (D7E9, bit 0)
- const EVENT_BEAT_ROUTE_21_TRAINER_0 ; 511, (D7E9, bit 1)
- const EVENT_BEAT_ROUTE_21_TRAINER_1 ; 512, (D7E9, bit 2)
- const EVENT_BEAT_ROUTE_21_TRAINER_2 ; 513, (D7E9, bit 3)
- const EVENT_BEAT_ROUTE_21_TRAINER_3 ; 514, (D7E9, bit 4)
- const EVENT_BEAT_ROUTE_21_TRAINER_4 ; 515, (D7E9, bit 5)
- const EVENT_BEAT_ROUTE_21_TRAINER_5 ; 516, (D7E9, bit 6)
- const EVENT_BEAT_ROUTE_21_TRAINER_6 ; 517, (D7E9, bit 7)
- const EVENT_BEAT_ROUTE_21_TRAINER_7 ; 518, (D7EA, bit 0)
- const EVENT_BEAT_ROUTE_21_TRAINER_8 ; 519, (D7EA, bit 1)
- const EVENT_51A ; 51A, (D7EA, bit 2)
- const EVENT_51B ; 51B, (D7EA, bit 3)
- const EVENT_51C ; 51C, (D7EA, bit 4)
- const EVENT_51D ; 51D, (D7EA, bit 5)
- const EVENT_51E ; 51E, (D7EA, bit 6)
- const EVENT_51F ; 51F, (D7EA, bit 7)
- const EVENT_1ST_ROUTE22_RIVAL_BATTLE ; 520, (D7EB, bit 0)
- const EVENT_2ND_ROUTE22_RIVAL_BATTLE ; 521, (D7EB, bit 1)
- const EVENT_522 ; 522, (D7EB, bit 2)
- const EVENT_523 ; 523, (D7EB, bit 3)
- const EVENT_524 ; 524, (D7EB, bit 4)
- const EVENT_BEAT_ROUTE22_RIVAL_1ST_BATTLE ; 525, (D7EB, bit 5)
- const EVENT_BEAT_ROUTE22_RIVAL_2ND_BATTLE ; 526, (D7EB, bit 6)
- const EVENT_ROUTE22_RIVAL_WANTS_BATTLE ; 527, (D7EB, bit 7)
- const EVENT_528 ; 528, (D7EC, bit 0)
- const EVENT_529 ; 529, (D7EC, bit 1)
- const EVENT_52A ; 52A, (D7EC, bit 2)
- const EVENT_52B ; 52B, (D7EC, bit 3)
- const EVENT_52C ; 52C, (D7EC, bit 4)
- const EVENT_52D ; 52D, (D7EC, bit 5)
- const EVENT_52E ; 52E, (D7EC, bit 6)
- const EVENT_52F ; 52F, (D7EC, bit 7)
- const EVENT_PASSED_CASCADEBADGE_CHECK ; 530, (D7ED, bit 0)
- const EVENT_PASSED_THUNDERBADGE_CHECK ; 531, (D7ED, bit 1)
- const EVENT_PASSED_RAINBOWBADGE_CHECK ; 532, (D7ED, bit 2)
- const EVENT_PASSED_SOULBADGE_CHECK ; 533, (D7ED, bit 3)
- const EVENT_PASSED_MARSHBADGE_CHECK ; 534, (D7ED, bit 4)
- const EVENT_PASSED_VOLCANOBADGE_CHECK ; 535, (D7ED, bit 5)
- const EVENT_PASSED_EARTHBADGE_CHECK ; 536, (D7ED, bit 6)
- const EVENT_537 ; 537, (D7ED, bit 7)
- const EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH1 ; 538, (D7EE, bit 0)
- const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_0 ; 539, (D7EE, bit 1)
- const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_1 ; 53A, (D7EE, bit 2)
- const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_2 ; 53B, (D7EE, bit 3)
- const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_3 ; 53C, (D7EE, bit 4)
- const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_4 ; 53D, (D7EE, bit 5)
- const EVENT_BEAT_MOLTRES ; 53E, (D7EE, bit 6)
- const EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH2 ; 53F, (D7EE, bit 7)
- const EVENT_GOT_NUGGET ; 540, (D7EF, bit 0)
- const EVENT_BEAT_ROUTE24_ROCKET ; 541, (D7EF, bit 1)
- const EVENT_BEAT_ROUTE_24_TRAINER_0 ; 542, (D7EF, bit 2)
- const EVENT_BEAT_ROUTE_24_TRAINER_1 ; 543, (D7EF, bit 3)
- const EVENT_BEAT_ROUTE_24_TRAINER_2 ; 544, (D7EF, bit 4)
- const EVENT_BEAT_ROUTE_24_TRAINER_3 ; 545, (D7EF, bit 5)
- const EVENT_BEAT_ROUTE_24_TRAINER_4 ; 546, (D7EF, bit 6)
- const EVENT_BEAT_ROUTE_24_TRAINER_5 ; 547, (D7EF, bit 7)
- const EVENT_548 ; 548, (D7F0, bit 0)
- const EVENT_NUGGET_REWARD_AVAILABLE ; 549, (D7F0, bit 1)
- const EVENT_54A ; 54A, (D7F0, bit 2)
- const EVENT_54B ; 54B, (D7F0, bit 3)
- const EVENT_54C ; 54C, (D7F0, bit 4)
- const EVENT_54D ; 54D, (D7F0, bit 5)
- const EVENT_54E ; 54E, (D7F0, bit 6)
- const EVENT_54F ; 54F, (D7F0, bit 7)
- const EVENT_MET_BILL ; 550, (D7F1, bit 0)
- const EVENT_BEAT_ROUTE_25_TRAINER_0 ; 551, (D7F1, bit 1)
- const EVENT_BEAT_ROUTE_25_TRAINER_1 ; 552, (D7F1, bit 2)
- const EVENT_BEAT_ROUTE_25_TRAINER_2 ; 553, (D7F1, bit 3)
- const EVENT_BEAT_ROUTE_25_TRAINER_3 ; 554, (D7F1, bit 4)
- const EVENT_BEAT_ROUTE_25_TRAINER_4 ; 555, (D7F1, bit 5)
- const EVENT_BEAT_ROUTE_25_TRAINER_5 ; 556, (D7F1, bit 6)
- const EVENT_BEAT_ROUTE_25_TRAINER_6 ; 557, (D7F1, bit 7)
- const EVENT_BEAT_ROUTE_25_TRAINER_7 ; 558, (D7F2, bit 0)
- const EVENT_BEAT_ROUTE_25_TRAINER_8 ; 559, (D7F2, bit 1)
- const EVENT_55A ; 55A, (D7F2, bit 2)
- const EVENT_USED_CELL_SEPARATOR_ON_BILL ; 55B, (D7F2, bit 3)
- const EVENT_GOT_SS_TICKET ; 55C, (D7F2, bit 4)
- const EVENT_MET_BILL_2 ; 55D, (D7F2, bit 5)
- const EVENT_BILL_SAID_USE_CELL_SEPARATOR ; 55E, (D7F2, bit 6)
- const EVENT_LEFT_BILLS_HOUSE_AFTER_HELPING ; 55F, (D7F2, bit 7)
- const EVENT_560 ; 560, (D7F3, bit 0)
- const EVENT_561 ; 561, (D7F3, bit 1)
- const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_0 ; 562, (D7F3, bit 2)
- const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_1 ; 563, (D7F3, bit 3)
- const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_2 ; 564, (D7F3, bit 4)
- const EVENT_565 ; 565, (D7F3, bit 5)
- const EVENT_566 ; 566, (D7F3, bit 6)
- const EVENT_567 ; 567, (D7F3, bit 7)
- const EVENT_568 ; 568, (D7F4, bit 0)
- const EVENT_569 ; 569, (D7F4, bit 1)
- const EVENT_56A ; 56A, (D7F4, bit 2)
- const EVENT_56B ; 56B, (D7F4, bit 3)
- const EVENT_56C ; 56C, (D7F4, bit 4)
- const EVENT_56D ; 56D, (D7F4, bit 5)
- const EVENT_56E ; 56E, (D7F4, bit 6)
- const EVENT_56F ; 56F, (D7F4, bit 7)
- const EVENT_570 ; 570, (D7F5, bit 0)
- const EVENT_BEAT_MT_MOON_1_TRAINER_0 ; 571, (D7F5, bit 1)
- const EVENT_BEAT_MT_MOON_1_TRAINER_1 ; 572, (D7F5, bit 2)
- const EVENT_BEAT_MT_MOON_1_TRAINER_2 ; 573, (D7F5, bit 3)
- const EVENT_BEAT_MT_MOON_1_TRAINER_3 ; 574, (D7F5, bit 4)
- const EVENT_BEAT_MT_MOON_1_TRAINER_4 ; 575, (D7F5, bit 5)
- const EVENT_BEAT_MT_MOON_1_TRAINER_5 ; 576, (D7F5, bit 6)
- const EVENT_BEAT_MT_MOON_1_TRAINER_6 ; 577, (D7F5, bit 7)
- const EVENT_578 ; 578, (D7F6, bit 0)
- const EVENT_BEAT_MT_MOON_EXIT_SUPER_NERD ; 579, (D7F6, bit 1)
- const EVENT_BEAT_MT_MOON_3_TRAINER_0 ; 57A, (D7F6, bit 2)
- const EVENT_BEAT_MT_MOON_3_TRAINER_1 ; 57B, (D7F6, bit 3)
- const EVENT_BEAT_MT_MOON_3_TRAINER_2 ; 57C, (D7F6, bit 4)
- const EVENT_BEAT_MT_MOON_3_TRAINER_3 ; 57D, (D7F6, bit 5)
- const EVENT_GOT_DOME_FOSSIL ; 57E, (D7F6, bit 6)
- const EVENT_GOT_HELIX_FOSSIL ; 57F, (D7F6, bit 7)
- const EVENT_580 ; 580, (D7F7, bit 0)
- const EVENT_581 ; 581, (D7F7, bit 1)
- const EVENT_582 ; 582, (D7F7, bit 2)
- const EVENT_583 ; 583, (D7F7, bit 3)
- const EVENT_584 ; 584, (D7F7, bit 4)
- const EVENT_585 ; 585, (D7F7, bit 5)
- const EVENT_586 ; 586, (D7F7, bit 6)
- const EVENT_587 ; 587, (D7F7, bit 7)
- const EVENT_588 ; 588, (D7F8, bit 0)
- const EVENT_589 ; 589, (D7F8, bit 1)
- const EVENT_58A ; 58A, (D7F8, bit 2)
- const EVENT_58B ; 58B, (D7F8, bit 3)
- const EVENT_58C ; 58C, (D7F8, bit 4)
- const EVENT_58D ; 58D, (D7F8, bit 5)
- const EVENT_58E ; 58E, (D7F8, bit 6)
- const EVENT_58F ; 58F, (D7F8, bit 7)
- const EVENT_590 ; 590, (D7F9, bit 0)
- const EVENT_591 ; 591, (D7F9, bit 1)
- const EVENT_592 ; 592, (D7F9, bit 2)
- const EVENT_593 ; 593, (D7F9, bit 3)
- const EVENT_594 ; 594, (D7F9, bit 4)
- const EVENT_595 ; 595, (D7F9, bit 5)
- const EVENT_596 ; 596, (D7F9, bit 6)
- const EVENT_597 ; 597, (D7F9, bit 7)
- const EVENT_598 ; 598, (D7FA, bit 0)
- const EVENT_599 ; 599, (D7FA, bit 1)
- const EVENT_59A ; 59A, (D7FA, bit 2)
- const EVENT_59B ; 59B, (D7FA, bit 3)
- const EVENT_59C ; 59C, (D7FA, bit 4)
- const EVENT_59D ; 59D, (D7FA, bit 5)
- const EVENT_59E ; 59E, (D7FA, bit 6)
- const EVENT_59F ; 59F, (D7FA, bit 7)
- const EVENT_5A0 ; 5A0, (D7FB, bit 0)
- const EVENT_5A1 ; 5A1, (D7FB, bit 1)
- const EVENT_5A2 ; 5A2, (D7FB, bit 2)
- const EVENT_5A3 ; 5A3, (D7FB, bit 3)
- const EVENT_5A4 ; 5A4, (D7FB, bit 4)
- const EVENT_5A5 ; 5A5, (D7FB, bit 5)
- const EVENT_5A6 ; 5A6, (D7FB, bit 6)
- const EVENT_5A7 ; 5A7, (D7FB, bit 7)
- const EVENT_5A8 ; 5A8, (D7FC, bit 0)
- const EVENT_5A9 ; 5A9, (D7FC, bit 1)
- const EVENT_5AA ; 5AA, (D7FC, bit 2)
- const EVENT_5AB ; 5AB, (D7FC, bit 3)
- const EVENT_5AC ; 5AC, (D7FC, bit 4)
- const EVENT_5AD ; 5AD, (D7FC, bit 5)
- const EVENT_5AE ; 5AE, (D7FC, bit 6)
- const EVENT_5AF ; 5AF, (D7FC, bit 7)
- const EVENT_5B0 ; 5B0, (D7FD, bit 0)
- const EVENT_5B1 ; 5B1, (D7FD, bit 1)
- const EVENT_5B2 ; 5B2, (D7FD, bit 2)
- const EVENT_5B3 ; 5B3, (D7FD, bit 3)
- const EVENT_5B4 ; 5B4, (D7FD, bit 4)
- const EVENT_5B5 ; 5B5, (D7FD, bit 5)
- const EVENT_5B6 ; 5B6, (D7FD, bit 6)
- const EVENT_5B7 ; 5B7, (D7FD, bit 7)
- const EVENT_5B8 ; 5B8, (D7FE, bit 0)
- const EVENT_5B9 ; 5B9, (D7FE, bit 1)
- const EVENT_5BA ; 5BA, (D7FE, bit 2)
- const EVENT_5BB ; 5BB, (D7FE, bit 3)
- const EVENT_5BC ; 5BC, (D7FE, bit 4)
- const EVENT_5BD ; 5BD, (D7FE, bit 5)
- const EVENT_5BE ; 5BE, (D7FE, bit 6)
- const EVENT_5BF ; 5BF, (D7FE, bit 7)
- const EVENT_5C0 ; 5C0, (D7FF, bit 0)
- const EVENT_5C1 ; 5C1, (D7FF, bit 1)
- const EVENT_5C2 ; 5C2, (D7FF, bit 2)
- const EVENT_5C3 ; 5C3, (D7FF, bit 3)
- const EVENT_BEAT_SS_ANNE_5_TRAINER_0 ; 5C4, (D7FF, bit 4)
- const EVENT_BEAT_SS_ANNE_5_TRAINER_1 ; 5C5, (D7FF, bit 5)
- const EVENT_5C6 ; 5C6, (D7FF, bit 6)
- const EVENT_5C7 ; 5C7, (D7FF, bit 7)
- const EVENT_5C8 ; 5C8, (D800, bit 0)
- const EVENT_5C9 ; 5C9, (D800, bit 1)
- const EVENT_5CA ; 5CA, (D800, bit 2)
- const EVENT_5CB ; 5CB, (D800, bit 3)
- const EVENT_5CC ; 5CC, (D800, bit 4)
- const EVENT_5CD ; 5CD, (D800, bit 5)
- const EVENT_5CE ; 5CE, (D800, bit 6)
- const EVENT_5CF ; 5CF, (D800, bit 7)
- const EVENT_5D0 ; 5D0, (D801, bit 0)
- const EVENT_5D1 ; 5D1, (D801, bit 1)
- const EVENT_5D2 ; 5D2, (D801, bit 2)
- const EVENT_5D3 ; 5D3, (D801, bit 3)
- const EVENT_5D4 ; 5D4, (D801, bit 4)
- const EVENT_5D5 ; 5D5, (D801, bit 5)
- const EVENT_5D6 ; 5D6, (D801, bit 6)
- const EVENT_5D7 ; 5D7, (D801, bit 7)
- const EVENT_5D8 ; 5D8, (D802, bit 0)
- const EVENT_5D9 ; 5D9, (D802, bit 1)
- const EVENT_5DA ; 5DA, (D802, bit 2)
- const EVENT_5DB ; 5DB, (D802, bit 3)
- const EVENT_5DC ; 5DC, (D802, bit 4)
- const EVENT_5DD ; 5DD, (D802, bit 5)
- const EVENT_5DE ; 5DE, (D802, bit 6)
- const EVENT_5DF ; 5DF, (D802, bit 7)
- const EVENT_GOT_HM01 ; 5E0, (D803, bit 0)
- const EVENT_RUBBED_CAPTAINS_BACK ; 5E1, (D803, bit 1)
- const EVENT_SS_ANNE_LEFT ; 5E2, (D803, bit 2)
- const EVENT_WALKED_PAST_GUARD_AFTER_SS_ANNE_LEFT ; 5E3, (D803, bit 3)
- const EVENT_STARTED_WALKING_OUT_OF_DOCK ; 5E4, (D803, bit 4)
- const EVENT_WALKED_OUT_OF_DOCK ; 5E5, (D803, bit 5)
- const EVENT_5E6 ; 5E6, (D803, bit 6)
- const EVENT_5E7 ; 5E7, (D803, bit 7)
- const EVENT_5E8 ; 5E8, (D804, bit 0)
- const EVENT_5E9 ; 5E9, (D804, bit 1)
- const EVENT_5EA ; 5EA, (D804, bit 2)
- const EVENT_5EB ; 5EB, (D804, bit 3)
- const EVENT_5EC ; 5EC, (D804, bit 4)
- const EVENT_5ED ; 5ED, (D804, bit 5)
- const EVENT_5EE ; 5EE, (D804, bit 6)
- const EVENT_5EF ; 5EF, (D804, bit 7)
- const EVENT_5F0 ; 5F0, (D805, bit 0)
- const EVENT_BEAT_SS_ANNE_8_TRAINER_0 ; 5F1, (D805, bit 1)
- const EVENT_BEAT_SS_ANNE_8_TRAINER_1 ; 5F2, (D805, bit 2)
- const EVENT_BEAT_SS_ANNE_8_TRAINER_2 ; 5F3, (D805, bit 3)
- const EVENT_BEAT_SS_ANNE_8_TRAINER_3 ; 5F4, (D805, bit 4)
- const EVENT_5F5 ; 5F5, (D805, bit 5)
- const EVENT_5F6 ; 5F6, (D805, bit 6)
- const EVENT_5F7 ; 5F7, (D805, bit 7)
- const EVENT_5F8 ; 5F8, (D806, bit 0)
- const EVENT_5F9 ; 5F9, (D806, bit 1)
- const EVENT_5FA ; 5FA, (D806, bit 2)
- const EVENT_5FB ; 5FB, (D806, bit 3)
- const EVENT_5FC ; 5FC, (D806, bit 4)
- const EVENT_5FD ; 5FD, (D806, bit 5)
- const EVENT_5FE ; 5FE, (D806, bit 6)
- const EVENT_5FF ; 5FF, (D806, bit 7)
- const EVENT_600 ; 600, (D807, bit 0)
- const EVENT_BEAT_SS_ANNE_9_TRAINER_0 ; 601, (D807, bit 1)
- const EVENT_BEAT_SS_ANNE_9_TRAINER_1 ; 602, (D807, bit 2)
- const EVENT_BEAT_SS_ANNE_9_TRAINER_2 ; 603, (D807, bit 3)
- const EVENT_BEAT_SS_ANNE_9_TRAINER_3 ; 604, (D807, bit 4)
- const EVENT_605 ; 605, (D807, bit 5)
- const EVENT_606 ; 606, (D807, bit 6)
- const EVENT_607 ; 607, (D807, bit 7)
- const EVENT_608 ; 608, (D808, bit 0)
- const EVENT_609 ; 609, (D808, bit 1)
- const EVENT_60A ; 60A, (D808, bit 2)
- const EVENT_60B ; 60B, (D808, bit 3)
- const EVENT_60C ; 60C, (D808, bit 4)
- const EVENT_60D ; 60D, (D808, bit 5)
- const EVENT_60E ; 60E, (D808, bit 6)
- const EVENT_60F ; 60F, (D808, bit 7)
- const EVENT_610 ; 610, (D809, bit 0)
- const EVENT_BEAT_SS_ANNE_10_TRAINER_0 ; 611, (D809, bit 1)
- const EVENT_BEAT_SS_ANNE_10_TRAINER_1 ; 612, (D809, bit 2)
- const EVENT_BEAT_SS_ANNE_10_TRAINER_2 ; 613, (D809, bit 3)
- const EVENT_BEAT_SS_ANNE_10_TRAINER_3 ; 614, (D809, bit 4)
- const EVENT_BEAT_SS_ANNE_10_TRAINER_4 ; 615, (D809, bit 5)
- const EVENT_BEAT_SS_ANNE_10_TRAINER_5 ; 616, (D809, bit 6)
- const EVENT_617 ; 617, (D809, bit 7)
- const EVENT_618 ; 618, (D80A, bit 0)
- const EVENT_619 ; 619, (D80A, bit 1)
- const EVENT_61A ; 61A, (D80A, bit 2)
- const EVENT_61B ; 61B, (D80A, bit 3)
- const EVENT_61C ; 61C, (D80A, bit 4)
- const EVENT_61D ; 61D, (D80A, bit 5)
- const EVENT_61E ; 61E, (D80A, bit 6)
- const EVENT_61F ; 61F, (D80A, bit 7)
- const EVENT_620 ; 620, (D80B, bit 0)
- const EVENT_621 ; 621, (D80B, bit 1)
- const EVENT_622 ; 622, (D80B, bit 2)
- const EVENT_623 ; 623, (D80B, bit 3)
- const EVENT_624 ; 624, (D80B, bit 4)
- const EVENT_625 ; 625, (D80B, bit 5)
- const EVENT_626 ; 626, (D80B, bit 6)
- const EVENT_627 ; 627, (D80B, bit 7)
- const EVENT_628 ; 628, (D80C, bit 0)
- const EVENT_629 ; 629, (D80C, bit 1)
- const EVENT_62A ; 62A, (D80C, bit 2)
- const EVENT_62B ; 62B, (D80C, bit 3)
- const EVENT_62C ; 62C, (D80C, bit 4)
- const EVENT_62D ; 62D, (D80C, bit 5)
- const EVENT_62E ; 62E, (D80C, bit 6)
- const EVENT_62F ; 62F, (D80C, bit 7)
- const EVENT_630 ; 630, (D80D, bit 0)
- const EVENT_631 ; 631, (D80D, bit 1)
- const EVENT_632 ; 632, (D80D, bit 2)
- const EVENT_633 ; 633, (D80D, bit 3)
- const EVENT_634 ; 634, (D80D, bit 4)
- const EVENT_635 ; 635, (D80D, bit 5)
- const EVENT_636 ; 636, (D80D, bit 6)
- const EVENT_637 ; 637, (D80D, bit 7)
- const EVENT_638 ; 638, (D80E, bit 0)
- const EVENT_639 ; 639, (D80E, bit 1)
- const EVENT_63A ; 63A, (D80E, bit 2)
- const EVENT_63B ; 63B, (D80E, bit 3)
- const EVENT_63C ; 63C, (D80E, bit 4)
- const EVENT_63D ; 63D, (D80E, bit 5)
- const EVENT_63E ; 63E, (D80E, bit 6)
- const EVENT_63F ; 63F, (D80E, bit 7)
- const EVENT_640 ; 640, (D80F, bit 0)
- const EVENT_641 ; 641, (D80F, bit 1)
- const EVENT_642 ; 642, (D80F, bit 2)
- const EVENT_643 ; 643, (D80F, bit 3)
- const EVENT_644 ; 644, (D80F, bit 4)
- const EVENT_645 ; 645, (D80F, bit 5)
- const EVENT_646 ; 646, (D80F, bit 6)
- const EVENT_647 ; 647, (D80F, bit 7)
- const EVENT_648 ; 648, (D810, bit 0)
- const EVENT_649 ; 649, (D810, bit 1)
- const EVENT_64A ; 64A, (D810, bit 2)
- const EVENT_64B ; 64B, (D810, bit 3)
- const EVENT_64C ; 64C, (D810, bit 4)
- const EVENT_64D ; 64D, (D810, bit 5)
- const EVENT_64E ; 64E, (D810, bit 6)
- const EVENT_64F ; 64F, (D810, bit 7)
- const EVENT_650 ; 650, (D811, bit 0)
- const EVENT_651 ; 651, (D811, bit 1)
- const EVENT_652 ; 652, (D811, bit 2)
- const EVENT_653 ; 653, (D811, bit 3)
- const EVENT_654 ; 654, (D811, bit 4)
- const EVENT_655 ; 655, (D811, bit 5)
- const EVENT_656 ; 656, (D811, bit 6)
- const EVENT_657 ; 657, (D811, bit 7)
- const EVENT_658 ; 658, (D812, bit 0)
- const EVENT_659 ; 659, (D812, bit 1)
- const EVENT_65A ; 65A, (D812, bit 2)
- const EVENT_65B ; 65B, (D812, bit 3)
- const EVENT_65C ; 65C, (D812, bit 4)
- const EVENT_65D ; 65D, (D812, bit 5)
- const EVENT_65E ; 65E, (D812, bit 6)
- const EVENT_65F ; 65F, (D812, bit 7)
- const EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH1 ; 660, (D813, bit 0)
- const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_0 ; 661, (D813, bit 1)
- const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_1 ; 662, (D813, bit 2)
- const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_2 ; 663, (D813, bit 3)
- const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_3 ; 664, (D813, bit 4)
- const EVENT_665 ; 665, (D813, bit 5)
- const EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH2 ; 666, (D813, bit 6)
- const EVENT_667 ; 667, (D813, bit 7)
- const EVENT_668 ; 668, (D814, bit 0)
- const EVENT_669 ; 669, (D814, bit 1)
- const EVENT_66A ; 66A, (D814, bit 2)
- const EVENT_66B ; 66B, (D814, bit 3)
- const EVENT_66C ; 66C, (D814, bit 4)
- const EVENT_66D ; 66D, (D814, bit 5)
- const EVENT_66E ; 66E, (D814, bit 6)
- const EVENT_66F ; 66F, (D814, bit 7)
- const EVENT_670 ; 670, (D815, bit 0)
- const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_0 ; 671, (D815, bit 1)
- const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_1 ; 672, (D815, bit 2)
- const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_2 ; 673, (D815, bit 3)
- const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_3 ; 674, (D815, bit 4)
- const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_4 ; 675, (D815, bit 5)
- const EVENT_676 ; 676, (D815, bit 6)
- const EVENT_677 ; 677, (D815, bit 7)
- const EVENT_678 ; 678, (D816, bit 0)
- const EVENT_679 ; 679, (D816, bit 1)
- const EVENT_67A ; 67A, (D816, bit 2)
- const EVENT_67B ; 67B, (D816, bit 3)
- const EVENT_67C ; 67C, (D816, bit 4)
- const EVENT_67D ; 67D, (D816, bit 5)
- const EVENT_67E ; 67E, (D816, bit 6)
- const EVENT_67F ; 67F, (D816, bit 7)
- const EVENT_680 ; 680, (D817, bit 0)
- const EVENT_BEAT_ROCKET_HIDEOUT_2_TRAINER_0 ; 681, (D817, bit 1)
- const EVENT_682 ; 682, (D817, bit 2)
- const EVENT_683 ; 683, (D817, bit 3)
- const EVENT_684 ; 684, (D817, bit 4)
- const EVENT_685 ; 685, (D817, bit 5)
- const EVENT_686 ; 686, (D817, bit 6)
- const EVENT_687 ; 687, (D817, bit 7)
- const EVENT_688 ; 688, (D818, bit 0)
- const EVENT_689 ; 689, (D818, bit 1)
- const EVENT_68A ; 68A, (D818, bit 2)
- const EVENT_68B ; 68B, (D818, bit 3)
- const EVENT_68C ; 68C, (D818, bit 4)
- const EVENT_68D ; 68D, (D818, bit 5)
- const EVENT_68E ; 68E, (D818, bit 6)
- const EVENT_68F ; 68F, (D818, bit 7)
- const EVENT_690 ; 690, (D819, bit 0)
- const EVENT_BEAT_ROCKET_HIDEOUT_3_TRAINER_0 ; 691, (D819, bit 1)
- const EVENT_BEAT_ROCKET_HIDEOUT_3_TRAINER_1 ; 692, (D819, bit 2)
- const EVENT_693 ; 693, (D819, bit 3)
- const EVENT_694 ; 694, (D819, bit 4)
- const EVENT_695 ; 695, (D819, bit 5)
- const EVENT_696 ; 696, (D819, bit 6)
- const EVENT_697 ; 697, (D819, bit 7)
- const EVENT_698 ; 698, (D81A, bit 0)
- const EVENT_699 ; 699, (D81A, bit 1)
- const EVENT_69A ; 69A, (D81A, bit 2)
- const EVENT_69B ; 69B, (D81A, bit 3)
- const EVENT_69C ; 69C, (D81A, bit 4)
- const EVENT_69D ; 69D, (D81A, bit 5)
- const EVENT_69E ; 69E, (D81A, bit 6)
- const EVENT_69F ; 69F, (D81A, bit 7)
- const EVENT_6A0 ; 6A0, (D81B, bit 0)
- const EVENT_6A1 ; 6A1, (D81B, bit 1)
- const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_0 ; 6A2, (D81B, bit 2)
- const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_1 ; 6A3, (D81B, bit 3)
- const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_2 ; 6A4, (D81B, bit 4)
- const EVENT_ROCKET_HIDEOUT_4_DOOR_UNLOCKED ; 6A5, (D81B, bit 5)
- const EVENT_ROCKET_DROPPED_LIFT_KEY ; 6A6, (D81B, bit 6)
- const EVENT_BEAT_ROCKET_HIDEOUT_GIOVANNI ; 6A7, (D81B, bit 7)
- const EVENT_6A8 ; 6A8, (D81C, bit 0)
- const EVENT_6A9 ; 6A9, (D81C, bit 1)
- const EVENT_6AA ; 6AA, (D81C, bit 2)
- const EVENT_6AB ; 6AB, (D81C, bit 3)
- const EVENT_6AC ; 6AC, (D81C, bit 4)
- const EVENT_6AD ; 6AD, (D81C, bit 5)
- const EVENT_6AE ; 6AE, (D81C, bit 6)
- const EVENT_6AF ; 6AF, (D81C, bit 7)
- const EVENT_6B0 ; 6B0, (D81D, bit 0)
- const EVENT_6B1 ; 6B1, (D81D, bit 1)
- const EVENT_6B2 ; 6B2, (D81D, bit 2)
- const EVENT_6B3 ; 6B3, (D81D, bit 3)
- const EVENT_6B4 ; 6B4, (D81D, bit 4)
- const EVENT_6B5 ; 6B5, (D81D, bit 5)
- const EVENT_6B6 ; 6B6, (D81D, bit 6)
- const EVENT_6B7 ; 6B7, (D81D, bit 7)
- const EVENT_6B8 ; 6B8, (D81E, bit 0)
- const EVENT_6B9 ; 6B9, (D81E, bit 1)
- const EVENT_6BA ; 6BA, (D81E, bit 2)
- const EVENT_6BB ; 6BB, (D81E, bit 3)
- const EVENT_6BC ; 6BC, (D81E, bit 4)
- const EVENT_6BD ; 6BD, (D81E, bit 5)
- const EVENT_6BE ; 6BE, (D81E, bit 6)
- const EVENT_6BF ; 6BF, (D81E, bit 7)
- const EVENT_6C0 ; 6C0, (D81F, bit 0)
- const EVENT_6C1 ; 6C1, (D81F, bit 1)
- const EVENT_6C2 ; 6C2, (D81F, bit 2)
- const EVENT_6C3 ; 6C3, (D81F, bit 3)
- const EVENT_6C4 ; 6C4, (D81F, bit 4)
- const EVENT_6C5 ; 6C5, (D81F, bit 5)
- const EVENT_6C6 ; 6C6, (D81F, bit 6)
- const EVENT_6C7 ; 6C7, (D81F, bit 7)
- const EVENT_6C8 ; 6C8, (D820, bit 0)
- const EVENT_6C9 ; 6C9, (D820, bit 1)
- const EVENT_6CA ; 6CA, (D820, bit 2)
- const EVENT_6CB ; 6CB, (D820, bit 3)
- const EVENT_6CC ; 6CC, (D820, bit 4)
- const EVENT_6CD ; 6CD, (D820, bit 5)
- const EVENT_6CE ; 6CE, (D820, bit 6)
- const EVENT_6CF ; 6CF, (D820, bit 7)
- const EVENT_6D0 ; 6D0, (D821, bit 0)
- const EVENT_6D1 ; 6D1, (D821, bit 1)
- const EVENT_6D2 ; 6D2, (D821, bit 2)
- const EVENT_6D3 ; 6D3, (D821, bit 3)
- const EVENT_6D4 ; 6D4, (D821, bit 4)
- const EVENT_6D5 ; 6D5, (D821, bit 5)
- const EVENT_6D6 ; 6D6, (D821, bit 6)
- const EVENT_6D7 ; 6D7, (D821, bit 7)
- const EVENT_6D8 ; 6D8, (D822, bit 0)
- const EVENT_6D9 ; 6D9, (D822, bit 1)
- const EVENT_6DA ; 6DA, (D822, bit 2)
- const EVENT_6DB ; 6DB, (D822, bit 3)
- const EVENT_6DC ; 6DC, (D822, bit 4)
- const EVENT_6DD ; 6DD, (D822, bit 5)
- const EVENT_6DE ; 6DE, (D822, bit 6)
- const EVENT_6DF ; 6DF, (D822, bit 7)
- const EVENT_6E0 ; 6E0, (D823, bit 0)
- const EVENT_6E1 ; 6E1, (D823, bit 1)
- const EVENT_6E2 ; 6E2, (D823, bit 2)
- const EVENT_6E3 ; 6E3, (D823, bit 3)
- const EVENT_6E4 ; 6E4, (D823, bit 4)
- const EVENT_6E5 ; 6E5, (D823, bit 5)
- const EVENT_6E6 ; 6E6, (D823, bit 6)
- const EVENT_6E7 ; 6E7, (D823, bit 7)
- const EVENT_6E8 ; 6E8, (D824, bit 0)
- const EVENT_6E9 ; 6E9, (D824, bit 1)
- const EVENT_6EA ; 6EA, (D824, bit 2)
- const EVENT_6EB ; 6EB, (D824, bit 3)
- const EVENT_6EC ; 6EC, (D824, bit 4)
- const EVENT_6ED ; 6ED, (D824, bit 5)
- const EVENT_6EE ; 6EE, (D824, bit 6)
- const EVENT_6EF ; 6EF, (D824, bit 7)
- const EVENT_6F0 ; 6F0, (D825, bit 0)
- const EVENT_6F1 ; 6F1, (D825, bit 1)
- const EVENT_BEAT_SILPH_CO_2F_TRAINER_0 ; 6F2, (D825, bit 2)
- const EVENT_BEAT_SILPH_CO_2F_TRAINER_1 ; 6F3, (D825, bit 3)
- const EVENT_BEAT_SILPH_CO_2F_TRAINER_2 ; 6F4, (D825, bit 4)
- const EVENT_BEAT_SILPH_CO_2F_TRAINER_3 ; 6F5, (D825, bit 5)
- const EVENT_6F6 ; 6F6, (D825, bit 6)
- const EVENT_6F7 ; 6F7, (D825, bit 7)
- const EVENT_6F8 ; 6F8, (D826, bit 0)
- const EVENT_6F9 ; 6F9, (D826, bit 1)
- const EVENT_6FA ; 6FA, (D826, bit 2)
- const EVENT_6FB ; 6FB, (D826, bit 3)
- const EVENT_6FC ; 6FC, (D826, bit 4)
- const EVENT_SILPH_CO_2_UNLOCKED_DOOR1 ; 6FD, (D826, bit 5)
- const EVENT_SILPH_CO_2_UNLOCKED_DOOR2 ; 6FE, (D826, bit 6)
- const EVENT_GOT_TM36 ; 6FF, (D826, bit 7)
- const EVENT_700 ; 700, (D827, bit 0)
- const EVENT_701 ; 701, (D827, bit 1)
- const EVENT_BEAT_SILPH_CO_3F_TRAINER_0 ; 702, (D827, bit 2)
- const EVENT_BEAT_SILPH_CO_3F_TRAINER_1 ; 703, (D827, bit 3)
- const EVENT_704 ; 704, (D827, bit 4)
- const EVENT_705 ; 705, (D827, bit 5)
- const EVENT_706 ; 706, (D827, bit 6)
- const EVENT_707 ; 707, (D827, bit 7)
- const EVENT_SILPH_CO_3_UNLOCKED_DOOR1 ; 708, (D828, bit 0)
- const EVENT_SILPH_CO_3_UNLOCKED_DOOR2 ; 709, (D828, bit 1)
- const EVENT_70A ; 70A, (D828, bit 2)
- const EVENT_70B ; 70B, (D828, bit 3)
- const EVENT_70C ; 70C, (D828, bit 4)
- const EVENT_70D ; 70D, (D828, bit 5)
- const EVENT_70E ; 70E, (D828, bit 6)
- const EVENT_70F ; 70F, (D828, bit 7)
- const EVENT_710 ; 710, (D829, bit 0)
- const EVENT_711 ; 711, (D829, bit 1)
- const EVENT_BEAT_SILPH_CO_4F_TRAINER_0 ; 712, (D829, bit 2)
- const EVENT_BEAT_SILPH_CO_4F_TRAINER_1 ; 713, (D829, bit 3)
- const EVENT_BEAT_SILPH_CO_4F_TRAINER_2 ; 714, (D829, bit 4)
- const EVENT_715 ; 715, (D829, bit 5)
- const EVENT_716 ; 716, (D829, bit 6)
- const EVENT_717 ; 717, (D829, bit 7)
- const EVENT_SILPH_CO_4_UNLOCKED_DOOR1 ; 718, (D82A, bit 0)
- const EVENT_SILPH_CO_4_UNLOCKED_DOOR2 ; 719, (D82A, bit 1)
- const EVENT_71A ; 71A, (D82A, bit 2)
- const EVENT_71B ; 71B, (D82A, bit 3)
- const EVENT_71C ; 71C, (D82A, bit 4)
- const EVENT_71D ; 71D, (D82A, bit 5)
- const EVENT_71E ; 71E, (D82A, bit 6)
- const EVENT_71F ; 71F, (D82A, bit 7)
- const EVENT_720 ; 720, (D82B, bit 0)
- const EVENT_721 ; 721, (D82B, bit 1)
- const EVENT_BEAT_SILPH_CO_5F_TRAINER_0 ; 722, (D82B, bit 2)
- const EVENT_BEAT_SILPH_CO_5F_TRAINER_1 ; 723, (D82B, bit 3)
- const EVENT_BEAT_SILPH_CO_5F_TRAINER_2 ; 724, (D82B, bit 4)
- const EVENT_BEAT_SILPH_CO_5F_TRAINER_3 ; 725, (D82B, bit 5)
- const EVENT_726 ; 726, (D82B, bit 6)
- const EVENT_727 ; 727, (D82B, bit 7)
- const EVENT_SILPH_CO_5_UNLOCKED_DOOR1 ; 728, (D82C, bit 0)
- const EVENT_SILPH_CO_5_UNLOCKED_DOOR2 ; 729, (D82C, bit 1)
- const EVENT_SILPH_CO_5_UNLOCKED_DOOR3 ; 72A, (D82C, bit 2)
- const EVENT_72B ; 72B, (D82C, bit 3)
- const EVENT_72C ; 72C, (D82C, bit 4)
- const EVENT_72D ; 72D, (D82C, bit 5)
- const EVENT_72E ; 72E, (D82C, bit 6)
- const EVENT_72F ; 72F, (D82C, bit 7)
- const EVENT_730 ; 730, (D82D, bit 0)
- const EVENT_731 ; 731, (D82D, bit 1)
- const EVENT_732 ; 732, (D82D, bit 2)
- const EVENT_733 ; 733, (D82D, bit 3)
- const EVENT_734 ; 734, (D82D, bit 4)
- const EVENT_735 ; 735, (D82D, bit 5)
- const EVENT_BEAT_SILPH_CO_6F_TRAINER_0 ; 736, (D82D, bit 6)
- const EVENT_BEAT_SILPH_CO_6F_TRAINER_1 ; 737, (D82D, bit 7)
- const EVENT_BEAT_SILPH_CO_6F_TRAINER_2 ; 738, (D82E, bit 0)
- const EVENT_739 ; 739, (D82E, bit 1)
- const EVENT_73A ; 73A, (D82E, bit 2)
- const EVENT_73B ; 73B, (D82E, bit 3)
- const EVENT_73C ; 73C, (D82E, bit 4)
- const EVENT_73D ; 73D, (D82E, bit 5)
- const EVENT_73E ; 73E, (D82E, bit 6)
- const EVENT_SILPH_CO_6_UNLOCKED_DOOR ; 73F, (D82E, bit 7)
- const EVENT_BEAT_SILPH_CO_RIVAL ; 740, (D82F, bit 0)
- const EVENT_741 ; 741, (D82F, bit 1)
- const EVENT_742 ; 742, (D82F, bit 2)
- const EVENT_743 ; 743, (D82F, bit 3)
- const EVENT_744 ; 744, (D82F, bit 4)
- const EVENT_BEAT_SILPH_CO_7F_TRAINER_0 ; 745, (D82F, bit 5)
- const EVENT_BEAT_SILPH_CO_7F_TRAINER_1 ; 746, (D82F, bit 6)
- const EVENT_BEAT_SILPH_CO_7F_TRAINER_2 ; 747, (D82F, bit 7)
- const EVENT_BEAT_SILPH_CO_7F_TRAINER_3 ; 748, (D830, bit 0)
- const EVENT_749 ; 749, (D830, bit 1)
- const EVENT_74A ; 74A, (D830, bit 2)
- const EVENT_74B ; 74B, (D830, bit 3)
- const EVENT_SILPH_CO_7_UNLOCKED_DOOR1 ; 74C, (D830, bit 4)
- const EVENT_SILPH_CO_7_UNLOCKED_DOOR2 ; 74D, (D830, bit 5)
- const EVENT_SILPH_CO_7_UNLOCKED_DOOR3 ; 74E, (D830, bit 6)
- const EVENT_74F ; 74F, (D830, bit 7)
- const EVENT_750 ; 750, (D831, bit 0)
- const EVENT_751 ; 751, (D831, bit 1)
- const EVENT_BEAT_SILPH_CO_8F_TRAINER_0 ; 752, (D831, bit 2)
- const EVENT_BEAT_SILPH_CO_8F_TRAINER_1 ; 753, (D831, bit 3)
- const EVENT_BEAT_SILPH_CO_8F_TRAINER_2 ; 754, (D831, bit 4)
- const EVENT_755 ; 755, (D831, bit 5)
- const EVENT_756 ; 756, (D831, bit 6)
- const EVENT_757 ; 757, (D831, bit 7)
- const EVENT_SILPH_CO_8_UNLOCKED_DOOR ; 758, (D832, bit 0)
- const EVENT_759 ; 759, (D832, bit 1)
- const EVENT_75A ; 75A, (D832, bit 2)
- const EVENT_75B ; 75B, (D832, bit 3)
- const EVENT_75C ; 75C, (D832, bit 4)
- const EVENT_75D ; 75D, (D832, bit 5)
- const EVENT_75E ; 75E, (D832, bit 6)
- const EVENT_75F ; 75F, (D832, bit 7)
- const EVENT_760 ; 760, (D833, bit 0)
- const EVENT_761 ; 761, (D833, bit 1)
- const EVENT_BEAT_SILPH_CO_9F_TRAINER_0 ; 762, (D833, bit 2)
- const EVENT_BEAT_SILPH_CO_9F_TRAINER_1 ; 763, (D833, bit 3)
- const EVENT_BEAT_SILPH_CO_9F_TRAINER_2 ; 764, (D833, bit 4)
- const EVENT_765 ; 765, (D833, bit 5)
- const EVENT_766 ; 766, (D833, bit 6)
- const EVENT_767 ; 767, (D833, bit 7)
- const EVENT_SILPH_CO_9_UNLOCKED_DOOR1 ; 768, (D834, bit 0)
- const EVENT_SILPH_CO_9_UNLOCKED_DOOR2 ; 769, (D834, bit 1)
- const EVENT_SILPH_CO_9_UNLOCKED_DOOR3 ; 76A, (D834, bit 2)
- const EVENT_SILPH_CO_9_UNLOCKED_DOOR4 ; 76B, (D834, bit 3)
- const EVENT_76C ; 76C, (D834, bit 4)
- const EVENT_76D ; 76D, (D834, bit 5)
- const EVENT_76E ; 76E, (D834, bit 6)
- const EVENT_76F ; 76F, (D834, bit 7)
- const EVENT_770 ; 770, (D835, bit 0)
- const EVENT_BEAT_SILPH_CO_10F_TRAINER_0 ; 771, (D835, bit 1)
- const EVENT_BEAT_SILPH_CO_10F_TRAINER_1 ; 772, (D835, bit 2)
- const EVENT_773 ; 773, (D835, bit 3)
- const EVENT_774 ; 774, (D835, bit 4)
- const EVENT_775 ; 775, (D835, bit 5)
- const EVENT_776 ; 776, (D835, bit 6)
- const EVENT_777 ; 777, (D835, bit 7)
- const EVENT_SILPH_CO_10_UNLOCKED_DOOR ; 778, (D836, bit 0)
- const EVENT_779 ; 779, (D836, bit 1)
- const EVENT_77A ; 77A, (D836, bit 2)
- const EVENT_77B ; 77B, (D836, bit 3)
- const EVENT_77C ; 77C, (D836, bit 4)
- const EVENT_77D ; 77D, (D836, bit 5)
- const EVENT_77E ; 77E, (D836, bit 6)
- const EVENT_77F ; 77F, (D836, bit 7)
- const EVENT_780 ; 780, (D837, bit 0)
- const EVENT_781 ; 781, (D837, bit 1)
- const EVENT_782 ; 782, (D837, bit 2)
- const EVENT_783 ; 783, (D837, bit 3)
- const EVENT_BEAT_SILPH_CO_11F_TRAINER_0 ; 784, (D837, bit 4)
- const EVENT_BEAT_SILPH_CO_11F_TRAINER_1 ; 785, (D837, bit 5)
- const EVENT_786 ; 786, (D837, bit 6)
- const EVENT_787 ; 787, (D837, bit 7)
- const EVENT_SILPH_CO_11_UNLOCKED_DOOR ; 788, (D838, bit 0)
- const EVENT_789 ; 789, (D838, bit 1)
- const EVENT_78A ; 78A, (D838, bit 2)
- const EVENT_78B ; 78B, (D838, bit 3)
- const EVENT_78C ; 78C, (D838, bit 4)
- const EVENT_GOT_MASTER_BALL ; 78D, (D838, bit 5)
- const EVENT_78E ; 78E, (D838, bit 6)
- const EVENT_BEAT_SILPH_CO_GIOVANNI ; 78F, (D838, bit 7)
- const EVENT_790 ; 790, (D839, bit 0)
- const EVENT_791 ; 791, (D839, bit 1)
- const EVENT_792 ; 792, (D839, bit 2)
- const EVENT_793 ; 793, (D839, bit 3)
- const EVENT_794 ; 794, (D839, bit 4)
- const EVENT_795 ; 795, (D839, bit 5)
- const EVENT_796 ; 796, (D839, bit 6)
- const EVENT_797 ; 797, (D839, bit 7)
- const EVENT_798 ; 798, (D83A, bit 0)
- const EVENT_799 ; 799, (D83A, bit 1)
- const EVENT_79A ; 79A, (D83A, bit 2)
- const EVENT_79B ; 79B, (D83A, bit 3)
- const EVENT_79C ; 79C, (D83A, bit 4)
- const EVENT_79D ; 79D, (D83A, bit 5)
- const EVENT_79E ; 79E, (D83A, bit 6)
- const EVENT_79F ; 79F, (D83A, bit 7)
- const EVENT_7A0 ; 7A0, (D83B, bit 0)
- const EVENT_7A1 ; 7A1, (D83B, bit 1)
- const EVENT_7A2 ; 7A2, (D83B, bit 2)
- const EVENT_7A3 ; 7A3, (D83B, bit 3)
- const EVENT_7A4 ; 7A4, (D83B, bit 4)
- const EVENT_7A5 ; 7A5, (D83B, bit 5)
- const EVENT_7A6 ; 7A6, (D83B, bit 6)
- const EVENT_7A7 ; 7A7, (D83B, bit 7)
- const EVENT_7A8 ; 7A8, (D83C, bit 0)
- const EVENT_7A9 ; 7A9, (D83C, bit 1)
- const EVENT_7AA ; 7AA, (D83C, bit 2)
- const EVENT_7AB ; 7AB, (D83C, bit 3)
- const EVENT_7AC ; 7AC, (D83C, bit 4)
- const EVENT_7AD ; 7AD, (D83C, bit 5)
- const EVENT_7AE ; 7AE, (D83C, bit 6)
- const EVENT_7AF ; 7AF, (D83C, bit 7)
- const EVENT_7B0 ; 7B0, (D83D, bit 0)
- const EVENT_7B1 ; 7B1, (D83D, bit 1)
- const EVENT_7B2 ; 7B2, (D83D, bit 2)
- const EVENT_7B3 ; 7B3, (D83D, bit 3)
- const EVENT_7B4 ; 7B4, (D83D, bit 4)
- const EVENT_7B5 ; 7B5, (D83D, bit 5)
- const EVENT_7B6 ; 7B6, (D83D, bit 6)
- const EVENT_7B7 ; 7B7, (D83D, bit 7)
- const EVENT_7B8 ; 7B8, (D83E, bit 0)
- const EVENT_7B9 ; 7B9, (D83E, bit 1)
- const EVENT_7BA ; 7BA, (D83E, bit 2)
- const EVENT_7BB ; 7BB, (D83E, bit 3)
- const EVENT_7BC ; 7BC, (D83E, bit 4)
- const EVENT_7BD ; 7BD, (D83E, bit 5)
- const EVENT_7BE ; 7BE, (D83E, bit 6)
- const EVENT_7BF ; 7BF, (D83E, bit 7)
- const EVENT_7C0 ; 7C0, (D83F, bit 0)
- const EVENT_7C1 ; 7C1, (D83F, bit 1)
- const EVENT_7C2 ; 7C2, (D83F, bit 2)
- const EVENT_7C3 ; 7C3, (D83F, bit 3)
- const EVENT_7C4 ; 7C4, (D83F, bit 4)
- const EVENT_7C5 ; 7C5, (D83F, bit 5)
- const EVENT_7C6 ; 7C6, (D83F, bit 6)
- const EVENT_7C7 ; 7C7, (D83F, bit 7)
- const EVENT_7C8 ; 7C8, (D840, bit 0)
- const EVENT_7C9 ; 7C9, (D840, bit 1)
- const EVENT_7CA ; 7CA, (D840, bit 2)
- const EVENT_7CB ; 7CB, (D840, bit 3)
- const EVENT_7CC ; 7CC, (D840, bit 4)
- const EVENT_7CD ; 7CD, (D840, bit 5)
- const EVENT_7CE ; 7CE, (D840, bit 6)
- const EVENT_7CF ; 7CF, (D840, bit 7)
- const EVENT_7D0 ; 7D0, (D841, bit 0)
- const EVENT_7D1 ; 7D1, (D841, bit 1)
- const EVENT_7D2 ; 7D2, (D841, bit 2)
- const EVENT_7D3 ; 7D3, (D841, bit 3)
- const EVENT_7D4 ; 7D4, (D841, bit 4)
- const EVENT_7D5 ; 7D5, (D841, bit 5)
- const EVENT_7D6 ; 7D6, (D841, bit 6)
- const EVENT_7D7 ; 7D7, (D841, bit 7)
- const EVENT_7D8 ; 7D8, (D842, bit 0)
- const EVENT_7D9 ; 7D9, (D842, bit 1)
- const EVENT_7DA ; 7DA, (D842, bit 2)
- const EVENT_7DB ; 7DB, (D842, bit 3)
- const EVENT_7DC ; 7DC, (D842, bit 4)
- const EVENT_7DD ; 7DD, (D842, bit 5)
- const EVENT_7DE ; 7DE, (D842, bit 6)
- const EVENT_7DF ; 7DF, (D842, bit 7)
- const EVENT_7E0 ; 7E0, (D843, bit 0)
- const EVENT_7E1 ; 7E1, (D843, bit 1)
- const EVENT_7E2 ; 7E2, (D843, bit 2)
- const EVENT_7E3 ; 7E3, (D843, bit 3)
- const EVENT_7E4 ; 7E4, (D843, bit 4)
- const EVENT_7E5 ; 7E5, (D843, bit 5)
- const EVENT_7E6 ; 7E6, (D843, bit 6)
- const EVENT_7E7 ; 7E7, (D843, bit 7)
- const EVENT_7E8 ; 7E8, (D844, bit 0)
- const EVENT_7E9 ; 7E9, (D844, bit 1)
- const EVENT_7EA ; 7EA, (D844, bit 2)
- const EVENT_7EB ; 7EB, (D844, bit 3)
- const EVENT_7EC ; 7EC, (D844, bit 4)
- const EVENT_7ED ; 7ED, (D844, bit 5)
- const EVENT_7EE ; 7EE, (D844, bit 6)
- const EVENT_7EF ; 7EF, (D844, bit 7)
- const EVENT_7F0 ; 7F0, (D845, bit 0)
- const EVENT_7F1 ; 7F1, (D845, bit 1)
- const EVENT_7F2 ; 7F2, (D845, bit 2)
- const EVENT_7F3 ; 7F3, (D845, bit 3)
- const EVENT_7F4 ; 7F4, (D845, bit 4)
- const EVENT_7F5 ; 7F5, (D845, bit 5)
- const EVENT_7F6 ; 7F6, (D845, bit 6)
- const EVENT_7F7 ; 7F7, (D845, bit 7)
- const EVENT_7F8 ; 7F8, (D846, bit 0)
- const EVENT_7F9 ; 7F9, (D846, bit 1)
- const EVENT_7FA ; 7FA, (D846, bit 2)
- const EVENT_7FB ; 7FB, (D846, bit 3)
- const EVENT_7FC ; 7FC, (D846, bit 4)
- const EVENT_7FD ; 7FD, (D846, bit 5)
- const EVENT_7FE ; 7FE, (D846, bit 6)
- const EVENT_7FF ; 7FF, (D846, bit 7)
- const EVENT_800 ; 800, (D847, bit 0)
- const EVENT_BEAT_MANSION_2_TRAINER_0 ; 801, (D847, bit 1)
- const EVENT_802 ; 802, (D847, bit 2)
- const EVENT_803 ; 803, (D847, bit 3)
- const EVENT_804 ; 804, (D847, bit 4)
- const EVENT_805 ; 805, (D847, bit 5)
- const EVENT_806 ; 806, (D847, bit 6)
- const EVENT_807 ; 807, (D847, bit 7)
- const EVENT_808 ; 808, (D848, bit 0)
- const EVENT_809 ; 809, (D848, bit 1)
- const EVENT_80A ; 80A, (D848, bit 2)
- const EVENT_80B ; 80B, (D848, bit 3)
- const EVENT_80C ; 80C, (D848, bit 4)
- const EVENT_80D ; 80D, (D848, bit 5)
- const EVENT_80E ; 80E, (D848, bit 6)
- const EVENT_80F ; 80F, (D848, bit 7)
- const EVENT_810 ; 810, (D849, bit 0)
- const EVENT_BEAT_MANSION_3_TRAINER_0 ; 811, (D849, bit 1)
- const EVENT_BEAT_MANSION_3_TRAINER_1 ; 812, (D849, bit 2)
- const EVENT_813 ; 813, (D849, bit 3)
- const EVENT_814 ; 814, (D849, bit 4)
- const EVENT_815 ; 815, (D849, bit 5)
- const EVENT_816 ; 816, (D849, bit 6)
- const EVENT_817 ; 817, (D849, bit 7)
- const EVENT_818 ; 818, (D84A, bit 0)
- const EVENT_819 ; 819, (D84A, bit 1)
- const EVENT_81A ; 81A, (D84A, bit 2)
- const EVENT_81B ; 81B, (D84A, bit 3)
- const EVENT_81C ; 81C, (D84A, bit 4)
- const EVENT_81D ; 81D, (D84A, bit 5)
- const EVENT_81E ; 81E, (D84A, bit 6)
- const EVENT_81F ; 81F, (D84A, bit 7)
- const EVENT_820 ; 820, (D84B, bit 0)
- const EVENT_BEAT_MANSION_4_TRAINER_0 ; 821, (D84B, bit 1)
- const EVENT_BEAT_MANSION_4_TRAINER_1 ; 822, (D84B, bit 2)
- const EVENT_823 ; 823, (D84B, bit 3)
- const EVENT_824 ; 824, (D84B, bit 4)
- const EVENT_825 ; 825, (D84B, bit 5)
- const EVENT_826 ; 826, (D84B, bit 6)
- const EVENT_827 ; 827, (D84B, bit 7)
- const EVENT_828 ; 828, (D84C, bit 0)
- const EVENT_829 ; 829, (D84C, bit 1)
- const EVENT_82A ; 82A, (D84C, bit 2)
- const EVENT_82B ; 82B, (D84C, bit 3)
- const EVENT_82C ; 82C, (D84C, bit 4)
- const EVENT_82D ; 82D, (D84C, bit 5)
- const EVENT_82E ; 82E, (D84C, bit 6)
- const EVENT_82F ; 82F, (D84C, bit 7)
- const EVENT_830 ; 830, (D84D, bit 0)
- const EVENT_831 ; 831, (D84D, bit 1)
- const EVENT_832 ; 832, (D84D, bit 2)
- const EVENT_833 ; 833, (D84D, bit 3)
- const EVENT_834 ; 834, (D84D, bit 4)
- const EVENT_835 ; 835, (D84D, bit 5)
- const EVENT_836 ; 836, (D84D, bit 6)
- const EVENT_837 ; 837, (D84D, bit 7)
- const EVENT_838 ; 838, (D84E, bit 0)
- const EVENT_839 ; 839, (D84E, bit 1)
- const EVENT_83A ; 83A, (D84E, bit 2)
- const EVENT_83B ; 83B, (D84E, bit 3)
- const EVENT_83C ; 83C, (D84E, bit 4)
- const EVENT_83D ; 83D, (D84E, bit 5)
- const EVENT_83E ; 83E, (D84E, bit 6)
- const EVENT_83F ; 83F, (D84E, bit 7)
- const EVENT_840 ; 840, (D84F, bit 0)
- const EVENT_841 ; 841, (D84F, bit 1)
- const EVENT_842 ; 842, (D84F, bit 2)
- const EVENT_843 ; 843, (D84F, bit 3)
- const EVENT_844 ; 844, (D84F, bit 4)
- const EVENT_845 ; 845, (D84F, bit 5)
- const EVENT_846 ; 846, (D84F, bit 6)
- const EVENT_847 ; 847, (D84F, bit 7)
- const EVENT_848 ; 848, (D850, bit 0)
- const EVENT_849 ; 849, (D850, bit 1)
- const EVENT_84A ; 84A, (D850, bit 2)
- const EVENT_84B ; 84B, (D850, bit 3)
- const EVENT_84C ; 84C, (D850, bit 4)
- const EVENT_84D ; 84D, (D850, bit 5)
- const EVENT_84E ; 84E, (D850, bit 6)
- const EVENT_84F ; 84F, (D850, bit 7)
- const EVENT_850 ; 850, (D851, bit 0)
- const EVENT_851 ; 851, (D851, bit 1)
- const EVENT_852 ; 852, (D851, bit 2)
- const EVENT_853 ; 853, (D851, bit 3)
- const EVENT_854 ; 854, (D851, bit 4)
- const EVENT_855 ; 855, (D851, bit 5)
- const EVENT_856 ; 856, (D851, bit 6)
- const EVENT_857 ; 857, (D851, bit 7)
- const EVENT_858 ; 858, (D852, bit 0)
- const EVENT_859 ; 859, (D852, bit 1)
- const EVENT_85A ; 85A, (D852, bit 2)
- const EVENT_85B ; 85B, (D852, bit 3)
- const EVENT_85C ; 85C, (D852, bit 4)
- const EVENT_85D ; 85D, (D852, bit 5)
- const EVENT_85E ; 85E, (D852, bit 6)
- const EVENT_85F ; 85F, (D852, bit 7)
- const EVENT_860 ; 860, (D853, bit 0)
- const EVENT_861 ; 861, (D853, bit 1)
- const EVENT_862 ; 862, (D853, bit 2)
- const EVENT_863 ; 863, (D853, bit 3)
- const EVENT_864 ; 864, (D853, bit 4)
- const EVENT_865 ; 865, (D853, bit 5)
- const EVENT_866 ; 866, (D853, bit 6)
- const EVENT_867 ; 867, (D853, bit 7)
- const EVENT_868 ; 868, (D854, bit 0)
- const EVENT_869 ; 869, (D854, bit 1)
- const EVENT_86A ; 86A, (D854, bit 2)
- const EVENT_86B ; 86B, (D854, bit 3)
- const EVENT_86C ; 86C, (D854, bit 4)
- const EVENT_86D ; 86D, (D854, bit 5)
- const EVENT_86E ; 86E, (D854, bit 6)
- const EVENT_86F ; 86F, (D854, bit 7)
- const EVENT_870 ; 870, (D855, bit 0)
- const EVENT_871 ; 871, (D855, bit 1)
- const EVENT_872 ; 872, (D855, bit 2)
- const EVENT_873 ; 873, (D855, bit 3)
- const EVENT_874 ; 874, (D855, bit 4)
- const EVENT_875 ; 875, (D855, bit 5)
- const EVENT_876 ; 876, (D855, bit 6)
- const EVENT_877 ; 877, (D855, bit 7)
- const EVENT_878 ; 878, (D856, bit 0)
- const EVENT_879 ; 879, (D856, bit 1)
- const EVENT_87A ; 87A, (D856, bit 2)
- const EVENT_87B ; 87B, (D856, bit 3)
- const EVENT_87C ; 87C, (D856, bit 4)
- const EVENT_87D ; 87D, (D856, bit 5)
- const EVENT_87E ; 87E, (D856, bit 6)
- const EVENT_87F ; 87F, (D856, bit 7)
- const EVENT_GOT_HM03 ; 880, (D857, bit 0)
- const EVENT_881 ; 881, (D857, bit 1)
- const EVENT_882 ; 882, (D857, bit 2)
- const EVENT_883 ; 883, (D857, bit 3)
- const EVENT_884 ; 884, (D857, bit 4)
- const EVENT_885 ; 885, (D857, bit 5)
- const EVENT_886 ; 886, (D857, bit 6)
- const EVENT_887 ; 887, (D857, bit 7)
- const EVENT_888 ; 888, (D858, bit 0)
- const EVENT_889 ; 889, (D858, bit 1)
- const EVENT_88A ; 88A, (D858, bit 2)
- const EVENT_88B ; 88B, (D858, bit 3)
- const EVENT_88C ; 88C, (D858, bit 4)
- const EVENT_88D ; 88D, (D858, bit 5)
- const EVENT_88E ; 88E, (D858, bit 6)
- const EVENT_88F ; 88F, (D858, bit 7)
- const EVENT_890 ; 890, (D859, bit 0)
- const EVENT_891 ; 891, (D859, bit 1)
- const EVENT_892 ; 892, (D859, bit 2)
- const EVENT_893 ; 893, (D859, bit 3)
- const EVENT_894 ; 894, (D859, bit 4)
- const EVENT_895 ; 895, (D859, bit 5)
- const EVENT_896 ; 896, (D859, bit 6)
- const EVENT_897 ; 897, (D859, bit 7)
- const EVENT_898 ; 898, (D85A, bit 0)
- const EVENT_899 ; 899, (D85A, bit 1)
- const EVENT_89A ; 89A, (D85A, bit 2)
- const EVENT_89B ; 89B, (D85A, bit 3)
- const EVENT_89C ; 89C, (D85A, bit 4)
- const EVENT_89D ; 89D, (D85A, bit 5)
- const EVENT_89E ; 89E, (D85A, bit 6)
- const EVENT_89F ; 89F, (D85A, bit 7)
- const EVENT_8A0 ; 8A0, (D85B, bit 0)
- const EVENT_8A1 ; 8A1, (D85B, bit 1)
- const EVENT_8A2 ; 8A2, (D85B, bit 2)
- const EVENT_8A3 ; 8A3, (D85B, bit 3)
- const EVENT_8A4 ; 8A4, (D85B, bit 4)
- const EVENT_8A5 ; 8A5, (D85B, bit 5)
- const EVENT_8A6 ; 8A6, (D85B, bit 6)
- const EVENT_8A7 ; 8A7, (D85B, bit 7)
- const EVENT_8A8 ; 8A8, (D85C, bit 0)
- const EVENT_8A9 ; 8A9, (D85C, bit 1)
- const EVENT_8AA ; 8AA, (D85C, bit 2)
- const EVENT_8AB ; 8AB, (D85C, bit 3)
- const EVENT_8AC ; 8AC, (D85C, bit 4)
- const EVENT_8AD ; 8AD, (D85C, bit 5)
- const EVENT_8AE ; 8AE, (D85C, bit 6)
- const EVENT_8AF ; 8AF, (D85C, bit 7)
- const EVENT_8B0 ; 8B0, (D85D, bit 0)
- const EVENT_8B1 ; 8B1, (D85D, bit 1)
- const EVENT_8B2 ; 8B2, (D85D, bit 2)
- const EVENT_8B3 ; 8B3, (D85D, bit 3)
- const EVENT_8B4 ; 8B4, (D85D, bit 4)
- const EVENT_8B5 ; 8B5, (D85D, bit 5)
- const EVENT_8B6 ; 8B6, (D85D, bit 6)
- const EVENT_8B7 ; 8B7, (D85D, bit 7)
- const EVENT_8B8 ; 8B8, (D85E, bit 0)
- const EVENT_8B9 ; 8B9, (D85E, bit 1)
- const EVENT_8BA ; 8BA, (D85E, bit 2)
- const EVENT_8BB ; 8BB, (D85E, bit 3)
- const EVENT_8BC ; 8BC, (D85E, bit 4)
- const EVENT_8BD ; 8BD, (D85E, bit 5)
- const EVENT_8BE ; 8BE, (D85E, bit 6)
- const EVENT_8BF ; 8BF, (D85E, bit 7)
- const EVENT_8C0 ; 8C0, (D85F, bit 0)
- const EVENT_BEAT_MEWTWO ; 8C1, (D85F, bit 1)
- const EVENT_8C2 ; 8C2, (D85F, bit 2)
- const EVENT_8C3 ; 8C3, (D85F, bit 3)
- const EVENT_8C4 ; 8C4, (D85F, bit 4)
- const EVENT_8C5 ; 8C5, (D85F, bit 5)
- const EVENT_8C6 ; 8C6, (D85F, bit 6)
- const EVENT_8C7 ; 8C7, (D85F, bit 7)
- const EVENT_8C8 ; 8C8, (D860, bit 0)
- const EVENT_8C9 ; 8C9, (D860, bit 1)
- const EVENT_8CA ; 8CA, (D860, bit 2)
- const EVENT_8CB ; 8CB, (D860, bit 3)
- const EVENT_8CC ; 8CC, (D860, bit 4)
- const EVENT_8CD ; 8CD, (D860, bit 5)
- const EVENT_8CE ; 8CE, (D860, bit 6)
- const EVENT_8CF ; 8CF, (D860, bit 7)
- const EVENT_8D0 ; 8D0, (D861, bit 0)
- const EVENT_8D1 ; 8D1, (D861, bit 1)
- const EVENT_8D2 ; 8D2, (D861, bit 2)
- const EVENT_8D3 ; 8D3, (D861, bit 3)
- const EVENT_8D4 ; 8D4, (D861, bit 4)
- const EVENT_8D5 ; 8D5, (D861, bit 5)
- const EVENT_8D6 ; 8D6, (D861, bit 6)
- const EVENT_8D7 ; 8D7, (D861, bit 7)
- const EVENT_8D8 ; 8D8, (D862, bit 0)
- const EVENT_8D9 ; 8D9, (D862, bit 1)
- const EVENT_8DA ; 8DA, (D862, bit 2)
- const EVENT_8DB ; 8DB, (D862, bit 3)
- const EVENT_8DC ; 8DC, (D862, bit 4)
- const EVENT_8DD ; 8DD, (D862, bit 5)
- const EVENT_8DE ; 8DE, (D862, bit 6)
- const EVENT_8DF ; 8DF, (D862, bit 7)
- const ELITE4_EVENTS_START ; 8E0, (D863, bit 0)
- const EVENT_BEAT_LORELEIS_ROOM_TRAINER_0 ; 8E1, (D863, bit 1)
- const EVENT_8E2 ; 8E2, (D863, bit 2)
- const EVENT_8E3 ; 8E3, (D863, bit 3)
- const EVENT_8E4 ; 8E4, (D863, bit 4)
- const EVENT_8E5 ; 8E5, (D863, bit 5)
- const EVENT_AUTOWALKED_INTO_LORELEIS_ROOM ; 8E6, (D863, bit 6)
- const EVENT_8E7 ; 8E7, (D863, bit 7)
- const EVENT_8E8 ; 8E8, (D864, bit 0)
- const EVENT_BEAT_BRUNOS_ROOM_TRAINER_0 ; 8E9, (D864, bit 1)
- const EVENT_8EA ; 8EA, (D864, bit 2)
- const EVENT_8EB ; 8EB, (D864, bit 3)
- const EVENT_8EC ; 8EC, (D864, bit 4)
- const EVENT_8ED ; 8ED, (D864, bit 5)
- const EVENT_AUTOWALKED_INTO_BRUNOS_ROOM ; 8EE, (D864, bit 6)
- const EVENT_8EF ; 8EF, (D864, bit 7)
- const EVENT_8F0 ; 8F0, (D865, bit 0)
- const EVENT_BEAT_AGATHAS_ROOM_TRAINER_0 ; 8F1, (D865, bit 1)
- const EVENT_8F2 ; 8F2, (D865, bit 2)
- const EVENT_8F3 ; 8F3, (D865, bit 3)
- const EVENT_8F4 ; 8F4, (D865, bit 4)
- const EVENT_8F5 ; 8F5, (D865, bit 5)
- const EVENT_AUTOWALKED_INTO_AGATHAS_ROOM ; 8F6, (D865, bit 6)
- const EVENT_8F7 ; 8F7, (D865, bit 7)
- const EVENT_8F8 ; 8F8, (D866, bit 0)
- const EVENT_BEAT_LANCES_ROOM_TRAINER_0 ; 8F9, (D866, bit 1)
- const EVENT_8FA ; 8FA, (D866, bit 2)
- const EVENT_8FB ; 8FB, (D866, bit 3)
- const EVENT_8FC ; 8FC, (D866, bit 4)
- const EVENT_8FD ; 8FD, (D866, bit 5)
- const EVENT_BEAT_LANCE ; 8FE, (D866, bit 6)
- const EVENT_LANCES_ROOM_LOCK_DOOR ; 8FF, (D866, bit 7)
- const EVENT_900 ; 900, (D867, bit 0)
- const EVENT_BEAT_CHAMPION_RIVAL ; 901, (D867, bit 1)
- const EVENT_902 ; 902, (D867, bit 2)
- const EVENT_903 ; 903, (D867, bit 3)
- const EVENT_904 ; 904, (D867, bit 4)
- const EVENT_905 ; 905, (D867, bit 5)
- const EVENT_906 ; 906, (D867, bit 6)
- const ELITE4_CHAMPION_EVENTS_END ; 907, (D867, bit 7)
- const EVENT_908 ; 908, (D868, bit 0)
- const EVENT_909 ; 909, (D868, bit 1)
- const EVENT_90A ; 90A, (D868, bit 2)
- const EVENT_90B ; 90B, (D868, bit 3)
- const EVENT_90C ; 90C, (D868, bit 4)
- const EVENT_90D ; 90D, (D868, bit 5)
- const EVENT_90E ; 90E, (D868, bit 6)
- const EVENT_90F ; 90F, (D868, bit 7)
- const EVENT_910 ; 910, (D869, bit 0)
- const EVENT_BEAT_VICTORY_ROAD_1_TRAINER_0 ; 911, (D869, bit 1)
- const EVENT_BEAT_VICTORY_ROAD_1_TRAINER_1 ; 912, (D869, bit 2)
- const EVENT_913 ; 913, (D869, bit 3)
- const EVENT_914 ; 914, (D869, bit 4)
- const EVENT_915 ; 915, (D869, bit 5)
- const EVENT_916 ; 916, (D869, bit 6)
- const EVENT_VICTORY_ROAD_1_BOULDER_ON_SWITCH ; 917, (D869, bit 7)
- const EVENT_918 ; 918, (D86A, bit 0)
- const EVENT_919 ; 919, (D86A, bit 1)
- const EVENT_91A ; 91A, (D86A, bit 2)
- const EVENT_91B ; 91B, (D86A, bit 3)
- const EVENT_91C ; 91C, (D86A, bit 4)
- const EVENT_91D ; 91D, (D86A, bit 5)
- const EVENT_91E ; 91E, (D86A, bit 6)
- const EVENT_91F ; 91F, (D86A, bit 7)
- const EVENT_920 ; 920, (D86B, bit 0)
- const EVENT_921 ; 921, (D86B, bit 1)
- const EVENT_922 ; 922, (D86B, bit 2)
- const EVENT_923 ; 923, (D86B, bit 3)
- const EVENT_924 ; 924, (D86B, bit 4)
- const EVENT_925 ; 925, (D86B, bit 5)
- const EVENT_926 ; 926, (D86B, bit 6)
- const EVENT_927 ; 927, (D86B, bit 7)
- const EVENT_928 ; 928, (D86C, bit 0)
- const EVENT_929 ; 929, (D86C, bit 1)
- const EVENT_92A ; 92A, (D86C, bit 2)
- const EVENT_92B ; 92B, (D86C, bit 3)
- const EVENT_92C ; 92C, (D86C, bit 4)
- const EVENT_92D ; 92D, (D86C, bit 5)
- const EVENT_92E ; 92E, (D86C, bit 6)
- const EVENT_92F ; 92F, (D86C, bit 7)
- const EVENT_930 ; 930, (D86D, bit 0)
- const EVENT_931 ; 931, (D86D, bit 1)
- const EVENT_932 ; 932, (D86D, bit 2)
- const EVENT_933 ; 933, (D86D, bit 3)
- const EVENT_934 ; 934, (D86D, bit 4)
- const EVENT_935 ; 935, (D86D, bit 5)
- const EVENT_936 ; 936, (D86D, bit 6)
- const EVENT_937 ; 937, (D86D, bit 7)
- const EVENT_938 ; 938, (D86E, bit 0)
- const EVENT_939 ; 939, (D86E, bit 1)
- const EVENT_93A ; 93A, (D86E, bit 2)
- const EVENT_93B ; 93B, (D86E, bit 3)
- const EVENT_93C ; 93C, (D86E, bit 4)
- const EVENT_93D ; 93D, (D86E, bit 5)
- const EVENT_93E ; 93E, (D86E, bit 6)
- const EVENT_93F ; 93F, (D86E, bit 7)
- const EVENT_940 ; 940, (D86F, bit 0)
- const EVENT_941 ; 941, (D86F, bit 1)
- const EVENT_942 ; 942, (D86F, bit 2)
- const EVENT_943 ; 943, (D86F, bit 3)
- const EVENT_944 ; 944, (D86F, bit 4)
- const EVENT_945 ; 945, (D86F, bit 5)
- const EVENT_946 ; 946, (D86F, bit 6)
- const EVENT_947 ; 947, (D86F, bit 7)
- const EVENT_948 ; 948, (D870, bit 0)
- const EVENT_949 ; 949, (D870, bit 1)
- const EVENT_94A ; 94A, (D870, bit 2)
- const EVENT_94B ; 94B, (D870, bit 3)
- const EVENT_94C ; 94C, (D870, bit 4)
- const EVENT_94D ; 94D, (D870, bit 5)
- const EVENT_94E ; 94E, (D870, bit 6)
- const EVENT_94F ; 94F, (D870, bit 7)
- const EVENT_950 ; 950, (D871, bit 0)
- const EVENT_951 ; 951, (D871, bit 1)
- const EVENT_952 ; 952, (D871, bit 2)
- const EVENT_953 ; 953, (D871, bit 3)
- const EVENT_954 ; 954, (D871, bit 4)
- const EVENT_955 ; 955, (D871, bit 5)
- const EVENT_956 ; 956, (D871, bit 6)
- const EVENT_957 ; 957, (D871, bit 7)
- const EVENT_958 ; 958, (D872, bit 0)
- const EVENT_959 ; 959, (D872, bit 1)
- const EVENT_95A ; 95A, (D872, bit 2)
- const EVENT_95B ; 95B, (D872, bit 3)
- const EVENT_95C ; 95C, (D872, bit 4)
- const EVENT_95D ; 95D, (D872, bit 5)
- const EVENT_95E ; 95E, (D872, bit 6)
- const EVENT_95F ; 95F, (D872, bit 7)
- const EVENT_960 ; 960, (D873, bit 0)
- const EVENT_961 ; 961, (D873, bit 1)
- const EVENT_962 ; 962, (D873, bit 2)
- const EVENT_963 ; 963, (D873, bit 3)
- const EVENT_964 ; 964, (D873, bit 4)
- const EVENT_965 ; 965, (D873, bit 5)
- const EVENT_966 ; 966, (D873, bit 6)
- const EVENT_967 ; 967, (D873, bit 7)
- const EVENT_968 ; 968, (D874, bit 0)
- const EVENT_969 ; 969, (D874, bit 1)
- const EVENT_96A ; 96A, (D874, bit 2)
- const EVENT_96B ; 96B, (D874, bit 3)
- const EVENT_96C ; 96C, (D874, bit 4)
- const EVENT_96D ; 96D, (D874, bit 5)
- const EVENT_96E ; 96E, (D874, bit 6)
- const EVENT_96F ; 96F, (D874, bit 7)
- const EVENT_970 ; 970, (D875, bit 0)
- const EVENT_971 ; 971, (D875, bit 1)
- const EVENT_972 ; 972, (D875, bit 2)
- const EVENT_973 ; 973, (D875, bit 3)
- const EVENT_974 ; 974, (D875, bit 4)
- const EVENT_975 ; 975, (D875, bit 5)
- const EVENT_976 ; 976, (D875, bit 6)
- const EVENT_977 ; 977, (D875, bit 7)
- const EVENT_978 ; 978, (D876, bit 0)
- const EVENT_979 ; 979, (D876, bit 1)
- const EVENT_97A ; 97A, (D876, bit 2)
- const EVENT_97B ; 97B, (D876, bit 3)
- const EVENT_97C ; 97C, (D876, bit 4)
- const EVENT_97D ; 97D, (D876, bit 5)
- const EVENT_97E ; 97E, (D876, bit 6)
- const EVENT_97F ; 97F, (D876, bit 7)
- const EVENT_980 ; 980, (D877, bit 0)
- const EVENT_981 ; 981, (D877, bit 1)
- const EVENT_982 ; 982, (D877, bit 2)
- const EVENT_983 ; 983, (D877, bit 3)
- const EVENT_984 ; 984, (D877, bit 4)
- const EVENT_985 ; 985, (D877, bit 5)
- const EVENT_986 ; 986, (D877, bit 6)
- const EVENT_987 ; 987, (D877, bit 7)
- const EVENT_988 ; 988, (D878, bit 0)
- const EVENT_989 ; 989, (D878, bit 1)
- const EVENT_98A ; 98A, (D878, bit 2)
- const EVENT_98B ; 98B, (D878, bit 3)
- const EVENT_98C ; 98C, (D878, bit 4)
- const EVENT_98D ; 98D, (D878, bit 5)
- const EVENT_98E ; 98E, (D878, bit 6)
- const EVENT_98F ; 98F, (D878, bit 7)
- const EVENT_990 ; 990, (D879, bit 0)
- const EVENT_991 ; 991, (D879, bit 1)
- const EVENT_992 ; 992, (D879, bit 2)
- const EVENT_993 ; 993, (D879, bit 3)
- const EVENT_994 ; 994, (D879, bit 4)
- const EVENT_995 ; 995, (D879, bit 5)
- const EVENT_996 ; 996, (D879, bit 6)
- const EVENT_997 ; 997, (D879, bit 7)
- const EVENT_998 ; 998, (D87A, bit 0)
- const EVENT_999 ; 999, (D87A, bit 1)
- const EVENT_99A ; 99A, (D87A, bit 2)
- const EVENT_99B ; 99B, (D87A, bit 3)
- const EVENT_99C ; 99C, (D87A, bit 4)
- const EVENT_99D ; 99D, (D87A, bit 5)
- const EVENT_99E ; 99E, (D87A, bit 6)
- const EVENT_99F ; 99F, (D87A, bit 7)
- const EVENT_9A0 ; 9A0, (D87B, bit 0)
- const EVENT_9A1 ; 9A1, (D87B, bit 1)
- const EVENT_9A2 ; 9A2, (D87B, bit 2)
- const EVENT_9A3 ; 9A3, (D87B, bit 3)
- const EVENT_9A4 ; 9A4, (D87B, bit 4)
- const EVENT_9A5 ; 9A5, (D87B, bit 5)
- const EVENT_9A6 ; 9A6, (D87B, bit 6)
- const EVENT_9A7 ; 9A7, (D87B, bit 7)
- const EVENT_9A8 ; 9A8, (D87C, bit 0)
- const EVENT_9A9 ; 9A9, (D87C, bit 1)
- const EVENT_9AA ; 9AA, (D87C, bit 2)
- const EVENT_9AB ; 9AB, (D87C, bit 3)
- const EVENT_9AC ; 9AC, (D87C, bit 4)
- const EVENT_9AD ; 9AD, (D87C, bit 5)
- const EVENT_9AE ; 9AE, (D87C, bit 6)
- const EVENT_9AF ; 9AF, (D87C, bit 7)
- const EVENT_9B0 ; 9B0, (D87D, bit 0)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_0 ; 9B1, (D87D, bit 1)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_1 ; 9B2, (D87D, bit 2)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_2 ; 9B3, (D87D, bit 3)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_3 ; 9B4, (D87D, bit 4)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_4 ; 9B5, (D87D, bit 5)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_5 ; 9B6, (D87D, bit 6)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_6 ; 9B7, (D87D, bit 7)
- const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_7 ; 9B8, (D87E, bit 0)
- const EVENT_9B9 ; 9B9, (D87E, bit 1)
- const EVENT_9BA ; 9BA, (D87E, bit 2)
- const EVENT_9BB ; 9BB, (D87E, bit 3)
- const EVENT_9BC ; 9BC, (D87E, bit 4)
- const EVENT_9BD ; 9BD, (D87E, bit 5)
- const EVENT_9BE ; 9BE, (D87E, bit 6)
- const EVENT_9BF ; 9BF, (D87E, bit 7)
- const EVENT_SEAFOAM2_BOULDER1_DOWN_HOLE ; 9C0, (D87F, bit 0)
- const EVENT_SEAFOAM2_BOULDER2_DOWN_HOLE ; 9C1, (D87F, bit 1)
- const EVENT_9C2 ; 9C2, (D87F, bit 2)
- const EVENT_9C3 ; 9C3, (D87F, bit 3)
- const EVENT_9C4 ; 9C4, (D87F, bit 4)
- const EVENT_9C5 ; 9C5, (D87F, bit 5)
- const EVENT_9C6 ; 9C6, (D87F, bit 6)
- const EVENT_9C7 ; 9C7, (D87F, bit 7)
- const EVENT_SEAFOAM3_BOULDER1_DOWN_HOLE ; 9C8, (D880, bit 0)
- const EVENT_SEAFOAM3_BOULDER2_DOWN_HOLE ; 9C9, (D880, bit 1)
- const EVENT_9CA ; 9CA, (D880, bit 2)
- const EVENT_9CB ; 9CB, (D880, bit 3)
- const EVENT_9CC ; 9CC, (D880, bit 4)
- const EVENT_9CD ; 9CD, (D880, bit 5)
- const EVENT_9CE ; 9CE, (D880, bit 6)
- const EVENT_9CF ; 9CF, (D880, bit 7)
- const EVENT_SEAFOAM4_BOULDER1_DOWN_HOLE ; 9D0, (D881, bit 0)
- const EVENT_SEAFOAM4_BOULDER2_DOWN_HOLE ; 9D1, (D881, bit 1)
- const EVENT_9D2 ; 9D2, (D881, bit 2)
- const EVENT_9D3 ; 9D3, (D881, bit 3)
- const EVENT_9D4 ; 9D4, (D881, bit 4)
- const EVENT_9D5 ; 9D5, (D881, bit 5)
- const EVENT_9D6 ; 9D6, (D881, bit 6)
- const EVENT_9D7 ; 9D7, (D881, bit 7)
- const EVENT_9D8 ; 9D8, (D882, bit 0)
- const EVENT_9D9 ; 9D9, (D882, bit 1)
- const EVENT_BEAT_ARTICUNO ; 9DA, (D882, bit 2)
- const EVENT_9DB ; 9DB, (D882, bit 3)
- const EVENT_9DC ; 9DC, (D882, bit 4)
- const EVENT_9DD ; 9DD, (D882, bit 5)
- const EVENT_9DE ; 9DE, (D882, bit 6)
- const EVENT_9DF ; 9DF, (D882, bit 7)
- const EVENT_9E0 ; 9E0, (D883, bit 0)
- const EVENT_9E1 ; 9E1, (D883, bit 1)
- const EVENT_9E2 ; 9E2, (D883, bit 2)
- const EVENT_9E3 ; 9E3, (D883, bit 3)
- const EVENT_9E4 ; 9E4, (D883, bit 4)
- const EVENT_9E5 ; 9E5, (D883, bit 5)
- const EVENT_9E6 ; 9E6, (D883, bit 6)
- const EVENT_9E7 ; 9E7, (D883, bit 7)
- const EVENT_9E8 ; 9E8, (D884, bit 0)
- const EVENT_9E9 ; 9E9, (D884, bit 1)
- const EVENT_9EA ; 9EA, (D884, bit 2)
- const EVENT_9EB ; 9EB, (D884, bit 3)
- const EVENT_9EC ; 9EC, (D884, bit 4)
- const EVENT_9ED ; 9ED, (D884, bit 5)
- const EVENT_9EE ; 9EE, (D884, bit 6)
- const EVENT_9EF ; 9EF, (D884, bit 7)
- const EVENT_9F0 ; 9F0, (D885, bit 0)
- const EVENT_9F1 ; 9F1, (D885, bit 1)
- const EVENT_9F2 ; 9F2, (D885, bit 2)
- const EVENT_9F3 ; 9F3, (D885, bit 3)
- const EVENT_9F4 ; 9F4, (D885, bit 4)
- const EVENT_9F5 ; 9F5, (D885, bit 5)
- const EVENT_9F6 ; 9F6, (D885, bit 6)
- const EVENT_9F7 ; 9F7, (D885, bit 7)
- const EVENT_9F8 ; 9F8, (D886, bit 0)
- const EVENT_9F9 ; 9F9, (D886, bit 1)
- const EVENT_9FA ; 9FA, (D886, bit 2)
- const EVENT_9FB ; 9FB, (D886, bit 3)
- const EVENT_9FC ; 9FC, (D886, bit 4)
- const EVENT_9FD ; 9FD, (D886, bit 5)
- const EVENT_9FE ; 9FE, (D886, bit 6)
- const EVENT_9FF ; 9FF, (D886, bit 7)
+ const_def
+ const EVENT_FOLLOWED_OAK_INTO_LAB
+ const EVENT_001
+ const EVENT_002
+ const EVENT_HALL_OF_FAME_DEX_RATING
+ const EVENT_004
+ const EVENT_005
+ const EVENT_PALLET_AFTER_GETTING_POKEBALLS
+ const EVENT_007
+ const EVENT_008
+ const EVENT_009
+ const EVENT_00A
+ const EVENT_00B
+ const EVENT_00C
+ const EVENT_00D
+ const EVENT_00E
+ const EVENT_00F
+ const EVENT_010
+ const EVENT_011
+ const EVENT_012
+ const EVENT_013
+ const EVENT_014
+ const EVENT_015
+ const EVENT_016
+ const EVENT_017
+ const EVENT_GOT_TOWN_MAP
+ const EVENT_ENTERED_BLUES_HOUSE
+ const EVENT_DAISY_WALKING
+ const EVENT_01B
+ const EVENT_01C
+ const EVENT_01D
+ const EVENT_01E
+ const EVENT_01F
+ const EVENT_FOLLOWED_OAK_INTO_LAB_2
+ const EVENT_OAK_ASKED_TO_CHOOSE_MON
+ const EVENT_GOT_STARTER
+ const EVENT_BATTLED_RIVAL_IN_OAKS_LAB
+ const EVENT_GOT_POKEBALLS_FROM_OAK
+ const EVENT_GOT_POKEDEX
+ const EVENT_PALLET_AFTER_GETTING_POKEBALLS_2
+ const EVENT_OAK_APPEARED_IN_PALLET
+ const EVENT_VIRIDIAN_GYM_OPEN
+ const EVENT_GOT_TM42
+ const EVENT_02A
+ const EVENT_02B
+ const EVENT_02C
+ const EVENT_02D
+ const EVENT_02E
+ const EVENT_02F
+ const EVENT_030
+ const EVENT_031
+ const EVENT_032
+ const EVENT_033
+ const EVENT_034
+ const EVENT_035
+ const EVENT_036
+ const EVENT_037
+ const EVENT_OAK_GOT_PARCEL
+ const EVENT_GOT_OAKS_PARCEL
+ const EVENT_03A
+ const EVENT_03B
+ const EVENT_03C
+ const EVENT_03D
+ const EVENT_03E
+ const EVENT_03F
+ const EVENT_040
+ const EVENT_041
+ const EVENT_042
+ const EVENT_043
+ const EVENT_044
+ const EVENT_045
+ const EVENT_046
+ const EVENT_047
+ const EVENT_048
+ const EVENT_049
+ const EVENT_04A
+ const EVENT_04B
+ const EVENT_04C
+ const EVENT_04D
+ const EVENT_04E
+ const EVENT_04F
+ const EVENT_GOT_TM27
+ const EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_0
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_1
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_2
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_3
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_4
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_5
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_6
+ const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_7
+ const EVENT_05A
+ const EVENT_05B
+ const EVENT_05C
+ const EVENT_05D
+ const EVENT_05E
+ const EVENT_05F
+ const EVENT_060
+ const EVENT_061
+ const EVENT_062
+ const EVENT_063
+ const EVENT_064
+ const EVENT_065
+ const EVENT_066
+ const EVENT_067
+ const EVENT_BOUGHT_MUSEUM_TICKET
+ const EVENT_GOT_OLD_AMBER
+ const EVENT_06A
+ const EVENT_06B
+ const EVENT_06C
+ const EVENT_06D
+ const EVENT_06E
+ const EVENT_06F
+ const EVENT_070
+ const EVENT_071
+ const EVENT_BEAT_PEWTER_GYM_TRAINER_0
+ const EVENT_073
+ const EVENT_074
+ const EVENT_075
+ const EVENT_GOT_TM34
+ const EVENT_BEAT_BROCK
+ const EVENT_078
+ const EVENT_079
+ const EVENT_07A
+ const EVENT_07B
+ const EVENT_07C
+ const EVENT_07D
+ const EVENT_07E
+ const EVENT_07F
+ const EVENT_080
+ const EVENT_081
+ const EVENT_082
+ const EVENT_083
+ const EVENT_084
+ const EVENT_085
+ const EVENT_086
+ const EVENT_087
+ const EVENT_088
+ const EVENT_089
+ const EVENT_08A
+ const EVENT_08B
+ const EVENT_08C
+ const EVENT_08D
+ const EVENT_08E
+ const EVENT_08F
+ const EVENT_090
+ const EVENT_091
+ const EVENT_092
+ const EVENT_093
+ const EVENT_094
+ const EVENT_095
+ const EVENT_096
+ const EVENT_097
+ const EVENT_BEAT_CERULEAN_RIVAL
+ const EVENT_099
+ const EVENT_09A
+ const EVENT_09B
+ const EVENT_09C
+ const EVENT_09D
+ const EVENT_09E
+ const EVENT_09F
+ const EVENT_0A0
+ const EVENT_0A1
+ const EVENT_0A2
+ const EVENT_0A3
+ const EVENT_0A4
+ const EVENT_0A5
+ const EVENT_0A6
+ const EVENT_BEAT_CERULEAN_ROCKET_THIEF
+ const EVENT_0A8
+ const EVENT_0A9
+ const EVENT_0AA
+ const EVENT_0AB
+ const EVENT_0AC
+ const EVENT_0AD
+ const EVENT_0AE
+ const EVENT_0AF
+ const EVENT_0B0
+ const EVENT_0B1
+ const EVENT_0B2
+ const EVENT_0B3
+ const EVENT_0B4
+ const EVENT_0B5
+ const EVENT_0B6
+ const EVENT_0B7
+ const EVENT_0B8
+ const EVENT_0B9
+ const EVENT_BEAT_CERULEAN_GYM_TRAINER_0
+ const EVENT_BEAT_CERULEAN_GYM_TRAINER_1
+ const EVENT_0BC
+ const EVENT_0BD
+ const EVENT_GOT_TM11
+ const EVENT_BEAT_MISTY
+ const EVENT_GOT_BICYCLE
+ const EVENT_0C1
+ const EVENT_0C2
+ const EVENT_0C3
+ const EVENT_0C4
+ const EVENT_0C5
+ const EVENT_0C6
+ const EVENT_0C7
+ const EVENT_0C8
+ const EVENT_0C9
+ const EVENT_0CA
+ const EVENT_0CB
+ const EVENT_0CC
+ const EVENT_0CD
+ const EVENT_0CE
+ const EVENT_0CF
+ const EVENT_0D0
+ const EVENT_0D1
+ const EVENT_0D2
+ const EVENT_0D3
+ const EVENT_0D4
+ const EVENT_0D5
+ const EVENT_0D6
+ const EVENT_0D7
+ const EVENT_0D8
+ const EVENT_0D9
+ const EVENT_0DA
+ const EVENT_0DB
+ const EVENT_0DC
+ const EVENT_0DD
+ const EVENT_0DE
+ const EVENT_0DF
+ const EVENT_0E0
+ const EVENT_0E1
+ const EVENT_0E2
+ const EVENT_0E3
+ const EVENT_0E4
+ const EVENT_0E5
+ const EVENT_0E6
+ const EVENT_0E7
+ const EVENT_0E8
+ const EVENT_0E9
+ const EVENT_0EA
+ const EVENT_0EB
+ const EVENT_0EC
+ const EVENT_0ED
+ const EVENT_POKEMON_TOWER_RIVAL_ON_LEFT
+ const EVENT_BEAT_POKEMON_TOWER_RIVAL
+ const EVENT_0F0
+ const EVENT_BEAT_POKEMONTOWER_3_TRAINER_0
+ const EVENT_BEAT_POKEMONTOWER_3_TRAINER_1
+ const EVENT_BEAT_POKEMONTOWER_3_TRAINER_2
+ const EVENT_0F4
+ const EVENT_0F5
+ const EVENT_0F6
+ const EVENT_0F7
+ const EVENT_0F8
+ const EVENT_BEAT_POKEMONTOWER_4_TRAINER_0
+ const EVENT_BEAT_POKEMONTOWER_4_TRAINER_1
+ const EVENT_BEAT_POKEMONTOWER_4_TRAINER_2
+ const EVENT_0FC
+ const EVENT_0FD
+ const EVENT_0FE
+ const EVENT_0FF
+ const EVENT_100
+ const EVENT_101
+ const EVENT_BEAT_POKEMONTOWER_5_TRAINER_0
+ const EVENT_BEAT_POKEMONTOWER_5_TRAINER_1
+ const EVENT_BEAT_POKEMONTOWER_5_TRAINER_2
+ const EVENT_BEAT_POKEMONTOWER_5_TRAINER_3
+ const EVENT_106
+ const EVENT_IN_PURIFIED_ZONE
+ const EVENT_108
+ const EVENT_BEAT_POKEMONTOWER_6_TRAINER_0
+ const EVENT_BEAT_POKEMONTOWER_6_TRAINER_1
+ const EVENT_BEAT_POKEMONTOWER_6_TRAINER_2
+ const EVENT_10C
+ const EVENT_10D
+ const EVENT_10E
+ const EVENT_BEAT_GHOST_MAROWAK
+ const EVENT_110
+ const EVENT_BEAT_POKEMONTOWER_7_TRAINER_0
+ const EVENT_BEAT_POKEMONTOWER_7_TRAINER_1
+ const EVENT_BEAT_POKEMONTOWER_7_TRAINER_2
+ const EVENT_114
+ const EVENT_115
+ const EVENT_116
+ const EVENT_RESCUED_MR_FUJI_2
+ const EVENT_118
+ const EVENT_119
+ const EVENT_11A
+ const EVENT_11B
+ const EVENT_11C
+ const EVENT_11D
+ const EVENT_11E
+ const EVENT_11F
+ const EVENT_120
+ const EVENT_121
+ const EVENT_122
+ const EVENT_123
+ const EVENT_124
+ const EVENT_125
+ const EVENT_126
+ const EVENT_127
+ const EVENT_GOT_POKE_FLUTE
+ const EVENT_129
+ const EVENT_12A
+ const EVENT_12B
+ const EVENT_12C
+ const EVENT_12D
+ const EVENT_12E
+ const EVENT_12F
+ const EVENT_130
+ const EVENT_131
+ const EVENT_132
+ const EVENT_133
+ const EVENT_134
+ const EVENT_135
+ const EVENT_136
+ const EVENT_137
+ const EVENT_138
+ const EVENT_139
+ const EVENT_13A
+ const EVENT_13B
+ const EVENT_13C
+ const EVENT_13D
+ const EVENT_13E
+ const EVENT_13F
+ const EVENT_140
+ const EVENT_141
+ const EVENT_142
+ const EVENT_143
+ const EVENT_144
+ const EVENT_145
+ const EVENT_146
+ const EVENT_147
+ const EVENT_148
+ const EVENT_149
+ const EVENT_14A
+ const EVENT_14B
+ const EVENT_14C
+ const EVENT_14D
+ const EVENT_14E
+ const EVENT_14F
+ const EVENT_150
+ const EVENT_GOT_BIKE_VOUCHER
+ const EVENT_152
+ const EVENT_153
+ const EVENT_154
+ const EVENT_155
+ const EVENT_SEEL_FAN_BOAST
+ const EVENT_PIKACHU_FAN_BOAST
+ const EVENT_158
+ const EVENT_159
+ const EVENT_15A
+ const EVENT_15B
+ const EVENT_15C
+ const EVENT_15D
+ const EVENT_15E
+ const EVENT_15F
+ const EVENT_2ND_LOCK_OPENED
+ const EVENT_1ST_LOCK_OPENED
+ const EVENT_BEAT_VERMILION_GYM_TRAINER_0
+ const EVENT_BEAT_VERMILION_GYM_TRAINER_1
+ const EVENT_BEAT_VERMILION_GYM_TRAINER_2
+ const EVENT_165
+ const EVENT_GOT_TM24
+ const EVENT_BEAT_LT_SURGE
+ const EVENT_168
+ const EVENT_169
+ const EVENT_16A
+ const EVENT_16B
+ const EVENT_16C
+ const EVENT_16D
+ const EVENT_16E
+ const EVENT_16F
+ const EVENT_170
+ const EVENT_171
+ const EVENT_172
+ const EVENT_173
+ const EVENT_174
+ const EVENT_175
+ const EVENT_176
+ const EVENT_177
+ const EVENT_178
+ const EVENT_179
+ const EVENT_17A
+ const EVENT_17B
+ const EVENT_17C
+ const EVENT_17D
+ const EVENT_17E
+ const EVENT_17F
+ const EVENT_GOT_TM41
+ const EVENT_181
+ const EVENT_182
+ const EVENT_183
+ const EVENT_184
+ const EVENT_185
+ const EVENT_186
+ const EVENT_187
+ const EVENT_188
+ const EVENT_189
+ const EVENT_18A
+ const EVENT_18B
+ const EVENT_GOT_TM13
+ const EVENT_GOT_TM48
+ const EVENT_GOT_TM49
+ const EVENT_GOT_TM18
+ const EVENT_190
+ const EVENT_191
+ const EVENT_192
+ const EVENT_193
+ const EVENT_194
+ const EVENT_195
+ const EVENT_196
+ const EVENT_197
+ const EVENT_198
+ const EVENT_199
+ const EVENT_19A
+ const EVENT_19B
+ const EVENT_19C
+ const EVENT_19D
+ const EVENT_19E
+ const EVENT_19F
+ const EVENT_1A0
+ const EVENT_1A1
+ const EVENT_1A2
+ const EVENT_1A3
+ const EVENT_1A4
+ const EVENT_1A5
+ const EVENT_1A6
+ const EVENT_1A7
+ const EVENT_GOT_TM21
+ const EVENT_BEAT_ERIKA
+ const EVENT_BEAT_CELADON_GYM_TRAINER_0
+ const EVENT_BEAT_CELADON_GYM_TRAINER_1
+ const EVENT_BEAT_CELADON_GYM_TRAINER_2
+ const EVENT_BEAT_CELADON_GYM_TRAINER_3
+ const EVENT_BEAT_CELADON_GYM_TRAINER_4
+ const EVENT_BEAT_CELADON_GYM_TRAINER_5
+ const EVENT_BEAT_CELADON_GYM_TRAINER_6
+ const EVENT_1B1
+ const EVENT_1B2
+ const EVENT_1B3
+ const EVENT_1B4
+ const EVENT_1B5
+ const EVENT_1B6
+ const EVENT_1B7
+ const EVENT_1B8
+ const EVENT_FOUND_ROCKET_HIDEOUT
+ const EVENT_GOT_10_COINS
+ const EVENT_GOT_20_COINS
+ const EVENT_GOT_20_COINS_2
+ const EVENT_1BD
+ const EVENT_1BE
+ const EVENT_1BF
+ const EVENT_1C0
+ const EVENT_1C1
+ const EVENT_1C2
+ const EVENT_1C3
+ const EVENT_1C4
+ const EVENT_1C5
+ const EVENT_1C6
+ const EVENT_1C7
+ const EVENT_1C8
+ const EVENT_1C9
+ const EVENT_1CA
+ const EVENT_1CB
+ const EVENT_1CC
+ const EVENT_1CD
+ const EVENT_1CE
+ const EVENT_1CF
+ const EVENT_1D0
+ const EVENT_1D1
+ const EVENT_1D2
+ const EVENT_1D3
+ const EVENT_1D4
+ const EVENT_1D5
+ const EVENT_1D6
+ const EVENT_1D7
+ const EVENT_1D8
+ const EVENT_1D9
+ const EVENT_1DA
+ const EVENT_1DB
+ const EVENT_1DC
+ const EVENT_1DD
+ const EVENT_1DE
+ const EVENT_1DF
+ const EVENT_GOT_COIN_CASE
+ const EVENT_1E1
+ const EVENT_1E2
+ const EVENT_1E3
+ const EVENT_1E4
+ const EVENT_1E5
+ const EVENT_1E6
+ const EVENT_1E7
+ const EVENT_1E8
+ const EVENT_1E9
+ const EVENT_1EA
+ const EVENT_1EB
+ const EVENT_1EC
+ const EVENT_1ED
+ const EVENT_1EE
+ const EVENT_1EF
+ const EVENT_1F0
+ const EVENT_1F1
+ const EVENT_1F2
+ const EVENT_1F3
+ const EVENT_1F4
+ const EVENT_1F5
+ const EVENT_1F6
+ const EVENT_1F7
+ const EVENT_1F8
+ const EVENT_1F9
+ const EVENT_1FA
+ const EVENT_1FB
+ const EVENT_1FC
+ const EVENT_1FD
+ const EVENT_1FE
+ const EVENT_1FF
+ const EVENT_200
+ const EVENT_201
+ const EVENT_202
+ const EVENT_203
+ const EVENT_204
+ const EVENT_205
+ const EVENT_206
+ const EVENT_207
+ const EVENT_208
+ const EVENT_209
+ const EVENT_20A
+ const EVENT_20B
+ const EVENT_20C
+ const EVENT_20D
+ const EVENT_20E
+ const EVENT_20F
+ const EVENT_210
+ const EVENT_211
+ const EVENT_212
+ const EVENT_213
+ const EVENT_214
+ const EVENT_215
+ const EVENT_216
+ const EVENT_217
+ const EVENT_218
+ const EVENT_219
+ const EVENT_21A
+ const EVENT_21B
+ const EVENT_21C
+ const EVENT_21D
+ const EVENT_21E
+ const EVENT_21F
+ const EVENT_220
+ const EVENT_221
+ const EVENT_222
+ const EVENT_223
+ const EVENT_224
+ const EVENT_225
+ const EVENT_226
+ const EVENT_227
+ const EVENT_228
+ const EVENT_229
+ const EVENT_22A
+ const EVENT_22B
+ const EVENT_22C
+ const EVENT_22D
+ const EVENT_22E
+ const EVENT_22F
+ const EVENT_230
+ const EVENT_231
+ const EVENT_232
+ const EVENT_233
+ const EVENT_234
+ const EVENT_235
+ const EVENT_236
+ const EVENT_237
+ const EVENT_GOT_HM04
+ const EVENT_GAVE_GOLD_TEETH
+ const EVENT_23A
+ const EVENT_23B
+ const EVENT_23C
+ const EVENT_23D
+ const EVENT_23E
+ const EVENT_23F
+ const EVENT_240
+ const EVENT_241
+ const EVENT_242
+ const EVENT_243
+ const EVENT_244
+ const EVENT_245
+ const EVENT_246
+ const EVENT_247
+ const EVENT_248
+ const EVENT_249
+ const EVENT_24A
+ const EVENT_24B
+ const EVENT_24C
+ const EVENT_24D
+ const EVENT_SAFARI_GAME_OVER
+ const EVENT_IN_SAFARI_ZONE
+ const EVENT_250
+ const EVENT_251
+ const EVENT_252
+ const EVENT_253
+ const EVENT_254
+ const EVENT_255
+ const EVENT_256
+ const EVENT_257
+ const EVENT_GOT_TM06
+ const EVENT_BEAT_KOGA
+ const EVENT_BEAT_FUCHSIA_GYM_TRAINER_0
+ const EVENT_BEAT_FUCHSIA_GYM_TRAINER_1
+ const EVENT_BEAT_FUCHSIA_GYM_TRAINER_2
+ const EVENT_BEAT_FUCHSIA_GYM_TRAINER_3
+ const EVENT_BEAT_FUCHSIA_GYM_TRAINER_4
+ const EVENT_BEAT_FUCHSIA_GYM_TRAINER_5
+ const EVENT_260
+ const EVENT_261
+ const EVENT_262
+ const EVENT_263
+ const EVENT_264
+ const EVENT_265
+ const EVENT_266
+ const EVENT_267
+ const EVENT_268
+ const EVENT_269
+ const EVENT_26A
+ const EVENT_26B
+ const EVENT_26C
+ const EVENT_26D
+ const EVENT_26E
+ const EVENT_26F
+ const EVENT_270
+ const EVENT_271
+ const EVENT_272
+ const EVENT_273
+ const EVENT_274
+ const EVENT_275
+ const EVENT_276
+ const EVENT_277
+ const EVENT_MANSION_SWITCH_ON
+ const EVENT_279
+ const EVENT_27A
+ const EVENT_27B
+ const EVENT_27C
+ const EVENT_27D
+ const EVENT_27E
+ const EVENT_27F
+ const EVENT_280
+ const EVENT_281
+ const EVENT_282
+ const EVENT_283
+ const EVENT_284
+ const EVENT_285
+ const EVENT_286
+ const EVENT_287
+ const EVENT_288
+ const EVENT_BEAT_MANSION_1_TRAINER_0
+ const EVENT_28A
+ const EVENT_28B
+ const EVENT_28C
+ const EVENT_28D
+ const EVENT_28E
+ const EVENT_28F
+ const EVENT_290
+ const EVENT_291
+ const EVENT_292
+ const EVENT_293
+ const EVENT_294
+ const EVENT_295
+ const EVENT_296
+ const EVENT_297
+ const EVENT_GOT_TM38
+ const EVENT_BEAT_BLAINE
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_0
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_1
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_2
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_3
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_4
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_5
+ const EVENT_BEAT_CINNABAR_GYM_TRAINER_6
+ const EVENT_2A1
+ const EVENT_2A2
+ const EVENT_2A3
+ const EVENT_2A4
+ const EVENT_2A5
+ const EVENT_2A6
+ const EVENT_2A7
+ const EVENT_CINNABAR_GYM_GATE0_UNLOCKED
+ const EVENT_CINNABAR_GYM_GATE1_UNLOCKED
+ const EVENT_CINNABAR_GYM_GATE2_UNLOCKED
+ const EVENT_CINNABAR_GYM_GATE3_UNLOCKED
+ const EVENT_CINNABAR_GYM_GATE4_UNLOCKED
+ const EVENT_CINNABAR_GYM_GATE5_UNLOCKED
+ const EVENT_CINNABAR_GYM_GATE6_UNLOCKED
+ const EVENT_2AF
+ const EVENT_2B0
+ const EVENT_2B1
+ const EVENT_2B2
+ const EVENT_2B3
+ const EVENT_2B4
+ const EVENT_2B5
+ const EVENT_2B6
+ const EVENT_2B7
+ const EVENT_2B8
+ const EVENT_2B9
+ const EVENT_2BA
+ const EVENT_2BB
+ const EVENT_2BC
+ const EVENT_2BD
+ const EVENT_2BE
+ const EVENT_2BF
+ const EVENT_2C0
+ const EVENT_2C1
+ const EVENT_2C2
+ const EVENT_2C3
+ const EVENT_2C4
+ const EVENT_2C5
+ const EVENT_2C6
+ const EVENT_2C7
+ const EVENT_2C8
+ const EVENT_2C9
+ const EVENT_2CA
+ const EVENT_2CB
+ const EVENT_2CC
+ const EVENT_2CD
+ const EVENT_2CE
+ const EVENT_2CF
+ const EVENT_2D0
+ const EVENT_2D1
+ const EVENT_2D2
+ const EVENT_2D3
+ const EVENT_2D4
+ const EVENT_2D5
+ const EVENT_2D6
+ const EVENT_GOT_TM35
+ const EVENT_2D8
+ const EVENT_2D9
+ const EVENT_2DA
+ const EVENT_2DB
+ const EVENT_2DC
+ const EVENT_2DD
+ const EVENT_2DE
+ const EVENT_2DF
+ const EVENT_GAVE_FOSSIL_TO_LAB
+ const EVENT_LAB_STILL_REVIVING_FOSSIL
+ const EVENT_LAB_HANDING_OVER_FOSSIL_MON
+ const EVENT_2E3
+ const EVENT_2E4
+ const EVENT_2E5
+ const EVENT_2E6
+ const EVENT_2E7
+ const EVENT_2E8
+ const EVENT_2E9
+ const EVENT_2EA
+ const EVENT_2EB
+ const EVENT_2EC
+ const EVENT_2ED
+ const EVENT_2EE
+ const EVENT_2EF
+ const EVENT_2F0
+ const EVENT_2F1
+ const EVENT_2F2
+ const EVENT_2F3
+ const EVENT_2F4
+ const EVENT_2F5
+ const EVENT_2F6
+ const EVENT_2F7
+ const EVENT_2F8
+ const EVENT_2F9
+ const EVENT_2FA
+ const EVENT_2FB
+ const EVENT_2FC
+ const EVENT_2FD
+ const EVENT_2FE
+ const EVENT_2FF
+ const EVENT_300
+ const EVENT_301
+ const EVENT_302
+ const EVENT_303
+ const EVENT_304
+ const EVENT_305
+ const EVENT_306
+ const EVENT_307
+ const EVENT_308
+ const EVENT_309
+ const EVENT_30A
+ const EVENT_30B
+ const EVENT_30C
+ const EVENT_30D
+ const EVENT_30E
+ const EVENT_30F
+ const EVENT_310
+ const EVENT_311
+ const EVENT_312
+ const EVENT_313
+ const EVENT_314
+ const EVENT_315
+ const EVENT_316
+ const EVENT_317
+ const EVENT_318
+ const EVENT_319
+ const EVENT_31A
+ const EVENT_31B
+ const EVENT_31C
+ const EVENT_31D
+ const EVENT_31E
+ const EVENT_31F
+ const EVENT_320
+ const EVENT_321
+ const EVENT_322
+ const EVENT_323
+ const EVENT_324
+ const EVENT_325
+ const EVENT_326
+ const EVENT_327
+ const EVENT_328
+ const EVENT_329
+ const EVENT_32A
+ const EVENT_32B
+ const EVENT_32C
+ const EVENT_32D
+ const EVENT_32E
+ const EVENT_32F
+ const EVENT_330
+ const EVENT_331
+ const EVENT_332
+ const EVENT_333
+ const EVENT_334
+ const EVENT_335
+ const EVENT_336
+ const EVENT_337
+ const EVENT_338
+ const EVENT_339
+ const EVENT_33A
+ const EVENT_33B
+ const EVENT_33C
+ const EVENT_33D
+ const EVENT_33E
+ const EVENT_33F
+ const EVENT_GOT_TM31
+ const EVENT_341
+ const EVENT_342
+ const EVENT_343
+ const EVENT_344
+ const EVENT_345
+ const EVENT_346
+ const EVENT_347
+ const EVENT_348
+ const EVENT_349
+ const EVENT_34A
+ const EVENT_34B
+ const EVENT_34C
+ const EVENT_34D
+ const EVENT_34E
+ const EVENT_34F
+ const EVENT_DEFEATED_FIGHTING_DOJO
+ const EVENT_BEAT_KARATE_MASTER
+ const EVENT_BEAT_FIGHTING_DOJO_TRAINER_0
+ const EVENT_BEAT_FIGHTING_DOJO_TRAINER_1
+ const EVENT_BEAT_FIGHTING_DOJO_TRAINER_2
+ const EVENT_BEAT_FIGHTING_DOJO_TRAINER_3
+ const EVENT_GOT_HITMONLEE
+ const EVENT_GOT_HITMONCHAN
+ const EVENT_358
+ const EVENT_359
+ const EVENT_35A
+ const EVENT_35B
+ const EVENT_35C
+ const EVENT_35D
+ const EVENT_35E
+ const EVENT_35F
+ const EVENT_GOT_TM46
+ const EVENT_BEAT_SABRINA
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_0
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_1
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_2
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_3
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_4
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_5
+ const EVENT_BEAT_SAFFRON_GYM_TRAINER_6
+ const EVENT_369
+ const EVENT_36A
+ const EVENT_36B
+ const EVENT_36C
+ const EVENT_36D
+ const EVENT_36E
+ const EVENT_36F
+ const EVENT_370
+ const EVENT_371
+ const EVENT_372
+ const EVENT_373
+ const EVENT_374
+ const EVENT_375
+ const EVENT_376
+ const EVENT_377
+ const EVENT_378
+ const EVENT_379
+ const EVENT_37A
+ const EVENT_37B
+ const EVENT_37C
+ const EVENT_37D
+ const EVENT_37E
+ const EVENT_37F
+ const EVENT_380
+ const EVENT_381
+ const EVENT_382
+ const EVENT_383
+ const EVENT_384
+ const EVENT_385
+ const EVENT_386
+ const EVENT_387
+ const EVENT_388
+ const EVENT_389
+ const EVENT_38A
+ const EVENT_38B
+ const EVENT_38C
+ const EVENT_38D
+ const EVENT_38E
+ const EVENT_38F
+ const EVENT_390
+ const EVENT_391
+ const EVENT_392
+ const EVENT_393
+ const EVENT_394
+ const EVENT_395
+ const EVENT_396
+ const EVENT_SILPH_CO_RECEPTIONIST_AT_DESK
+ const EVENT_398
+ const EVENT_399
+ const EVENT_39A
+ const EVENT_39B
+ const EVENT_39C
+ const EVENT_39D
+ const EVENT_39E
+ const EVENT_39F
+ const EVENT_3A0
+ const EVENT_3A1
+ const EVENT_3A2
+ const EVENT_3A3
+ const EVENT_3A4
+ const EVENT_3A5
+ const EVENT_3A6
+ const EVENT_3A7
+ const EVENT_3A8
+ const EVENT_3A9
+ const EVENT_3AA
+ const EVENT_3AB
+ const EVENT_3AC
+ const EVENT_3AD
+ const EVENT_3AE
+ const EVENT_3AF
+ const EVENT_GOT_TM29
+ const EVENT_3B1
+ const EVENT_3B2
+ const EVENT_3B3
+ const EVENT_3B4
+ const EVENT_3B5
+ const EVENT_3B6
+ const EVENT_3B7
+ const EVENT_3B8
+ const EVENT_3B9
+ const EVENT_3BA
+ const EVENT_3BB
+ const EVENT_3BC
+ const EVENT_3BD
+ const EVENT_3BE
+ const EVENT_3BF
+ const EVENT_GOT_POTION_SAMPLE
+ const EVENT_3C1
+ const EVENT_3C2
+ const EVENT_3C3
+ const EVENT_3C4
+ const EVENT_3C5
+ const EVENT_3C6
+ const EVENT_3C7
+ const EVENT_3C8
+ const EVENT_3C9
+ const EVENT_3CA
+ const EVENT_3CB
+ const EVENT_3CC
+ const EVENT_3CD
+ const EVENT_3CE
+ const EVENT_3CF
+ const EVENT_3D0
+ const EVENT_3D1
+ const EVENT_3D2
+ const EVENT_3D3
+ const EVENT_3D4
+ const EVENT_3D5
+ const EVENT_3D6
+ const EVENT_3D7
+ const EVENT_GOT_HM05
+ const EVENT_3D9
+ const EVENT_3DA
+ const EVENT_3DB
+ const EVENT_3DC
+ const EVENT_3DD
+ const EVENT_3DE
+ const EVENT_3DF
+ const EVENT_3E0
+ const EVENT_3E1
+ const EVENT_BEAT_ROUTE_3_TRAINER_0
+ const EVENT_BEAT_ROUTE_3_TRAINER_1
+ const EVENT_BEAT_ROUTE_3_TRAINER_2
+ const EVENT_BEAT_ROUTE_3_TRAINER_3
+ const EVENT_BEAT_ROUTE_3_TRAINER_4
+ const EVENT_BEAT_ROUTE_3_TRAINER_5
+ const EVENT_BEAT_ROUTE_3_TRAINER_6
+ const EVENT_BEAT_ROUTE_3_TRAINER_7
+ const EVENT_3EA
+ const EVENT_3EB
+ const EVENT_3EC
+ const EVENT_3ED
+ const EVENT_3EE
+ const EVENT_3EF
+ const EVENT_3F0
+ const EVENT_3F1
+ const EVENT_BEAT_ROUTE_4_TRAINER_0
+ const EVENT_3F3
+ const EVENT_3F4
+ const EVENT_3F5
+ const EVENT_3F6
+ const EVENT_3F7
+ const EVENT_3F8
+ const EVENT_3F9
+ const EVENT_3FA
+ const EVENT_3FB
+ const EVENT_3FC
+ const EVENT_3FD
+ const EVENT_3FE
+ const EVENT_BOUGHT_MAGIKARP
+ const EVENT_400
+ const EVENT_401
+ const EVENT_402
+ const EVENT_403
+ const EVENT_404
+ const EVENT_405
+ const EVENT_406
+ const EVENT_407
+ const EVENT_408
+ const EVENT_409
+ const EVENT_40A
+ const EVENT_40B
+ const EVENT_40C
+ const EVENT_40D
+ const EVENT_40E
+ const EVENT_40F
+ const EVENT_410
+ const EVENT_BEAT_ROUTE_6_TRAINER_0
+ const EVENT_BEAT_ROUTE_6_TRAINER_1
+ const EVENT_BEAT_ROUTE_6_TRAINER_2
+ const EVENT_BEAT_ROUTE_6_TRAINER_3
+ const EVENT_BEAT_ROUTE_6_TRAINER_4
+ const EVENT_BEAT_ROUTE_6_TRAINER_5
+ const EVENT_417
+ const EVENT_418
+ const EVENT_419
+ const EVENT_41A
+ const EVENT_41B
+ const EVENT_41C
+ const EVENT_41D
+ const EVENT_41E
+ const EVENT_41F
+ const EVENT_420
+ const EVENT_421
+ const EVENT_422
+ const EVENT_423
+ const EVENT_424
+ const EVENT_425
+ const EVENT_426
+ const EVENT_427
+ const EVENT_428
+ const EVENT_429
+ const EVENT_42A
+ const EVENT_42B
+ const EVENT_42C
+ const EVENT_42D
+ const EVENT_42E
+ const EVENT_42F
+ const EVENT_430
+ const EVENT_BEAT_ROUTE_8_TRAINER_0
+ const EVENT_BEAT_ROUTE_8_TRAINER_1
+ const EVENT_BEAT_ROUTE_8_TRAINER_2
+ const EVENT_BEAT_ROUTE_8_TRAINER_3
+ const EVENT_BEAT_ROUTE_8_TRAINER_4
+ const EVENT_BEAT_ROUTE_8_TRAINER_5
+ const EVENT_BEAT_ROUTE_8_TRAINER_6
+ const EVENT_BEAT_ROUTE_8_TRAINER_7
+ const EVENT_BEAT_ROUTE_8_TRAINER_8
+ const EVENT_43A
+ const EVENT_43B
+ const EVENT_43C
+ const EVENT_43D
+ const EVENT_43E
+ const EVENT_43F
+ const EVENT_440
+ const EVENT_BEAT_ROUTE_9_TRAINER_0
+ const EVENT_BEAT_ROUTE_9_TRAINER_1
+ const EVENT_BEAT_ROUTE_9_TRAINER_2
+ const EVENT_BEAT_ROUTE_9_TRAINER_3
+ const EVENT_BEAT_ROUTE_9_TRAINER_4
+ const EVENT_BEAT_ROUTE_9_TRAINER_5
+ const EVENT_BEAT_ROUTE_9_TRAINER_6
+ const EVENT_BEAT_ROUTE_9_TRAINER_7
+ const EVENT_BEAT_ROUTE_9_TRAINER_8
+ const EVENT_44A
+ const EVENT_44B
+ const EVENT_44C
+ const EVENT_44D
+ const EVENT_44E
+ const EVENT_44F
+ const EVENT_450
+ const EVENT_BEAT_ROUTE_10_TRAINER_0
+ const EVENT_BEAT_ROUTE_10_TRAINER_1
+ const EVENT_BEAT_ROUTE_10_TRAINER_2
+ const EVENT_BEAT_ROUTE_10_TRAINER_3
+ const EVENT_BEAT_ROUTE_10_TRAINER_4
+ const EVENT_BEAT_ROUTE_10_TRAINER_5
+ const EVENT_457
+ const EVENT_458
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_0
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_1
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_2
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_3
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_4
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_5
+ const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_6
+ const EVENT_460
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_0
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_1
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_2
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_3
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_4
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_5
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_6
+ const EVENT_BEAT_POWER_PLANT_VOLTORB_7
+ const EVENT_BEAT_ZAPDOS
+ const EVENT_46A
+ const EVENT_46B
+ const EVENT_46C
+ const EVENT_46D
+ const EVENT_46E
+ const EVENT_46F
+ const EVENT_470
+ const EVENT_BEAT_ROUTE_11_TRAINER_0
+ const EVENT_BEAT_ROUTE_11_TRAINER_1
+ const EVENT_BEAT_ROUTE_11_TRAINER_2
+ const EVENT_BEAT_ROUTE_11_TRAINER_3
+ const EVENT_BEAT_ROUTE_11_TRAINER_4
+ const EVENT_BEAT_ROUTE_11_TRAINER_5
+ const EVENT_BEAT_ROUTE_11_TRAINER_6
+ const EVENT_BEAT_ROUTE_11_TRAINER_7
+ const EVENT_BEAT_ROUTE_11_TRAINER_8
+ const EVENT_BEAT_ROUTE_11_TRAINER_9
+ const EVENT_47B
+ const EVENT_47C
+ const EVENT_47D
+ const EVENT_47E
+ const EVENT_GOT_ITEMFINDER
+ const EVENT_GOT_TM39
+ const EVENT_481
+ const EVENT_BEAT_ROUTE_12_TRAINER_0
+ const EVENT_BEAT_ROUTE_12_TRAINER_1
+ const EVENT_BEAT_ROUTE_12_TRAINER_2
+ const EVENT_BEAT_ROUTE_12_TRAINER_3
+ const EVENT_BEAT_ROUTE_12_TRAINER_4
+ const EVENT_BEAT_ROUTE_12_TRAINER_5
+ const EVENT_BEAT_ROUTE_12_TRAINER_6
+ const EVENT_489
+ const EVENT_48A
+ const EVENT_48B
+ const EVENT_48C
+ const EVENT_48D
+ const EVENT_FIGHT_ROUTE12_SNORLAX
+ const EVENT_BEAT_ROUTE12_SNORLAX
+ const EVENT_490
+ const EVENT_BEAT_ROUTE_13_TRAINER_0
+ const EVENT_BEAT_ROUTE_13_TRAINER_1
+ const EVENT_BEAT_ROUTE_13_TRAINER_2
+ const EVENT_BEAT_ROUTE_13_TRAINER_3
+ const EVENT_BEAT_ROUTE_13_TRAINER_4
+ const EVENT_BEAT_ROUTE_13_TRAINER_5
+ const EVENT_BEAT_ROUTE_13_TRAINER_6
+ const EVENT_BEAT_ROUTE_13_TRAINER_7
+ const EVENT_BEAT_ROUTE_13_TRAINER_8
+ const EVENT_BEAT_ROUTE_13_TRAINER_9
+ const EVENT_49B
+ const EVENT_49C
+ const EVENT_49D
+ const EVENT_49E
+ const EVENT_49F
+ const EVENT_4A0
+ const EVENT_BEAT_ROUTE_14_TRAINER_0
+ const EVENT_BEAT_ROUTE_14_TRAINER_1
+ const EVENT_BEAT_ROUTE_14_TRAINER_2
+ const EVENT_BEAT_ROUTE_14_TRAINER_3
+ const EVENT_BEAT_ROUTE_14_TRAINER_4
+ const EVENT_BEAT_ROUTE_14_TRAINER_5
+ const EVENT_BEAT_ROUTE_14_TRAINER_6
+ const EVENT_BEAT_ROUTE_14_TRAINER_7
+ const EVENT_BEAT_ROUTE_14_TRAINER_8
+ const EVENT_BEAT_ROUTE_14_TRAINER_9
+ const EVENT_4AB
+ const EVENT_4AC
+ const EVENT_4AD
+ const EVENT_4AE
+ const EVENT_4AF
+ const EVENT_GOT_EXP_ALL
+ const EVENT_BEAT_ROUTE_15_TRAINER_0
+ const EVENT_BEAT_ROUTE_15_TRAINER_1
+ const EVENT_BEAT_ROUTE_15_TRAINER_2
+ const EVENT_BEAT_ROUTE_15_TRAINER_3
+ const EVENT_BEAT_ROUTE_15_TRAINER_4
+ const EVENT_BEAT_ROUTE_15_TRAINER_5
+ const EVENT_BEAT_ROUTE_15_TRAINER_6
+ const EVENT_BEAT_ROUTE_15_TRAINER_7
+ const EVENT_BEAT_ROUTE_15_TRAINER_8
+ const EVENT_BEAT_ROUTE_15_TRAINER_9
+ const EVENT_4BB
+ const EVENT_4BC
+ const EVENT_4BD
+ const EVENT_4BE
+ const EVENT_4BF
+ const EVENT_4C0
+ const EVENT_BEAT_ROUTE_16_TRAINER_0
+ const EVENT_BEAT_ROUTE_16_TRAINER_1
+ const EVENT_BEAT_ROUTE_16_TRAINER_2
+ const EVENT_BEAT_ROUTE_16_TRAINER_3
+ const EVENT_BEAT_ROUTE_16_TRAINER_4
+ const EVENT_BEAT_ROUTE_16_TRAINER_5
+ const EVENT_4C7
+ const EVENT_FIGHT_ROUTE16_SNORLAX
+ const EVENT_BEAT_ROUTE16_SNORLAX
+ const EVENT_4CA
+ const EVENT_4CB
+ const EVENT_4CC
+ const EVENT_4CD
+ const EVENT_GOT_HM02
+ const EVENT_RESCUED_MR_FUJI
+ const EVENT_4D0
+ const EVENT_BEAT_ROUTE_17_TRAINER_0
+ const EVENT_BEAT_ROUTE_17_TRAINER_1
+ const EVENT_BEAT_ROUTE_17_TRAINER_2
+ const EVENT_BEAT_ROUTE_17_TRAINER_3
+ const EVENT_BEAT_ROUTE_17_TRAINER_4
+ const EVENT_BEAT_ROUTE_17_TRAINER_5
+ const EVENT_BEAT_ROUTE_17_TRAINER_6
+ const EVENT_BEAT_ROUTE_17_TRAINER_7
+ const EVENT_BEAT_ROUTE_17_TRAINER_8
+ const EVENT_BEAT_ROUTE_17_TRAINER_9
+ const EVENT_4DB
+ const EVENT_4DC
+ const EVENT_4DD
+ const EVENT_4DE
+ const EVENT_4DF
+ const EVENT_4E0
+ const EVENT_BEAT_ROUTE_18_TRAINER_0
+ const EVENT_BEAT_ROUTE_18_TRAINER_1
+ const EVENT_BEAT_ROUTE_18_TRAINER_2
+ const EVENT_4E4
+ const EVENT_4E5
+ const EVENT_4E6
+ const EVENT_4E7
+ const EVENT_4E8
+ const EVENT_4E9
+ const EVENT_4EA
+ const EVENT_4EB
+ const EVENT_4EC
+ const EVENT_4ED
+ const EVENT_4EE
+ const EVENT_4EF
+ const EVENT_4F0
+ const EVENT_BEAT_ROUTE_19_TRAINER_0
+ const EVENT_BEAT_ROUTE_19_TRAINER_1
+ const EVENT_BEAT_ROUTE_19_TRAINER_2
+ const EVENT_BEAT_ROUTE_19_TRAINER_3
+ const EVENT_BEAT_ROUTE_19_TRAINER_4
+ const EVENT_BEAT_ROUTE_19_TRAINER_5
+ const EVENT_BEAT_ROUTE_19_TRAINER_6
+ const EVENT_BEAT_ROUTE_19_TRAINER_7
+ const EVENT_BEAT_ROUTE_19_TRAINER_8
+ const EVENT_BEAT_ROUTE_19_TRAINER_9
+ const EVENT_4FB
+ const EVENT_4FC
+ const EVENT_4FD
+ const EVENT_4FE
+ const EVENT_4FF
+ const EVENT_IN_SEAFOAM_ISLANDS
+ const EVENT_BEAT_ROUTE_20_TRAINER_0
+ const EVENT_BEAT_ROUTE_20_TRAINER_1
+ const EVENT_BEAT_ROUTE_20_TRAINER_2
+ const EVENT_BEAT_ROUTE_20_TRAINER_3
+ const EVENT_BEAT_ROUTE_20_TRAINER_4
+ const EVENT_BEAT_ROUTE_20_TRAINER_5
+ const EVENT_BEAT_ROUTE_20_TRAINER_6
+ const EVENT_BEAT_ROUTE_20_TRAINER_7
+ const EVENT_BEAT_ROUTE_20_TRAINER_8
+ const EVENT_BEAT_ROUTE_20_TRAINER_9
+ const EVENT_50B
+ const EVENT_50C
+ const EVENT_50D
+ const EVENT_SEAFOAM1_BOULDER1_DOWN_HOLE
+ const EVENT_SEAFOAM1_BOULDER2_DOWN_HOLE
+ const EVENT_510
+ const EVENT_BEAT_ROUTE_21_TRAINER_0
+ const EVENT_BEAT_ROUTE_21_TRAINER_1
+ const EVENT_BEAT_ROUTE_21_TRAINER_2
+ const EVENT_BEAT_ROUTE_21_TRAINER_3
+ const EVENT_BEAT_ROUTE_21_TRAINER_4
+ const EVENT_BEAT_ROUTE_21_TRAINER_5
+ const EVENT_BEAT_ROUTE_21_TRAINER_6
+ const EVENT_BEAT_ROUTE_21_TRAINER_7
+ const EVENT_BEAT_ROUTE_21_TRAINER_8
+ const EVENT_51A
+ const EVENT_51B
+ const EVENT_51C
+ const EVENT_51D
+ const EVENT_51E
+ const EVENT_51F
+ const EVENT_1ST_ROUTE22_RIVAL_BATTLE
+ const EVENT_2ND_ROUTE22_RIVAL_BATTLE
+ const EVENT_522
+ const EVENT_523
+ const EVENT_524
+ const EVENT_BEAT_ROUTE22_RIVAL_1ST_BATTLE
+ const EVENT_BEAT_ROUTE22_RIVAL_2ND_BATTLE
+ const EVENT_ROUTE22_RIVAL_WANTS_BATTLE
+ const EVENT_528
+ const EVENT_529
+ const EVENT_52A
+ const EVENT_52B
+ const EVENT_52C
+ const EVENT_52D
+ const EVENT_52E
+ const EVENT_52F
+ const EVENT_PASSED_CASCADEBADGE_CHECK
+ const EVENT_PASSED_THUNDERBADGE_CHECK
+ const EVENT_PASSED_RAINBOWBADGE_CHECK
+ const EVENT_PASSED_SOULBADGE_CHECK
+ const EVENT_PASSED_MARSHBADGE_CHECK
+ const EVENT_PASSED_VOLCANOBADGE_CHECK
+ const EVENT_PASSED_EARTHBADGE_CHECK
+ const EVENT_537
+ const EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH1
+ const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_0
+ const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_1
+ const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_2
+ const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_3
+ const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_4
+ const EVENT_BEAT_MOLTRES
+ const EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH2
+ const EVENT_GOT_NUGGET
+ const EVENT_BEAT_ROUTE24_ROCKET
+ const EVENT_BEAT_ROUTE_24_TRAINER_0
+ const EVENT_BEAT_ROUTE_24_TRAINER_1
+ const EVENT_BEAT_ROUTE_24_TRAINER_2
+ const EVENT_BEAT_ROUTE_24_TRAINER_3
+ const EVENT_BEAT_ROUTE_24_TRAINER_4
+ const EVENT_BEAT_ROUTE_24_TRAINER_5
+ const EVENT_548
+ const EVENT_NUGGET_REWARD_AVAILABLE
+ const EVENT_54A
+ const EVENT_54B
+ const EVENT_54C
+ const EVENT_54D
+ const EVENT_54E
+ const EVENT_54F
+ const EVENT_MET_BILL
+ const EVENT_BEAT_ROUTE_25_TRAINER_0
+ const EVENT_BEAT_ROUTE_25_TRAINER_1
+ const EVENT_BEAT_ROUTE_25_TRAINER_2
+ const EVENT_BEAT_ROUTE_25_TRAINER_3
+ const EVENT_BEAT_ROUTE_25_TRAINER_4
+ const EVENT_BEAT_ROUTE_25_TRAINER_5
+ const EVENT_BEAT_ROUTE_25_TRAINER_6
+ const EVENT_BEAT_ROUTE_25_TRAINER_7
+ const EVENT_BEAT_ROUTE_25_TRAINER_8
+ const EVENT_55A
+ const EVENT_USED_CELL_SEPARATOR_ON_BILL
+ const EVENT_GOT_SS_TICKET
+ const EVENT_MET_BILL_2
+ const EVENT_BILL_SAID_USE_CELL_SEPARATOR
+ const EVENT_LEFT_BILLS_HOUSE_AFTER_HELPING
+ const EVENT_560
+ const EVENT_561
+ const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_0
+ const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_1
+ const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_2
+ const EVENT_565
+ const EVENT_566
+ const EVENT_567
+ const EVENT_568
+ const EVENT_569
+ const EVENT_56A
+ const EVENT_56B
+ const EVENT_56C
+ const EVENT_56D
+ const EVENT_56E
+ const EVENT_56F
+ const EVENT_570
+ const EVENT_BEAT_MT_MOON_1_TRAINER_0
+ const EVENT_BEAT_MT_MOON_1_TRAINER_1
+ const EVENT_BEAT_MT_MOON_1_TRAINER_2
+ const EVENT_BEAT_MT_MOON_1_TRAINER_3
+ const EVENT_BEAT_MT_MOON_1_TRAINER_4
+ const EVENT_BEAT_MT_MOON_1_TRAINER_5
+ const EVENT_BEAT_MT_MOON_1_TRAINER_6
+ const EVENT_578
+ const EVENT_BEAT_MT_MOON_EXIT_SUPER_NERD
+ const EVENT_BEAT_MT_MOON_3_TRAINER_0
+ const EVENT_BEAT_MT_MOON_3_TRAINER_1
+ const EVENT_BEAT_MT_MOON_3_TRAINER_2
+ const EVENT_BEAT_MT_MOON_3_TRAINER_3
+ const EVENT_GOT_DOME_FOSSIL
+ const EVENT_GOT_HELIX_FOSSIL
+ const EVENT_580
+ const EVENT_581
+ const EVENT_582
+ const EVENT_583
+ const EVENT_584
+ const EVENT_585
+ const EVENT_586
+ const EVENT_587
+ const EVENT_588
+ const EVENT_589
+ const EVENT_58A
+ const EVENT_58B
+ const EVENT_58C
+ const EVENT_58D
+ const EVENT_58E
+ const EVENT_58F
+ const EVENT_590
+ const EVENT_591
+ const EVENT_592
+ const EVENT_593
+ const EVENT_594
+ const EVENT_595
+ const EVENT_596
+ const EVENT_597
+ const EVENT_598
+ const EVENT_599
+ const EVENT_59A
+ const EVENT_59B
+ const EVENT_59C
+ const EVENT_59D
+ const EVENT_59E
+ const EVENT_59F
+ const EVENT_5A0
+ const EVENT_5A1
+ const EVENT_5A2
+ const EVENT_5A3
+ const EVENT_5A4
+ const EVENT_5A5
+ const EVENT_5A6
+ const EVENT_5A7
+ const EVENT_5A8
+ const EVENT_5A9
+ const EVENT_5AA
+ const EVENT_5AB
+ const EVENT_5AC
+ const EVENT_5AD
+ const EVENT_5AE
+ const EVENT_5AF
+ const EVENT_5B0
+ const EVENT_5B1
+ const EVENT_5B2
+ const EVENT_5B3
+ const EVENT_5B4
+ const EVENT_5B5
+ const EVENT_5B6
+ const EVENT_5B7
+ const EVENT_5B8
+ const EVENT_5B9
+ const EVENT_5BA
+ const EVENT_5BB
+ const EVENT_5BC
+ const EVENT_5BD
+ const EVENT_5BE
+ const EVENT_5BF
+ const EVENT_5C0
+ const EVENT_5C1
+ const EVENT_5C2
+ const EVENT_5C3
+ const EVENT_BEAT_SS_ANNE_5_TRAINER_0
+ const EVENT_BEAT_SS_ANNE_5_TRAINER_1
+ const EVENT_5C6
+ const EVENT_5C7
+ const EVENT_5C8
+ const EVENT_5C9
+ const EVENT_5CA
+ const EVENT_5CB
+ const EVENT_5CC
+ const EVENT_5CD
+ const EVENT_5CE
+ const EVENT_5CF
+ const EVENT_5D0
+ const EVENT_5D1
+ const EVENT_5D2
+ const EVENT_5D3
+ const EVENT_5D4
+ const EVENT_5D5
+ const EVENT_5D6
+ const EVENT_5D7
+ const EVENT_5D8
+ const EVENT_5D9
+ const EVENT_5DA
+ const EVENT_5DB
+ const EVENT_5DC
+ const EVENT_5DD
+ const EVENT_5DE
+ const EVENT_5DF
+ const EVENT_GOT_HM01
+ const EVENT_RUBBED_CAPTAINS_BACK
+ const EVENT_SS_ANNE_LEFT
+ const EVENT_WALKED_PAST_GUARD_AFTER_SS_ANNE_LEFT
+ const EVENT_STARTED_WALKING_OUT_OF_DOCK
+ const EVENT_WALKED_OUT_OF_DOCK
+ const EVENT_5E6
+ const EVENT_5E7
+ const EVENT_5E8
+ const EVENT_5E9
+ const EVENT_5EA
+ const EVENT_5EB
+ const EVENT_5EC
+ const EVENT_5ED
+ const EVENT_5EE
+ const EVENT_5EF
+ const EVENT_5F0
+ const EVENT_BEAT_SS_ANNE_8_TRAINER_0
+ const EVENT_BEAT_SS_ANNE_8_TRAINER_1
+ const EVENT_BEAT_SS_ANNE_8_TRAINER_2
+ const EVENT_BEAT_SS_ANNE_8_TRAINER_3
+ const EVENT_5F5
+ const EVENT_5F6
+ const EVENT_5F7
+ const EVENT_5F8
+ const EVENT_5F9
+ const EVENT_5FA
+ const EVENT_5FB
+ const EVENT_5FC
+ const EVENT_5FD
+ const EVENT_5FE
+ const EVENT_5FF
+ const EVENT_600
+ const EVENT_BEAT_SS_ANNE_9_TRAINER_0
+ const EVENT_BEAT_SS_ANNE_9_TRAINER_1
+ const EVENT_BEAT_SS_ANNE_9_TRAINER_2
+ const EVENT_BEAT_SS_ANNE_9_TRAINER_3
+ const EVENT_605
+ const EVENT_606
+ const EVENT_607
+ const EVENT_608
+ const EVENT_609
+ const EVENT_60A
+ const EVENT_60B
+ const EVENT_60C
+ const EVENT_60D
+ const EVENT_60E
+ const EVENT_60F
+ const EVENT_610
+ const EVENT_BEAT_SS_ANNE_10_TRAINER_0
+ const EVENT_BEAT_SS_ANNE_10_TRAINER_1
+ const EVENT_BEAT_SS_ANNE_10_TRAINER_2
+ const EVENT_BEAT_SS_ANNE_10_TRAINER_3
+ const EVENT_BEAT_SS_ANNE_10_TRAINER_4
+ const EVENT_BEAT_SS_ANNE_10_TRAINER_5
+ const EVENT_617
+ const EVENT_618
+ const EVENT_619
+ const EVENT_61A
+ const EVENT_61B
+ const EVENT_61C
+ const EVENT_61D
+ const EVENT_61E
+ const EVENT_61F
+ const EVENT_620
+ const EVENT_621
+ const EVENT_622
+ const EVENT_623
+ const EVENT_624
+ const EVENT_625
+ const EVENT_626
+ const EVENT_627
+ const EVENT_628
+ const EVENT_629
+ const EVENT_62A
+ const EVENT_62B
+ const EVENT_62C
+ const EVENT_62D
+ const EVENT_62E
+ const EVENT_62F
+ const EVENT_630
+ const EVENT_631
+ const EVENT_632
+ const EVENT_633
+ const EVENT_634
+ const EVENT_635
+ const EVENT_636
+ const EVENT_637
+ const EVENT_638
+ const EVENT_639
+ const EVENT_63A
+ const EVENT_63B
+ const EVENT_63C
+ const EVENT_63D
+ const EVENT_63E
+ const EVENT_63F
+ const EVENT_640
+ const EVENT_641
+ const EVENT_642
+ const EVENT_643
+ const EVENT_644
+ const EVENT_645
+ const EVENT_646
+ const EVENT_647
+ const EVENT_648
+ const EVENT_649
+ const EVENT_64A
+ const EVENT_64B
+ const EVENT_64C
+ const EVENT_64D
+ const EVENT_64E
+ const EVENT_64F
+ const EVENT_650
+ const EVENT_651
+ const EVENT_652
+ const EVENT_653
+ const EVENT_654
+ const EVENT_655
+ const EVENT_656
+ const EVENT_657
+ const EVENT_658
+ const EVENT_659
+ const EVENT_65A
+ const EVENT_65B
+ const EVENT_65C
+ const EVENT_65D
+ const EVENT_65E
+ const EVENT_65F
+ const EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH1
+ const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_0
+ const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_1
+ const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_2
+ const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_3
+ const EVENT_665
+ const EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH2
+ const EVENT_667
+ const EVENT_668
+ const EVENT_669
+ const EVENT_66A
+ const EVENT_66B
+ const EVENT_66C
+ const EVENT_66D
+ const EVENT_66E
+ const EVENT_66F
+ const EVENT_670
+ const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_0
+ const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_1
+ const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_2
+ const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_3
+ const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_4
+ const EVENT_676
+ const EVENT_677
+ const EVENT_678
+ const EVENT_679
+ const EVENT_67A
+ const EVENT_67B
+ const EVENT_67C
+ const EVENT_67D
+ const EVENT_67E
+ const EVENT_67F
+ const EVENT_680
+ const EVENT_BEAT_ROCKET_HIDEOUT_2_TRAINER_0
+ const EVENT_682
+ const EVENT_683
+ const EVENT_684
+ const EVENT_685
+ const EVENT_686
+ const EVENT_687
+ const EVENT_688
+ const EVENT_689
+ const EVENT_68A
+ const EVENT_68B
+ const EVENT_68C
+ const EVENT_68D
+ const EVENT_68E
+ const EVENT_68F
+ const EVENT_690
+ const EVENT_BEAT_ROCKET_HIDEOUT_3_TRAINER_0
+ const EVENT_BEAT_ROCKET_HIDEOUT_3_TRAINER_1
+ const EVENT_693
+ const EVENT_694
+ const EVENT_695
+ const EVENT_696
+ const EVENT_697
+ const EVENT_698
+ const EVENT_699
+ const EVENT_69A
+ const EVENT_69B
+ const EVENT_69C
+ const EVENT_69D
+ const EVENT_69E
+ const EVENT_69F
+ const EVENT_6A0
+ const EVENT_6A1
+ const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_0
+ const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_1
+ const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_2
+ const EVENT_ROCKET_HIDEOUT_4_DOOR_UNLOCKED
+ const EVENT_ROCKET_DROPPED_LIFT_KEY
+ const EVENT_BEAT_ROCKET_HIDEOUT_GIOVANNI
+ const EVENT_6A8
+ const EVENT_6A9
+ const EVENT_6AA
+ const EVENT_6AB
+ const EVENT_6AC
+ const EVENT_6AD
+ const EVENT_6AE
+ const EVENT_6AF
+ const EVENT_6B0
+ const EVENT_6B1
+ const EVENT_6B2
+ const EVENT_6B3
+ const EVENT_6B4
+ const EVENT_6B5
+ const EVENT_6B6
+ const EVENT_6B7
+ const EVENT_6B8
+ const EVENT_6B9
+ const EVENT_6BA
+ const EVENT_6BB
+ const EVENT_6BC
+ const EVENT_6BD
+ const EVENT_6BE
+ const EVENT_6BF
+ const EVENT_6C0
+ const EVENT_6C1
+ const EVENT_6C2
+ const EVENT_6C3
+ const EVENT_6C4
+ const EVENT_6C5
+ const EVENT_6C6
+ const EVENT_6C7
+ const EVENT_6C8
+ const EVENT_6C9
+ const EVENT_6CA
+ const EVENT_6CB
+ const EVENT_6CC
+ const EVENT_6CD
+ const EVENT_6CE
+ const EVENT_6CF
+ const EVENT_6D0
+ const EVENT_6D1
+ const EVENT_6D2
+ const EVENT_6D3
+ const EVENT_6D4
+ const EVENT_6D5
+ const EVENT_6D6
+ const EVENT_6D7
+ const EVENT_6D8
+ const EVENT_6D9
+ const EVENT_6DA
+ const EVENT_6DB
+ const EVENT_6DC
+ const EVENT_6DD
+ const EVENT_6DE
+ const EVENT_6DF
+ const EVENT_6E0
+ const EVENT_6E1
+ const EVENT_6E2
+ const EVENT_6E3
+ const EVENT_6E4
+ const EVENT_6E5
+ const EVENT_6E6
+ const EVENT_6E7
+ const EVENT_6E8
+ const EVENT_6E9
+ const EVENT_6EA
+ const EVENT_6EB
+ const EVENT_6EC
+ const EVENT_6ED
+ const EVENT_6EE
+ const EVENT_6EF
+ const EVENT_6F0
+ const EVENT_6F1
+ const EVENT_BEAT_SILPH_CO_2F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_2F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_2F_TRAINER_2
+ const EVENT_BEAT_SILPH_CO_2F_TRAINER_3
+ const EVENT_6F6
+ const EVENT_6F7
+ const EVENT_6F8
+ const EVENT_6F9
+ const EVENT_6FA
+ const EVENT_6FB
+ const EVENT_6FC
+ const EVENT_SILPH_CO_2_UNLOCKED_DOOR1
+ const EVENT_SILPH_CO_2_UNLOCKED_DOOR2
+ const EVENT_GOT_TM36
+ const EVENT_700
+ const EVENT_701
+ const EVENT_BEAT_SILPH_CO_3F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_3F_TRAINER_1
+ const EVENT_704
+ const EVENT_705
+ const EVENT_706
+ const EVENT_707
+ const EVENT_SILPH_CO_3_UNLOCKED_DOOR1
+ const EVENT_SILPH_CO_3_UNLOCKED_DOOR2
+ const EVENT_70A
+ const EVENT_70B
+ const EVENT_70C
+ const EVENT_70D
+ const EVENT_70E
+ const EVENT_70F
+ const EVENT_710
+ const EVENT_711
+ const EVENT_BEAT_SILPH_CO_4F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_4F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_4F_TRAINER_2
+ const EVENT_715
+ const EVENT_716
+ const EVENT_717
+ const EVENT_SILPH_CO_4_UNLOCKED_DOOR1
+ const EVENT_SILPH_CO_4_UNLOCKED_DOOR2
+ const EVENT_71A
+ const EVENT_71B
+ const EVENT_71C
+ const EVENT_71D
+ const EVENT_71E
+ const EVENT_71F
+ const EVENT_720
+ const EVENT_721
+ const EVENT_BEAT_SILPH_CO_5F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_5F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_5F_TRAINER_2
+ const EVENT_BEAT_SILPH_CO_5F_TRAINER_3
+ const EVENT_726
+ const EVENT_727
+ const EVENT_SILPH_CO_5_UNLOCKED_DOOR1
+ const EVENT_SILPH_CO_5_UNLOCKED_DOOR2
+ const EVENT_SILPH_CO_5_UNLOCKED_DOOR3
+ const EVENT_72B
+ const EVENT_72C
+ const EVENT_72D
+ const EVENT_72E
+ const EVENT_72F
+ const EVENT_730
+ const EVENT_731
+ const EVENT_732
+ const EVENT_733
+ const EVENT_734
+ const EVENT_735
+ const EVENT_BEAT_SILPH_CO_6F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_6F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_6F_TRAINER_2
+ const EVENT_739
+ const EVENT_73A
+ const EVENT_73B
+ const EVENT_73C
+ const EVENT_73D
+ const EVENT_73E
+ const EVENT_SILPH_CO_6_UNLOCKED_DOOR
+ const EVENT_BEAT_SILPH_CO_RIVAL
+ const EVENT_741
+ const EVENT_742
+ const EVENT_743
+ const EVENT_744
+ const EVENT_BEAT_SILPH_CO_7F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_7F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_7F_TRAINER_2
+ const EVENT_BEAT_SILPH_CO_7F_TRAINER_3
+ const EVENT_749
+ const EVENT_74A
+ const EVENT_74B
+ const EVENT_SILPH_CO_7_UNLOCKED_DOOR1
+ const EVENT_SILPH_CO_7_UNLOCKED_DOOR2
+ const EVENT_SILPH_CO_7_UNLOCKED_DOOR3
+ const EVENT_74F
+ const EVENT_750
+ const EVENT_751
+ const EVENT_BEAT_SILPH_CO_8F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_8F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_8F_TRAINER_2
+ const EVENT_755
+ const EVENT_756
+ const EVENT_757
+ const EVENT_SILPH_CO_8_UNLOCKED_DOOR
+ const EVENT_759
+ const EVENT_75A
+ const EVENT_75B
+ const EVENT_75C
+ const EVENT_75D
+ const EVENT_75E
+ const EVENT_75F
+ const EVENT_760
+ const EVENT_761
+ const EVENT_BEAT_SILPH_CO_9F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_9F_TRAINER_1
+ const EVENT_BEAT_SILPH_CO_9F_TRAINER_2
+ const EVENT_765
+ const EVENT_766
+ const EVENT_767
+ const EVENT_SILPH_CO_9_UNLOCKED_DOOR1
+ const EVENT_SILPH_CO_9_UNLOCKED_DOOR2
+ const EVENT_SILPH_CO_9_UNLOCKED_DOOR3
+ const EVENT_SILPH_CO_9_UNLOCKED_DOOR4
+ const EVENT_76C
+ const EVENT_76D
+ const EVENT_76E
+ const EVENT_76F
+ const EVENT_770
+ const EVENT_BEAT_SILPH_CO_10F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_10F_TRAINER_1
+ const EVENT_773
+ const EVENT_774
+ const EVENT_775
+ const EVENT_776
+ const EVENT_777
+ const EVENT_SILPH_CO_10_UNLOCKED_DOOR
+ const EVENT_779
+ const EVENT_77A
+ const EVENT_77B
+ const EVENT_77C
+ const EVENT_77D
+ const EVENT_77E
+ const EVENT_77F
+ const EVENT_780
+ const EVENT_781
+ const EVENT_782
+ const EVENT_783
+ const EVENT_BEAT_SILPH_CO_11F_TRAINER_0
+ const EVENT_BEAT_SILPH_CO_11F_TRAINER_1
+ const EVENT_786
+ const EVENT_787
+ const EVENT_SILPH_CO_11_UNLOCKED_DOOR
+ const EVENT_789
+ const EVENT_78A
+ const EVENT_78B
+ const EVENT_78C
+ const EVENT_GOT_MASTER_BALL
+ const EVENT_78E
+ const EVENT_BEAT_SILPH_CO_GIOVANNI
+ const EVENT_790
+ const EVENT_791
+ const EVENT_792
+ const EVENT_793
+ const EVENT_794
+ const EVENT_795
+ const EVENT_796
+ const EVENT_797
+ const EVENT_798
+ const EVENT_799
+ const EVENT_79A
+ const EVENT_79B
+ const EVENT_79C
+ const EVENT_79D
+ const EVENT_79E
+ const EVENT_79F
+ const EVENT_7A0
+ const EVENT_7A1
+ const EVENT_7A2
+ const EVENT_7A3
+ const EVENT_7A4
+ const EVENT_7A5
+ const EVENT_7A6
+ const EVENT_7A7
+ const EVENT_7A8
+ const EVENT_7A9
+ const EVENT_7AA
+ const EVENT_7AB
+ const EVENT_7AC
+ const EVENT_7AD
+ const EVENT_7AE
+ const EVENT_7AF
+ const EVENT_7B0
+ const EVENT_7B1
+ const EVENT_7B2
+ const EVENT_7B3
+ const EVENT_7B4
+ const EVENT_7B5
+ const EVENT_7B6
+ const EVENT_7B7
+ const EVENT_7B8
+ const EVENT_7B9
+ const EVENT_7BA
+ const EVENT_7BB
+ const EVENT_7BC
+ const EVENT_7BD
+ const EVENT_7BE
+ const EVENT_7BF
+ const EVENT_7C0
+ const EVENT_7C1
+ const EVENT_7C2
+ const EVENT_7C3
+ const EVENT_7C4
+ const EVENT_7C5
+ const EVENT_7C6
+ const EVENT_7C7
+ const EVENT_7C8
+ const EVENT_7C9
+ const EVENT_7CA
+ const EVENT_7CB
+ const EVENT_7CC
+ const EVENT_7CD
+ const EVENT_7CE
+ const EVENT_7CF
+ const EVENT_7D0
+ const EVENT_7D1
+ const EVENT_7D2
+ const EVENT_7D3
+ const EVENT_7D4
+ const EVENT_7D5
+ const EVENT_7D6
+ const EVENT_7D7
+ const EVENT_7D8
+ const EVENT_7D9
+ const EVENT_7DA
+ const EVENT_7DB
+ const EVENT_7DC
+ const EVENT_7DD
+ const EVENT_7DE
+ const EVENT_7DF
+ const EVENT_7E0
+ const EVENT_7E1
+ const EVENT_7E2
+ const EVENT_7E3
+ const EVENT_7E4
+ const EVENT_7E5
+ const EVENT_7E6
+ const EVENT_7E7
+ const EVENT_7E8
+ const EVENT_7E9
+ const EVENT_7EA
+ const EVENT_7EB
+ const EVENT_7EC
+ const EVENT_7ED
+ const EVENT_7EE
+ const EVENT_7EF
+ const EVENT_7F0
+ const EVENT_7F1
+ const EVENT_7F2
+ const EVENT_7F3
+ const EVENT_7F4
+ const EVENT_7F5
+ const EVENT_7F6
+ const EVENT_7F7
+ const EVENT_7F8
+ const EVENT_7F9
+ const EVENT_7FA
+ const EVENT_7FB
+ const EVENT_7FC
+ const EVENT_7FD
+ const EVENT_7FE
+ const EVENT_7FF
+ const EVENT_800
+ const EVENT_BEAT_MANSION_2_TRAINER_0
+ const EVENT_802
+ const EVENT_803
+ const EVENT_804
+ const EVENT_805
+ const EVENT_806
+ const EVENT_807
+ const EVENT_808
+ const EVENT_809
+ const EVENT_80A
+ const EVENT_80B
+ const EVENT_80C
+ const EVENT_80D
+ const EVENT_80E
+ const EVENT_80F
+ const EVENT_810
+ const EVENT_BEAT_MANSION_3_TRAINER_0
+ const EVENT_BEAT_MANSION_3_TRAINER_1
+ const EVENT_813
+ const EVENT_814
+ const EVENT_815
+ const EVENT_816
+ const EVENT_817
+ const EVENT_818
+ const EVENT_819
+ const EVENT_81A
+ const EVENT_81B
+ const EVENT_81C
+ const EVENT_81D
+ const EVENT_81E
+ const EVENT_81F
+ const EVENT_820
+ const EVENT_BEAT_MANSION_4_TRAINER_0
+ const EVENT_BEAT_MANSION_4_TRAINER_1
+ const EVENT_823
+ const EVENT_824
+ const EVENT_825
+ const EVENT_826
+ const EVENT_827
+ const EVENT_828
+ const EVENT_829
+ const EVENT_82A
+ const EVENT_82B
+ const EVENT_82C
+ const EVENT_82D
+ const EVENT_82E
+ const EVENT_82F
+ const EVENT_830
+ const EVENT_831
+ const EVENT_832
+ const EVENT_833
+ const EVENT_834
+ const EVENT_835
+ const EVENT_836
+ const EVENT_837
+ const EVENT_838
+ const EVENT_839
+ const EVENT_83A
+ const EVENT_83B
+ const EVENT_83C
+ const EVENT_83D
+ const EVENT_83E
+ const EVENT_83F
+ const EVENT_840
+ const EVENT_841
+ const EVENT_842
+ const EVENT_843
+ const EVENT_844
+ const EVENT_845
+ const EVENT_846
+ const EVENT_847
+ const EVENT_848
+ const EVENT_849
+ const EVENT_84A
+ const EVENT_84B
+ const EVENT_84C
+ const EVENT_84D
+ const EVENT_84E
+ const EVENT_84F
+ const EVENT_850
+ const EVENT_851
+ const EVENT_852
+ const EVENT_853
+ const EVENT_854
+ const EVENT_855
+ const EVENT_856
+ const EVENT_857
+ const EVENT_858
+ const EVENT_859
+ const EVENT_85A
+ const EVENT_85B
+ const EVENT_85C
+ const EVENT_85D
+ const EVENT_85E
+ const EVENT_85F
+ const EVENT_860
+ const EVENT_861
+ const EVENT_862
+ const EVENT_863
+ const EVENT_864
+ const EVENT_865
+ const EVENT_866
+ const EVENT_867
+ const EVENT_868
+ const EVENT_869
+ const EVENT_86A
+ const EVENT_86B
+ const EVENT_86C
+ const EVENT_86D
+ const EVENT_86E
+ const EVENT_86F
+ const EVENT_870
+ const EVENT_871
+ const EVENT_872
+ const EVENT_873
+ const EVENT_874
+ const EVENT_875
+ const EVENT_876
+ const EVENT_877
+ const EVENT_878
+ const EVENT_879
+ const EVENT_87A
+ const EVENT_87B
+ const EVENT_87C
+ const EVENT_87D
+ const EVENT_87E
+ const EVENT_87F
+ const EVENT_GOT_HM03
+ const EVENT_881
+ const EVENT_882
+ const EVENT_883
+ const EVENT_884
+ const EVENT_885
+ const EVENT_886
+ const EVENT_887
+ const EVENT_888
+ const EVENT_889
+ const EVENT_88A
+ const EVENT_88B
+ const EVENT_88C
+ const EVENT_88D
+ const EVENT_88E
+ const EVENT_88F
+ const EVENT_890
+ const EVENT_891
+ const EVENT_892
+ const EVENT_893
+ const EVENT_894
+ const EVENT_895
+ const EVENT_896
+ const EVENT_897
+ const EVENT_898
+ const EVENT_899
+ const EVENT_89A
+ const EVENT_89B
+ const EVENT_89C
+ const EVENT_89D
+ const EVENT_89E
+ const EVENT_89F
+ const EVENT_8A0
+ const EVENT_8A1
+ const EVENT_8A2
+ const EVENT_8A3
+ const EVENT_8A4
+ const EVENT_8A5
+ const EVENT_8A6
+ const EVENT_8A7
+ const EVENT_8A8
+ const EVENT_8A9
+ const EVENT_8AA
+ const EVENT_8AB
+ const EVENT_8AC
+ const EVENT_8AD
+ const EVENT_8AE
+ const EVENT_8AF
+ const EVENT_8B0
+ const EVENT_8B1
+ const EVENT_8B2
+ const EVENT_8B3
+ const EVENT_8B4
+ const EVENT_8B5
+ const EVENT_8B6
+ const EVENT_8B7
+ const EVENT_8B8
+ const EVENT_8B9
+ const EVENT_8BA
+ const EVENT_8BB
+ const EVENT_8BC
+ const EVENT_8BD
+ const EVENT_8BE
+ const EVENT_8BF
+ const EVENT_8C0
+ const EVENT_BEAT_MEWTWO
+ const EVENT_8C2
+ const EVENT_8C3
+ const EVENT_8C4
+ const EVENT_8C5
+ const EVENT_8C6
+ const EVENT_8C7
+ const EVENT_8C8
+ const EVENT_8C9
+ const EVENT_8CA
+ const EVENT_8CB
+ const EVENT_8CC
+ const EVENT_8CD
+ const EVENT_8CE
+ const EVENT_8CF
+ const EVENT_8D0
+ const EVENT_8D1
+ const EVENT_8D2
+ const EVENT_8D3
+ const EVENT_8D4
+ const EVENT_8D5
+ const EVENT_8D6
+ const EVENT_8D7
+ const EVENT_8D8
+ const EVENT_8D9
+ const EVENT_8DA
+ const EVENT_8DB
+ const EVENT_8DC
+ const EVENT_8DD
+ const EVENT_8DE
+ const EVENT_8DF
+ const ELITE4_EVENTS_START
+ const EVENT_BEAT_LORELEIS_ROOM_TRAINER_0
+ const EVENT_8E2
+ const EVENT_8E3
+ const EVENT_8E4
+ const EVENT_8E5
+ const EVENT_AUTOWALKED_INTO_LORELEIS_ROOM
+ const EVENT_8E7
+ const EVENT_8E8
+ const EVENT_BEAT_BRUNOS_ROOM_TRAINER_0
+ const EVENT_8EA
+ const EVENT_8EB
+ const EVENT_8EC
+ const EVENT_8ED
+ const EVENT_AUTOWALKED_INTO_BRUNOS_ROOM
+ const EVENT_8EF
+ const EVENT_8F0
+ const EVENT_BEAT_AGATHAS_ROOM_TRAINER_0
+ const EVENT_8F2
+ const EVENT_8F3
+ const EVENT_8F4
+ const EVENT_8F5
+ const EVENT_AUTOWALKED_INTO_AGATHAS_ROOM
+ const EVENT_8F7
+ const EVENT_8F8
+ const EVENT_BEAT_LANCES_ROOM_TRAINER_0
+ const EVENT_8FA
+ const EVENT_8FB
+ const EVENT_8FC
+ const EVENT_8FD
+ const EVENT_BEAT_LANCE
+ const EVENT_LANCES_ROOM_LOCK_DOOR
+ const EVENT_900
+ const EVENT_BEAT_CHAMPION_RIVAL
+ const EVENT_902
+ const EVENT_903
+ const EVENT_904
+ const EVENT_905
+ const EVENT_906
+ const ELITE4_CHAMPION_EVENTS_END
+ const EVENT_908
+ const EVENT_909
+ const EVENT_90A
+ const EVENT_90B
+ const EVENT_90C
+ const EVENT_90D
+ const EVENT_90E
+ const EVENT_90F
+ const EVENT_910
+ const EVENT_BEAT_VICTORY_ROAD_1_TRAINER_0
+ const EVENT_BEAT_VICTORY_ROAD_1_TRAINER_1
+ const EVENT_913
+ const EVENT_914
+ const EVENT_915
+ const EVENT_916
+ const EVENT_VICTORY_ROAD_1_BOULDER_ON_SWITCH
+ const EVENT_918
+ const EVENT_919
+ const EVENT_91A
+ const EVENT_91B
+ const EVENT_91C
+ const EVENT_91D
+ const EVENT_91E
+ const EVENT_91F
+ const EVENT_920
+ const EVENT_921
+ const EVENT_922
+ const EVENT_923
+ const EVENT_924
+ const EVENT_925
+ const EVENT_926
+ const EVENT_927
+ const EVENT_928
+ const EVENT_929
+ const EVENT_92A
+ const EVENT_92B
+ const EVENT_92C
+ const EVENT_92D
+ const EVENT_92E
+ const EVENT_92F
+ const EVENT_930
+ const EVENT_931
+ const EVENT_932
+ const EVENT_933
+ const EVENT_934
+ const EVENT_935
+ const EVENT_936
+ const EVENT_937
+ const EVENT_938
+ const EVENT_939
+ const EVENT_93A
+ const EVENT_93B
+ const EVENT_93C
+ const EVENT_93D
+ const EVENT_93E
+ const EVENT_93F
+ const EVENT_940
+ const EVENT_941
+ const EVENT_942
+ const EVENT_943
+ const EVENT_944
+ const EVENT_945
+ const EVENT_946
+ const EVENT_947
+ const EVENT_948
+ const EVENT_949
+ const EVENT_94A
+ const EVENT_94B
+ const EVENT_94C
+ const EVENT_94D
+ const EVENT_94E
+ const EVENT_94F
+ const EVENT_950
+ const EVENT_951
+ const EVENT_952
+ const EVENT_953
+ const EVENT_954
+ const EVENT_955
+ const EVENT_956
+ const EVENT_957
+ const EVENT_958
+ const EVENT_959
+ const EVENT_95A
+ const EVENT_95B
+ const EVENT_95C
+ const EVENT_95D
+ const EVENT_95E
+ const EVENT_95F
+ const EVENT_960
+ const EVENT_961
+ const EVENT_962
+ const EVENT_963
+ const EVENT_964
+ const EVENT_965
+ const EVENT_966
+ const EVENT_967
+ const EVENT_968
+ const EVENT_969
+ const EVENT_96A
+ const EVENT_96B
+ const EVENT_96C
+ const EVENT_96D
+ const EVENT_96E
+ const EVENT_96F
+ const EVENT_970
+ const EVENT_971
+ const EVENT_972
+ const EVENT_973
+ const EVENT_974
+ const EVENT_975
+ const EVENT_976
+ const EVENT_977
+ const EVENT_978
+ const EVENT_979
+ const EVENT_97A
+ const EVENT_97B
+ const EVENT_97C
+ const EVENT_97D
+ const EVENT_97E
+ const EVENT_97F
+ const EVENT_980
+ const EVENT_981
+ const EVENT_982
+ const EVENT_983
+ const EVENT_984
+ const EVENT_985
+ const EVENT_986
+ const EVENT_987
+ const EVENT_988
+ const EVENT_989
+ const EVENT_98A
+ const EVENT_98B
+ const EVENT_98C
+ const EVENT_98D
+ const EVENT_98E
+ const EVENT_98F
+ const EVENT_990
+ const EVENT_991
+ const EVENT_992
+ const EVENT_993
+ const EVENT_994
+ const EVENT_995
+ const EVENT_996
+ const EVENT_997
+ const EVENT_998
+ const EVENT_999
+ const EVENT_99A
+ const EVENT_99B
+ const EVENT_99C
+ const EVENT_99D
+ const EVENT_99E
+ const EVENT_99F
+ const EVENT_9A0
+ const EVENT_9A1
+ const EVENT_9A2
+ const EVENT_9A3
+ const EVENT_9A4
+ const EVENT_9A5
+ const EVENT_9A6
+ const EVENT_9A7
+ const EVENT_9A8
+ const EVENT_9A9
+ const EVENT_9AA
+ const EVENT_9AB
+ const EVENT_9AC
+ const EVENT_9AD
+ const EVENT_9AE
+ const EVENT_9AF
+ const EVENT_9B0
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_0
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_1
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_2
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_3
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_4
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_5
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_6
+ const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_7
+ const EVENT_9B9
+ const EVENT_9BA
+ const EVENT_9BB
+ const EVENT_9BC
+ const EVENT_9BD
+ const EVENT_9BE
+ const EVENT_9BF
+ const EVENT_SEAFOAM2_BOULDER1_DOWN_HOLE
+ const EVENT_SEAFOAM2_BOULDER2_DOWN_HOLE
+ const EVENT_9C2
+ const EVENT_9C3
+ const EVENT_9C4
+ const EVENT_9C5
+ const EVENT_9C6
+ const EVENT_9C7
+ const EVENT_SEAFOAM3_BOULDER1_DOWN_HOLE
+ const EVENT_SEAFOAM3_BOULDER2_DOWN_HOLE
+ const EVENT_9CA
+ const EVENT_9CB
+ const EVENT_9CC
+ const EVENT_9CD
+ const EVENT_9CE
+ const EVENT_9CF
+ const EVENT_SEAFOAM4_BOULDER1_DOWN_HOLE
+ const EVENT_SEAFOAM4_BOULDER2_DOWN_HOLE
+ const EVENT_9D2
+ const EVENT_9D3
+ const EVENT_9D4
+ const EVENT_9D5
+ const EVENT_9D6
+ const EVENT_9D7
+ const EVENT_9D8
+ const EVENT_9D9
+ const EVENT_BEAT_ARTICUNO
+ const EVENT_9DB
+ const EVENT_9DC
+ const EVENT_9DD
+ const EVENT_9DE
+ const EVENT_9DF
+ const EVENT_9E0
+ const EVENT_9E1
+ const EVENT_9E2
+ const EVENT_9E3
+ const EVENT_9E4
+ const EVENT_9E5
+ const EVENT_9E6
+ const EVENT_9E7
+ const EVENT_9E8
+ const EVENT_9E9
+ const EVENT_9EA
+ const EVENT_9EB
+ const EVENT_9EC
+ const EVENT_9ED
+ const EVENT_9EE
+ const EVENT_9EF
+ const EVENT_9F0
+ const EVENT_9F1
+ const EVENT_9F2
+ const EVENT_9F3
+ const EVENT_9F4
+ const EVENT_9F5
+ const EVENT_9F6
+ const EVENT_9F7
+ const EVENT_9F8
+ const EVENT_9F9
+ const EVENT_9FA
+ const EVENT_9FB
+ const EVENT_9FC
+ const EVENT_9FD
+ const EVENT_9FE
+ const EVENT_9FF
--- a/constants/evolution_constants.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-; See data/evos_moves.asm
-
-; Evolution types
-EV_LEVEL EQU 1
-EV_ITEM EQU 2
-EV_TRADE EQU 3
-
-MAX_EVOLUTIONS EQU 3
-EVOLUTION_SIZE EQU 4
--- /dev/null
+++ b/constants/gfx_constants.asm
@@ -1,0 +1,17 @@
+SCREEN_WIDTH EQU 20
+SCREEN_HEIGHT EQU 18
+
+SCREEN_WIDTH_PIXELS EQU SCREEN_WIDTH * 8
+SCREEN_HEIGHT_PIXELS EQU SCREEN_HEIGHT * 8
+
+BYTES_PER_TILE EQU 16
+
+BG_MAP_WIDTH EQU 32
+BG_MAP_HEIGHT EQU 32
+
+SPRITEBUFFERSIZE EQU 7*7 * 8 ; 7 * 7 (tiles) * 8 (bytes per tile)
+
+; HP bar
+HP_BAR_GREEN EQU 0
+HP_BAR_YELLOW EQU 1
+HP_BAR_RED EQU 2
--- a/constants/hardware_constants.asm
+++ b/constants/hardware_constants.asm
@@ -2,6 +2,19 @@
GBC EQU $11
+; memory map
+VRAM_Begin EQU $8000
+VRAM_End EQU $a000
+SRAM_Begin EQU $a000
+SRAM_End EQU $c000
+WRAM0_Begin EQU $c000
+WRAM0_End EQU $d000
+WRAM1_Begin EQU $d000
+WRAM1_End EQU $e000
+; hardware registers $ff00-$ff80 (see below)
+HRAM_Begin EQU $ff80
+HRAM_End EQU $ffff
+
; MBC1
MBC1SRamEnable EQU $0000
MBC1RomBank EQU $2000
@@ -64,6 +77,22 @@
rNR50 EQU $ff24 ; Channel control / ON-OFF / Volume (R/W)
rNR51 EQU $ff25 ; Selection of Sound output terminal (R/W)
rNR52 EQU $ff26 ; Sound on/off
+rWave_0 EQU $ff30
+rWave_1 EQU $ff31
+rWave_2 EQU $ff32
+rWave_3 EQU $ff33
+rWave_4 EQU $ff34
+rWave_5 EQU $ff35
+rWave_6 EQU $ff36
+rWave_7 EQU $ff37
+rWave_8 EQU $ff38
+rWave_9 EQU $ff39
+rWave_a EQU $ff3a
+rWave_b EQU $ff3b
+rWave_c EQU $ff3c
+rWave_d EQU $ff3d
+rWave_e EQU $ff3e
+rWave_f EQU $ff3f
rLCDC EQU $ff40 ; LCD Control (R/W)
rLCDC_ENABLE EQU 7
rLCDC_ENABLE_MASK EQU 1 << rLCDC_ENABLE
--- a/constants/hide_show_constants.asm
+++ b/constants/hide_show_constants.asm
@@ -4,8 +4,7 @@
; (they are either items or sprites that deactivate after battle
; and are detected in wMissableObjectList)
-const_value = 0
-
+ const_def
const HS_PALLET_TOWN_OAK ; 00
const HS_LYING_OLD_MAN ; 01
const HS_OLD_MAN ; 02
--- /dev/null
+++ b/constants/icon_constants.asm
@@ -1,0 +1,12 @@
+; party menu icons
+ const_def
+ const ICON_MON ; $0
+ const ICON_BALL ; $1
+ const ICON_HELIX ; $2
+ const ICON_FAIRY ; $3
+ const ICON_BIRD ; $4
+ const ICON_WATER ; $5
+ const ICON_BUG ; $6
+ const ICON_GRASS ; $7
+ const ICON_SNAKE ; $8
+ const ICON_QUADRUPED ; $9
--- /dev/null
+++ b/constants/input_constants.asm
@@ -1,0 +1,18 @@
+A_BUTTON EQU %00000001
+B_BUTTON EQU %00000010
+SELECT EQU %00000100
+START EQU %00001000
+D_RIGHT EQU %00010000
+D_LEFT EQU %00100000
+D_UP EQU %01000000
+D_DOWN EQU %10000000
+
+ const_def
+ const BIT_A_BUTTON
+ const BIT_B_BUTTON
+ const BIT_SELECT
+ const BIT_START
+ const BIT_D_RIGHT
+ const BIT_D_LEFT
+ const BIT_D_UP
+ const BIT_D_DOWN
--- a/constants/item_constants.asm
+++ b/constants/item_constants.asm
@@ -1,5 +1,5 @@
-const_value = 1
-
+ const_def
+ const NO_ITEM ; $00
const MASTER_BALL ; $01
const ULTRA_BALL ; $02
const GREAT_BALL ; $03
--- a/constants/list_constants.asm
+++ b/constants/list_constants.asm
@@ -1,20 +1,23 @@
-; list menu ID's
-PCPOKEMONLISTMENU EQU $00 ; PC pokemon withdraw/deposit lists
-MOVESLISTMENU EQU $01 ; XXX where is this used?
-PRICEDITEMLISTMENU EQU $02 ; Pokemart buy menu / Pokemart buy/sell choose quantity menu
-ITEMLISTMENU EQU $03 ; Start menu Item menu / Pokemart sell menu
-SPECIALLISTMENU EQU $04 ; list of special "items" e.g. floor list in elevators / list of badges
+; list menu IDs
+ const_def
+ const PCPOKEMONLISTMENU ; $00 ; PC pokemon withdraw/deposit lists
+ const MOVESLISTMENU ; $01 ; XXX where is this used?
+ const PRICEDITEMLISTMENU ; $02 ; Pokemart buy menu / Pokemart buy/sell choose quantity menu
+ const ITEMLISTMENU ; $03 ; Start menu Item menu / Pokemart sell menu
+ const SPECIALLISTMENU ; $04 ; list of special "items" e.g. floor list in elevators / list of badges
-MONSTER_NAME EQU 1
-MOVE_NAME EQU 2
-; ???_NAME EQU 3
-ITEM_NAME EQU 4
-PLAYEROT_NAME EQU 5
-ENEMYOT_NAME EQU 6
-TRAINER_NAME EQU 7
+ const_def 1
+ const MONSTER_NAME ; 1
+ const MOVE_NAME ; 2
+ const UNUSED_NAME ; 3
+ const ITEM_NAME ; 4
+ const PLAYEROT_NAME ; 5
+ const ENEMYOT_NAME ; 6
+ const TRAINER_NAME ; 7
-INIT_ENEMYOT_LIST EQU 1
-INIT_BAG_ITEM_LIST EQU 2
-INIT_OTHER_ITEM_LIST EQU 3
-INIT_PLAYEROT_LIST EQU 4
-INIT_MON_LIST EQU 5
+ const_def 1
+ const INIT_ENEMYOT_LIST ; 1
+ const INIT_BAG_ITEM_LIST ; 2
+ const INIT_OTHER_ITEM_LIST ; 3
+ const INIT_PLAYEROT_LIST ; 4
+ const INIT_MON_LIST ; 5
--- /dev/null
+++ b/constants/map_data_constants.asm
@@ -1,0 +1,14 @@
+; width of east/west connections
+; height of north/south connections
+MAP_BORDER EQU 3
+
+; connection directions
+EAST EQU 1
+WEST EQU 2
+SOUTH EQU 4
+NORTH EQU 8
+
+; tileset environments
+INDOOR EQU 0
+CAVE EQU 1
+OUTDOOR EQU 2
--- /dev/null
+++ b/constants/map_object_constants.asm
@@ -1,0 +1,14 @@
+; different kinds of people events
+ITEM EQU $80
+TRAINER EQU $40
+
+WALK EQU $FE
+STAY EQU $FF
+
+DOWN EQU $D0
+UP EQU $D1
+LEFT EQU $D2
+RIGHT EQU $D3
+NONE EQU $FF
+
+BOULDER_MOVEMENT_BYTE_2 EQU $10
--- /dev/null
+++ b/constants/menu_constants.asm
@@ -1,0 +1,70 @@
+BAG_ITEM_CAPACITY EQU 20
+PC_ITEM_CAPACITY EQU 50
+
+; text box IDs
+MESSAGE_BOX EQU $01
+FIELD_MOVE_MON_MENU EQU $04
+JP_MOCHIMONO_MENU_TEMPLATE EQU $05
+USE_TOSS_MENU_TEMPLATE EQU $06
+JP_SAVE_MESSAGE_MENU_TEMPLATE EQU $08
+JP_SPEED_OPTIONS_MENU_TEMPLATE EQU $09
+BATTLE_MENU_TEMPLATE EQU $0b
+SWITCH_STATS_CANCEL_MENU_TEMPLATE EQU $0c
+LIST_MENU_BOX EQU $0d
+BUY_SELL_QUIT_MENU_TEMPLATE EQU $0e
+MONEY_BOX_TEMPLATE EQU $0f
+MON_SPRITE_POPUP EQU $11
+JP_AH_MENU_TEMPLATE EQU $12
+MONEY_BOX EQU $13
+TWO_OPTION_MENU EQU $14
+BUY_SELL_QUIT_MENU EQU $15
+JP_POKEDEX_MENU_TEMPLATE EQU $1a
+SAFARI_BATTLE_MENU_TEMPLATE EQU $1b
+
+; two option menu constants
+YES_NO_MENU EQU 0
+NORTH_WEST_MENU EQU 1
+SOUTH_EAST_MENU EQU 2
+WIDE_YES_NO_MENU EQU 3
+NORTH_EAST_MENU EQU 4
+TRADE_CANCEL_MENU EQU 5
+HEAL_CANCEL_MENU EQU 6
+NO_YES_MENU EQU 7
+
+; menu exit method constants for list menus and the buy/sell/quit menu
+CHOSE_MENU_ITEM EQU 1 ; pressed A
+CANCELLED_MENU EQU 2 ; pressed B
+
+; menu exit method constants for two-option menus
+CHOSE_FIRST_ITEM EQU 1
+CHOSE_SECOND_ITEM EQU 2
+
+; move mon constants
+BOX_TO_PARTY EQU 0
+PARTY_TO_BOX EQU 1
+DAYCARE_TO_PARTY EQU 2
+PARTY_TO_DAYCARE EQU 3
+
+; party menu types
+NORMAL_PARTY_MENU EQU 0
+USE_ITEM_PARTY_MENU EQU 1
+BATTLE_PARTY_MENU EQU 2
+TMHM_PARTY_MENU EQU 3
+SWAP_MONS_PARTY_MENU EQU 4
+EVO_STONE_PARTY_MENU EQU 5
+
+; party menu message IDs
+ANTIDOTE_MSG EQU $F0
+BURN_HEAL_MSG EQU $F1
+ICE_HEAL_MSG EQU $F2
+AWAKENING_MSG EQU $F3
+PARALYZ_HEAL_MSG EQU $F4
+POTION_MSG EQU $F5
+FULL_HEAL_MSG EQU $F6
+REVIVE_MSG EQU $F7
+RARE_CANDY_MSG EQU $F8
+
+; naming screen types
+NAME_PLAYER_SCREEN EQU 0
+NAME_RIVAL_SCREEN EQU 1
+NAME_MON_SCREEN EQU 2
--- a/constants/misc_constants.asm
+++ b/constants/misc_constants.asm
@@ -1,208 +1,8 @@
-MAX_LEVEL EQU 100
+; Boolean checks
+FALSE EQU 0
+TRUE EQU 1
-NUM_MOVES EQU 4
-NUM_STATS EQU 5
-NUM_STAT_MODS EQU 8
-NUM_DVS EQU 2
-
-PARTY_LENGTH EQU 6
-
-MONS_PER_BOX EQU 20
-NUM_BOXES EQU 12
-
-BAG_ITEM_CAPACITY EQU 20
-PC_ITEM_CAPACITY EQU 50
-
-HOF_MON EQU $10
-HOF_TEAM EQU PARTY_LENGTH * HOF_MON
-HOF_TEAM_CAPACITY EQU 50
-
-NAME_LENGTH EQU 11
-ITEM_NAME_LENGTH EQU 13
-
-A_BUTTON EQU %00000001
-B_BUTTON EQU %00000010
-SELECT EQU %00000100
-START EQU %00001000
-D_RIGHT EQU %00010000
-D_LEFT EQU %00100000
-D_UP EQU %01000000
-D_DOWN EQU %10000000
-
-const_value set 0
- const BIT_A_BUTTON
- const BIT_B_BUTTON
- const BIT_SELECT
- const BIT_START
- const BIT_D_RIGHT
- const BIT_D_LEFT
- const BIT_D_UP
- const BIT_D_DOWN
-
-SCREEN_WIDTH EQU 20
-SCREEN_HEIGHT EQU 18
-
-SCREEN_WIDTH_PIXELS EQU SCREEN_WIDTH * 8
-SCREEN_HEIGHT_PIXELS EQU SCREEN_HEIGHT * 8
-
-BYTES_PER_TILE EQU 16
-
-BG_MAP_WIDTH EQU 32
-BG_MAP_HEIGHT EQU 32
-
-SPRITEBUFFERSIZE EQU 7*7 * 8 ; 7 * 7 (tiles) * 8 (bytes per tile)
-
-NPC_MOVEMENT_DOWN EQU $00
-NPC_MOVEMENT_UP EQU $40
-NPC_MOVEMENT_LEFT EQU $80
-NPC_MOVEMENT_RIGHT EQU $C0
-
-; text box IDs
-MESSAGE_BOX EQU $01
-FIELD_MOVE_MON_MENU EQU $04
-JP_MOCHIMONO_MENU_TEMPLATE EQU $05
-USE_TOSS_MENU_TEMPLATE EQU $06
-JP_SAVE_MESSAGE_MENU_TEMPLATE EQU $08
-JP_SPEED_OPTIONS_MENU_TEMPLATE EQU $09
-BATTLE_MENU_TEMPLATE EQU $0b
-SWITCH_STATS_CANCEL_MENU_TEMPLATE EQU $0c
-LIST_MENU_BOX EQU $0d
-BUY_SELL_QUIT_MENU_TEMPLATE EQU $0e
-MONEY_BOX_TEMPLATE EQU $0f
-MON_SPRITE_POPUP EQU $11
-JP_AH_MENU_TEMPLATE EQU $12
-MONEY_BOX EQU $13
-TWO_OPTION_MENU EQU $14
-BUY_SELL_QUIT_MENU EQU $15
-JP_POKEDEX_MENU_TEMPLATE EQU $1a
-SAFARI_BATTLE_MENU_TEMPLATE EQU $1b
-
-; two option menu constants
-YES_NO_MENU EQU 0
-NORTH_WEST_MENU EQU 1
-SOUTH_EAST_MENU EQU 2
-WIDE_YES_NO_MENU EQU 3
-NORTH_EAST_MENU EQU 4
-TRADE_CANCEL_MENU EQU 5
-HEAL_CANCEL_MENU EQU 6
-NO_YES_MENU EQU 7
-
-; menu exit method constants for list menus and the buy/sell/quit menu
-CHOSE_MENU_ITEM EQU 1 ; pressed A
-CANCELLED_MENU EQU 2 ; pressed B
-
-; menu exit method constants for two-option menus
-CHOSE_FIRST_ITEM EQU 1
-CHOSE_SECOND_ITEM EQU 2
-
-; move mon constants
-BOX_TO_PARTY EQU 0
-PARTY_TO_BOX EQU 1
-DAYCARE_TO_PARTY EQU 2
-PARTY_TO_DAYCARE EQU 3
-
-; emotion bubbles
-EXCLAMATION_BUBBLE EQU 0
-QUESTION_BUBBLE EQU 1
-SMILE_BUBBLE EQU 2
-
-; slot symbols
-SLOTS7 EQU $0200
-SLOTSBAR EQU $0604
-SLOTSCHERRY EQU $0A08
-SLOTSFISH EQU $0E0C
-SLOTSBIRD EQU $1210
-SLOTSMOUSE EQU $1614
-
-; party menu types
-NORMAL_PARTY_MENU EQU 0
-USE_ITEM_PARTY_MENU EQU 1
-BATTLE_PARTY_MENU EQU 2
-TMHM_PARTY_MENU EQU 3
-SWAP_MONS_PARTY_MENU EQU 4
-EVO_STONE_PARTY_MENU EQU 5
-
-; party menu message IDs
-ANTIDOTE_MSG EQU $F0
-BURN_HEAL_MSG EQU $F1
-ICE_HEAL_MSG EQU $F2
-AWAKENING_MSG EQU $F3
-PARALYZ_HEAL_MSG EQU $F4
-POTION_MSG EQU $F5
-FULL_HEAL_MSG EQU $F6
-REVIVE_MSG EQU $F7
-RARE_CANDY_MSG EQU $F8
-
-; naming screen types
-NAME_PLAYER_SCREEN EQU 0
-NAME_RIVAL_SCREEN EQU 1
-NAME_MON_SCREEN EQU 2
-
-; mon data locations
-; Note that some values are not supported by all functions that use these values.
-PLAYER_PARTY_DATA EQU 0
-ENEMY_PARTY_DATA EQU 1
-BOX_DATA EQU 2
-DAYCARE_DATA EQU 3
-BATTLE_MON_DATA EQU 4
-
-; player direction constants
-
-PLAYER_DIR_BIT_RIGHT EQU 0
-PLAYER_DIR_BIT_LEFT EQU 1
-PLAYER_DIR_BIT_DOWN EQU 2
-PLAYER_DIR_BIT_UP EQU 3
-
-PLAYER_DIR_RIGHT EQU (1 << PLAYER_DIR_BIT_RIGHT)
-PLAYER_DIR_LEFT EQU (1 << PLAYER_DIR_BIT_LEFT)
-PLAYER_DIR_DOWN EQU (1 << PLAYER_DIR_BIT_DOWN)
-PLAYER_DIR_UP EQU (1 << PLAYER_DIR_BIT_UP)
-
; flag operations
-
FLAG_RESET EQU 0
FLAG_SET EQU 1
FLAG_TEST EQU 2
-
-; HP bar
-HP_BAR_GREEN EQU 0
-HP_BAR_YELLOW EQU 1
-HP_BAR_RED EQU 2
-
-; D733 flags
-BIT_TEST_BATTLE EQU 0
-
-; battle type constants
-BATTLE_TYPE_NORMAL EQU 0
-BATTLE_TYPE_OLD_MAN EQU 1
-BATTLE_TYPE_SAFARI EQU 2
-
-; serial
-
-ESTABLISH_CONNECTION_WITH_INTERNAL_CLOCK EQU $01
-ESTABLISH_CONNECTION_WITH_EXTERNAL_CLOCK EQU $02
-
-USING_EXTERNAL_CLOCK EQU $01
-USING_INTERNAL_CLOCK EQU $02
-CONNECTION_NOT_ESTABLISHED EQU $ff
-
-; signals the start of an array of bytes transferred over the link cable
-SERIAL_PREAMBLE_BYTE EQU $FD
-
-; this byte is used when there is no data to send
-SERIAL_NO_DATA_BYTE EQU $FE
-
-; signals the end of one part of a patch list (there are two parts) for player/enemy party data
-SERIAL_PATCH_LIST_PART_TERMINATOR EQU $FF
-
-LINK_STATE_NONE EQU $00 ; not using link
-LINK_STATE_IN_CABLE_CLUB EQU $01 ; in a cable club room (Colosseum or Trade Centre)
-LINK_STATE_START_TRADE EQU $02 ; pre-trade selection screen initialisation
-LINK_STATE_START_BATTLE EQU $03 ; pre-battle initialisation
-LINK_STATE_BATTLING EQU $04 ; in a link battle
-LINK_STATE_RESET EQU $05 ; reset game (unused)
-LINK_STATE_TRADING EQU $32 ; in a link trade
-
-LINKBATTLE_RUN EQU $F
-LINKBATTLE_STRUGGLE EQU $E
-LINKBATTLE_NO_ACTION EQU $D
--- a/constants/move_animation_constants.asm
+++ b/constants/move_animation_constants.asm
@@ -1,8 +1,6 @@
-; subanimations
+; special effects that are part of move animations
-const_value = $D8
-
-; special effects, prefaced with "SE" for "Special Effect"
+ const_def $D8
const SE_WAVY_SCREEN ; $D8 used in Psywave/Night Shade/Psychic etc.
const SE_SUBSTITUTE_MON ; $D9 used in Substitute (turns the pokemon into a mini sprite)
const SE_SHAKE_BACK_AND_FORTH ; $DA used in Double Team
--- a/constants/move_constants.asm
+++ b/constants/move_constants.asm
@@ -1,5 +1,5 @@
-const_value = 1
-
+ const_def
+ const NO_MOVE ; 00
const POUND ; 01
const KARATE_CHOP ; 02
const DOUBLESLAP ; 03
@@ -165,9 +165,9 @@
const SLASH ; a3
const SUBSTITUTE ; a4
-NUM_ATTACKS EQU const_value + -1
+NUM_ATTACKS EQU const_value - 1
- const STRUGGLE
+ const STRUGGLE ; a5
; Moves do double duty as animation identifiers.
--- a/constants/move_effect_constants.asm
+++ b/constants/move_effect_constants.asm
@@ -2,8 +2,8 @@
; {stat}_(UP|DOWN)(1|2) means that the move raises the user's (or lowers the target's) corresponding stat modifier by 1 (or 2) stages
; {status condition}_side_effect means that the move has a side chance of causing that condition
; {status condition}_effect means that the move causes the status condition every time it hits the target
-const_value = 0
+ const_def
const NO_ADDITIONAL_EFFECT ; $00
const UNUSED_EFFECT_01 ; $01
const POISON_SIDE_EFFECT1 ; $02
@@ -91,7 +91,3 @@
const LEECH_SEED_EFFECT ; $54
const SPLASH_EFFECT ; $55
const DISABLE_EFFECT ; $56
-
-; fixed damage constants
-SONICBOOM_DAMAGE EQU 20
-DRAGON_RAGE_DAMAGE EQU 40
--- a/constants/music_constants.asm
+++ b/constants/music_constants.asm
@@ -1,50 +1,3 @@
-; HW sound channel register base addresses
-HW_CH1_BASE EQU (rNR10 % $100)
-HW_CH2_BASE EQU ((rNR21 % $100) - 1)
-HW_CH3_BASE EQU (rNR30 % $100)
-HW_CH4_BASE EQU ((rNR41 % $100) - 1)
-
-; HW sound channel enable bit masks
-HW_CH1_ENABLE_MASK EQU %00010001
-HW_CH2_ENABLE_MASK EQU %00100010
-HW_CH3_ENABLE_MASK EQU %01000100
-HW_CH4_ENABLE_MASK EQU %10001000
-
-; HW sound channel disable bit masks
-HW_CH1_DISABLE_MASK EQU (~HW_CH1_ENABLE_MASK & $ff)
-HW_CH2_DISABLE_MASK EQU (~HW_CH2_ENABLE_MASK & $ff)
-HW_CH3_DISABLE_MASK EQU (~HW_CH3_ENABLE_MASK & $ff)
-HW_CH4_DISABLE_MASK EQU (~HW_CH4_ENABLE_MASK & $ff)
-
-REG_DUTY_SOUND_LEN EQU 1
-REG_VOLUME_ENVELOPE EQU 2
-REG_FREQUENCY_LO EQU 3
-
-MAX_SFX_ID_1 EQUS "SFX_SAFARI_ZONE_PA"
-MAX_SFX_ID_2 EQUS "SFX_SILPH_SCOPE"
-MAX_SFX_ID_3 EQUS "SFX_SHOOTING_STAR"
-
-NOISE_INSTRUMENTS_START EQUS "SFX_NOISE_INSTRUMENT01"
-NOISE_INSTRUMENTS_END EQUS "SFX_NOISE_INSTRUMENT19 + 1"
-
-CRY_SFX_START EQUS "SFX_CRY_00"
-CRY_SFX_END EQUS "SFX_CRY_25 + 3"
-
-BATTLE_SFX_START EQUS "SFX_PECK"
-BATTLE_SFX_END EQUS "SFX_SILPH_SCOPE + 1"
-
-; wChannelFlags1 constants
-BIT_PERFECT_PITCH EQU 0 ; controlled by toggle_perfect_pitch command
-BIT_SOUND_CALL EQU 1 ; if in sound call
-BIT_NOISE_OR_SFX EQU 2 ; if channel is the music noise channel or an SFX channel
-BIT_VIBRATO_DIRECTION EQU 3 ; if the pitch is above or below normal (cycles)
-BIT_PITCH_SLIDE_ON EQU 4 ; if pitch slide is active
-BIT_PITCH_SLIDE_DECREASING EQU 5 ; if the pitch slide frequency is decreasing (instead of increasing)
-BIT_ROTATE_DUTY_CYCLE EQU 6 ; if rotating duty cycle
-
-; wChannelFlags2 constant (only has one flag)
-BIT_EXECUTE_MUSIC EQU 0 ; if in execute music
-
; Song ids are calculated by address to save space.
music_const: MACRO
@@ -103,6 +56,7 @@
music_const MUSIC_MEET_MALE_TRAINER, Music_MeetMaleTrainer
; AUDIO_1 AUDIO_2 AUDIO_3
+NOISE_INSTRUMENTS_START EQUS "SFX_NOISE_INSTRUMENT01"
music_const SFX_NOISE_INSTRUMENT01, SFX_Noise_Instrument01_1
music_const SFX_NOISE_INSTRUMENT02, SFX_Noise_Instrument02_1
music_const SFX_NOISE_INSTRUMENT03, SFX_Noise_Instrument03_1
@@ -122,6 +76,9 @@
music_const SFX_NOISE_INSTRUMENT17, SFX_Noise_Instrument17_1
music_const SFX_NOISE_INSTRUMENT18, SFX_Noise_Instrument18_1
music_const SFX_NOISE_INSTRUMENT19, SFX_Noise_Instrument19_1
+NOISE_INSTRUMENTS_END EQUS "SFX_NOISE_INSTRUMENT19 + 1"
+
+CRY_SFX_START EQUS "SFX_CRY_00"
music_const SFX_CRY_00, SFX_Cry00_1
music_const SFX_CRY_01, SFX_Cry01_1
music_const SFX_CRY_02, SFX_Cry02_1
@@ -160,6 +117,7 @@
music_const SFX_CRY_23, SFX_Cry23_1
music_const SFX_CRY_24, SFX_Cry24_1
music_const SFX_CRY_25, SFX_Cry25_1
+CRY_SFX_END EQUS "SFX_CRY_25 + 3"
music_const SFX_GET_ITEM_2, SFX_Get_Item2_1
music_const SFX_TINK, SFX_Tink_1
@@ -204,6 +162,7 @@
; AUDIO_1
music_const SFX_POKEFLUTE, SFX_Pokeflute
music_const SFX_SAFARI_ZONE_PA, SFX_Safari_Zone_PA
+MAX_SFX_ID_1 EQUS "SFX_SAFARI_ZONE_PA"
; AUDIO_2
music_const SFX_LEVEL_UP, SFX_Level_Up
@@ -214,6 +173,8 @@
music_const SFX_RUN, SFX_Run
music_const SFX_DEX_PAGE_ADDED, SFX_Dex_Page_Added
music_const SFX_CAUGHT_MON, SFX_Caught_Mon
+
+BATTLE_SFX_START EQUS "SFX_PECK"
music_const SFX_PECK, SFX_Peck
music_const SFX_FAINT_FALL, SFX_Faint_Fall
music_const SFX_BATTLE_09, SFX_Battle_09
@@ -263,6 +224,8 @@
music_const SFX_BATTLE_35, SFX_Battle_35
music_const SFX_BATTLE_36, SFX_Battle_36
music_const SFX_SILPH_SCOPE, SFX_Silph_Scope
+BATTLE_SFX_END EQUS "SFX_SILPH_SCOPE + 1"
+MAX_SFX_ID_2 EQUS "SFX_SILPH_SCOPE"
; AUDIO_3
music_const SFX_INTRO_LUNGE, SFX_Intro_Lunge
@@ -275,3 +238,6 @@
music_const SFX_SLOTS_REWARD, SFX_Slots_Reward
music_const SFX_SLOTS_NEW_SPIN, SFX_Slots_New_Spin
music_const SFX_SHOOTING_STAR, SFX_Shooting_Star
+MAX_SFX_ID_3 EQUS "SFX_SHOOTING_STAR"
+
+SFX_STOP_ALL_MUSIC EQU $ff
--- a/constants/palette_constants.asm
+++ b/constants/palette_constants.asm
@@ -5,25 +5,28 @@
const DARK_GRAY
const BLACK
-SET_PAL_BATTLE_BLACK EQU $00
-SET_PAL_BATTLE EQU $01
-SET_PAL_TOWN_MAP EQU $02
-SET_PAL_STATUS_SCREEN EQU $03
-SET_PAL_POKEDEX EQU $04
-SET_PAL_SLOTS EQU $05
-SET_PAL_TITLE_SCREEN EQU $06
-SET_PAL_NIDORINO_INTRO EQU $07
-SET_PAL_GENERIC EQU $08
-SET_PAL_OVERWORLD EQU $09
-SET_PAL_PARTY_MENU EQU $0A
-SET_PAL_POKEMON_WHOLE_SCREEN EQU $0B
-SET_PAL_GAME_FREAK_INTRO EQU $0C
-SET_PAL_TRAINER_CARD EQU $0D
-UPDATE_PARTY_MENU_BLK_PACKET EQU $FC
+; pal/blk packets
+ const_def
+ const SET_PAL_BATTLE_BLACK ; $00
+ const SET_PAL_BATTLE ; $01
+ const SET_PAL_TOWN_MAP ; $02
+ const SET_PAL_STATUS_SCREEN ; $03
+ const SET_PAL_POKEDEX ; $04
+ const SET_PAL_SLOTS ; $05
+ const SET_PAL_TITLE_SCREEN ; $06
+ const SET_PAL_NIDORINO_INTRO ; $07
+ const SET_PAL_GENERIC ; $08
+ const SET_PAL_OVERWORLD ; $09
+ const SET_PAL_PARTY_MENU ; $0A
+ const SET_PAL_POKEMON_WHOLE_SCREEN ; $0B
+ const SET_PAL_GAME_FREAK_INTRO ; $0C
+ const SET_PAL_TRAINER_CARD ; $0D
-; super game boy palettes
-const_value = 0
+SET_PAL_PARTY_MENU_HP_BARS EQU $fc
+SET_PAL_DEFAULT EQU $ff
+; sgb palettes
+ const_def
const PAL_ROUTE ; $00
const PAL_PALLET ; $01
const PAL_VIRIDIAN ; $02
--- a/constants/pokedex_constants.asm
+++ b/constants/pokedex_constants.asm
@@ -1,5 +1,4 @@
-const_value = 1
-
+ const_def 1
const DEX_BULBASAUR ; 1
const DEX_IVYSAUR ; 2
const DEX_VENUSAUR ; 3
@@ -152,4 +151,4 @@
const DEX_MEWTWO ; 150
const DEX_MEW ; 151
-NUM_POKEMON EQU const_value + -1
+NUM_POKEMON EQU const_value - 1
--- a/constants/pokemon_constants.asm
+++ b/constants/pokemon_constants.asm
@@ -1,5 +1,5 @@
-const_value = 1
-
+ const_def
+ const NO_MON ; $00
const RHYDON ; $01
const KANGASKHAN ; $02
const NIDORAN_M ; $03
@@ -191,4 +191,4 @@
const WEEPINBELL ; $BD
const VICTREEBEL ; $BE
-NUM_POKEMON_INDEXES EQU const_value + -1
+NUM_POKEMON_INDEXES EQU const_value - 1
--- /dev/null
+++ b/constants/pokemon_data_constants.asm
@@ -1,0 +1,28 @@
+PARTY_LENGTH EQU 6
+
+MONS_PER_BOX EQU 20
+NUM_BOXES EQU 12
+
+HOF_MON EQU $10
+HOF_TEAM EQU PARTY_LENGTH * HOF_MON
+HOF_TEAM_CAPACITY EQU 50
+
+
+; mon data locations
+; Note that some values are not supported by all functions that use these values.
+PLAYER_PARTY_DATA EQU 0
+ENEMY_PARTY_DATA EQU 1
+BOX_DATA EQU 2
+DAYCARE_DATA EQU 3
+BATTLE_MON_DATA EQU 4
+
+
+; See data/pokemon/evos_moves.asm
+
+; Evolution types
+EV_LEVEL EQU 1
+EV_ITEM EQU 2
+EV_TRADE EQU 3
+
+MAX_EVOLUTIONS EQU 3
+EVOLUTION_SIZE EQU 4
--- /dev/null
+++ b/constants/script_constants.asm
@@ -1,0 +1,12 @@
+; emotion bubbles
+EXCLAMATION_BUBBLE EQU 0
+QUESTION_BUBBLE EQU 1
+SMILE_BUBBLE EQU 2
+
+; slot symbols
+SLOTS7 EQU $0200
+SLOTSBAR EQU $0604
+SLOTSCHERRY EQU $0A08
+SLOTSFISH EQU $0E0C
+SLOTSBIRD EQU $1210
+SLOTSMOUSE EQU $1614
--- /dev/null
+++ b/constants/serial_constants.asm
@@ -1,0 +1,27 @@
+ESTABLISH_CONNECTION_WITH_INTERNAL_CLOCK EQU $01
+ESTABLISH_CONNECTION_WITH_EXTERNAL_CLOCK EQU $02
+
+USING_EXTERNAL_CLOCK EQU $01
+USING_INTERNAL_CLOCK EQU $02
+CONNECTION_NOT_ESTABLISHED EQU $ff
+
+; signals the start of an array of bytes transferred over the link cable
+SERIAL_PREAMBLE_BYTE EQU $FD
+
+; this byte is used when there is no data to send
+SERIAL_NO_DATA_BYTE EQU $FE
+
+; signals the end of one part of a patch list (there are two parts) for player/enemy party data
+SERIAL_PATCH_LIST_PART_TERMINATOR EQU $FF
+
+LINK_STATE_NONE EQU $00 ; not using link
+LINK_STATE_IN_CABLE_CLUB EQU $01 ; in a cable club room (Colosseum or Trade Centre)
+LINK_STATE_START_TRADE EQU $02 ; pre-trade selection screen initialisation
+LINK_STATE_START_BATTLE EQU $03 ; pre-battle initialisation
+LINK_STATE_BATTLING EQU $04 ; in a link battle
+LINK_STATE_RESET EQU $05 ; reset game (unused)
+LINK_STATE_TRADING EQU $32 ; in a link trade
+
+LINKBATTLE_RUN EQU $F
+LINKBATTLE_STRUGGLE EQU $E
+LINKBATTLE_NO_ACTION EQU $D
--- a/constants/sprite_constants.asm
+++ b/constants/sprite_constants.asm
@@ -1,20 +1,6 @@
-; pokemon's overworld sprites
-const_value = 0
-
- const ICON_MON ; $0
- const ICON_BALL ; $1
- const ICON_HELIX ; $2
- const ICON_FAIRY ; $3
- const ICON_BIRD ; $4
- const ICON_WATER ; $5
- const ICON_BUG ; $6
- const ICON_GRASS ; $7
- const ICON_SNAKE ; $8
- const ICON_QUADRUPED ; $9
-
; overworld sprites
-const_value = 1
-
+ const_def
+ const SPRITE_NONE ; $00
const SPRITE_RED ; $01
const SPRITE_BLUE ; $02
const SPRITE_OAK ; $03
@@ -87,15 +73,3 @@
const SPRITE_LYING_OLD_MAN_UNUSED_1 ; $46
const SPRITE_LYING_OLD_MAN_UNUSED_2 ; $47
const SPRITE_LYING_OLD_MAN ; $48
-
-; different kinds of people events
-ITEM EQU $80
-TRAINER EQU $40
-
-BOULDER_MOVEMENT_BYTE_2 EQU $10
-
-; sprite facing directions
-SPRITE_FACING_DOWN EQU $00
-SPRITE_FACING_UP EQU $04
-SPRITE_FACING_LEFT EQU $08
-SPRITE_FACING_RIGHT EQU $0C
--- /dev/null
+++ b/constants/sprite_data_constants.asm
@@ -1,0 +1,22 @@
+; sprite facing directions
+SPRITE_FACING_DOWN EQU $00
+SPRITE_FACING_UP EQU $04
+SPRITE_FACING_LEFT EQU $08
+SPRITE_FACING_RIGHT EQU $0C
+
+NPC_MOVEMENT_DOWN EQU $00
+NPC_MOVEMENT_UP EQU $40
+NPC_MOVEMENT_LEFT EQU $80
+NPC_MOVEMENT_RIGHT EQU $C0
+
+; player direction constants
+
+PLAYER_DIR_BIT_RIGHT EQU 0
+PLAYER_DIR_BIT_LEFT EQU 1
+PLAYER_DIR_BIT_DOWN EQU 2
+PLAYER_DIR_BIT_UP EQU 3
+
+PLAYER_DIR_RIGHT EQU (1 << PLAYER_DIR_BIT_RIGHT)
+PLAYER_DIR_LEFT EQU (1 << PLAYER_DIR_BIT_LEFT)
+PLAYER_DIR_DOWN EQU (1 << PLAYER_DIR_BIT_DOWN)
+PLAYER_DIR_UP EQU (1 << PLAYER_DIR_BIT_UP)
--- a/constants/status_constants.asm
+++ /dev/null
@@ -1,32 +1,0 @@
-; non-volatile statuses
-SLP EQU %111 ; sleep counter
-PSN EQU 3
-BRN EQU 4
-FRZ EQU 5
-PAR EQU 6
-
-; volatile statuses 1
-STORING_ENERGY EQU 0 ; Bide
-THRASHING_ABOUT EQU 1 ; e.g. Thrash
-ATTACKING_MULTIPLE_TIMES EQU 2 ; e.g. Double Kick, Fury Attack
-FLINCHED EQU 3
-CHARGING_UP EQU 4 ; e.g. Solar Beam, Fly
-USING_TRAPPING_MOVE EQU 5 ; e.g. Wrap
-INVULNERABLE EQU 6 ; charging up Fly/Dig
-CONFUSED EQU 7
-
-; volatile statuses 2
-USING_X_ACCURACY EQU 0
-PROTECTED_BY_MIST EQU 1
-GETTING_PUMPED EQU 2 ; Focus Energy
-; EQU 3 ; unused
-HAS_SUBSTITUTE_UP EQU 4
-NEEDS_TO_RECHARGE EQU 5 ; Hyper Beam
-USING_RAGE EQU 6
-SEEDED EQU 7
-
-; volatile statuses 3
-BADLY_POISONED EQU 0
-HAS_LIGHT_SCREEN_UP EQU 1
-HAS_REFLECT_UP EQU 2
-TRANSFORMED EQU 3
--- a/constants/text_constants.asm
+++ b/constants/text_constants.asm
@@ -1,3 +1,6 @@
+NAME_LENGTH EQU 11
+ITEM_NAME_LENGTH EQU 13
+
; special text IDs
TEXT_MON_FAINTED EQU $d0
TEXT_BLACKED_OUT EQU $d1
--- /dev/null
+++ b/constants/tileset_constants.asm
@@ -1,0 +1,25 @@
+ const_def
+ const OVERWORLD ; 0
+ const REDS_HOUSE_1 ; 1
+ const MART ; 2
+ const FOREST ; 3
+ const REDS_HOUSE_2 ; 4
+ const DOJO ; 5
+ const POKECENTER ; 6
+ const GYM ; 7
+ const HOUSE ; 8
+ const FOREST_GATE ; 9
+ const MUSEUM ; 10
+ const UNDERGROUND ; 11
+ const GATE ; 12
+ const SHIP ; 13
+ const SHIP_PORT ; 14
+ const CEMETERY ; 15
+ const INTERIOR ; 16
+ const CAVERN ; 17
+ const LOBBY ; 18
+ const MANSION ; 19
+ const LAB ; 20
+ const CLUB ; 21
+ const FACILITY ; 22
+ const PLATEAU ; 23
--- a/constants/tilesets.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-const_value = 0
-
- const OVERWORLD ; 0
- const REDS_HOUSE_1 ; 1
- const MART ; 2
- const FOREST ; 3
- const REDS_HOUSE_2 ; 4
- const DOJO ; 5
- const POKECENTER ; 6
- const GYM ; 7
- const HOUSE ; 8
- const FOREST_GATE ; 9
- const MUSEUM ; 10
- const UNDERGROUND ; 11
- const GATE ; 12
- const SHIP ; 13
- const SHIP_PORT ; 14
- const CEMETERY ; 15
- const INTERIOR ; 16
- const CAVERN ; 17
- const LOBBY ; 18
- const MANSION ; 19
- const LAB ; 20
- const CLUB ; 21
- const FACILITY ; 22
- const PLATEAU ; 23
--- a/constants/trainer_constants.asm
+++ b/constants/trainer_constants.asm
@@ -6,8 +6,8 @@
const_value = const_value + 1
ENDM
-const_value = 1
-
+ const_def
+ trainer_const NOBODY ; $00
trainer_const YOUNGSTER ; $01
trainer_const BUG_CATCHER ; $02
trainer_const LASS ; $03
--- a/constants/type_constants.asm
+++ b/constants/type_constants.asm
@@ -1,16 +1,23 @@
-; Elemental types
-NORMAL EQU $00
-FIGHTING EQU $01
-FLYING EQU $02
-POISON EQU $03
-GROUND EQU $04
-ROCK EQU $05
-BUG EQU $07
-GHOST EQU $08
-FIRE EQU $14
-WATER EQU $15
-GRASS EQU $16
-ELECTRIC EQU $17
-PSYCHIC EQU $18
-ICE EQU $19
-DRAGON EQU $1A
+ const_def
+
+PHYSICAL EQU const_value
+ const NORMAL ; $00
+ const FIGHTING ; $01
+ const FLYING ; $02
+ const POISON ; $03
+ const GROUND ; $04
+ const ROCK ; $05
+ const BIRD ; $06
+ const BUG ; $07
+ const GHOST ; $08
+
+const_value = $14
+
+SPECIAL EQU const_value
+ const FIRE ; $14
+ const WATER ; $15
+ const GRASS ; $16
+ const ELECTRIC ; $17
+ const PSYCHIC ; $18
+ const ICE ; $19
+ const DRAGON ; $1A
--- a/data/animations.asm
+++ /dev/null
@@ -1,3628 +1,0 @@
-AttackAnimationPointers:
- dw PoundAnim
- dw KarateChopAnim
- dw DoubleSlapAnim
- dw CometPunchAnim
- dw MegaPunchAnim
- dw PayDayAnim
- dw FirePunchAnim
- dw IcePunchAnim
- dw ThunderPunchAnim
- dw ScratchAnim
- dw VicegripAnim
- dw GuillotineAnim
- dw RazorWindAnim
- dw SwordsDanceAnim
- dw CutAnim
- dw GustAnim
- dw WingAttackAnim
- dw WhirlwindAnim
- dw FlyAnim
- dw BindAnim
- dw SlamAnim
- dw VineWhipAnim
- dw StompAnim
- dw DoubleKickAnim
- dw MegaKickAnim
- dw JumpKickAnim
- dw RollingKickAnim
- dw SandAttackAnim
- dw HeatButtAnim
- dw HornAttackAnim
- dw FuryAttackAnim
- dw HornDrillAnim
- dw TackleAnim
- dw BodySlamAnim
- dw WrapAnim
- dw TakeDownAnim
- dw ThrashAnim
- dw DoubleEdgeAnim
- dw TailWhipAnim
- dw PoisonStingAnim
- dw TwineedleAnim
- dw PinMissileAnim
- dw LeerAnim
- dw BiteAnim
- dw GrowlAnim
- dw RoarAnim
- dw SingAnim
- dw SupersonicAnim
- dw SonicBoomAnim
- dw DisableAnim
- dw AcidAnim
- dw EmberAnim
- dw FlamethrowerAnim
- dw MistAnim
- dw WaterGunAnim
- dw HydroPumpAnim
- dw SurfAnim
- dw IceBeamAnim
- dw BlizzardAnim
- dw PsyBeamAnim
- dw BubbleBeamAnim
- dw AuroraBeamAnim
- dw HyperBeamAnim
- dw PeckAnim
- dw DrillPeckAnim
- dw SubmissionAnim
- dw LowKickAnim
- dw CounterAnim
- dw SeismicTossAnim
- dw StrengthAnim
- dw AbsorbAnim
- dw MegaDrainAnim
- dw LeechSeedAnim
- dw GrowthAnim
- dw RazorLeafAnim
- dw SolarBeamAnim
- dw PoisonPowderAnim
- dw StunSporeAnim
- dw SleepPowderAnim
- dw PedalDanceAnim
- dw StringShotAnim
- dw DragonRageAnim
- dw FireSpinAnim
- dw ThunderShockAnim
- dw ThunderBoltAnim
- dw ThunderWaveAnim
- dw ThunderAnim
- dw RockThrowAnim
- dw EarthquakeAnim
- dw FissureAnim
- dw DigAnim
- dw ToxicAnim
- dw ConfusionAnim
- dw PsychicAnim
- dw HypnosisAnim
- dw MeditateAnim
- dw AgilityAnim
- dw QuickAttackAnim
- dw RageAnim
- dw TeleportAnim
- dw NightShadeAnim
- dw MimicAnim
- dw ScreechAnim
- dw DoubleTeamAnim
- dw RecoverAnim
- dw HardenAnim
- dw MinimizeAnim
- dw SmokeScreenAnim
- dw ConfuseRayAnim
- dw WithdrawAnim
- dw DefenseCurlAnim
- dw BarrierAnim
- dw LightScreenAnim
- dw HazeAnim
- dw ReflectAnim
- dw FocusEnergyAnim
- dw BideAnim
- dw MetronomeAnim
- dw MirrorMoveAnim
- dw SelfdestructAnim
- dw EggBombAnim
- dw LickAnim
- dw SmogAnim
- dw SludgeAnim
- dw BoneClubAnim
- dw FireBlastAnim
- dw WaterfallAnim
- dw ClampAnim
- dw SwiftAnim
- dw SkullBashAnim
- dw SpikeCannonAnim
- dw ConstrictAnim
- dw AmnesiaAnim
- dw KinesisAnim
- dw SoftboiledAnim
- dw HiJumpKickAnim
- dw GlareAnim
- dw DreamEaterAnim
- dw PoisonGasAnim
- dw BarrageAnim
- dw LeechLifeAnim
- dw LovelyKissAnim
- dw SkyAttackAnim
- dw TransformAnim
- dw BubbleAnim
- dw DizzyPunchAnim
- dw SporeAnim
- dw FlashAnim
- dw PsywaveAnim
- dw SplashAnim
- dw AcidArmorAnim
- dw CrabHammerAnim
- dw ExplosionAnim
- dw FurySwipesAnim
- dw BonemerangAnim
- dw RestAnim
- dw RockSlideAnim
- dw HyperFangAnim
- dw SharpenAnim
- dw ConversionAnim
- dw TriAttackAnim
- dw SuperFangAnim
- dw SlashAnim
- dw SubstituteAnim
- dw StruggleAnim
- dw ShowPicAnim
- dw EnemyFlashAnim
- dw PlayerFlashAnim
- dw EnemyHUDShakeAnim
- dw TradeBallDropAnim
- dw TradeBallAppear1Anim
- dw TradeBallAppear2Anim
- dw TradeBallPoofAnim
- dw XStatItemAnim
- dw XStatItemAnim
- dw ShrinkingSquareAnim
- dw ShrinkingSquareAnim
- dw XStatItemBlackAnim
- dw XStatItemBlackAnim
- dw ShrinkingSquareBlackAnim
- dw ShrinkingSquareBlackAnim
- dw UnusedAnim
- dw UnusedAnim
- dw ParalyzeAnim
- dw ParalyzeAnim
- dw PoisonAnim
- dw PoisonAnim
- dw SleepPlayerAnim
- dw SleepEnemyAnim
- dw ConfusedPlayerAnim
- dw ConfusedEnemyAnim
- dw FaintAnim
- dw BallTossAnim
- dw BallShakeAnim
- dw BallPoofAnim
- dw BallBlockAnim
- dw GreatTossAnim
- dw UltraTossAnim
- dw ShakeScreenAnim
- dw HidePicAnim
- dw ThrowRockAnim
- dw ThrowBaitAnim
- dw ZigZagScreenAnim
-
-; each animation is a list of subanimations and special effects
-; if first byte < $56
-; db tileset_and_delay, sound_id, subanimation_id
-; if first byte >= $D8
-; db special_effect_id, sound_id
-; $FF terminated
-ZigZagScreenAnim:
- db SE_WAVY_SCREEN, $FF
- db $FF
-
-PoundAnim:
-StruggleAnim:
- db $08,$00,$01
- db $FF
-
-KarateChopAnim:
- db $08,$01,$03
- db $FF
-
-DoubleSlapAnim:
- db $05,$02,$01
- db $05,$02,$01
- db $FF
-
-CometPunchAnim:
- db $04,$03,$02
- db $04,$03,$02
- db $FF
-
-MegaPunchAnim:
- db $46,$04,$04
- db $FF
-
-PayDayAnim:
- db $08,$00,$01
- db $04,$05,$52
- db $FF
-
-FirePunchAnim:
- db $06,$06,$02
- db $46,$FF,$11
- db $FF
-
-IcePunchAnim:
- db $06,$07,$02
- db $10,$FF,$2F
- db $FF
-
-ThunderPunchAnim:
- db $06,$08,$02
- db SE_DARK_SCREEN_PALETTE, $FF
- db $46,$FF,$2B
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ScratchAnim:
- db $06,$09,$0F
- db $FF
-
-VicegripAnim:
- db $08,$0A,$2A
- db $FF
-
-GuillotineAnim:
- db $06,$0B,$2A
- db $FF
-
-RazorWindAnim:
- db $04,$0C,$16
- db $FF
-
-SwordsDanceAnim:
- db $46,$0D,$18
- db $46,$0D,$18
- db $46,$0D,$18
- db $FF
-
-CutAnim:
- db SE_DARK_SCREEN_FLASH, $0E
- db $04,$FF,$16
- db $FF
-
-GustAnim:
- db $46,$0F,$10
- db $06,$FF,$02
- db $FF
-
-WingAttackAnim:
- db $46,$10,$04
- db $FF
-
-WhirlwindAnim:
- db $46,$11,$10
- db SE_SLIDE_ENEMY_MON_OFF, $FF
- db $FF
-
-FlyAnim:
- db $46,$12,$04
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-BindAnim:
- db $04,$13,$23
- db $04,$13,$23
- db $FF
-
-SlamAnim:
- db $06,$14,$02
- db $FF
-
-VineWhipAnim:
- db $01,$15,$16
- db $08,$FF,$01
- db $FF
-
-StompAnim:
- db $48,$16,$05
- db $FF
-
-DoubleKickAnim:
- db $08,$17,$01
- db $08,$17,$01
- db $FF
-
-MegaKickAnim:
- db $46,$18,$04
- db $FF
-
-JumpKickAnim:
- db $46,$19,$04
- db $FF
-
-RollingKickAnim:
- db SE_DARK_SCREEN_FLASH, $1A
- db $46,$FF,$04
- db $FF
-
-SandAttackAnim:
- db $46,$1B,$28
- db $FF
-
-HeatButtAnim:
- db $46,$1C,$05
- db $FF
-
-HornAttackAnim:
- db $06,$1D,$45
- db $46,$FF,$05
- db $FF
-
-FuryAttackAnim:
- db $02,$1E,$46
- db $02,$FF,$46
- db $FF
-
-HornDrillAnim:
- db $42,$1F,$05
- db $42,$FF,$05
- db $42,$FF,$05
- db $42,$FF,$05
- db $42,$FF,$05
- db $FF
-
-TackleAnim:
- db SE_MOVE_MON_HORIZONTALLY, $48
- db SE_RESET_MON_POSITION, $FF
- db $FF
-
-BodySlamAnim:
- db SE_MOVE_MON_HORIZONTALLY, $48
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_MON_POSITION, $FF
- db $FF
-
-WrapAnim:
- db $04,$22,$23
- db $04,$22,$23
- db $04,$22,$23
- db $FF
-
-TakeDownAnim:
- db SE_MOVE_MON_HORIZONTALLY, $48
- db SE_DARK_SCREEN_FLASH, $23
- db SE_RESET_MON_POSITION, $FF
- db $FF
-
-ThrashAnim:
- db $46,$24,$04
- db $FF
-
-DoubleEdgeAnim:
- db SE_LIGHT_SCREEN_PALETTE, $48
- db $06,$FF,$2D
- db SE_RESET_SCREEN_PALETTE, $FF
- db SE_MOVE_MON_HORIZONTALLY, $FF
- db SE_DARK_SCREEN_FLASH, $25
- db SE_RESET_MON_POSITION, $FF
- db $FF
-
-TailWhipAnim:
- db SE_MOVE_MON_HORIZONTALLY, $84
- db SE_DELAY_ANIMATION_10, $FF
- db SE_RESET_MON_POSITION, $84
- db SE_DELAY_ANIMATION_10, $FF
- db SE_MOVE_MON_HORIZONTALLY, $84
- db SE_DELAY_ANIMATION_10, $FF
- db SE_RESET_MON_POSITION, $84
- db $FF
-
-PoisonStingAnim:
- db $06,$27,$00
- db $FF
-
-TwineedleAnim:
- db $05,$28,$01
- db $05,$28,$01
- db $FF
-
-PinMissileAnim:
- db $03,$29,$01
- db $FF
-
-LeerAnim:
- db SE_DARK_SCREEN_PALETTE, $48
- db SE_DARK_SCREEN_FLASH, $2A
- db SE_DARK_SCREEN_FLASH, $2A
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-BiteAnim:
- db $08,$2B,$02
- db $FF
-
-GrowlAnim:
- db $46,$2C,$12
- db $FF
-
-RoarAnim:
- db $46,$2D,$15
- db $46,$2D,$15
- db $46,$2D,$15
- db $FF
-
-SingAnim:
- db $46,$2E,$12
- db $50,$FF,$40
- db $50,$FF,$40
- db $FF
-
-SupersonicAnim:
- db $06,$2F,$31
- db $FF
-
-SonicBoomAnim:
- db $46,$2D,$15
- db $46,$2D,$15
- db $46,$0F,$10
- db $46,$FF,$05
- db $FF
-
-DisableAnim:
- db SE_DARK_SCREEN_PALETTE, $48
- db SE_DARK_SCREEN_FLASH, $2A
- db SE_DARK_SCREEN_FLASH, $2A
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-AcidAnim:
- db $46,$32,$13
- db $46,$32,$14
- db $FF
-
-EmberAnim:
- db $46,$33,$11
- db $FF
-
-FlamethrowerAnim:
- db $46,$34,$1F
- db $46,$34,$0C
- db $46,$34,$0D
- db $FF
-
-MistAnim:
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db SE_WATER_DROPLETS_EVERYWHERE, $38
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-WaterGunAnim:
- db $06,$36,$2C
- db $FF
-
-HydroPumpAnim:
- db $06,$37,$1A
- db $06,$37,$1A
- db $FF
-
-SurfAnim:
- db SE_WATER_DROPLETS_EVERYWHERE, $38
- db $06,$37,$1A
- db $FF
-
-IceBeamAnim:
- db $03,$39,$2E
- db $10,$FF,$2F
- db $FF
-
-BlizzardAnim:
- db $04,$3A,$38
- db $04,$37,$38
- db $FF
-
-PsyBeamAnim:
- db $03,$3B,$2E
- db SE_FLASH_SCREEN_LONG, $FF
- db $FF
-
-BubbleBeamAnim:
- db $12,$3C,$35
- db $FF
-
-AuroraBeamAnim:
- db $03,$3D,$2E
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db $FF
-
-HyperBeamAnim:
- db SE_DARK_SCREEN_PALETTE, $48
- db SE_SPIRAL_BALLS_INWARD, $FF
- db $02,$3E,$2E
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_DARK_SCREEN_FLASH, $FF
- db $46,$04,$04
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-PeckAnim:
- db $08,$3F,$01
- db $FF
-
-DrillPeckAnim:
- db $46,$40,$04
- db $FF
-
-SubmissionAnim:
- db SE_SLIDE_MON_OFF, $41
- db $06,$FF,$01
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-LowKickAnim:
- db SE_SLIDE_MON_OFF, $42
- db $46,$FF,$04
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-CounterAnim:
- db SE_SLIDE_MON_OFF, $43
- db $46,$FF,$04
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-SeismicTossAnim:
- db SE_BLINK_ENEMY_MON, $FF
- db $41,$8B,$4E
- db SE_HIDE_ENEMY_MON_PIC, $FF
- db SE_SLIDE_MON_OFF, $FF
- db $42,$44,$4F
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_SHOW_MON_PIC, $FF
- db $41,$44,$50
- db SE_SHOW_ENEMY_MON_PIC, $FF
- db SE_SHAKE_SCREEN, $FF
- db $FF
-
-StrengthAnim:
- db SE_MOVE_MON_HORIZONTALLY, $48
- db SE_RESET_MON_POSITION, $FF
- db $46,$06,$04
- db $FF
-
-AbsorbAnim:
- db SE_LIGHT_SCREEN_PALETTE, $46
- db $06,$FF,$21
- db $06,$FF,$22
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-MegaDrainAnim:
- db SE_LIGHT_SCREEN_PALETTE, $47
- db SE_DARK_SCREEN_FLASH, $FF
- db $06,$FF,$21
- db $06,$FF,$22
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-LeechSeedAnim:
- db $46,$48,$1B
- db $55,$4D,$1C
- db $FF
-
-GrowthAnim:
- db SE_LIGHT_SCREEN_PALETTE, $49
- db SE_SPIRAL_BALLS_INWARD, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-RazorLeafAnim:
- db SE_LEAVES_FALLING, $4A
- db $41,$80,$44
- db $01,$0C,$16
- db $FF
-
-SolarBeamAnim:
- db $06,$4B,$2E
- db $06,$FF,$01
- db $FF
-
-PoisonPowderAnim:
- db $06,$4C,$36
- db $FF
-
-StunSporeAnim:
- db $06,$4D,$36
- db $FF
-
-SleepPowderAnim:
- db $06,$4E,$36
- db $FF
-
-PedalDanceAnim:
- db SE_LIGHT_SCREEN_PALETTE, $4F
- db SE_PETALS_FALLING, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-StringShotAnim:
- db $08,$50,$37
- db $FF
-
-DragonRageAnim:
- db $46,$51,$1F
- db $46,$FF,$0C
- db $46,$FF,$0D
- db $46,$FF,$0E
- db $FF
-
-FireSpinAnim:
- db $46,$52,$0C
- db $46,$FF,$0D
- db $46,$FF,$0E
- db $FF
-
-ThunderShockAnim:
- db $42,$53,$29
- db $FF
-
-ThunderBoltAnim:
- db $41,$54,$29
- db $41,$54,$29
- db $FF
-
-ThunderWaveAnim:
- db $42,$55,$29
- db $02,$FF,$23
- db $04,$FF,$23
- db $FF
-
-ThunderAnim:
- db SE_DARK_SCREEN_PALETTE, $56
- db SE_DARK_SCREEN_FLASH, $FF
- db $46,$FF,$2B
- db SE_DARK_SCREEN_FLASH, $FF
- db $42,$54,$29
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-RockThrowAnim:
- db $04,$57,$30
- db $FF
-
-EarthquakeAnim:
- db SE_SHAKE_SCREEN, $58
- db SE_SHAKE_SCREEN, $58
- db $FF
-
-FissureAnim:
- db SE_DARK_SCREEN_FLASH, $59
- db SE_SHAKE_SCREEN, $FF
- db SE_DARK_SCREEN_FLASH, $59
- db SE_SHAKE_SCREEN, $FF
- db $FF
-
-DigAnim:
- db $46,$5A,$04
- db SE_SLIDE_MON_UP, $FF
- db $FF
-
-ToxicAnim:
- db SE_WATER_DROPLETS_EVERYWHERE, $38
- db $46,$5B,$14
- db $FF
-
-ConfusionAnim:
- db SE_FLASH_SCREEN_LONG, $5C
- db $FF
-
-PsychicAnim:
- db SE_FLASH_SCREEN_LONG, $5D
- db SE_WAVY_SCREEN, $FF
- db $FF
-
-HypnosisAnim:
- db SE_FLASH_SCREEN_LONG, $5E
- db $FF
-
-MeditateAnim:
- db SE_LIGHT_SCREEN_PALETTE, $5F
- db $46,$FF,$43
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-AgilityAnim:
- db SE_LIGHT_SCREEN_PALETTE, $60
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-QuickAttackAnim:
- db SE_SLIDE_MON_OFF, $61
- db $46,$FF,$04
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-RageAnim:
- db $06,$62,$01
- db $FF
-
-TeleportAnim:
- db SE_SQUISH_MON_PIC, $63
- db SE_SHOOT_BALLS_UPWARD, $FF
- db $FF
-
-NightShadeAnim:
- db SE_FLASH_SCREEN_LONG, $5C
- db SE_WAVY_SCREEN, $FF
- db $FF
-
-MimicAnim:
- db $46,$65,$21
- db $46,$65,$22
- db $FF
-
-ScreechAnim:
- db $46,$66,$12
- db $FF
-
-DoubleTeamAnim:
- db SE_DARK_SCREEN_PALETTE, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db SE_SHAKE_BACK_AND_FORTH, $67
- db SE_SHOW_MON_PIC, $FF
- db $46,$6F,$33
- db $FF
-
-RecoverAnim:
- db SE_BLINK_MON, $68
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db SE_SPIRAL_BALLS_INWARD, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-HardenAnim:
- db SE_LIGHT_SCREEN_PALETTE, $69
- db $46,$FF,$43
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-MinimizeAnim:
- db SE_LIGHT_SCREEN_PALETTE, $6A
- db SE_SPIRAL_BALLS_INWARD, $FF
- db SE_MINIMIZE_MON, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-SmokeScreenAnim:
- db $46,$6B,$28
- db $04,$FF,$0A
- db SE_DARKEN_MON_PALETTE, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DARK_SCREEN_PALETTE, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_DARKEN_MON_PALETTE, $FF
- db SE_DELAY_ANIMATION_10, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ConfuseRayAnim:
- db SE_DARK_SCREEN_PALETTE, $6C
- db $46,$FF,$3E
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-WithdrawAnim:
- db SE_LIGHT_SCREEN_PALETTE, $6E
- db SE_SLIDE_MON_DOWN, $FF
- db $06,$FF,$51
- db SE_RESET_SCREEN_PALETTE, $FF
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-DefenseCurlAnim:
- db SE_LIGHT_SCREEN_PALETTE, $6E
- db $06,$FF,$43
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-BarrierAnim:
- db $46,$6F,$33
- db $46,$6F,$33
- db $FF
-
-LightScreenAnim:
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db $46,$70,$33
- db $46,$70,$33
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-HazeAnim:
- db SE_DARKEN_MON_PALETTE, $FF
- db SE_WATER_DROPLETS_EVERYWHERE, $38
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ReflectAnim:
- db SE_DARK_SCREEN_PALETTE, $FF
- db $46,$72,$33
- db $46,$72,$33
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-FocusEnergyAnim:
- db SE_SPIRAL_BALLS_INWARD, $73
- db $FF
-
-BideAnim:
- db $46,$74,$04
- db $FF
-
-MetronomeAnim:
- db SE_MOVE_MON_HORIZONTALLY, $84
- db SE_DELAY_ANIMATION_10, $FF
- db SE_RESET_MON_POSITION, $84
- db SE_DELAY_ANIMATION_10, $FF
- db SE_MOVE_MON_HORIZONTALLY, $84
- db SE_DELAY_ANIMATION_10, $FF
- db SE_RESET_MON_POSITION, $84
- db $FF
-
-MirrorMoveAnim:
- db $08,$76,$01
- db $FF
-
-SelfdestructAnim:
- db $43,$77,$34
- db $FF
-
-EggBombAnim:
- db $44,$78,$41
- db $44,$78,$42
- db $FF
-
-LickAnim:
- db $46,$7B,$14
- db $FF
-
-SmogAnim:
- db SE_DARKEN_MON_PALETTE, $48
- db $46,$7A,$19
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-SludgeAnim:
- db $46,$7B,$13
- db $46,$7B,$14
- db $FF
-
-BoneClubAnim:
- db $08,$7C,$02
- db $FF
-
-FireBlastAnim:
- db $46,$7D,$1F
- db $46,$FF,$20
- db $46,$FF,$20
- db $46,$FF,$0C
- db $46,$FF,$0D
- db $FF
-
-WaterfallAnim:
- db SE_SLIDE_MON_DOWN, $48
- db $06,$37,$1A
- db $08,$FF,$02
- db SE_SLIDE_MON_UP, $FF
- db $FF
-
-ClampAnim:
- db $08,$7F,$2A
- db $06,$83,$23
- db $06,$83,$23
- db $FF
-
-SwiftAnim:
- db $43,$80,$3F
- db $FF
-
-SkullBashAnim:
- db $46,$81,$05
- db $FF
-
-SpikeCannonAnim:
- db $44,$82,$04
- db $FF
-
-ConstrictAnim:
- db $06,$83,$23
- db $06,$83,$23
- db $06,$83,$23
- db $FF
-
-AmnesiaAnim:
- db $08,$84,$25
- db $08,$84,$25
- db $FF
-
-KinesisAnim:
- db $08,$85,$01
- db $FF
-
-SoftboiledAnim:
- db SE_SLIDE_MON_HALF_OFF, $48
- db $08,$86,$4C
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db SE_SPIRAL_BALLS_INWARD, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-HiJumpKickAnim:
- db $46,$87,$04
- db $FF
-
-GlareAnim:
- db SE_DARK_SCREEN_PALETTE, $48
- db SE_DARK_SCREEN_FLASH, $88
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-DreamEaterAnim:
- db SE_FLASH_SCREEN_LONG, $89
- db SE_DARK_SCREEN_PALETTE, $89
- db $08,$89,$02
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-PoisonGasAnim:
- db $46,$8A,$19
- db $FF
-
-BarrageAnim:
- db $43,$8B,$41
- db $05,$FF,$55
- db $FF
-
-LeechLifeAnim:
- db $08,$8C,$02
- db SE_DARK_SCREEN_FLASH, $FF
- db $06,$FF,$21
- db $06,$FF,$22
- db SE_DARK_SCREEN_FLASH, $FF
- db $FF
-
-LovelyKissAnim:
- db $06,$8D,$12
- db $FF
-
-SkyAttackAnim:
- db SE_SQUISH_MON_PIC, $8E
- db SE_SHOOT_BALLS_UPWARD, $FF
- db $46,$87,$04
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-TransformAnim:
- db $46,$8F,$21
- db $44,$8F,$22
- db $08,$FF,$47
- db SE_TRANSFORM_MON, $FF
- db $FF
-
-BubbleAnim:
- db $16,$90,$35
- db $FF
-
-DizzyPunchAnim:
- db $06,$91,$17
- db $06,$91,$17
- db $06,$91,$17
- db $06,$02,$02
- db $FF
-
-SporeAnim:
- db $06,$92,$36
- db $FF
-
-FlashAnim:
- db SE_LIGHT_SCREEN_PALETTE, $48
- db SE_DARK_SCREEN_FLASH, $88
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-PsywaveAnim:
- db $06,$2F,$31
- db SE_WAVY_SCREEN, $5C
- db $FF
-
-SplashAnim:
- db SE_BOUNCE_UP_AND_DOWN, $95
- db $FF
-
-AcidArmorAnim:
- db SE_SLIDE_MON_DOWN_AND_HIDE, $96
- db $FF
-
-CrabHammerAnim:
- db $46,$97,$05
- db $06,$FF,$2A
- db $FF
-
-ExplosionAnim:
- db $43,$98,$34
- db $FF
-
-FurySwipesAnim:
- db $04,$99,$0F
- db $FF
-
-BonemerangAnim:
- db $06,$9A,$02
- db $FF
-
-RestAnim:
- db $10,$9B,$3A
- db $10,$9B,$3A
- db $FF
-
-RockSlideAnim:
- db $04,$9C,$1D
- db $03,$9C,$1E
- db $46,$9D,$04
- db $FF
-
-HyperFangAnim:
- db $06,$9D,$02
- db $FF
-
-SharpenAnim:
- db SE_LIGHT_SCREEN_PALETTE, $9E
- db $46,$FF,$43
- db SE_DARK_SCREEN_FLASH, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ConversionAnim:
- db SE_DARK_SCREEN_FLASH, $9F
- db $46,$FF,$21
- db $46,$FF,$22
- db SE_DARK_SCREEN_FLASH, $FF
- db $FF
-
-TriAttackAnim:
- db SE_DARK_SCREEN_FLASH, $A0
- db $46,$FF,$4D
- db SE_DARK_SCREEN_FLASH, $FF
- db $FF
-
-SuperFangAnim:
- db SE_DARK_SCREEN_PALETTE, $48
- db $46,$A1,$04
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-SlashAnim:
- db $06,$A2,$0F
- db $FF
-
-SubstituteAnim:
- db SE_SLIDE_MON_OFF, $A3
- db $08,$FF,$47
- db SE_SUBSTITUTE_MON, $FF
- db $FF
-
-BallTossAnim:
- db $03,$FF,$06
- db $FF
-
-GreatTossAnim:
- db $03,$FF,$07
- db $FF
-
-UltraTossAnim:
- db $02,$FF,$08
- db $FF
-
-BallShakeAnim:
- db $04,$FF,$09
- db $FF
-
-BallPoofAnim:
- db $04,$FF,$0A
- db $FF
-
-ShowPicAnim:
- db SE_SHOW_ENEMY_MON_PIC, $FF
- db $FF
-
-HidePicAnim:
- db SE_HIDE_ENEMY_MON_PIC, $FF
- db $FF
-
-EnemyFlashAnim:
- db SE_SHOW_MON_PIC, $FF
- db $FF
-
-PlayerFlashAnim:
- db SE_FLASH_MON_PIC, $FF
- db $FF
-
-EnemyHUDShakeAnim:
- db SE_SHAKE_ENEMY_HUD, $FF
- db $FF
-
-TradeBallDropAnim:
- db $86,$FF,$48
- db $FF
-
-TradeBallAppear1Anim:
- db $84,$FF,$49
- db $FF
-
-TradeBallAppear2Anim:
- db $86,$FF,$4A
- db $FF
-
-TradeBallPoofAnim:
- db $86,$FF,$4B
- db $FF
-
-XStatItemAnim:
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db SE_SPIRAL_BALLS_INWARD, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ShrinkingSquareAnim:
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db $46,$FF,$43
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-XStatItemBlackAnim:
- db SE_DARKEN_MON_PALETTE, $FF
- db SE_SPIRAL_BALLS_INWARD, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ShrinkingSquareBlackAnim:
- db SE_DARKEN_MON_PALETTE, $FF
- db $46,$FF,$43
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-UnusedAnim:
- db SE_LIGHT_SCREEN_PALETTE, $FF
- db SE_SHOOT_MANY_BALLS_UPWARD, $FF
- db SE_RESET_SCREEN_PALETTE, $FF
- db $FF
-
-ParalyzeAnim:
- db $04,$13,$24
- db $04,$13,$24
- db $FF
-
-PoisonAnim:
- db $08,$13,$27
- db $08,$13,$27
- db $FF
-
-SleepPlayerAnim:
- db $10,$9B,$3A
- db $10,$9B,$3A
- db $FF
-
-SleepEnemyAnim:
- db $10,$9B,$3B
- db $10,$9B,$3B
- db $FF
-
-ConfusedPlayerAnim:
- db $08,$84,$25
- db $08,$84,$25
- db $FF
-
-ConfusedEnemyAnim:
- db $08,$84,$26
- db $08,$84,$26
- db $FF
-
-BallBlockAnim:
- db $03,$FF,$0B
- db $FF
-
-FaintAnim:
- db SE_SLIDE_MON_DOWN, $5A
- db $FF
-
-ShakeScreenAnim:
- db SE_SHAKE_SCREEN, $FF
- db $FF
-
-ThrowRockAnim:
- db $03,$8B,$53
- db $FF
-
-ThrowBaitAnim:
- db $03,$8B,$54
- db $FF
-
-SubanimationPointers:
- dw Subanimation00
- dw Subanimation01
- dw Subanimation02
- dw Subanimation03
- dw Subanimation04
- dw Subanimation05
- dw Subanimation06
- dw Subanimation07
- dw Subanimation08
- dw Subanimation09
- dw Subanimation0a
- dw Subanimation0b
- dw Subanimation0c
- dw Subanimation0d
- dw Subanimation0e
- dw Subanimation0f
- dw Subanimation10
- dw Subanimation11
- dw Subanimation12
- dw Subanimation13
- dw Subanimation14
- dw Subanimation15
- dw Subanimation16
- dw Subanimation17
- dw Subanimation18
- dw Subanimation19
- dw Subanimation1a
- dw Subanimation1b
- dw Subanimation1c
- dw Subanimation1d
- dw Subanimation1e
- dw Subanimation1f
- dw Subanimation20
- dw Subanimation21
- dw Subanimation22
- dw Subanimation23
- dw Subanimation24
- dw Subanimation25
- dw Subanimation26
- dw Subanimation27
- dw Subanimation28
- dw Subanimation29
- dw Subanimation2a
- dw Subanimation2b
- dw Subanimation2c
- dw Subanimation2d
- dw Subanimation2e
- dw Subanimation2f
- dw Subanimation30
- dw Subanimation31
- dw Subanimation32
- dw Subanimation33
- dw Subanimation34
- dw Subanimation35
- dw Subanimation36
- dw Subanimation37
- dw Subanimation38
- dw Subanimation39
- dw Subanimation3a
- dw Subanimation3b
- dw Subanimation3c
- dw Subanimation3d
- dw Subanimation3e
- dw Subanimation3f
- dw Subanimation40
- dw Subanimation41
- dw Subanimation42
- dw Subanimation43
- dw Subanimation44
- dw Subanimation45
- dw Subanimation46
- dw Subanimation47
- dw Subanimation48
- dw Subanimation49
- dw Subanimation4a
- dw Subanimation4b
- dw Subanimation4c
- dw Subanimation4d
- dw Subanimation4e
- dw Subanimation4f
- dw Subanimation50
- dw Subanimation51
- dw Subanimation52
- dw Subanimation53
- dw Subanimation54
- dw Subanimation55
-
-Subanimation04:
- db $43
- db $02,$1a,$00
- db $02,$10,$00
- db $02,$03,$00
-
-Subanimation05:
- db $41
- db $02,$10,$00
-
-Subanimation08:
- db $0b
- db $03,$30,$00
- db $03,$44,$00
- db $03,$94,$00
- db $03,$60,$00
- db $03,$76,$00
- db $03,$9f,$00
- db $03,$8d,$00
- db $03,$a0,$00
- db $03,$1a,$00
- db $03,$a1,$00
- db $03,$34,$00
-
-Subanimation07:
- db $0b
- db $03,$30,$00
- db $03,$a2,$00
- db $03,$31,$00
- db $03,$a3,$00
- db $03,$32,$00
- db $03,$a4,$00
- db $03,$92,$00
- db $03,$a5,$00
- db $03,$15,$00
- db $03,$a6,$00
- db $03,$34,$00
-
-Subanimation06:
- db $0b
- db $03,$30,$00
- db $03,$a2,$00
- db $03,$93,$00
- db $03,$61,$00
- db $03,$73,$00
- db $03,$a7,$00
- db $03,$33,$00
- db $03,$a8,$00
- db $03,$0e,$00
- db $03,$a9,$00
- db $03,$34,$00
-
-Subanimation09:
- db $04
- db $03,$21,$04
- db $04,$21,$04
- db $03,$21,$04
- db $05,$21,$04
-
-Subanimation0a:
- db $46
- db $06,$1b,$00
- db $07,$1b,$00
- db $08,$36,$00
- db $09,$36,$00
- db $0a,$15,$00
- db $0a,$15,$00
-
-Subanimation0b:
- db $04
- db $01,$2d,$00
- db $03,$2f,$00
- db $03,$35,$00
- db $03,$4d,$00
-
-Subanimation55:
- db $41
- db $01,$9d,$00
-
-Subanimation11:
- db $4c
- db $0b,$26,$00
- db $0c,$26,$00
- db $0b,$26,$00
- db $0c,$26,$00
- db $0b,$28,$00
- db $0c,$28,$00
- db $0b,$28,$00
- db $0c,$28,$00
- db $0b,$27,$00
- db $0c,$27,$00
- db $0b,$27,$00
- db $0c,$27,$00
-
-Subanimation2b:
- db $4b
- db $0d,$03,$03
- db $0e,$03,$03
- db $0f,$03,$00
- db $0d,$11,$00
- db $0d,$11,$00
- db $0d,$37,$00
- db $0d,$37,$00
- db $10,$21,$00
- db $10,$21,$00
- db $11,$1b,$00
- db $11,$1b,$00
-
-Subanimation2c:
- db $4c
- db $12,$01,$00
- db $12,$0f,$00
- db $12,$1b,$00
- db $12,$25,$00
- db $13,$38,$00
- db $13,$38,$02
- db $14,$38,$00
- db $14,$38,$02
- db $15,$38,$00
- db $15,$38,$00
- db $16,$38,$00
- db $16,$38,$00
-
-Subanimation12:
- db $69
- db $17,$30,$00
- db $17,$39,$00
- db $17,$3a,$00
- db $17,$3b,$00
- db $17,$3c,$00
- db $17,$3d,$00
- db $17,$3e,$00
- db $17,$3f,$00
- db $17,$1f,$00
-
-Subanimation00:
- db $41
- db $01,$17,$00
-
-Subanimation01:
- db $42
- db $01,$0f,$00
- db $01,$1d,$00
-
-Subanimation02:
- db $43
- db $01,$12,$00
- db $01,$15,$00
- db $01,$1c,$00
-
-Subanimation03:
- db $44
- db $01,$0b,$00
- db $01,$11,$00
- db $01,$18,$00
- db $01,$1d,$00
-
-Subanimation0c:
- db $43
- db $0c,$20,$00
- db $0c,$21,$00
- db $0c,$23,$00
-
-Subanimation0d:
- db $46
- db $0c,$20,$02
- db $0c,$15,$00
- db $0c,$21,$02
- db $0c,$17,$00
- db $0c,$23,$02
- db $0c,$19,$00
-
-Subanimation0e:
- db $49
- db $0c,$20,$02
- db $0c,$15,$02
- db $0c,$07,$00
- db $0c,$21,$02
- db $0c,$17,$02
- db $0c,$09,$00
- db $0c,$23,$02
- db $0c,$19,$02
- db $0c,$0c,$00
-
-Subanimation1f:
- db $85
- db $0c,$30,$03
- db $0c,$40,$03
- db $0c,$41,$03
- db $0c,$42,$03
- db $0c,$21,$00
-
-Subanimation2e:
- db $2e
- db $18,$43,$02
- db $75,$52,$04
- db $19,$43,$02
- db $75,$63,$04
- db $1a,$43,$02
- db $75,$4d,$04
- db $1b,$43,$02
- db $75,$97,$04
- db $1c,$43,$02
- db $75,$98,$04
- db $1d,$43,$02
- db $75,$58,$04
- db $1e,$43,$02
- db $75,$1b,$00
-
-Subanimation2f:
- db $44
- db $1f,$24,$00
- db $20,$20,$00
- db $21,$1a,$00
- db $22,$15,$00
-
-Subanimation30:
- db $52
- db $23,$00,$02
- db $23,$02,$02
- db $23,$04,$00
- db $23,$07,$02
- db $23,$02,$02
- db $23,$04,$00
- db $23,$0e,$02
- db $23,$02,$02
- db $23,$0c,$00
- db $25,$07,$00
- db $25,$0e,$00
- db $25,$15,$00
- db $24,$24,$02
- db $23,$1c,$02
- db $23,$23,$00
- db $23,$21,$02
- db $24,$28,$00
- db $24,$28,$00
-
-Subanimation0f:
- db $4c
- db $26,$0e,$02
- db $26,$16,$02
- db $26,$1c,$00
- db $27,$0e,$02
- db $27,$16,$02
- db $27,$1c,$00
- db $28,$0e,$02
- db $28,$16,$02
- db $28,$1c,$00
- db $29,$0e,$02
- db $29,$16,$02
- db $29,$1c,$00
-
-Subanimation16:
- db $4c
- db $2a,$05,$00
- db $2b,$05,$02
- db $2b,$0c,$02
- db $2a,$11,$04
- db $2b,$11,$02
- db $2b,$17,$02
- db $2a,$1b,$04
- db $2b,$1b,$02
- db $2b,$20,$02
- db $2a,$2f,$04
- db $2c,$00,$02
- db $2c,$00,$00
-
-Subanimation10:
- db $88
- db $2d,$44,$00
- db $2e,$45,$00
- db $2d,$46,$00
- db $2e,$47,$00
- db $2d,$48,$00
- db $2e,$49,$00
- db $2d,$2f,$00
- db $2e,$1a,$00
-
-Subanimation31:
- db $2a
- db $2f,$46,$00
- db $2f,$4a,$00
- db $2f,$4b,$00
- db $2f,$4c,$00
- db $2f,$4d,$00
- db $2f,$4e,$00
- db $2f,$4f,$00
- db $2f,$50,$00
- db $2f,$2e,$00
- db $2f,$51,$00
-
-Subanimation13:
- db $86
- db $30,$31,$00
- db $30,$32,$00
- db $30,$92,$00
- db $30,$0e,$00
- db $30,$0f,$00
- db $30,$10,$00
-
-Subanimation14:
- db $49
- db $30,$10,$00
- db $30,$10,$03
- db $31,$1c,$04
- db $31,$21,$04
- db $31,$26,$00
- db $30,$10,$02
- db $31,$1d,$04
- db $31,$22,$04
- db $31,$27,$00
-
-Subanimation41:
- db $85
- db $03,$31,$00
- db $03,$32,$00
- db $03,$92,$00
- db $03,$0e,$00
- db $03,$10,$00
-
-Subanimation42:
- db $43
- db $48,$08,$00
- db $49,$08,$00
- db $5a,$08,$00
-
-Subanimation15:
- db $22
- db $35,$52,$00
- db $35,$53,$00
-
-Subanimation17:
- db $44
- db $36,$54,$00
- db $36,$55,$00
- db $37,$56,$00
- db $37,$57,$00
-
-Subanimation18:
- db $a4
- db $36,$54,$00
- db $36,$55,$00
- db $37,$56,$00
- db $37,$57,$00
-
-Subanimation40:
- db $46
- db $17,$54,$00
- db $17,$55,$00
- db $17,$0e,$00
- db $17,$56,$00
- db $17,$57,$00
- db $17,$13,$00
-
-Subanimation19:
- db $8c
- db $38,$31,$00
- db $39,$31,$00
- db $38,$32,$00
- db $39,$32,$00
- db $38,$92,$00
- db $39,$92,$00
- db $38,$0e,$00
- db $39,$0e,$00
- db $38,$0f,$00
- db $39,$0f,$00
- db $38,$10,$00
- db $39,$10,$00
-
-Subanimation1a:
- db $50
- db $3a,$08,$00
- db $3b,$08,$00
- db $3c,$08,$00
- db $3d,$08,$00
- db $3e,$08,$00
- db $3f,$08,$00
- db $3e,$08,$00
- db $3f,$08,$00
- db $3a,$0b,$00
- db $3b,$0b,$00
- db $3c,$0b,$00
- db $3d,$0b,$00
- db $3e,$0b,$00
- db $3f,$0b,$00
- db $3e,$0b,$00
- db $3f,$0b,$00
-
-Subanimation1b:
- db $84
- db $40,$31,$00
- db $40,$32,$00
- db $40,$92,$00
- db $40,$15,$00
-
-Subanimation1c:
- db $43
- db $41,$58,$00
- db $41,$59,$00
- db $41,$21,$00
-
-Subanimation1d:
- db $af
- db $24,$9a,$00
- db $23,$1b,$02
- db $24,$22,$00
- db $23,$16,$02
- db $23,$1d,$02
- db $24,$98,$00
- db $25,$2c,$04
- db $25,$2a,$04
- db $25,$99,$04
- db $25,$62,$04
- db $25,$99,$04
- db $25,$62,$04
- db $25,$99,$04
- db $25,$62,$04
- db $25,$99,$03
-
-Subanimation1e:
- db $01
- db $25,$75,$00
-
-Subanimation20:
- db $42
- db $42,$07,$00
- db $43,$07,$00
-
-Subanimation21:
- db $43
- db $44,$00,$00
- db $45,$08,$00
- db $46,$10,$02
-
-Subanimation22:
- db $8b
- db $47,$10,$00
- db $47,$56,$00
- db $47,$07,$00
- db $47,$aa,$00
- db $47,$ab,$00
- db $47,$ac,$00
- db $47,$ad,$00
- db $47,$ae,$00
- db $47,$af,$00
- db $47,$89,$00
- db $47,$b0,$00
-
-Subanimation2d:
- db $66
- db $44,$64,$00
- db $45,$65,$00
- db $46,$66,$00
- db $47,$66,$00
- db $47,$66,$00
- db $47,$66,$00
-
-Subanimation39:
- db $61
- db $47,$67,$00
-
-Subanimation4e:
- db $41
- db $71,$0f,$03
-
-Subanimation4f:
- db $47
- db $71,$0f,$00
- db $71,$08,$00
- db $71,$01,$00
- db $71,$95,$00
- db $72,$95,$00
- db $73,$95,$00
- db $74,$95,$00
-
-Subanimation50:
- db $48
- db $74,$95,$00
- db $73,$95,$00
- db $72,$95,$00
- db $71,$95,$00
- db $71,$01,$00
- db $71,$08,$00
- db $71,$0f,$00
- db $71,$16,$00
-
-Subanimation29:
- db $5d
- db $48,$0f,$00
- db $4a,$68,$03
- db $4b,$2a,$03
- db $49,$0f,$00
- db $4a,$68,$03
- db $4b,$2a,$00
- db $4c,$6a,$03
- db $4d,$69,$03
- db $49,$6b,$00
- db $4c,$6a,$03
- db $4d,$69,$00
- db $4a,$68,$03
- db $4b,$2a,$03
- db $49,$6c,$00
- db $4a,$68,$03
- db $4b,$2a,$00
- db $4c,$6a,$03
- db $4d,$69,$03
- db $49,$6d,$00
- db $4c,$6a,$03
- db $4d,$2a,$00
- db $4a,$68,$03
- db $4b,$2a,$03
- db $49,$0f,$00
- db $4a,$68,$03
- db $4b,$2a,$00
- db $4c,$6a,$03
- db $4d,$2a,$03
- db $49,$6b,$00
-
-Subanimation2a:
- db $44
- db $4e,$2b,$00
- db $4f,$2b,$00
- db $50,$2b,$00
- db $50,$2b,$00
-
-Subanimation23:
- db $42
- db $51,$2d,$00
- db $51,$6e,$00
-
-Subanimation24:
- db $a2
- db $51,$2d,$00
- db $51,$6e,$00
-
-Subanimation25:
- db $62
- db $52,$71,$00
- db $52,$72,$00
-
-Subanimation26:
- db $02
- db $52,$01,$00
- db $52,$2c,$00
-
-Subanimation3a:
- db $63
- db $53,$71,$00
- db $53,$7f,$00
- db $53,$81,$00
-
-Subanimation3b:
- db $03
- db $53,$01,$00
- db $53,$15,$00
- db $53,$2c,$00
-
-Subanimation27:
- db $a2
- db $54,$01,$00
- db $54,$2c,$00
-
-Subanimation28:
- db $23
- db $55,$73,$03
- db $56,$73,$03
- db $57,$73,$00
-
-Subanimation32:
- db $63
- db $47,$74,$00
- db $47,$43,$00
- db $47,$75,$00
-
-Subanimation33:
- db $26
- db $58,$76,$00
- db $34,$76,$00
- db $58,$76,$00
- db $34,$76,$00
- db $58,$76,$00
- db $34,$76,$00
-
-Subanimation3c:
- db $67
- db $59,$79,$03
- db $59,$7b,$03
- db $59,$77,$03
- db $59,$7a,$03
- db $59,$78,$03
- db $59,$7c,$03
- db $59,$76,$00
-
-Subanimation3d:
- db $08
- db $3a,$4d,$00
- db $3b,$4d,$00
- db $3c,$4d,$00
- db $3d,$4d,$00
- db $3e,$4d,$00
- db $3f,$4d,$00
- db $3e,$4d,$00
- db $3f,$4d,$00
-
-Subanimation34:
- db $35
- db $48,$7d,$00
- db $49,$7d,$00
- db $5a,$7d,$00
- db $48,$30,$00
- db $49,$30,$00
- db $5a,$30,$00
- db $48,$7e,$00
- db $49,$7e,$00
- db $5a,$7e,$00
- db $48,$7f,$00
- db $49,$7f,$00
- db $5a,$7f,$00
- db $48,$80,$00
- db $49,$80,$00
- db $5a,$80,$00
- db $48,$81,$00
- db $49,$81,$00
- db $5a,$81,$00
- db $48,$82,$00
- db $49,$82,$00
- db $5a,$82,$00
-
-Subanimation35:
- db $24
- db $5b,$83,$03
- db $5c,$84,$03
- db $5d,$85,$03
- db $5e,$09,$00
-
-Subanimation36:
- db $48
- db $5f,$2a,$00
- db $5f,$00,$00
- db $60,$2a,$00
- db $60,$00,$00
- db $61,$2a,$00
- db $61,$00,$00
- db $62,$2a,$00
- db $62,$00,$00
-
-Subanimation37:
- db $2a
- db $63,$89,$00
- db $64,$75,$00
- db $63,$76,$00
- db $65,$0d,$00
- db $65,$86,$00
- db $65,$12,$00
- db $65,$87,$00
- db $65,$17,$00
- db $65,$88,$00
- db $65,$1a,$00
-
-Subanimation38:
- db $50
- db $66,$8a,$00
- db $66,$33,$00
- db $66,$2e,$00
- db $67,$24,$03
- db $66,$01,$04
- db $66,$10,$04
- db $66,$1d,$04
- db $67,$28,$03
- db $66,$2a,$04
- db $66,$0e,$04
- db $66,$1b,$04
- db $67,$26,$03
- db $66,$03,$04
- db $66,$12,$04
- db $66,$1e,$04
- db $67,$29,$00
-
-Subanimation3e:
- db $92
- db $02,$31,$00
- db $34,$31,$00
- db $02,$31,$00
- db $02,$32,$00
- db $34,$32,$00
- db $02,$32,$00
- db $02,$92,$00
- db $34,$92,$00
- db $02,$92,$00
- db $02,$0e,$00
- db $34,$0e,$00
- db $02,$0e,$00
- db $02,$0f,$00
- db $34,$0f,$00
- db $02,$0f,$00
- db $02,$10,$00
- db $34,$10,$00
- db $02,$10,$00
-
-Subanimation3f:
- db $72
- db $68,$4b,$00
- db $68,$8c,$00
- db $68,$20,$00
- db $68,$1c,$00
- db $68,$19,$00
- db $68,$14,$00
- db $68,$76,$00
- db $68,$8d,$00
- db $68,$15,$00
- db $68,$10,$00
- db $68,$0c,$00
- db $68,$06,$00
- db $68,$8e,$00
- db $68,$8f,$00
- db $68,$90,$00
- db $68,$26,$00
- db $68,$23,$00
- db $68,$1f,$00
-
-Subanimation44:
- db $2c
- db $69,$4b,$00
- db $69,$8c,$00
- db $69,$20,$00
- db $69,$1c,$00
- db $69,$19,$00
- db $69,$14,$00
- db $69,$76,$00
- db $69,$8d,$00
- db $69,$15,$00
- db $69,$10,$00
- db $69,$0c,$00
- db $69,$06,$00
-
-Subanimation43:
- db $a3
- db $6a,$07,$00
- db $6b,$0f,$00
- db $6c,$17,$00
-
-Subanimation45:
- db $24
- db $6d,$8b,$00
- db $6d,$84,$00
- db $6d,$63,$00
- db $6d,$8c,$00
-
-Subanimation46:
- db $26
- db $6d,$8b,$00
- db $6d,$84,$00
- db $6d,$63,$00
- db $6d,$8c,$00
- db $6d,$0a,$00
- db $6d,$89,$00
-
-Subanimation47:
- db $23
- db $06,$82,$00
- db $07,$82,$00
- db $08,$96,$00
-
-Subanimation48:
- db $06
- db $03,$41,$04
- db $03,$48,$04
- db $04,$48,$04
- db $03,$48,$04
- db $05,$48,$04
- db $03,$48,$03
-
-Subanimation49:
- db $04
- db $04,$48,$04
- db $03,$48,$04
- db $05,$48,$04
- db $03,$48,$03
-
-Subanimation4a:
- db $01
- db $04,$84,$03
-
-Subanimation4b:
- db $03
- db $06,$72,$00
- db $07,$72,$00
- db $08,$72,$00
-
-Subanimation4c:
- db $68
- db $6f,$30,$00
- db $6e,$30,$00
- db $70,$30,$00
- db $6e,$30,$00
- db $6f,$30,$00
- db $6e,$30,$00
- db $70,$30,$00
- db $6e,$30,$00
-
-Subanimation4d:
- db $26
- db $32,$4b,$00
- db $33,$4f,$00
- db $32,$20,$00
- db $33,$16,$00
- db $32,$19,$00
- db $33,$0d,$00
-
-Subanimation51:
- db $a6
- db $76,$1b,$00
- db $34,$1b,$00
- db $76,$1b,$00
- db $34,$1b,$00
- db $76,$1b,$00
- db $34,$1b,$00
-
-Subanimation52:
- db $47
- db $77,$25,$00
- db $77,$9b,$00
- db $77,$1a,$00
- db $77,$9c,$00
- db $77,$2f,$00
- db $77,$50,$00
- db $77,$8c,$00
-
-Subanimation53:
- db $0c
- db $78,$30,$00
- db $78,$a2,$00
- db $78,$93,$00
- db $78,$61,$00
- db $78,$73,$00
- db $78,$a7,$00
- db $78,$33,$00
- db $78,$a8,$00
- db $78,$0e,$00
- db $78,$a9,$00
- db $78,$34,$00
- db $01,$9e,$00
-
-Subanimation54:
- db $0b
- db $79,$30,$00
- db $79,$a2,$00
- db $79,$93,$00
- db $79,$61,$00
- db $79,$73,$00
- db $79,$a7,$00
- db $79,$33,$00
- db $79,$a8,$00
- db $79,$0e,$00
- db $79,$a9,$00
- db $79,$34,$00
-
-FrameBlockPointers:
- dw FrameBlock00
- dw FrameBlock01
- dw FrameBlock02
- dw FrameBlock03
- dw FrameBlock04
- dw FrameBlock05
- dw FrameBlock06
- dw FrameBlock07
- dw FrameBlock08
- dw FrameBlock09
- dw FrameBlock0a
- dw FrameBlock0b
- dw FrameBlock0c
- dw FrameBlock0d
- dw FrameBlock0e
- dw FrameBlock0f
- dw FrameBlock10
- dw FrameBlock11
- dw FrameBlock12
- dw FrameBlock13
- dw FrameBlock14
- dw FrameBlock15
- dw FrameBlock16
- dw FrameBlock17
- dw FrameBlock18
- dw FrameBlock19
- dw FrameBlock1a
- dw FrameBlock1b
- dw FrameBlock1c
- dw FrameBlock1d
- dw FrameBlock1e
- dw FrameBlock1f
- dw FrameBlock20
- dw FrameBlock21
- dw FrameBlock22
- dw FrameBlock23
- dw FrameBlock24
- dw FrameBlock25
- dw FrameBlock26
- dw FrameBlock27
- dw FrameBlock28
- dw FrameBlock29
- dw FrameBlock2a
- dw FrameBlock2b
- dw FrameBlock2c
- dw FrameBlock2d
- dw FrameBlock2e
- dw FrameBlock2f
- dw FrameBlock30
- dw FrameBlock31
- dw FrameBlock32
- dw FrameBlock33
- dw FrameBlock34
- dw FrameBlock35
- dw FrameBlock36
- dw FrameBlock37
- dw FrameBlock38
- dw FrameBlock39
- dw FrameBlock3a
- dw FrameBlock3b
- dw FrameBlock3c
- dw FrameBlock3d
- dw FrameBlock3e
- dw FrameBlock3f
- dw FrameBlock40
- dw FrameBlock41
- dw FrameBlock42
- dw FrameBlock43
- dw FrameBlock44
- dw FrameBlock45
- dw FrameBlock46
- dw FrameBlock47
- dw SmallBlackCircleFrameBlock
- dw LargeBlockCircleFrameBlock
- dw FrameBlock4a
- dw FrameBlock4b
- dw FrameBlock4c
- dw FrameBlock4d
- dw FrameBlock4e
- dw FrameBlock4f
- dw FrameBlock50
- dw FrameBlock51
- dw FrameBlock52
- dw FrameBlock53
- dw FrameBlock54
- dw FrameBlock55
- dw FrameBlock56
- dw FrameBlock57
- dw FrameBlock58
- dw FrameBlock59
- dw FrameBlock5a
- dw FrameBlock5b
- dw FrameBlock5c
- dw FrameBlock5d
- dw FrameBlock5e
- dw FrameBlock5f
- dw FrameBlock60
- dw FrameBlock61
- dw FrameBlock62
- dw FrameBlock63
- dw FrameBlock64
- dw FrameBlock65
- dw FrameBlock66
- dw FrameBlock67
- dw FrameBlock68
- dw FrameBlock69
- dw FrameBlock6a
- dw FrameBlock6b
- dw FrameBlock6c
- dw FrameBlock6d
- dw FrameBlock6e
- dw FrameBlock6f
- dw FrameBlock70
- dw FrameBlock71
- dw FrameBlock72
- dw FrameBlock73
- dw FrameBlock74
- dw FrameBlock75
- dw FrameBlock76
- dw FrameBlock77
- dw FrameBlock78
- dw FrameBlock79
-
-; FrameBlock format is as follows:
-; first byte = number of tiles in FrameBlock
-;
-; Next, each group of 4 bytes describes a tile in the FrameBlock
-; first byte = y offset
-; second byte = x offset
-; third byte = tile id (it's actually tile id - $31)
-; fourth byte = tile properties (xflip/yflip/etc.)
-FrameBlock01:
- db $09
- db $00,$00,$2c,$00
- db $00,$08,$2d,$00
- db $00,$10,$2c,$20
- db $08,$00,$3c,$00
- db $08,$08,$3d,$00
- db $08,$10,$3c,$20
- db $10,$00,$2c,$40
- db $10,$08,$2d,$40
- db $10,$10,$2c,$60
-
-FrameBlock02:
- db $10
- db $00,$00,$20,$00
- db $00,$08,$21,$00
- db $00,$10,$21,$20
- db $00,$18,$20,$20
- db $08,$00,$30,$00
- db $08,$08,$31,$00
- db $08,$10,$31,$20
- db $08,$18,$30,$20
- db $10,$00,$30,$40
- db $10,$08,$31,$40
- db $10,$10,$31,$60
- db $10,$18,$30,$60
- db $18,$00,$20,$40
- db $18,$08,$21,$40
- db $18,$10,$21,$60
- db $18,$18,$20,$60
-
-FrameBlock03:
- db $04
- db $00,$00,$02,$00
- db $00,$08,$02,$20
- db $08,$00,$12,$00
- db $08,$08,$12,$20
-
-FrameBlock04:
- db $04
- db $00,$00,$06,$00
- db $00,$08,$07,$00
- db $08,$00,$16,$00
- db $08,$08,$17,$00
-
-FrameBlock05:
- db $04
- db $00,$00,$07,$20
- db $00,$08,$06,$20
- db $08,$00,$17,$20
- db $08,$08,$16,$20
-
-FrameBlock06:
- db $0c
- db $00,$08,$23,$00
- db $08,$00,$32,$00
- db $08,$08,$33,$00
- db $00,$10,$23,$20
- db $08,$10,$33,$20
- db $08,$18,$32,$20
- db $10,$00,$32,$40
- db $10,$08,$33,$40
- db $18,$08,$23,$40
- db $10,$10,$33,$60
- db $10,$18,$32,$60
- db $18,$10,$23,$60
-
-FrameBlock07:
- db $10
- db $00,$00,$20,$00
- db $00,$08,$21,$00
- db $08,$00,$30,$00
- db $08,$08,$31,$00
- db $00,$10,$21,$20
- db $00,$18,$20,$20
- db $08,$10,$31,$20
- db $08,$18,$30,$20
- db $10,$00,$30,$40
- db $10,$08,$31,$40
- db $18,$00,$20,$40
- db $18,$08,$21,$40
- db $10,$10,$31,$60
- db $10,$18,$30,$60
- db $18,$10,$21,$60
- db $18,$18,$20,$60
-
-FrameBlock08:
- db $10
- db $00,$00,$20,$00
- db $00,$08,$21,$00
- db $08,$00,$30,$00
- db $08,$08,$31,$00
- db $00,$18,$21,$20
- db $00,$20,$20,$20
- db $08,$18,$31,$20
- db $08,$20,$30,$20
- db $18,$00,$30,$40
- db $18,$08,$31,$40
- db $20,$00,$20,$40
- db $20,$08,$21,$40
- db $18,$18,$31,$60
- db $18,$20,$30,$60
- db $20,$18,$21,$60
- db $20,$20,$20,$60
-
-FrameBlock09:
- db $0c
- db $00,$00,$24,$00
- db $00,$08,$25,$00
- db $08,$00,$34,$00
- db $00,$18,$25,$20
- db $00,$20,$24,$20
- db $08,$20,$34,$20
- db $18,$00,$34,$40
- db $20,$00,$24,$40
- db $20,$08,$25,$40
- db $18,$20,$34,$60
- db $20,$18,$25,$60
- db $20,$20,$24,$60
-
-FrameBlock0a:
- db $0c
- db $00,$00,$24,$00
- db $00,$08,$25,$00
- db $08,$00,$34,$00
- db $00,$20,$25,$20
- db $00,$28,$24,$20
- db $08,$28,$34,$20
- db $20,$00,$34,$40
- db $28,$00,$24,$40
- db $28,$08,$25,$40
- db $20,$28,$34,$60
- db $28,$20,$25,$60
- db $28,$28,$24,$60
-
-FrameBlock0b:
- db $04
- db $00,$00,$05,$00
- db $00,$08,$05,$20
- db $08,$00,$15,$00
- db $08,$08,$15,$20
-
-FrameBlock0c:
- db $04
- db $00,$00,$04,$00
- db $00,$08,$04,$20
- db $08,$00,$14,$00
- db $08,$08,$14,$20
-
-FrameBlock0d:
- db $08
- db $00,$00,$0c,$00
- db $00,$08,$0d,$00
- db $08,$00,$1c,$00
- db $08,$08,$1d,$00
- db $10,$00,$1d,$60
- db $10,$08,$1c,$60
- db $18,$00,$0d,$60
- db $18,$08,$0c,$60
-
-FrameBlock0e:
- db $04
- db $20,$00,$0c,$00
- db $20,$08,$0d,$00
- db $28,$00,$1c,$00
- db $28,$08,$1d,$00
-
-FrameBlock0f:
- db $04
- db $30,$00,$1d,$60
- db $30,$08,$1c,$60
- db $38,$00,$0d,$60
- db $38,$08,$0c,$60
-
-FrameBlock10:
- db $08
- db $00,$00,$0e,$00
- db $00,$08,$0f,$00
- db $08,$00,$1e,$00
- db $08,$08,$1f,$00
- db $00,$10,$0f,$20
- db $00,$18,$0e,$20
- db $08,$10,$1f,$20
- db $08,$18,$1e,$20
-
-FrameBlock11:
- db $08
- db $00,$00,$0e,$00
- db $00,$08,$0f,$00
- db $08,$00,$1e,$00
- db $08,$08,$1f,$00
- db $00,$20,$0f,$20
- db $00,$28,$0e,$20
- db $08,$20,$1f,$20
- db $08,$28,$1e,$20
-
-FrameBlock12:
- db $03
- db $00,$00,$37,$00
- db $08,$10,$37,$00
- db $00,$20,$37,$00
-
-FrameBlock13:
- db $04
- db $00,$00,$36,$00
- db $00,$08,$36,$20
- db $08,$00,$36,$40
- db $08,$08,$36,$60
-
-FrameBlock14:
- db $08
- db $00,$10,$28,$00
- db $00,$18,$28,$20
- db $08,$10,$38,$00
- db $08,$18,$38,$20
- db $00,$20,$36,$00
- db $00,$28,$36,$20
- db $08,$20,$36,$40
- db $08,$28,$36,$60
-
-FrameBlock15:
- db $0c
- db $00,$00,$28,$00
- db $00,$08,$28,$20
- db $08,$00,$38,$00
- db $08,$08,$38,$20
- db $00,$10,$29,$00
- db $00,$18,$29,$20
- db $08,$10,$39,$00
- db $08,$18,$39,$20
- db $00,$20,$28,$00
- db $00,$28,$28,$20
- db $08,$20,$38,$00
- db $08,$28,$38,$20
-
-FrameBlock16:
- db $08
- db $00,$00,$29,$00
- db $00,$08,$29,$20
- db $08,$00,$39,$00
- db $08,$08,$39,$20
- db $00,$20,$29,$00
- db $00,$28,$29,$20
- db $08,$20,$39,$00
- db $08,$28,$39,$20
-
-FrameBlock17:
- db $04
- db $00,$00,$08,$00
- db $00,$08,$09,$00
- db $08,$00,$18,$00
- db $08,$08,$19,$00
-
-FrameBlock18:
- db $01
- db $18,$00,$45,$60
-
-FrameBlock19:
- db $02
- db $18,$08,$45,$00
- db $10,$08,$46,$60
-
-FrameBlock1a:
- db $02
- db $10,$10,$45,$60
- db $18,$10,$46,$00
-
-FrameBlock1b:
- db $02
- db $10,$18,$45,$00
- db $08,$18,$46,$60
-
-FrameBlock1c:
- db $02
- db $08,$20,$45,$60
- db $10,$20,$46,$00
-
-FrameBlock1d:
- db $02
- db $08,$28,$45,$00
- db $00,$28,$46,$60
-
-FrameBlock1e:
- db $02
- db $00,$30,$45,$60
- db $08,$30,$46,$00
-
-FrameBlock75:
- db $04
- db $00,$00,$43,$00
- db $00,$08,$43,$20
- db $08,$00,$22,$00
- db $08,$08,$43,$60
-
-FrameBlock1f:
- db $02
- db $00,$00,$03,$00
- db $00,$30,$03,$20
-
-FrameBlock20:
- db $06
- db $00,$00,$03,$00
- db $00,$30,$03,$20
- db $08,$08,$03,$00
- db $08,$28,$03,$20
- db $08,$00,$13,$00
- db $08,$30,$13,$20
-
-FrameBlock21:
- db $0c
- db $00,$00,$03,$00
- db $00,$30,$03,$20
- db $08,$08,$03,$00
- db $08,$28,$03,$20
- db $08,$00,$13,$00
- db $08,$30,$13,$20
- db $10,$10,$03,$00
- db $10,$20,$03,$20
- db $10,$08,$13,$00
- db $10,$28,$13,$20
- db $10,$00,$03,$00
- db $10,$30,$03,$20
-
-FrameBlock22:
- db $13
- db $00,$00,$03,$00
- db $08,$00,$13,$00
- db $10,$00,$03,$00
- db $18,$00,$13,$00
- db $08,$08,$03,$00
- db $10,$08,$13,$00
- db $18,$08,$03,$00
- db $10,$10,$03,$00
- db $18,$10,$13,$00
- db $18,$18,$03,$00
- db $10,$20,$03,$20
- db $18,$20,$13,$20
- db $08,$28,$03,$20
- db $10,$28,$13,$20
- db $18,$28,$03,$20
- db $00,$30,$03,$20
- db $08,$30,$13,$20
- db $10,$30,$03,$20
- db $18,$30,$13,$20
-
-FrameBlock23:
- db $04
- db $00,$00,$0a,$00
- db $00,$08,$0b,$00
- db $08,$00,$1a,$00
- db $08,$08,$1b,$00
-
-FrameBlock24:
- db $02
- db $08,$00,$0a,$00
- db $08,$08,$0b,$00
-
-FrameBlock25:
- db $0c
- db $10,$00,$0a,$00
- db $10,$08,$0b,$00
- db $18,$00,$1a,$00
- db $18,$08,$1b,$00
- db $00,$10,$0a,$00
- db $00,$18,$0b,$00
- db $08,$10,$1a,$00
- db $08,$18,$1b,$00
- db $08,$20,$0a,$00
- db $08,$28,$0b,$00
- db $10,$20,$1a,$00
- db $10,$28,$1b,$00
-
-FrameBlock26:
- db $04
- db $00,$10,$44,$00
- db $00,$18,$44,$20
- db $08,$10,$44,$40
- db $08,$18,$44,$60
-
-FrameBlock27:
- db $05
- db $08,$08,$44,$00
- db $08,$10,$44,$20
- db $10,$08,$44,$40
- db $10,$10,$44,$60
- db $00,$18,$47,$00
-
-FrameBlock28:
- db $06
- db $10,$00,$44,$00
- db $10,$08,$44,$20
- db $18,$00,$44,$40
- db $18,$08,$44,$60
- db $08,$10,$47,$00
- db $02,$16,$47,$00
-
-FrameBlock29:
- db $04
- db $18,$00,$47,$00
- db $12,$06,$47,$00
- db $0c,$0c,$47,$00
- db $06,$12,$47,$00
-
-FrameBlock2a:
- db $04
- db $00,$00,$44,$00
- db $00,$08,$44,$20
- db $08,$00,$44,$40
- db $08,$08,$44,$60
-
-FrameBlock2b:
- db $02
- db $06,$02,$47,$00
- db $00,$08,$47,$00
-
-FrameBlock2c:
- db $01
- db $a0,$00,$4d,$00
-
-FrameBlock2d:
- db $08
- db $00,$00,$26,$00
- db $00,$08,$27,$00
- db $08,$00,$36,$00
- db $08,$08,$37,$00
- db $10,$00,$28,$00
- db $10,$08,$29,$00
- db $18,$00,$38,$00
- db $18,$08,$39,$00
-
-FrameBlock2e:
- db $08
- db $00,$00,$27,$20
- db $00,$08,$26,$20
- db $08,$00,$37,$20
- db $08,$08,$36,$20
- db $10,$00,$29,$20
- db $10,$08,$28,$20
- db $18,$00,$39,$20
- db $18,$08,$38,$20
-
-FrameBlock2f:
- db $04
- db $00,$00,$0c,$00
- db $00,$08,$0d,$00
- db $08,$00,$0c,$40
- db $08,$08,$0d,$40
-
-FrameBlock30:
- db $04
- db $00,$00,$44,$00
- db $00,$08,$44,$20
- db $08,$00,$44,$40
- db $08,$08,$44,$60
-
-FrameBlock31:
- db $01
- db $00,$00,$45,$00
-
-FrameBlock32:
- db $07
- db $00,$00,$4d,$00
- db $00,$08,$2f,$00
- db $00,$10,$4d,$20
- db $08,$00,$4e,$00
- db $08,$08,$07,$00
- db $08,$10,$4e,$20
- db $10,$08,$3f,$00
-
-FrameBlock33:
- db $07
- db $00,$08,$3f,$40
- db $08,$00,$4e,$40
- db $08,$08,$07,$40
- db $08,$10,$4e,$60
- db $10,$00,$4d,$40
- db $10,$08,$2f,$40
- db $10,$10,$4d,$60
-
-FrameBlock34:
- db $01
- db $a0,$00,$00,$10
-
-FrameBlock35:
- db $06
- db $00,$00,$2a,$00
- db $00,$08,$2b,$00
- db $08,$00,$3a,$00
- db $10,$00,$3a,$40
- db $18,$00,$2a,$40
- db $18,$08,$2b,$40
-
-FrameBlock36:
- db $04
- db $00,$00,$00,$00
- db $00,$08,$01,$00
- db $08,$00,$10,$00
- db $08,$08,$11,$00
-
-FrameBlock37:
- db $04
- db $00,$00,$01,$a0
- db $00,$08,$00,$a0
- db $08,$00,$11,$a0
- db $08,$08,$10,$a0
-
-FrameBlock38:
- db $04
- db $00,$00,$0a,$00
- db $00,$08,$0b,$00
- db $08,$00,$1a,$00
- db $08,$08,$1b,$00
-
-FrameBlock39:
- db $04
- db $00,$00,$0b,$20
- db $00,$08,$0a,$20
- db $08,$00,$1b,$20
- db $08,$08,$1a,$20
-
-FrameBlock3a:
- db $04
- db $20,$00,$05,$00
- db $20,$08,$05,$20
- db $28,$00,$15,$00
- db $28,$08,$15,$20
-
-FrameBlock3b:
- db $05
- db $18,$00,$04,$00
- db $18,$08,$04,$20
- db $20,$00,$14,$00
- db $20,$08,$14,$20
- db $28,$04,$41,$00
-
-FrameBlock3c:
- db $06
- db $10,$00,$05,$00
- db $10,$08,$05,$20
- db $18,$00,$15,$00
- db $18,$08,$15,$20
- db $20,$04,$42,$00
- db $28,$04,$42,$00
-
-FrameBlock3d:
- db $07
- db $08,$00,$04,$00
- db $08,$08,$04,$20
- db $10,$00,$14,$00
- db $10,$08,$14,$20
- db $18,$04,$41,$00
- db $20,$04,$41,$00
- db $28,$04,$41,$00
-
-FrameBlock3e:
- db $08
- db $00,$00,$05,$00
- db $00,$08,$05,$20
- db $08,$00,$15,$00
- db $08,$08,$15,$20
- db $10,$04,$42,$00
- db $18,$04,$42,$00
- db $20,$04,$42,$00
- db $28,$04,$42,$00
-
-FrameBlock3f:
- db $08
- db $00,$00,$04,$00
- db $00,$08,$04,$20
- db $08,$00,$14,$00
- db $08,$08,$14,$20
- db $10,$04,$41,$00
- db $18,$04,$41,$00
- db $20,$04,$41,$00
- db $28,$04,$41,$00
-
-FrameBlock40:
- db $03
- db $00,$00,$3d,$00
- db $00,$08,$3d,$00
- db $08,$08,$3d,$00
-
-FrameBlock41:
- db $04
- db $00,$00,$06,$00
- db $00,$08,$06,$20
- db $08,$00,$16,$00
- db $08,$08,$17,$00
-
-FrameBlock42:
- db $0b
- db $00,$10,$42,$00
- db $08,$00,$42,$00
- db $08,$08,$42,$00
- db $08,$10,$42,$00
- db $08,$18,$42,$00
- db $08,$20,$42,$00
- db $10,$10,$42,$00
- db $18,$08,$42,$00
- db $18,$18,$42,$00
- db $20,$00,$42,$00
- db $20,$20,$42,$00
-
-FrameBlock43:
- db $0b
- db $00,$10,$41,$00
- db $08,$00,$41,$00
- db $08,$08,$41,$00
- db $08,$10,$41,$00
- db $08,$18,$41,$00
- db $08,$20,$41,$00
- db $10,$10,$41,$00
- db $18,$08,$41,$00
- db $18,$18,$41,$00
- db $20,$00,$41,$00
- db $20,$20,$41,$00
-
-FrameBlock44:
- db $04
- db $00,$00,$49,$00
- db $00,$28,$49,$00
- db $28,$00,$49,$00
- db $28,$28,$49,$00
-
-FrameBlock45:
- db $04
- db $00,$00,$49,$00
- db $00,$18,$49,$00
- db $18,$00,$49,$00
- db $18,$18,$49,$00
-
-FrameBlock46:
- db $04
- db $00,$00,$49,$00
- db $00,$08,$49,$00
- db $08,$00,$49,$00
- db $08,$08,$49,$00
-
-FrameBlock47:
- db $04
- db $00,$00,$43,$00
- db $00,$08,$43,$20
- db $08,$00,$43,$40
- db $08,$08,$43,$60
-
-SmallBlackCircleFrameBlock:
- db $04
- db $08,$08,$33,$00
- db $08,$10,$33,$20
- db $10,$08,$33,$40
- db $10,$10,$33,$60
-
-LargeBlockCircleFrameBlock:
- db $10
- db $00,$00,$22,$00
- db $00,$08,$23,$00
- db $00,$10,$23,$20
- db $00,$18,$22,$20
- db $08,$00,$32,$00
- db $08,$08,$43,$00
- db $08,$10,$43,$20
- db $08,$18,$32,$20
- db $10,$00,$32,$40
- db $10,$08,$43,$40
- db $10,$10,$43,$60
- db $10,$18,$32,$60
- db $18,$00,$22,$40
- db $18,$08,$23,$40
- db $18,$10,$23,$60
- db $18,$18,$22,$60
-
-FrameBlock71:
- db $10
- db $00,$00,$22,$00
- db $00,$08,$3b,$00
- db $00,$10,$23,$20
- db $00,$18,$22,$20
- db $08,$00,$32,$00
- db $08,$08,$43,$00
- db $08,$10,$43,$20
- db $08,$18,$32,$20
- db $10,$00,$32,$40
- db $10,$08,$43,$40
- db $10,$10,$43,$60
- db $10,$18,$32,$60
- db $18,$00,$22,$40
- db $18,$08,$23,$40
- db $18,$10,$23,$60
- db $18,$18,$22,$60
-
-FrameBlock72:
- db $0c
- db $00,$00,$32,$00
- db $00,$08,$43,$00
- db $00,$10,$43,$20
- db $00,$18,$32,$20
- db $08,$00,$32,$40
- db $08,$08,$43,$40
- db $08,$10,$43,$60
- db $08,$18,$32,$60
- db $10,$00,$22,$40
- db $10,$08,$23,$40
- db $10,$10,$23,$60
- db $10,$18,$22,$60
-
-FrameBlock73:
- db $08
- db $00,$00,$32,$40
- db $00,$08,$43,$40
- db $00,$10,$43,$60
- db $00,$18,$32,$60
- db $08,$00,$22,$40
- db $08,$08,$23,$40
- db $08,$10,$23,$60
- db $08,$18,$22,$60
-
-FrameBlock74:
- db $04
- db $00,$00,$22,$40
- db $00,$08,$23,$40
- db $00,$10,$23,$60
- db $00,$18,$22,$60
-
-FrameBlock4a:
- db $04
- db $08,$18,$4c,$20
- db $20,$08,$4b,$00
- db $30,$20,$4c,$00
- db $18,$30,$4b,$40
-
-FrameBlock4b:
- db $04
- db $00,$18,$4c,$00
- db $20,$00,$4b,$40
- db $38,$20,$4c,$20
- db $18,$38,$4b,$00
-
-FrameBlock4c:
- db $04
- db $10,$08,$4a,$40
- db $30,$10,$4a,$00
- db $28,$30,$4a,$20
- db $08,$28,$4a,$60
-
-FrameBlock4d:
- db $04
- db $08,$00,$4a,$20
- db $38,$08,$4a,$60
- db $30,$38,$4a,$40
- db $00,$30,$4a,$00
-
-FrameBlock4e:
- db $08
- db $00,$30,$44,$00
- db $00,$38,$44,$20
- db $08,$30,$44,$40
- db $08,$38,$44,$60
- db $26,$0a,$44,$00
- db $26,$12,$44,$20
- db $2e,$0a,$44,$40
- db $2e,$12,$44,$60
-
-FrameBlock4f:
- db $0c
- db $0e,$22,$44,$00
- db $0e,$2a,$44,$20
- db $16,$22,$44,$40
- db $16,$2a,$44,$60
- db $06,$32,$47,$00
- db $00,$38,$47,$00
- db $1a,$16,$44,$00
- db $1a,$1e,$44,$20
- db $22,$16,$44,$40
- db $22,$1e,$44,$60
- db $30,$08,$47,$00
- db $2a,$0e,$47,$00
-
-FrameBlock50:
- db $08
- db $06,$32,$47,$00
- db $00,$38,$47,$00
- db $12,$26,$47,$00
- db $0c,$2c,$47,$00
- db $1e,$1a,$47,$00
- db $18,$20,$47,$00
- db $2a,$0e,$47,$00
- db $24,$14,$47,$00
-
-FrameBlock51:
- db $08
- db $00,$00,$35,$20
- db $08,$00,$35,$40
- db $10,$00,$35,$00
- db $18,$00,$35,$60
- db $00,$40,$35,$00
- db $08,$40,$35,$60
- db $10,$40,$35,$20
- db $18,$40,$35,$40
-
-FrameBlock52:
- db $04
- db $00,$00,$2a,$00
- db $00,$08,$2b,$00
- db $08,$00,$3a,$00
- db $08,$08,$3b,$00
-
-FrameBlock53:
- db $03
- db $00,$00,$3f,$00
- db $00,$08,$3f,$00
- db $08,$06,$3f,$00
-
-FrameBlock54:
- db $04
- db $00,$00,$0e,$00
- db $00,$08,$0e,$20
- db $08,$00,$0f,$00
- db $08,$08,$0f,$20
-
-FrameBlock55:
- db $03
- db $10,$00,$2c,$00
- db $10,$08,$3c,$00
- db $10,$10,$2d,$00
-
-FrameBlock56:
- db $06
- db $10,$10,$31,$00
- db $10,$18,$31,$00
- db $08,$10,$2c,$00
- db $08,$18,$3c,$00
- db $08,$20,$2d,$00
- db $10,$20,$2d,$00
-
-FrameBlock57:
- db $09
- db $08,$20,$31,$00
- db $10,$20,$31,$00
- db $08,$28,$31,$00
- db $10,$28,$31,$00
- db $00,$20,$2c,$00
- db $00,$28,$3c,$00
- db $00,$30,$2d,$00
- db $08,$30,$2d,$00
- db $10,$30,$2d,$00
-
-FrameBlock58:
- db $07
- db $00,$00,$46,$00
- db $08,$02,$47,$00
- db $10,$03,$48,$00
- db $18,$04,$48,$00
- db $20,$05,$48,$00
- db $28,$05,$48,$00
- db $30,$05,$48,$00
-
-FrameBlock59:
- db $01
- db $00,$00,$42,$00
-
-FrameBlock5a:
- db $0c
- db $00,$00,$24,$00
- db $00,$08,$25,$00
- db $08,$00,$34,$00
- db $00,$10,$25,$20
- db $00,$18,$24,$20
- db $08,$18,$34,$20
- db $10,$00,$34,$40
- db $18,$00,$24,$40
- db $18,$08,$25,$40
- db $10,$18,$34,$60
- db $18,$10,$25,$60
- db $18,$18,$24,$60
-
-FrameBlock5b:
- db $04
- db $00,$00,$43,$00
- db $00,$08,$43,$20
- db $08,$00,$43,$40
- db $08,$08,$43,$60
-
-FrameBlock5c:
- db $08
- db $00,$00,$49,$00
- db $02,$08,$49,$00
- db $18,$00,$49,$00
- db $10,$10,$49,$00
- db $08,$00,$43,$00
- db $08,$08,$43,$20
- db $10,$00,$43,$40
- db $10,$08,$43,$60
-
-FrameBlock5d:
- db $0b
- db $00,$00,$49,$00
- db $18,$02,$49,$00
- db $14,$10,$49,$00
- db $08,$00,$43,$00
- db $00,$08,$43,$20
- db $10,$00,$43,$40
- db $10,$08,$43,$60
- db $04,$08,$43,$00
- db $04,$10,$43,$20
- db $0c,$08,$43,$40
- db $0c,$10,$43,$60
-
-FrameBlock5e:
- db $0f
- db $00,$08,$49,$00
- db $08,$10,$49,$00
- db $20,$00,$49,$00
- db $08,$00,$43,$00
- db $08,$08,$43,$20
- db $10,$00,$43,$40
- db $10,$08,$43,$60
- db $10,$10,$43,$00
- db $10,$18,$43,$20
- db $18,$10,$43,$40
- db $18,$18,$43,$60
- db $20,$08,$43,$00
- db $20,$10,$43,$20
- db $28,$08,$43,$40
- db $28,$10,$43,$60
-
-FrameBlock5f:
- db $04
- db $00,$00,$49,$00
- db $00,$10,$49,$00
- db $00,$20,$49,$00
- db $00,$30,$49,$00
-
-FrameBlock60:
- db $08
- db $00,$00,$49,$00
- db $00,$10,$49,$00
- db $00,$20,$49,$00
- db $00,$30,$49,$00
- db $08,$08,$49,$00
- db $08,$18,$49,$00
- db $08,$28,$49,$00
- db $08,$38,$49,$00
-
-FrameBlock61:
- db $0c
- db $00,$00,$49,$00
- db $00,$10,$49,$00
- db $00,$20,$49,$00
- db $00,$30,$49,$00
- db $08,$08,$49,$00
- db $08,$18,$49,$00
- db $08,$28,$49,$00
- db $08,$38,$49,$00
- db $10,$00,$49,$00
- db $10,$10,$49,$00
- db $10,$20,$49,$00
- db $10,$30,$49,$00
-
-FrameBlock62:
- db $0f
- db $00,$00,$49,$00
- db $00,$10,$49,$00
- db $00,$20,$49,$00
- db $00,$30,$49,$00
- db $08,$08,$49,$00
- db $08,$18,$49,$00
- db $08,$28,$49,$00
- db $08,$38,$49,$00
- db $10,$00,$49,$00
- db $10,$10,$49,$00
- db $10,$20,$49,$00
- db $10,$30,$49,$00
- db $18,$08,$49,$00
- db $18,$18,$49,$00
- db $18,$28,$49,$00
- db $18,$38,$49,$00 ; unused
-
-FrameBlock63:
- db $06
- db $10,$00,$26,$00
- db $10,$08,$27,$00
- db $08,$10,$26,$00
- db $08,$18,$27,$00
- db $00,$20,$26,$00
- db $00,$28,$27,$00
-
-FrameBlock64:
- db $06
- db $18,$00,$27,$00
- db $10,$08,$26,$00
- db $10,$10,$27,$00
- db $08,$18,$26,$00
- db $08,$20,$27,$00
- db $00,$28,$26,$00
-
-FrameBlock65:
- db $06
- db $00,$00,$1c,$00
- db $00,$08,$1d,$00
- db $10,$00,$1c,$00
- db $10,$08,$1d,$00
- db $20,$00,$1c,$00
- db $20,$08,$1d,$00
-
-FrameBlock66:
- db $02
- db $00,$00,$03,$00
- db $08,$00,$13,$00
-
-FrameBlock67:
- db $01
- db $00,$00,$03,$00
-
-FrameBlock68:
- db $04
- db $00,$00,$03,$00
- db $00,$08,$03,$20
- db $08,$00,$13,$00
- db $08,$08,$13,$20
-
-FrameBlock69:
- db $01
- db $00,$00,$06,$00
-
-FrameBlock6a:
- db $08
- db $00,$00,$2e,$00
- db $00,$30,$2e,$20
- db $30,$00,$2e,$40
- db $30,$30,$2e,$60
- db $00,$18,$2f,$00
- db $30,$18,$2f,$40
- db $18,$00,$3e,$00
- db $18,$30,$3e,$20
-
-FrameBlock6b:
- db $08
- db $00,$00,$2e,$00
- db $00,$20,$2e,$20
- db $20,$00,$2e,$40
- db $20,$20,$2e,$60
- db $00,$10,$2f,$00
- db $20,$10,$2f,$40
- db $10,$00,$3e,$00
- db $10,$20,$3e,$20
-
-FrameBlock6c:
- db $08
- db $00,$00,$2e,$00
- db $00,$10,$2e,$20
- db $10,$00,$2e,$40
- db $10,$10,$2e,$60
- db $00,$08,$2f,$00
- db $10,$08,$2f,$40
- db $08,$00,$3e,$00
- db $08,$10,$3e,$20
-
-FrameBlock6d:
- db $02
- db $00,$00,$1e,$00
- db $00,$08,$1f,$00
-
-FrameBlock6e:
- db $04
- db $00,$00,$48,$00
- db $00,$08,$48,$20
- db $08,$00,$12,$00
- db $08,$08,$12,$20
-
-FrameBlock6f:
- db $04
- db $00,$00,$4a,$00
- db $00,$08,$07,$00
- db $08,$00,$16,$00
- db $08,$08,$17,$00
-
-FrameBlock70:
- db $04
- db $00,$00,$07,$20
- db $00,$08,$4a,$20
- db $08,$00,$17,$20
- db $08,$08,$16,$20
-
-FrameBlock76:
- db $07
- db $00,$10,$2f,$00
- db $01,$08,$2f,$00
- db $01,$18,$2f,$00
- db $02,$00,$2e,$00
- db $02,$20,$2e,$20
- db $0a,$00,$3e,$00
- db $0a,$20,$3e,$20
-
-FrameBlock77:
- db $04
- db $00,$02,$4b,$00
- db $00,$0a,$4c,$00
- db $08,$00,$4c,$60
- db $08,$08,$4b,$60
-
-FrameBlock78:
- db $01
- db $00,$00,$4d,$00
-
-FrameBlock79:
- db $01
- db $00,$00,$4e,$00
-
-FrameBlockBaseCoords:
- db $10,$68
- db $10,$70
- db $10,$78
- db $10,$80
- db $10,$88
- db $10,$90
- db $10,$98
- db $18,$68
- db $18,$70
- db $18,$78
- db $34,$28
- db $18,$80
- db $18,$88
- db $18,$98
- db $20,$68
- db $20,$70
- db $20,$78
- db $20,$80
- db $20,$88
- db $20,$90
- db $20,$98
- db $28,$68
- db $28,$70
- db $28,$78
- db $28,$80
- db $28,$88
- db $30,$68
- db $30,$70
- db $30,$78
- db $30,$80
- db $30,$90
- db $30,$98
- db $38,$68
- db $38,$78
- db $38,$80
- db $38,$88
- db $40,$68
- db $40,$70
- db $40,$78
- db $40,$80
- db $40,$88
- db $40,$98
- db $10,$60
- db $18,$60
- db $20,$60
- db $28,$60
- db $30,$60
- db $40,$60
- db $58,$28
- db $43,$38
- db $33,$48
- db $20,$58
- db $32,$78
- db $58,$58
- db $2C,$6C
- db $34,$80
- db $48,$70
- db $42,$36
- db $38,$44
- db $40,$52
- db $48,$60
- db $3E,$6E
- db $28,$7C
- db $28,$8A
- db $50,$3C
- db $48,$50
- db $40,$64
- db $38,$38
- db $50,$30
- db $50,$38
- db $50,$40
- db $50,$48
- db $50,$50
- db $48,$58
- db $50,$44
- db $48,$48
- db $48,$4C
- db $40,$50
- db $40,$54
- db $38,$58
- db $38,$5C
- db $30,$64
- db $48,$40
- db $48,$39
- db $24,$88
- db $24,$70
- db $1C,$70
- db $1C,$88
- db $34,$68
- db $34,$88
- db $68,$50
- db $60,$50
- db $68,$60
- db $58,$50
- db $60,$60
- db $68,$40
- db $40,$40
- db $38,$40
- db $0B,$60
- db $44,$48
- db $40,$14
- db $48,$1C
- db $50,$24
- db $4C,$24
- db $10,$62
- db $12,$62
- db $12,$60
- db $20,$72
- db $22,$72
- db $22,$70
- db $28,$62
- db $50,$0A
- db $52,$0A
- db $38,$30
- db $40,$48
- db $30,$48
- db $40,$30
- db $30,$40
- db $38,$48
- db $40,$4A
- db $48,$4B
- db $50,$4C
- db $58,$4D
- db $60,$4D
- db $68,$4D
- db $38,$10
- db $50,$10
- db $38,$28
- db $48,$18
- db $40,$20
- db $48,$20
- db $40,$3C
- db $38,$50
- db $28,$64
- db $1C,$90
- db $24,$80
- db $2C,$70
- db $30,$38
- db $10,$50
- db $3C,$40
- db $40,$58
- db $30,$58
- db $58,$48
- db $50,$58
- db $48,$68
- db $40,$18
- db $28,$58
- db $40,$38
- db $48,$38
- db $08,$70
- db $44,$1C
- db $3C,$58
- db $38,$60
- db $08,$60
- db $38,$70
- db $38,$6C
- db $38,$64
- db $1C,$74
- db $2E,$74
- db $34,$50
- db $2F,$60
- db $31,$70
- db $4C,$30
- db $3B,$40
- db $2D,$50
- db $26,$60
- db $2D,$70
- db $28,$50
- db $1E,$60
- db $29,$70
- db $16,$60
- db $14,$58
- db $12,$54
- db $14,$50
- db $18,$4C
- db $1C,$48
- db $48,$28
-
-FrameBlock00:
- db $00,$00
--- a/data/baseStats/abra.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ABRA ; pokedex id
-db 25 ; base hp
-db 20 ; base attack
-db 15 ; base defense
-db 90 ; base speed
-db 105 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 200 ; catch rate
-db 73 ; base exp yield
-INCBIN "gfx/pokemon/front/abra.pic",0,1 ; 55, sprite dimensions
-dw AbraPicFront
-dw AbraPicBack
-; attacks known at lvl 0
-db TELEPORT
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 44,45,46
- tmlearn 49,50,55
-db 0 ; padding
--- a/data/baseStats/aerodactyl.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_AERODACTYL ; pokedex id
-db 80 ; base hp
-db 105 ; base attack
-db 65 ; base defense
-db 130 ; base speed
-db 60 ; base special
-db ROCK ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 202 ; base exp yield
-INCBIN "gfx/pokemon/front/aerodactyl.pic",0,1 ; 77, sprite dimensions
-dw AerodactylPicFront
-dw AerodactylPicBack
-; attacks known at lvl 0
-db WING_ATTACK
-db AGILITY
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20,23
- tmlearn 31,32
- tmlearn 33,34,38,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/alakazam.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ALAKAZAM ; pokedex id
-db 55 ; base hp
-db 50 ; base attack
-db 45 ; base defense
-db 120 ; base speed
-db 135 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 50 ; catch rate
-db 186 ; base exp yield
-INCBIN "gfx/pokemon/front/alakazam.pic",0,1 ; 77, sprite dimensions
-dw AlakazamPicFront
-dw AlakazamPicBack
-; attacks known at lvl 0
-db TELEPORT
-db CONFUSION
-db DISABLE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20
- tmlearn 28,29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 44,45,46
- tmlearn 49,50,55
-db 0 ; padding
--- a/data/baseStats/arbok.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ARBOK ; pokedex id
-db 60 ; base hp
-db 85 ; base attack
-db 69 ; base defense
-db 80 ; base speed
-db 65 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 90 ; catch rate
-db 147 ; base exp yield
-INCBIN "gfx/pokemon/front/arbok.pic",0,1 ; 77, sprite dimensions
-dw ArbokPicFront
-dw ArbokPicBack
-; attacks known at lvl 0
-db WRAP
-db LEER
-db POISON_STING
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,15
- tmlearn 20,21
- tmlearn 26,27,28,31,32
- tmlearn 34,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/arcanine.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ARCANINE ; pokedex id
-db 90 ; base hp
-db 110 ; base attack
-db 80 ; base defense
-db 95 ; base speed
-db 80 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 75 ; catch rate
-db 213 ; base exp yield
-INCBIN "gfx/pokemon/front/arcanine.pic",0,1 ; 77, sprite dimensions
-dw ArcaninePicFront
-dw ArcaninePicBack
-; attacks known at lvl 0
-db ROAR
-db EMBER
-db LEER
-db TAKE_DOWN
-db 5 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,15
- tmlearn 20,23
- tmlearn 28,30,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/articuno.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ARTICUNO ; pokedex id
-db 90 ; base hp
-db 85 ; base attack
-db 100 ; base defense
-db 85 ; base speed
-db 125 ; base special
-db ICE ; species type 1
-db FLYING ; species type 2
-db 3 ; catch rate
-db 215 ; base exp yield
-INCBIN "gfx/pokemon/front/articuno.pic",0,1 ; 77, sprite dimensions
-dw ArticunoPicFront
-dw ArticunoPicBack
-; attacks known at lvl 0
-db PECK
-db ICE_BEAM
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/beedrill.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_BEEDRILL ; pokedex id
-db 65 ; base hp
-db 80 ; base attack
-db 40 ; base defense
-db 75 ; base speed
-db 45 ; base special
-db BUG ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 159 ; base exp yield
-INCBIN "gfx/pokemon/front/beedrill.pic",0,1 ; 77, sprite dimensions
-dw BeedrillPicFront
-dw BeedrillPicBack
-; attacks known at lvl 0
-db FURY_ATTACK
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10,15
- tmlearn 20,21
- tmlearn 31,32
- tmlearn 33,34,39,40
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/bellsprout.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_BELLSPROUT ; pokedex id
-db 50 ; base hp
-db 75 ; base attack
-db 35 ; base defense
-db 40 ; base speed
-db 70 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 255 ; catch rate
-db 84 ; base exp yield
-INCBIN "gfx/pokemon/front/bellsprout.pic",0,1 ; 55, sprite dimensions
-dw BellsproutPicFront
-dw BellsproutPicBack
-; attacks known at lvl 0
-db VINE_WHIP
-db GROWTH
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/blastoise.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_BLASTOISE ; pokedex id
-db 79 ; base hp
-db 83 ; base attack
-db 100 ; base defense
-db 78 ; base speed
-db 85 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 210 ; base exp yield
-INCBIN "gfx/pokemon/front/blastoise.pic",0,1 ; 77, sprite dimensions
-dw BlastoisePicFront
-dw BlastoisePicBack
-; attacks known at lvl 0
-db TACKLE
-db TAIL_WHIP
-db BUBBLE
-db WATER_GUN
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/bulbasaur.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_BULBASAUR ; pokedex id
-db 45 ; base hp
-db 49 ; base attack
-db 49 ; base defense
-db 45 ; base speed
-db 65 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 64 ; base exp yield
-INCBIN "gfx/pokemon/front/bulbasaur.pic",0,1 ; 55, sprite dimensions
-dw BulbasaurPicFront
-dw BulbasaurPicBack
-; attacks known at lvl 0
-db TACKLE
-db GROWL
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/butterfree.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_BUTTERFREE ; pokedex id
-db 60 ; base hp
-db 45 ; base attack
-db 50 ; base defense
-db 70 ; base speed
-db 80 ; base special
-db BUG ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 160 ; base exp yield
-INCBIN "gfx/pokemon/front/butterfree.pic",0,1 ; 77, sprite dimensions
-dw ButterfreePicFront
-dw ButterfreePicBack
-; attacks known at lvl 0
-db CONFUSION
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 29,30,31,32
- tmlearn 33,34,39
- tmlearn 44,46
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/caterpie.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CATERPIE ; pokedex id
-db 45 ; base hp
-db 30 ; base attack
-db 35 ; base defense
-db 45 ; base speed
-db 20 ; base special
-db BUG ; species type 1
-db BUG ; species type 2
-db 255 ; catch rate
-db 53 ; base exp yield
-INCBIN "gfx/pokemon/front/caterpie.pic",0,1 ; 55, sprite dimensions
-dw CaterpiePicFront
-dw CaterpiePicBack
-; attacks known at lvl 0
-db TACKLE
-db STRING_SHOT
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
-db 0 ; padding
--- a/data/baseStats/chansey.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CHANSEY ; pokedex id
-db 250 ; base hp
-db 5 ; base attack
-db 5 ; base defense
-db 50 ; base speed
-db 105 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 30 ; catch rate
-db 255 ; base exp yield
-INCBIN "gfx/pokemon/front/chansey.pic",0,1 ; 66, sprite dimensions
-dw ChanseyPicFront
-dw ChanseyPicBack
-; attacks known at lvl 0
-db POUND
-db DOUBLESLAP
-db 0
-db 0
-db 4 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,35,37,38,40
- tmlearn 41,44,45,46
- tmlearn 49,50,54,55
-db 0 ; padding
--- a/data/baseStats/charizard.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CHARIZARD ; pokedex id
-db 78 ; base hp
-db 84 ; base attack
-db 78 ; base defense
-db 100 ; base speed
-db 85 ; base special
-db FIRE ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 209 ; base exp yield
-INCBIN "gfx/pokemon/front/charizard.pic",0,1 ; 77, sprite dimensions
-dw CharizardPicFront
-dw CharizardPicBack
-; attacks known at lvl 0
-db SCRATCH
-db GROWL
-db EMBER
-db LEER
-db 3 ; growth rate
-; learnset
- tmlearn 1,3,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20,23
- tmlearn 26,27,28,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50,51,54
-db 0 ; padding
--- a/data/baseStats/charmander.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CHARMANDER ; pokedex id
-db 39 ; base hp
-db 52 ; base attack
-db 43 ; base defense
-db 65 ; base speed
-db 50 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 45 ; catch rate
-db 65 ; base exp yield
-INCBIN "gfx/pokemon/front/charmander.pic",0,1 ; 55, sprite dimensions
-dw CharmanderPicFront
-dw CharmanderPicBack
-; attacks known at lvl 0
-db SCRATCH
-db GROWL
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,3,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20,23
- tmlearn 28,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50,51,54
-db 0 ; padding
--- a/data/baseStats/charmeleon.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CHARMELEON ; pokedex id
-db 58 ; base hp
-db 64 ; base attack
-db 58 ; base defense
-db 80 ; base speed
-db 65 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 45 ; catch rate
-db 142 ; base exp yield
-INCBIN "gfx/pokemon/front/charmeleon.pic",0,1 ; 66, sprite dimensions
-dw CharmeleonPicFront
-dw CharmeleonPicBack
-; attacks known at lvl 0
-db SCRATCH
-db GROWL
-db EMBER
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,3,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20,23
- tmlearn 28,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50,51,54
-db 0 ; padding
--- a/data/baseStats/clefable.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CLEFABLE ; pokedex id
-db 95 ; base hp
-db 70 ; base attack
-db 73 ; base defense
-db 60 ; base speed
-db 85 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 25 ; catch rate
-db 129 ; base exp yield
-INCBIN "gfx/pokemon/front/clefable.pic",0,1 ; 66, sprite dimensions
-dw ClefablePicFront
-dw ClefablePicBack
-; attacks known at lvl 0
-db SING
-db DOUBLESLAP
-db MINIMIZE
-db METRONOME
-db 4 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,35,38,40
- tmlearn 44,45,46
- tmlearn 49,50,54,55
-db 0 ; padding
--- a/data/baseStats/clefairy.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CLEFAIRY ; pokedex id
-db 70 ; base hp
-db 45 ; base attack
-db 48 ; base defense
-db 35 ; base speed
-db 60 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 150 ; catch rate
-db 68 ; base exp yield
-INCBIN "gfx/pokemon/front/clefairy.pic",0,1 ; 55, sprite dimensions
-dw ClefairyPicFront
-dw ClefairyPicBack
-; attacks known at lvl 0
-db POUND
-db GROWL
-db 0
-db 0
-db 4 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,35,38,40
- tmlearn 44,45,46
- tmlearn 49,50,54,55
-db 0 ; padding
--- a/data/baseStats/cloyster.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CLOYSTER ; pokedex id
-db 50 ; base hp
-db 95 ; base attack
-db 180 ; base defense
-db 70 ; base speed
-db 85 ; base special
-db WATER ; species type 1
-db ICE ; species type 2
-db 60 ; catch rate
-db 203 ; base exp yield
-INCBIN "gfx/pokemon/front/cloyster.pic",0,1 ; 77, sprite dimensions
-dw CloysterPicFront
-dw CloysterPicBack
-; attacks known at lvl 0
-db WITHDRAW
-db SUPERSONIC
-db CLAMP
-db AURORA_BEAM
-db 5 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20
- tmlearn 30,31,32
- tmlearn 33,34,36,39
- tmlearn 44,47
- tmlearn 49,50,53
-db 0 ; padding
--- a/data/baseStats/cubone.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_CUBONE ; pokedex id
-db 50 ; base hp
-db 50 ; base attack
-db 95 ; base defense
-db 35 ; base speed
-db 40 ; base special
-db GROUND ; species type 1
-db GROUND ; species type 2
-db 190 ; catch rate
-db 87 ; base exp yield
-INCBIN "gfx/pokemon/front/cubone.pic",0,1 ; 55, sprite dimensions
-dw CubonePicFront
-dw CubonePicBack
-; attacks known at lvl 0
-db BONE_CLUB
-db GROWL
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,38,40
- tmlearn 44
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/dewgong.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DEWGONG ; pokedex id
-db 90 ; base hp
-db 70 ; base attack
-db 80 ; base defense
-db 70 ; base speed
-db 95 ; base special
-db WATER ; species type 1
-db ICE ; species type 2
-db 75 ; catch rate
-db 176 ; base exp yield
-INCBIN "gfx/pokemon/front/dewgong.pic",0,1 ; 66, sprite dimensions
-dw DewgongPicFront
-dw DewgongPicBack
-; attacks known at lvl 0
-db HEADBUTT
-db GROWL
-db AURORA_BEAM
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/diglett.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DIGLETT ; pokedex id
-db 10 ; base hp
-db 55 ; base attack
-db 25 ; base defense
-db 95 ; base speed
-db 45 ; base special
-db GROUND ; species type 1
-db GROUND ; species type 2
-db 255 ; catch rate
-db 81 ; base exp yield
-INCBIN "gfx/pokemon/front/diglett.pic",0,1 ; 55, sprite dimensions
-dw DiglettPicFront
-dw DiglettPicBack
-; attacks known at lvl 0
-db SCRATCH
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 26,27,28,31,32
- tmlearn 34
- tmlearn 44,48
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/ditto.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DITTO ; pokedex id
-db 48 ; base hp
-db 48 ; base attack
-db 48 ; base defense
-db 48 ; base speed
-db 48 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 35 ; catch rate
-db 61 ; base exp yield
-INCBIN "gfx/pokemon/front/ditto.pic",0,1 ; 55, sprite dimensions
-dw DittoPicFront
-dw DittoPicBack
-; attacks known at lvl 0
-db TRANSFORM
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
-db 0 ; padding
--- a/data/baseStats/dodrio.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DODRIO ; pokedex id
-db 60 ; base hp
-db 110 ; base attack
-db 70 ; base defense
-db 100 ; base speed
-db 60 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 158 ; base exp yield
-INCBIN "gfx/pokemon/front/dodrio.pic",0,1 ; 77, sprite dimensions
-dw DodrioPicFront
-dw DodrioPicBack
-; attacks known at lvl 0
-db PECK
-db GROWL
-db FURY_ATTACK
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 4,6,8
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,40
- tmlearn 43,44
- tmlearn 49,50,52
-db 0 ; padding
--- a/data/baseStats/doduo.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DODUO ; pokedex id
-db 35 ; base hp
-db 85 ; base attack
-db 45 ; base defense
-db 75 ; base speed
-db 35 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 190 ; catch rate
-db 96 ; base exp yield
-INCBIN "gfx/pokemon/front/doduo.pic",0,1 ; 55, sprite dimensions
-dw DoduoPicFront
-dw DoduoPicBack
-; attacks known at lvl 0
-db PECK
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 4,6,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,40
- tmlearn 43,44
- tmlearn 49,50,52
-db 0 ; padding
--- a/data/baseStats/dragonair.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DRAGONAIR ; pokedex id
-db 61 ; base hp
-db 84 ; base attack
-db 65 ; base defense
-db 70 ; base speed
-db 70 ; base special
-db DRAGON ; species type 1
-db DRAGON ; species type 2
-db 45 ; catch rate
-db 144 ; base exp yield
-INCBIN "gfx/pokemon/front/dragonair.pic",0,1 ; 66, sprite dimensions
-dw DragonairPicFront
-dw DragonairPicBack
-; attacks known at lvl 0
-db WRAP
-db LEER
-db THUNDER_WAVE
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20,23,24
- tmlearn 25,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44,45
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/dragonite.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DRAGONITE ; pokedex id
-db 91 ; base hp
-db 134 ; base attack
-db 95 ; base defense
-db 80 ; base speed
-db 100 ; base special
-db DRAGON ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 218 ; base exp yield
-INCBIN "gfx/pokemon/front/dragonite.pic",0,1 ; 77, sprite dimensions
-dw DragonitePicFront
-dw DragonitePicBack
-; attacks known at lvl 0
-db WRAP
-db LEER
-db THUNDER_WAVE
-db AGILITY
-db 5 ; growth rate
-; learnset
- tmlearn 2,6,7,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20,23,24
- tmlearn 25,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44,45
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/dratini.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DRATINI ; pokedex id
-db 41 ; base hp
-db 64 ; base attack
-db 45 ; base defense
-db 50 ; base speed
-db 50 ; base special
-db DRAGON ; species type 1
-db DRAGON ; species type 2
-db 45 ; catch rate
-db 67 ; base exp yield
-INCBIN "gfx/pokemon/front/dratini.pic",0,1 ; 55, sprite dimensions
-dw DratiniPicFront
-dw DratiniPicBack
-; attacks known at lvl 0
-db WRAP
-db LEER
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20,23,24
- tmlearn 25,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44,45
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/drowzee.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DROWZEE ; pokedex id
-db 60 ; base hp
-db 48 ; base attack
-db 45 ; base defense
-db 42 ; base speed
-db 90 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 190 ; catch rate
-db 102 ; base exp yield
-INCBIN "gfx/pokemon/front/drowzee.pic",0,1 ; 66, sprite dimensions
-dw DrowzeePicFront
-dw DrowzeePicBack
-; attacks known at lvl 0
-db POUND
-db HYPNOSIS
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 42,44,45,46
- tmlearn 49,50,55
-db 0 ; padding
--- a/data/baseStats/dugtrio.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_DUGTRIO ; pokedex id
-db 35 ; base hp
-db 80 ; base attack
-db 50 ; base defense
-db 120 ; base speed
-db 70 ; base special
-db GROUND ; species type 1
-db GROUND ; species type 2
-db 50 ; catch rate
-db 153 ; base exp yield
-INCBIN "gfx/pokemon/front/dugtrio.pic",0,1 ; 66, sprite dimensions
-dw DugtrioPicFront
-dw DugtrioPicBack
-; attacks known at lvl 0
-db SCRATCH
-db GROWL
-db DIG
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 26,27,28,31,32
- tmlearn 34
- tmlearn 44,48
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/eevee.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_EEVEE ; pokedex id
-db 55 ; base hp
-db 55 ; base attack
-db 50 ; base defense
-db 55 ; base speed
-db 65 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 45 ; catch rate
-db 92 ; base exp yield
-INCBIN "gfx/pokemon/front/eevee.pic",0,1 ; 55, sprite dimensions
-dw EeveePicFront
-dw EeveePicBack
-; attacks known at lvl 0
-db TACKLE
-db SAND_ATTACK
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/ekans.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_EKANS ; pokedex id
-db 35 ; base hp
-db 60 ; base attack
-db 44 ; base defense
-db 55 ; base speed
-db 40 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 255 ; catch rate
-db 62 ; base exp yield
-INCBIN "gfx/pokemon/front/ekans.pic",0,1 ; 55, sprite dimensions
-dw EkansPicFront
-dw EkansPicBack
-; attacks known at lvl 0
-db WRAP
-db LEER
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10
- tmlearn 20,21
- tmlearn 26,27,28,31,32
- tmlearn 34,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/electabuzz.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ELECTABUZZ ; pokedex id
-db 65 ; base hp
-db 83 ; base attack
-db 57 ; base defense
-db 105 ; base speed
-db 85 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 45 ; catch rate
-db 156 ; base exp yield
-INCBIN "gfx/pokemon/front/electabuzz.pic",0,1 ; 66, sprite dimensions
-dw ElectabuzzPicFront
-dw ElectabuzzPicBack
-; attacks known at lvl 0
-db QUICK_ATTACK
-db LEER
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,35,39,40
- tmlearn 44,45,46
- tmlearn 50,54,55
-db 0 ; padding
--- a/data/baseStats/electrode.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ELECTRODE ; pokedex id
-db 60 ; base hp
-db 50 ; base attack
-db 70 ; base defense
-db 140 ; base speed
-db 80 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 60 ; catch rate
-db 150 ; base exp yield
-INCBIN "gfx/pokemon/front/electrode.pic",0,1 ; 55, sprite dimensions
-dw ElectrodePicFront
-dw ElectrodePicBack
-; attacks known at lvl 0
-db TACKLE
-db SCREECH
-db SONICBOOM
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,15
- tmlearn 20,24
- tmlearn 25,30,31,32
- tmlearn 33,34,36,39,40
- tmlearn 44,45,47
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/exeggcute.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_EXEGGCUTE ; pokedex id
-db 60 ; base hp
-db 40 ; base attack
-db 80 ; base defense
-db 40 ; base speed
-db 60 ; base special
-db GRASS ; species type 1
-db PSYCHIC ; species type 2
-db 90 ; catch rate
-db 98 ; base exp yield
-INCBIN "gfx/pokemon/front/exeggcute.pic",0,1 ; 77, sprite dimensions
-dw ExeggcutePicFront
-dw ExeggcutePicBack
-; attacks known at lvl 0
-db BARRAGE
-db HYPNOSIS
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10
- tmlearn 20
- tmlearn 29,30,31,32
- tmlearn 33,34,36,37
- tmlearn 44,46,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/exeggutor.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_EXEGGUTOR ; pokedex id
-db 95 ; base hp
-db 95 ; base attack
-db 85 ; base defense
-db 55 ; base speed
-db 125 ; base special
-db GRASS ; species type 1
-db PSYCHIC ; species type 2
-db 45 ; catch rate
-db 212 ; base exp yield
-INCBIN "gfx/pokemon/front/exeggutor.pic",0,1 ; 77, sprite dimensions
-dw ExeggutorPicFront
-dw ExeggutorPicBack
-; attacks known at lvl 0
-db BARRAGE
-db HYPNOSIS
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 29,30,31,32
- tmlearn 33,34,36,37
- tmlearn 44,46,47
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/farfetchd.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_FARFETCHD ; pokedex id
-db 52 ; base hp
-db 65 ; base attack
-db 55 ; base defense
-db 60 ; base speed
-db 58 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 94 ; base exp yield
-INCBIN "gfx/pokemon/front/farfetchd.pic",0,1 ; 66, sprite dimensions
-dw FarfetchdPicFront
-dw FarfetchdPicBack
-; attacks known at lvl 0
-db PECK
-db SAND_ATTACK
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,3,4,6,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39,40
- tmlearn 44
- tmlearn 50,51,52
-db 0 ; padding
--- a/data/baseStats/fearow.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_FEAROW ; pokedex id
-db 65 ; base hp
-db 90 ; base attack
-db 65 ; base defense
-db 100 ; base speed
-db 61 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 90 ; catch rate
-db 162 ; base exp yield
-INCBIN "gfx/pokemon/front/fearow.pic",0,1 ; 77, sprite dimensions
-dw FearowPicFront
-dw FearowPicBack
-; attacks known at lvl 0
-db PECK
-db GROWL
-db LEER
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/flareon.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_FLAREON ; pokedex id
-db 65 ; base hp
-db 130 ; base attack
-db 60 ; base defense
-db 65 ; base speed
-db 110 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 45 ; catch rate
-db 198 ; base exp yield
-INCBIN "gfx/pokemon/front/flareon.pic",0,1 ; 66, sprite dimensions
-dw FlareonPicFront
-dw FlareonPicBack
-; attacks known at lvl 0
-db TACKLE
-db SAND_ATTACK
-db QUICK_ATTACK
-db EMBER
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/gastly.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GASTLY ; pokedex id
-db 30 ; base hp
-db 35 ; base attack
-db 30 ; base defense
-db 80 ; base speed
-db 100 ; base special
-db GHOST ; species type 1
-db POISON ; species type 2
-db 190 ; catch rate
-db 95 ; base exp yield
-INCBIN "gfx/pokemon/front/gastly.pic",0,1 ; 77, sprite dimensions
-dw GastlyPicFront
-dw GastlyPicBack
-; attacks known at lvl 0
-db LICK
-db CONFUSE_RAY
-db NIGHT_SHADE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 0
- tmlearn 20,21,24
- tmlearn 25,29,31,32
- tmlearn 34,36
- tmlearn 42,44,46,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/gengar.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GENGAR ; pokedex id
-db 60 ; base hp
-db 65 ; base attack
-db 60 ; base defense
-db 110 ; base speed
-db 130 ; base special
-db GHOST ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 190 ; base exp yield
-INCBIN "gfx/pokemon/front/gengar.pic",0,1 ; 66, sprite dimensions
-dw GengarPicFront
-dw GengarPicBack
-; attacks known at lvl 0
-db LICK
-db CONFUSE_RAY
-db NIGHT_SHADE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20,21,24
- tmlearn 25,29,31,32
- tmlearn 34,35,36,40
- tmlearn 42,44,46,47
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/geodude.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GEODUDE ; pokedex id
-db 40 ; base hp
-db 80 ; base attack
-db 100 ; base defense
-db 20 ; base speed
-db 30 ; base special
-db ROCK ; species type 1
-db GROUND ; species type 2
-db 255 ; catch rate
-db 86 ; base exp yield
-INCBIN "gfx/pokemon/front/geodude.pic",0,1 ; 55, sprite dimensions
-dw GeodudePicFront
-dw GeodudePicBack
-; attacks known at lvl 0
-db TACKLE
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,35,36,38
- tmlearn 44,47,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/gloom.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GLOOM ; pokedex id
-db 60 ; base hp
-db 65 ; base attack
-db 70 ; base defense
-db 40 ; base speed
-db 85 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 120 ; catch rate
-db 132 ; base exp yield
-INCBIN "gfx/pokemon/front/gloom.pic",0,1 ; 66, sprite dimensions
-dw GloomPicFront
-dw GloomPicBack
-; attacks known at lvl 0
-db ABSORB
-db POISONPOWDER
-db STUN_SPORE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/golbat.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GOLBAT ; pokedex id
-db 75 ; base hp
-db 80 ; base attack
-db 70 ; base defense
-db 90 ; base speed
-db 75 ; base special
-db POISON ; species type 1
-db FLYING ; species type 2
-db 90 ; catch rate
-db 171 ; base exp yield
-INCBIN "gfx/pokemon/front/golbat.pic",0,1 ; 77, sprite dimensions
-dw GolbatPicFront
-dw GolbatPicBack
-; attacks known at lvl 0
-db LEECH_LIFE
-db SCREECH
-db BITE
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20,21
- tmlearn 31,32
- tmlearn 34,39
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/goldeen.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GOLDEEN ; pokedex id
-db 45 ; base hp
-db 67 ; base attack
-db 60 ; base defense
-db 63 ; base speed
-db 50 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 225 ; catch rate
-db 111 ; base exp yield
-INCBIN "gfx/pokemon/front/goldeen.pic",0,1 ; 66, sprite dimensions
-dw GoldeenPicFront
-dw GoldeenPicBack
-; attacks known at lvl 0
-db PECK
-db TAIL_WHIP
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,7
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/golduck.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GOLDUCK ; pokedex id
-db 80 ; base hp
-db 82 ; base attack
-db 78 ; base defense
-db 85 ; base speed
-db 80 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 75 ; catch rate
-db 174 ; base exp yield
-INCBIN "gfx/pokemon/front/golduck.pic",0,1 ; 77, sprite dimensions
-dw GolduckPicFront
-dw GolduckPicBack
-; attacks known at lvl 0
-db SCRATCH
-db TAIL_WHIP
-db DISABLE
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20
- tmlearn 28,31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/golem.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GOLEM ; pokedex id
-db 80 ; base hp
-db 110 ; base attack
-db 130 ; base defense
-db 45 ; base speed
-db 55 ; base special
-db ROCK ; species type 1
-db GROUND ; species type 2
-db 45 ; catch rate
-db 177 ; base exp yield
-INCBIN "gfx/pokemon/front/golem.pic",0,1 ; 66, sprite dimensions
-dw GolemPicFront
-dw GolemPicBack
-; attacks known at lvl 0
-db TACKLE
-db DEFENSE_CURL
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,35,36,38
- tmlearn 44,47,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/graveler.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GRAVELER ; pokedex id
-db 55 ; base hp
-db 95 ; base attack
-db 115 ; base defense
-db 35 ; base speed
-db 45 ; base special
-db ROCK ; species type 1
-db GROUND ; species type 2
-db 120 ; catch rate
-db 134 ; base exp yield
-INCBIN "gfx/pokemon/front/graveler.pic",0,1 ; 66, sprite dimensions
-dw GravelerPicFront
-dw GravelerPicBack
-; attacks known at lvl 0
-db TACKLE
-db DEFENSE_CURL
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,35,36,38
- tmlearn 44,47,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/grimer.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GRIMER ; pokedex id
-db 80 ; base hp
-db 80 ; base attack
-db 50 ; base defense
-db 25 ; base speed
-db 40 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 190 ; catch rate
-db 90 ; base exp yield
-INCBIN "gfx/pokemon/front/grimer.pic",0,1 ; 55, sprite dimensions
-dw GrimerPicFront
-dw GrimerPicBack
-; attacks known at lvl 0
-db POUND
-db DISABLE
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 0
- tmlearn 20,21,24
- tmlearn 25,31,32
- tmlearn 34,36,38
- tmlearn 44,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/growlithe.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GROWLITHE ; pokedex id
-db 55 ; base hp
-db 70 ; base attack
-db 45 ; base defense
-db 60 ; base speed
-db 50 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 190 ; catch rate
-db 91 ; base exp yield
-INCBIN "gfx/pokemon/front/growlithe.pic",0,1 ; 55, sprite dimensions
-dw GrowlithePicFront
-dw GrowlithePicBack
-; attacks known at lvl 0
-db BITE
-db ROAR
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10
- tmlearn 20,23
- tmlearn 28,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/gyarados.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_GYARADOS ; pokedex id
-db 95 ; base hp
-db 125 ; base attack
-db 79 ; base defense
-db 81 ; base speed
-db 100 ; base special
-db WATER ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 214 ; base exp yield
-INCBIN "gfx/pokemon/front/gyarados.pic",0,1 ; 77, sprite dimensions
-dw GyaradosPicFront
-dw GyaradosPicBack
-; attacks known at lvl 0
-db BITE
-db DRAGON_RAGE
-db LEER
-db HYDRO_PUMP
-db 5 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20,23,24
- tmlearn 25,31,32
- tmlearn 33,34,38,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/haunter.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_HAUNTER ; pokedex id
-db 45 ; base hp
-db 50 ; base attack
-db 45 ; base defense
-db 95 ; base speed
-db 115 ; base special
-db GHOST ; species type 1
-db POISON ; species type 2
-db 90 ; catch rate
-db 126 ; base exp yield
-INCBIN "gfx/pokemon/front/haunter.pic",0,1 ; 66, sprite dimensions
-dw HaunterPicFront
-dw HaunterPicBack
-; attacks known at lvl 0
-db LICK
-db CONFUSE_RAY
-db NIGHT_SHADE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 0
- tmlearn 20,21,24
- tmlearn 25,29,31,32
- tmlearn 34,36
- tmlearn 42,44,46,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/hitmonchan.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_HITMONCHAN ; pokedex id
-db 50 ; base hp
-db 105 ; base attack
-db 79 ; base defense
-db 76 ; base speed
-db 35 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 45 ; catch rate
-db 140 ; base exp yield
-INCBIN "gfx/pokemon/front/hitmonchan.pic",0,1 ; 66, sprite dimensions
-dw HitmonchanPicFront
-dw HitmonchanPicBack
-; attacks known at lvl 0
-db COMET_PUNCH
-db AGILITY
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 31,32
- tmlearn 34,35,39,40
- tmlearn 44
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/hitmonlee.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_HITMONLEE ; pokedex id
-db 50 ; base hp
-db 120 ; base attack
-db 53 ; base defense
-db 87 ; base speed
-db 35 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 45 ; catch rate
-db 139 ; base exp yield
-INCBIN "gfx/pokemon/front/hitmonlee.pic",0,1 ; 77, sprite dimensions
-dw HitmonleePicFront
-dw HitmonleePicBack
-; attacks known at lvl 0
-db DOUBLE_KICK
-db MEDITATE
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 31,32
- tmlearn 34,35,39,40
- tmlearn 44
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/horsea.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_HORSEA ; pokedex id
-db 30 ; base hp
-db 40 ; base attack
-db 70 ; base defense
-db 60 ; base speed
-db 70 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 225 ; catch rate
-db 83 ; base exp yield
-INCBIN "gfx/pokemon/front/horsea.pic",0,1 ; 55, sprite dimensions
-dw HorseaPicFront
-dw HorseaPicBack
-; attacks known at lvl 0
-db BUBBLE
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/hypno.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_HYPNO ; pokedex id
-db 85 ; base hp
-db 73 ; base attack
-db 70 ; base defense
-db 67 ; base speed
-db 115 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 75 ; catch rate
-db 165 ; base exp yield
-INCBIN "gfx/pokemon/front/hypno.pic",0,1 ; 77, sprite dimensions
-dw HypnoPicFront
-dw HypnoPicBack
-; attacks known at lvl 0
-db POUND
-db HYPNOSIS
-db DISABLE
-db CONFUSION
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20
- tmlearn 29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 42,44,45,46
- tmlearn 49,50,55
-db 0 ; padding
--- a/data/baseStats/ivysaur.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_IVYSAUR ; pokedex id
-db 60 ; base hp
-db 62 ; base attack
-db 63 ; base defense
-db 60 ; base speed
-db 80 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 141 ; base exp yield
-INCBIN "gfx/pokemon/front/ivysaur.pic",0,1 ; 66, sprite dimensions
-dw IvysaurPicFront
-dw IvysaurPicBack
-; attacks known at lvl 0
-db TACKLE
-db GROWL
-db LEECH_SEED
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/jigglypuff.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_JIGGLYPUFF ; pokedex id
-db 115 ; base hp
-db 45 ; base attack
-db 20 ; base defense
-db 20 ; base speed
-db 25 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 170 ; catch rate
-db 76 ; base exp yield
-INCBIN "gfx/pokemon/front/jigglypuff.pic",0,1 ; 55, sprite dimensions
-dw JigglypuffPicFront
-dw JigglypuffPicBack
-; attacks known at lvl 0
-db SING
-db 0
-db 0
-db 0
-db 4 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,38,40
- tmlearn 44,45,46
- tmlearn 49,50,54,55
-db 0 ; padding
--- a/data/baseStats/jolteon.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_JOLTEON ; pokedex id
-db 65 ; base hp
-db 65 ; base attack
-db 60 ; base defense
-db 130 ; base speed
-db 110 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 45 ; catch rate
-db 197 ; base exp yield
-INCBIN "gfx/pokemon/front/jolteon.pic",0,1 ; 66, sprite dimensions
-dw JolteonPicFront
-dw JolteonPicBack
-; attacks known at lvl 0
-db TACKLE
-db SAND_ATTACK
-db QUICK_ATTACK
-db THUNDERSHOCK
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,15
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 33,34,39,40
- tmlearn 44,45
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/jynx.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_JYNX ; pokedex id
-db 65 ; base hp
-db 50 ; base attack
-db 35 ; base defense
-db 95 ; base speed
-db 95 ; base special
-db ICE ; species type 1
-db PSYCHIC ; species type 2
-db 45 ; catch rate
-db 137 ; base exp yield
-INCBIN "gfx/pokemon/front/jynx.pic",0,1 ; 66, sprite dimensions
-dw JynxPicFront
-dw JynxPicBack
-; attacks known at lvl 0
-db POUND
-db LOVELY_KISS
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20
- tmlearn 29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 44,46
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/kabuto.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KABUTO ; pokedex id
-db 30 ; base hp
-db 80 ; base attack
-db 90 ; base defense
-db 55 ; base speed
-db 45 ; base special
-db ROCK ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 119 ; base exp yield
-INCBIN "gfx/pokemon/front/kabuto.pic",0,1 ; 55, sprite dimensions
-dw KabutoPicFront
-dw KabutoPicBack
-; attacks known at lvl 0
-db SCRATCH
-db HARDEN
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/kabutops.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KABUTOPS ; pokedex id
-db 60 ; base hp
-db 115 ; base attack
-db 105 ; base defense
-db 80 ; base speed
-db 70 ; base special
-db ROCK ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 201 ; base exp yield
-INCBIN "gfx/pokemon/front/kabutops.pic",0,1 ; 66, sprite dimensions
-dw KabutopsPicFront
-dw KabutopsPicBack
-; attacks known at lvl 0
-db SCRATCH
-db HARDEN
-db ABSORB
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,3,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,19,20
- tmlearn 31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/kadabra.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KADABRA ; pokedex id
-db 40 ; base hp
-db 35 ; base attack
-db 30 ; base defense
-db 105 ; base speed
-db 120 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 100 ; catch rate
-db 145 ; base exp yield
-INCBIN "gfx/pokemon/front/kadabra.pic",0,1 ; 66, sprite dimensions
-dw KadabraPicFront
-dw KadabraPicBack
-; attacks known at lvl 0
-db TELEPORT
-db CONFUSION
-db DISABLE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 28,29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 44,45,46
- tmlearn 49,50,55
-db 0 ; padding
--- a/data/baseStats/kakuna.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KAKUNA ; pokedex id
-db 45 ; base hp
-db 25 ; base attack
-db 50 ; base defense
-db 35 ; base speed
-db 25 ; base special
-db BUG ; species type 1
-db POISON ; species type 2
-db 120 ; catch rate
-db 71 ; base exp yield
-INCBIN "gfx/pokemon/front/kakuna.pic",0,1 ; 55, sprite dimensions
-dw KakunaPicFront
-dw KakunaPicBack
-; attacks known at lvl 0
-db HARDEN
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
-db 0 ; padding
--- a/data/baseStats/kangaskhan.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KANGASKHAN ; pokedex id
-db 105 ; base hp
-db 95 ; base attack
-db 80 ; base defense
-db 90 ; base speed
-db 40 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 45 ; catch rate
-db 175 ; base exp yield
-INCBIN "gfx/pokemon/front/kangaskhan.pic",0,1 ; 77, sprite dimensions
-dw KangaskhanPicFront
-dw KangaskhanPicBack
-; attacks known at lvl 0
-db COMET_PUNCH
-db RAGE
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20,24
- tmlearn 25,26,27,31,32
- tmlearn 34,38,40
- tmlearn 44,48
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/kingler.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KINGLER ; pokedex id
-db 55 ; base hp
-db 130 ; base attack
-db 115 ; base defense
-db 75 ; base speed
-db 50 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 60 ; catch rate
-db 206 ; base exp yield
-INCBIN "gfx/pokemon/front/kingler.pic",0,1 ; 77, sprite dimensions
-dw KinglerPicFront
-dw KinglerPicBack
-; attacks known at lvl 0
-db BUBBLE
-db LEER
-db VICEGRIP
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 34
- tmlearn 44
- tmlearn 50,51,53,54
-db 0 ; padding
--- a/data/baseStats/koffing.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KOFFING ; pokedex id
-db 40 ; base hp
-db 65 ; base attack
-db 95 ; base defense
-db 35 ; base speed
-db 60 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 190 ; catch rate
-db 114 ; base exp yield
-INCBIN "gfx/pokemon/front/koffing.pic",0,1 ; 66, sprite dimensions
-dw KoffingPicFront
-dw KoffingPicBack
-; attacks known at lvl 0
-db TACKLE
-db SMOG
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 0
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 34,36,38
- tmlearn 44,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/krabby.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_KRABBY ; pokedex id
-db 30 ; base hp
-db 105 ; base attack
-db 90 ; base defense
-db 50 ; base speed
-db 25 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 225 ; catch rate
-db 115 ; base exp yield
-INCBIN "gfx/pokemon/front/krabby.pic",0,1 ; 55, sprite dimensions
-dw KrabbyPicFront
-dw KrabbyPicBack
-; attacks known at lvl 0
-db BUBBLE
-db LEER
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 31,32
- tmlearn 34
- tmlearn 44
- tmlearn 50,51,53,54
-db 0 ; padding
--- a/data/baseStats/lapras.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_LAPRAS ; pokedex id
-db 130 ; base hp
-db 85 ; base attack
-db 80 ; base defense
-db 60 ; base speed
-db 95 ; base special
-db WATER ; species type 1
-db ICE ; species type 2
-db 45 ; catch rate
-db 219 ; base exp yield
-INCBIN "gfx/pokemon/front/lapras.pic",0,1 ; 77, sprite dimensions
-dw LaprasPicFront
-dw LaprasPicBack
-; attacks known at lvl 0
-db WATER_GUN
-db GROWL
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20,22,23,24
- tmlearn 25,29,31,32
- tmlearn 33,34,40
- tmlearn 44,46
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/lickitung.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_LICKITUNG ; pokedex id
-db 90 ; base hp
-db 55 ; base attack
-db 75 ; base defense
-db 30 ; base speed
-db 60 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 45 ; catch rate
-db 127 ; base exp yield
-INCBIN "gfx/pokemon/front/lickitung.pic",0,1 ; 77, sprite dimensions
-dw LickitungPicFront
-dw LickitungPicBack
-; attacks known at lvl 0
-db WRAP
-db SUPERSONIC
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,3,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20,24
- tmlearn 25,26,27,31,32
- tmlearn 34,38,40
- tmlearn 44
- tmlearn 50,51,53,54
-db 0 ; padding
--- a/data/baseStats/machamp.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MACHAMP ; pokedex id
-db 90 ; base hp
-db 130 ; base attack
-db 80 ; base defense
-db 55 ; base speed
-db 65 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 45 ; catch rate
-db 193 ; base exp yield
-INCBIN "gfx/pokemon/front/machamp.pic",0,1 ; 77, sprite dimensions
-dw MachampPicFront
-dw MachampPicBack
-; attacks known at lvl 0
-db KARATE_CHOP
-db LOW_KICK
-db LEER
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,35,38,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/machoke.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MACHOKE ; pokedex id
-db 80 ; base hp
-db 100 ; base attack
-db 70 ; base defense
-db 45 ; base speed
-db 50 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 90 ; catch rate
-db 146 ; base exp yield
-INCBIN "gfx/pokemon/front/machoke.pic",0,1 ; 77, sprite dimensions
-dw MachokePicFront
-dw MachokePicBack
-; attacks known at lvl 0
-db KARATE_CHOP
-db LOW_KICK
-db LEER
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,35,38,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/machop.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MACHOP ; pokedex id
-db 70 ; base hp
-db 80 ; base attack
-db 50 ; base defense
-db 35 ; base speed
-db 35 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 180 ; catch rate
-db 88 ; base exp yield
-INCBIN "gfx/pokemon/front/machop.pic",0,1 ; 55, sprite dimensions
-dw MachopPicFront
-dw MachopPicBack
-; attacks known at lvl 0
-db KARATE_CHOP
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,35,38,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/magikarp.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MAGIKARP ; pokedex id
-db 20 ; base hp
-db 10 ; base attack
-db 55 ; base defense
-db 80 ; base speed
-db 20 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 255 ; catch rate
-db 20 ; base exp yield
-INCBIN "gfx/pokemon/front/magikarp.pic",0,1 ; 66, sprite dimensions
-dw MagikarpPicFront
-dw MagikarpPicBack
-; attacks known at lvl 0
-db SPLASH
-db 0
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
-db 0 ; padding
--- a/data/baseStats/magmar.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MAGMAR ; pokedex id
-db 65 ; base hp
-db 95 ; base attack
-db 57 ; base defense
-db 93 ; base speed
-db 85 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 45 ; catch rate
-db 167 ; base exp yield
-INCBIN "gfx/pokemon/front/magmar.pic",0,1 ; 66, sprite dimensions
-dw MagmarPicFront
-dw MagmarPicBack
-; attacks known at lvl 0
-db EMBER
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20
- tmlearn 29,30,31,32
- tmlearn 34,35,38,40
- tmlearn 44,46
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/magnemite.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MAGNEMITE ; pokedex id
-db 25 ; base hp
-db 35 ; base attack
-db 70 ; base defense
-db 45 ; base speed
-db 95 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 190 ; catch rate
-db 89 ; base exp yield
-INCBIN "gfx/pokemon/front/magnemite.pic",0,1 ; 55, sprite dimensions
-dw MagnemitePicFront
-dw MagnemitePicBack
-; attacks known at lvl 0
-db TACKLE
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10
- tmlearn 20,24
- tmlearn 25,30,31,32
- tmlearn 33,34,39
- tmlearn 44,45
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/magneton.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MAGNETON ; pokedex id
-db 50 ; base hp
-db 60 ; base attack
-db 95 ; base defense
-db 70 ; base speed
-db 120 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 60 ; catch rate
-db 161 ; base exp yield
-INCBIN "gfx/pokemon/front/magneton.pic",0,1 ; 66, sprite dimensions
-dw MagnetonPicFront
-dw MagnetonPicBack
-; attacks known at lvl 0
-db TACKLE
-db SONICBOOM
-db THUNDERSHOCK
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,15
- tmlearn 20,24
- tmlearn 25,30,31,32
- tmlearn 33,34,39
- tmlearn 44,45
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/mankey.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MANKEY ; pokedex id
-db 40 ; base hp
-db 80 ; base attack
-db 35 ; base defense
-db 70 ; base speed
-db 35 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 190 ; catch rate
-db 74 ; base exp yield
-INCBIN "gfx/pokemon/front/mankey.pic",0,1 ; 55, sprite dimensions
-dw MankeyPicFront
-dw MankeyPicBack
-; attacks known at lvl 0
-db SCRATCH
-db LEER
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,16
- tmlearn 17,18,19,20,24
- tmlearn 25,28,31,32
- tmlearn 34,35,39,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/marowak.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MAROWAK ; pokedex id
-db 60 ; base hp
-db 80 ; base attack
-db 110 ; base defense
-db 45 ; base speed
-db 50 ; base special
-db GROUND ; species type 1
-db GROUND ; species type 2
-db 75 ; catch rate
-db 124 ; base exp yield
-INCBIN "gfx/pokemon/front/marowak.pic",0,1 ; 66, sprite dimensions
-dw MarowakPicFront
-dw MarowakPicBack
-; attacks known at lvl 0
-db BONE_CLUB
-db GROWL
-db LEER
-db FOCUS_ENERGY
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,38,40
- tmlearn 44
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/meowth.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MEOWTH ; pokedex id
-db 40 ; base hp
-db 45 ; base attack
-db 35 ; base defense
-db 90 ; base speed
-db 40 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 255 ; catch rate
-db 69 ; base exp yield
-INCBIN "gfx/pokemon/front/meowth.pic",0,1 ; 55, sprite dimensions
-dw MeowthPicFront
-dw MeowthPicBack
-; attacks known at lvl 0
-db SCRATCH
-db GROWL
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,16
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/metapod.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_METAPOD ; pokedex id
-db 50 ; base hp
-db 20 ; base attack
-db 55 ; base defense
-db 30 ; base speed
-db 25 ; base special
-db BUG ; species type 1
-db BUG ; species type 2
-db 120 ; catch rate
-db 72 ; base exp yield
-INCBIN "gfx/pokemon/front/metapod.pic",0,1 ; 55, sprite dimensions
-dw MetapodPicFront
-dw MetapodPicBack
-; attacks known at lvl 0
-db HARDEN
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
-db 0 ; padding
--- a/data/baseStats/mew.asm
+++ /dev/null
@@ -1,29 +1,0 @@
-MewBaseStats::
-db DEX_MEW ; pokedex id
-db 100 ; base hp
-db 100 ; base attack
-db 100 ; base defense
-db 100 ; base speed
-db 100 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 45 ; catch rate
-db 64 ; base exp yield
-INCBIN "gfx/pokemon/front/mew.pic",0,1 ; 55, sprite dimensions
-dw MewPicFront
-dw MewPicBack
-; attacks known at lvl 0
-db POUND
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,2,3,4,5,6,7,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20,21,22,23,24
- tmlearn 25,26,27,28,29,30,31,32
- tmlearn 33,34,35,36,37,38,39,40
- tmlearn 41,42,43,44,45,46,47,48
- tmlearn 49,50,51,52,53,54,55,56
-db %11111111 ; usually spacing
--- a/data/baseStats/mewtwo.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MEWTWO ; pokedex id
-db 106 ; base hp
-db 110 ; base attack
-db 90 ; base defense
-db 130 ; base speed
-db 154 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 3 ; catch rate
-db 220 ; base exp yield
-INCBIN "gfx/pokemon/front/mewtwo.pic",0,1 ; 77, sprite dimensions
-dw MewtwoPicFront
-dw MewtwoPicBack
-; attacks known at lvl 0
-db CONFUSION
-db DISABLE
-db SWIFT
-db PSYCHIC_M
-db 5 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,35,36,38,40
- tmlearn 44,45,46
- tmlearn 49,50,54,55
-db 0 ; padding
--- a/data/baseStats/moltres.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MOLTRES ; pokedex id
-db 90 ; base hp
-db 100 ; base attack
-db 90 ; base defense
-db 90 ; base speed
-db 125 ; base special
-db FIRE ; species type 1
-db FLYING ; species type 2
-db 3 ; catch rate
-db 217 ; base exp yield
-INCBIN "gfx/pokemon/front/moltres.pic",0,1 ; 77, sprite dimensions
-dw MoltresPicFront
-dw MoltresPicBack
-; attacks known at lvl 0
-db PECK
-db FIRE_SPIN
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,38,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/mrmime.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MR_MIME ; pokedex id
-db 40 ; base hp
-db 45 ; base attack
-db 65 ; base defense
-db 90 ; base speed
-db 100 ; base special
-db PSYCHIC ; species type 1
-db PSYCHIC ; species type 2
-db 45 ; catch rate
-db 136 ; base exp yield
-INCBIN "gfx/pokemon/front/mr.mime.pic",0,1 ; 66, sprite dimensions
-dw MrMimePicFront
-dw MrMimePicBack
-; attacks known at lvl 0
-db CONFUSION
-db BARRIER
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,35,40
- tmlearn 44,45,46
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/muk.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_MUK ; pokedex id
-db 105 ; base hp
-db 105 ; base attack
-db 75 ; base defense
-db 50 ; base speed
-db 65 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 75 ; catch rate
-db 157 ; base exp yield
-INCBIN "gfx/pokemon/front/muk.pic",0,1 ; 77, sprite dimensions
-dw MukPicFront
-dw MukPicBack
-; attacks known at lvl 0
-db POUND
-db DISABLE
-db POISON_GAS
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 15
- tmlearn 20,21,24
- tmlearn 25,31,32
- tmlearn 34,36,38
- tmlearn 44,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/nidoking.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NIDOKING ; pokedex id
-db 81 ; base hp
-db 92 ; base attack
-db 77 ; base defense
-db 85 ; base speed
-db 75 ; base special
-db POISON ; species type 1
-db GROUND ; species type 2
-db 45 ; catch rate
-db 195 ; base exp yield
-INCBIN "gfx/pokemon/front/nidoking.pic",0,1 ; 77, sprite dimensions
-dw NidokingPicFront
-dw NidokingPicBack
-; attacks known at lvl 0
-db TACKLE
-db HORN_ATTACK
-db POISON_STING
-db THRASH
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,7,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20,24
- tmlearn 25,26,27,31,32
- tmlearn 33,34,38,40
- tmlearn 44,48
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/nidoqueen.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NIDOQUEEN ; pokedex id
-db 90 ; base hp
-db 82 ; base attack
-db 87 ; base defense
-db 76 ; base speed
-db 75 ; base special
-db POISON ; species type 1
-db GROUND ; species type 2
-db 45 ; catch rate
-db 194 ; base exp yield
-INCBIN "gfx/pokemon/front/nidoqueen.pic",0,1 ; 77, sprite dimensions
-dw NidoqueenPicFront
-dw NidoqueenPicBack
-; attacks known at lvl 0
-db TACKLE
-db SCRATCH
-db TAIL_WHIP
-db BODY_SLAM
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,7,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20,24
- tmlearn 25,26,27,31,32
- tmlearn 33,34,38,40
- tmlearn 44,48
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/nidoranf.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NIDORAN_F ; pokedex id
-db 55 ; base hp
-db 47 ; base attack
-db 52 ; base defense
-db 41 ; base speed
-db 40 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 235 ; catch rate
-db 59 ; base exp yield
-INCBIN "gfx/pokemon/front/nidoranf.pic",0,1 ; 55, sprite dimensions
-dw NidoranFPicFront
-dw NidoranFPicBack
-; attacks known at lvl 0
-db GROWL
-db TACKLE
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,14
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/nidoranm.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NIDORAN_M ; pokedex id
-db 46 ; base hp
-db 57 ; base attack
-db 40 ; base defense
-db 50 ; base speed
-db 40 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 235 ; catch rate
-db 60 ; base exp yield
-INCBIN "gfx/pokemon/front/nidoranm.pic",0,1 ; 55, sprite dimensions
-dw NidoranMPicFront
-dw NidoranMPicBack
-; attacks known at lvl 0
-db LEER
-db TACKLE
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,14
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/nidorina.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NIDORINA ; pokedex id
-db 70 ; base hp
-db 62 ; base attack
-db 67 ; base defense
-db 56 ; base speed
-db 55 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 120 ; catch rate
-db 117 ; base exp yield
-INCBIN "gfx/pokemon/front/nidorina.pic",0,1 ; 66, sprite dimensions
-dw NidorinaPicFront
-dw NidorinaPicBack
-; attacks known at lvl 0
-db GROWL
-db TACKLE
-db SCRATCH
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/nidorino.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NIDORINO ; pokedex id
-db 61 ; base hp
-db 72 ; base attack
-db 57 ; base defense
-db 65 ; base speed
-db 55 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 120 ; catch rate
-db 118 ; base exp yield
-INCBIN "gfx/pokemon/front/nidorino.pic",0,1 ; 66, sprite dimensions
-dw NidorinoPicFront
-dw NidorinoPicBack
-; attacks known at lvl 0
-db LEER
-db TACKLE
-db HORN_ATTACK
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/ninetales.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_NINETALES ; pokedex id
-db 73 ; base hp
-db 76 ; base attack
-db 75 ; base defense
-db 100 ; base speed
-db 100 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 75 ; catch rate
-db 178 ; base exp yield
-INCBIN "gfx/pokemon/front/ninetales.pic",0,1 ; 77, sprite dimensions
-dw NinetalesPicFront
-dw NinetalesPicBack
-; attacks known at lvl 0
-db EMBER
-db TAIL_WHIP
-db QUICK_ATTACK
-db ROAR
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 28,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/oddish.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ODDISH ; pokedex id
-db 45 ; base hp
-db 50 ; base attack
-db 55 ; base defense
-db 30 ; base speed
-db 75 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 255 ; catch rate
-db 78 ; base exp yield
-INCBIN "gfx/pokemon/front/oddish.pic",0,1 ; 55, sprite dimensions
-dw OddishPicFront
-dw OddishPicBack
-; attacks known at lvl 0
-db ABSORB
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/omanyte.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_OMANYTE ; pokedex id
-db 35 ; base hp
-db 40 ; base attack
-db 100 ; base defense
-db 35 ; base speed
-db 90 ; base special
-db ROCK ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 120 ; base exp yield
-INCBIN "gfx/pokemon/front/omanyte.pic",0,1 ; 55, sprite dimensions
-dw OmanytePicFront
-dw OmanytePicBack
-; attacks known at lvl 0
-db WATER_GUN
-db WITHDRAW
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/omastar.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_OMASTAR ; pokedex id
-db 70 ; base hp
-db 60 ; base attack
-db 125 ; base defense
-db 55 ; base speed
-db 115 ; base special
-db ROCK ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 199 ; base exp yield
-INCBIN "gfx/pokemon/front/omastar.pic",0,1 ; 66, sprite dimensions
-dw OmastarPicFront
-dw OmastarPicBack
-; attacks known at lvl 0
-db WATER_GUN
-db WITHDRAW
-db HORN_ATTACK
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,19,20
- tmlearn 31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/onix.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ONIX ; pokedex id
-db 35 ; base hp
-db 45 ; base attack
-db 160 ; base defense
-db 70 ; base speed
-db 30 ; base special
-db ROCK ; species type 1
-db GROUND ; species type 2
-db 45 ; catch rate
-db 108 ; base exp yield
-INCBIN "gfx/pokemon/front/onix.pic",0,1 ; 77, sprite dimensions
-dw OnixPicFront
-dw OnixPicBack
-; attacks known at lvl 0
-db TACKLE
-db SCREECH
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 26,27,28,31,32
- tmlearn 34,36,40
- tmlearn 44,47,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/paras.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PARAS ; pokedex id
-db 35 ; base hp
-db 70 ; base attack
-db 55 ; base defense
-db 25 ; base speed
-db 55 ; base special
-db BUG ; species type 1
-db GRASS ; species type 2
-db 190 ; catch rate
-db 70 ; base exp yield
-INCBIN "gfx/pokemon/front/paras.pic",0,1 ; 55, sprite dimensions
-dw ParasPicFront
-dw ParasPicBack
-; attacks known at lvl 0
-db SCRATCH
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 28,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/parasect.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PARASECT ; pokedex id
-db 60 ; base hp
-db 95 ; base attack
-db 80 ; base defense
-db 30 ; base speed
-db 80 ; base special
-db BUG ; species type 1
-db GRASS ; species type 2
-db 75 ; catch rate
-db 128 ; base exp yield
-INCBIN "gfx/pokemon/front/parasect.pic",0,1 ; 77, sprite dimensions
-dw ParasectPicFront
-dw ParasectPicBack
-; attacks known at lvl 0
-db SCRATCH
-db STUN_SPORE
-db LEECH_LIFE
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 28,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/persian.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PERSIAN ; pokedex id
-db 65 ; base hp
-db 70 ; base attack
-db 60 ; base defense
-db 115 ; base speed
-db 65 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 90 ; catch rate
-db 148 ; base exp yield
-INCBIN "gfx/pokemon/front/persian.pic",0,1 ; 77, sprite dimensions
-dw PersianPicFront
-dw PersianPicBack
-; attacks known at lvl 0
-db SCRATCH
-db GROWL
-db BITE
-db SCREECH
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,15,16
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/pidgeot.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PIDGEOT ; pokedex id
-db 83 ; base hp
-db 80 ; base attack
-db 75 ; base defense
-db 91 ; base speed
-db 70 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 172 ; base exp yield
-INCBIN "gfx/pokemon/front/pidgeot.pic",0,1 ; 77, sprite dimensions
-dw PidgeotPicFront
-dw PidgeotPicBack
-; attacks known at lvl 0
-db GUST
-db SAND_ATTACK
-db QUICK_ATTACK
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/pidgeotto.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PIDGEOTTO ; pokedex id
-db 63 ; base hp
-db 60 ; base attack
-db 55 ; base defense
-db 71 ; base speed
-db 50 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 120 ; catch rate
-db 113 ; base exp yield
-INCBIN "gfx/pokemon/front/pidgeotto.pic",0,1 ; 66, sprite dimensions
-dw PidgeottoPicFront
-dw PidgeottoPicBack
-; attacks known at lvl 0
-db GUST
-db SAND_ATTACK
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/pidgey.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PIDGEY ; pokedex id
-db 40 ; base hp
-db 45 ; base attack
-db 40 ; base defense
-db 56 ; base speed
-db 35 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 255 ; catch rate
-db 55 ; base exp yield
-INCBIN "gfx/pokemon/front/pidgey.pic",0,1 ; 55, sprite dimensions
-dw PidgeyPicFront
-dw PidgeyPicBack
-; attacks known at lvl 0
-db GUST
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/pikachu.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PIKACHU ; pokedex id
-db 35 ; base hp
-db 55 ; base attack
-db 30 ; base defense
-db 90 ; base speed
-db 50 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 190 ; catch rate
-db 82 ; base exp yield
-INCBIN "gfx/pokemon/front/pikachu.pic",0,1 ; 55, sprite dimensions
-dw PikachuPicFront
-dw PikachuPicBack
-; attacks known at lvl 0
-db THUNDERSHOCK
-db GROWL
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,16
- tmlearn 17,19,20,24
- tmlearn 25,31,32
- tmlearn 33,34,39,40
- tmlearn 44,45
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/pinsir.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PINSIR ; pokedex id
-db 65 ; base hp
-db 125 ; base attack
-db 100 ; base defense
-db 85 ; base speed
-db 55 ; base special
-db BUG ; species type 1
-db BUG ; species type 2
-db 45 ; catch rate
-db 200 ; base exp yield
-INCBIN "gfx/pokemon/front/pinsir.pic",0,1 ; 77, sprite dimensions
-dw PinsirPicFront
-dw PinsirPicBack
-; attacks known at lvl 0
-db VICEGRIP
-db 0
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 17,19,20
- tmlearn 31,32
- tmlearn 34
- tmlearn 44
- tmlearn 50,51,54
-db 0 ; padding
--- a/data/baseStats/poliwag.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_POLIWAG ; pokedex id
-db 40 ; base hp
-db 50 ; base attack
-db 40 ; base defense
-db 90 ; base speed
-db 40 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 255 ; catch rate
-db 77 ; base exp yield
-INCBIN "gfx/pokemon/front/poliwag.pic",0,1 ; 55, sprite dimensions
-dw PoliwagPicFront
-dw PoliwagPicBack
-; attacks known at lvl 0
-db BUBBLE
-db 0
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 29,31,32
- tmlearn 34,40
- tmlearn 44,46
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/poliwhirl.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_POLIWHIRL ; pokedex id
-db 65 ; base hp
-db 65 ; base attack
-db 65 ; base defense
-db 90 ; base speed
-db 50 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 120 ; catch rate
-db 131 ; base exp yield
-INCBIN "gfx/pokemon/front/poliwhirl.pic",0,1 ; 66, sprite dimensions
-dw PoliwhirlPicFront
-dw PoliwhirlPicBack
-; attacks known at lvl 0
-db BUBBLE
-db HYPNOSIS
-db WATER_GUN
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 17,18,19,20
- tmlearn 26,27,29,31,32
- tmlearn 34,35,40
- tmlearn 44,46
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/poliwrath.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_POLIWRATH ; pokedex id
-db 90 ; base hp
-db 85 ; base attack
-db 95 ; base defense
-db 70 ; base speed
-db 70 ; base special
-db WATER ; species type 1
-db FIGHTING ; species type 2
-db 45 ; catch rate
-db 185 ; base exp yield
-INCBIN "gfx/pokemon/front/poliwrath.pic",0,1 ; 77, sprite dimensions
-dw PoliwrathPicFront
-dw PoliwrathPicBack
-; attacks known at lvl 0
-db HYPNOSIS
-db WATER_GUN
-db DOUBLESLAP
-db BODY_SLAM
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20
- tmlearn 26,27,29,31,32
- tmlearn 34,35,40
- tmlearn 44,46
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/ponyta.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PONYTA ; pokedex id
-db 50 ; base hp
-db 85 ; base attack
-db 55 ; base defense
-db 90 ; base speed
-db 65 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 190 ; catch rate
-db 152 ; base exp yield
-INCBIN "gfx/pokemon/front/ponyta.pic",0,1 ; 66, sprite dimensions
-dw PonytaPicFront
-dw PonytaPicBack
-; attacks known at lvl 0
-db EMBER
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/porygon.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PORYGON ; pokedex id
-db 65 ; base hp
-db 60 ; base attack
-db 70 ; base defense
-db 40 ; base speed
-db 75 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 45 ; catch rate
-db 130 ; base exp yield
-INCBIN "gfx/pokemon/front/porygon.pic",0,1 ; 66, sprite dimensions
-dw PorygonPicFront
-dw PorygonPicBack
-; attacks known at lvl 0
-db TACKLE
-db SHARPEN
-db CONVERSION
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,13,14,15
- tmlearn 20,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,39,40
- tmlearn 44,45,46
- tmlearn 49,50,55
-db 0 ; padding
--- a/data/baseStats/primeape.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PRIMEAPE ; pokedex id
-db 65 ; base hp
-db 105 ; base attack
-db 60 ; base defense
-db 95 ; base speed
-db 60 ; base special
-db FIGHTING ; species type 1
-db FIGHTING ; species type 2
-db 75 ; catch rate
-db 149 ; base exp yield
-INCBIN "gfx/pokemon/front/primeape.pic",0,1 ; 77, sprite dimensions
-dw PrimeapePicFront
-dw PrimeapePicBack
-; attacks known at lvl 0
-db SCRATCH
-db LEER
-db KARATE_CHOP
-db FURY_SWIPES
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15,16
- tmlearn 17,18,19,20,24
- tmlearn 25,28,31,32
- tmlearn 34,35,39,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/psyduck.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_PSYDUCK ; pokedex id
-db 50 ; base hp
-db 52 ; base attack
-db 48 ; base defense
-db 55 ; base speed
-db 50 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 190 ; catch rate
-db 80 ; base exp yield
-INCBIN "gfx/pokemon/front/psyduck.pic",0,1 ; 55, sprite dimensions
-dw PsyduckPicFront
-dw PsyduckPicBack
-; attacks known at lvl 0
-db SCRATCH
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,16
- tmlearn 17,18,19,20
- tmlearn 28,31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/raichu.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_RAICHU ; pokedex id
-db 60 ; base hp
-db 90 ; base attack
-db 55 ; base defense
-db 100 ; base speed
-db 90 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 75 ; catch rate
-db 122 ; base exp yield
-INCBIN "gfx/pokemon/front/raichu.pic",0,1 ; 77, sprite dimensions
-dw RaichuPicFront
-dw RaichuPicBack
-; attacks known at lvl 0
-db THUNDERSHOCK
-db GROWL
-db THUNDER_WAVE
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,15,16
- tmlearn 17,19,20,24
- tmlearn 25,31,32
- tmlearn 33,34,39,40
- tmlearn 44,45
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/rapidash.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_RAPIDASH ; pokedex id
-db 65 ; base hp
-db 100 ; base attack
-db 70 ; base defense
-db 105 ; base speed
-db 80 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 60 ; catch rate
-db 192 ; base exp yield
-INCBIN "gfx/pokemon/front/rapidash.pic",0,1 ; 77, sprite dimensions
-dw RapidashPicFront
-dw RapidashPicBack
-; attacks known at lvl 0
-db EMBER
-db TAIL_WHIP
-db STOMP
-db GROWL
-db 0 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/raticate.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_RATICATE ; pokedex id
-db 55 ; base hp
-db 81 ; base attack
-db 60 ; base defense
-db 97 ; base speed
-db 50 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 90 ; catch rate
-db 116 ; base exp yield
-INCBIN "gfx/pokemon/front/raticate.pic",0,1 ; 66, sprite dimensions
-dw RaticatePicFront
-dw RaticatePicBack
-; attacks known at lvl 0
-db TACKLE
-db TAIL_WHIP
-db QUICK_ATTACK
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20,24
- tmlearn 25,28,31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/rattata.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_RATTATA ; pokedex id
-db 30 ; base hp
-db 56 ; base attack
-db 35 ; base defense
-db 72 ; base speed
-db 25 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 255 ; catch rate
-db 57 ; base exp yield
-INCBIN "gfx/pokemon/front/rattata.pic",0,1 ; 55, sprite dimensions
-dw RattataPicFront
-dw RattataPicBack
-; attacks known at lvl 0
-db TACKLE
-db TAIL_WHIP
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,14
- tmlearn 20,24
- tmlearn 25,28,31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/rhydon.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_RHYDON ; pokedex id
-db 105 ; base hp
-db 130 ; base attack
-db 120 ; base defense
-db 40 ; base speed
-db 45 ; base special
-db GROUND ; species type 1
-db ROCK ; species type 2
-db 60 ; catch rate
-db 204 ; base exp yield
-INCBIN "gfx/pokemon/front/rhydon.pic",0,1 ; 77, sprite dimensions
-dw RhydonPicFront
-dw RhydonPicBack
-; attacks known at lvl 0
-db HORN_ATTACK
-db STOMP
-db TAIL_WHIP
-db FURY_ATTACK
-db 5 ; growth rate
-; learnset
- tmlearn 1,5,6,7,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20,24
- tmlearn 25,26,27,28,31,32
- tmlearn 34,38,40
- tmlearn 44,48
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/rhyhorn.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_RHYHORN ; pokedex id
-db 80 ; base hp
-db 85 ; base attack
-db 95 ; base defense
-db 25 ; base speed
-db 30 ; base special
-db GROUND ; species type 1
-db ROCK ; species type 2
-db 120 ; catch rate
-db 135 ; base exp yield
-INCBIN "gfx/pokemon/front/rhyhorn.pic",0,1 ; 77, sprite dimensions
-dw RhyhornPicFront
-dw RhyhornPicBack
-; attacks known at lvl 0
-db HORN_ATTACK
-db 0
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10
- tmlearn 20,24
- tmlearn 25,26,27,28,31,32
- tmlearn 34,38,40
- tmlearn 44,48
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/sandshrew.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SANDSHREW ; pokedex id
-db 50 ; base hp
-db 75 ; base attack
-db 85 ; base defense
-db 40 ; base speed
-db 30 ; base special
-db GROUND ; species type 1
-db GROUND ; species type 2
-db 255 ; catch rate
-db 93 ; base exp yield
-INCBIN "gfx/pokemon/front/sandshrew.pic",0,1 ; 55, sprite dimensions
-dw SandshrewPicFront
-dw SandshrewPicBack
-; attacks known at lvl 0
-db SCRATCH
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10
- tmlearn 17,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,39,40
- tmlearn 44,48
- tmlearn 50,51,54
-db 0 ; padding
--- a/data/baseStats/sandslash.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SANDSLASH ; pokedex id
-db 75 ; base hp
-db 100 ; base attack
-db 110 ; base defense
-db 65 ; base speed
-db 55 ; base special
-db GROUND ; species type 1
-db GROUND ; species type 2
-db 90 ; catch rate
-db 163 ; base exp yield
-INCBIN "gfx/pokemon/front/sandslash.pic",0,1 ; 66, sprite dimensions
-dw SandslashPicFront
-dw SandslashPicBack
-; attacks known at lvl 0
-db SCRATCH
-db SAND_ATTACK
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 17,19,20
- tmlearn 26,27,28,31,32
- tmlearn 34,39,40
- tmlearn 44,48
- tmlearn 50,51,54
-db 0 ; padding
--- a/data/baseStats/scyther.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SCYTHER ; pokedex id
-db 70 ; base hp
-db 110 ; base attack
-db 80 ; base defense
-db 105 ; base speed
-db 55 ; base special
-db BUG ; species type 1
-db FLYING ; species type 2
-db 45 ; catch rate
-db 187 ; base exp yield
-INCBIN "gfx/pokemon/front/scyther.pic",0,1 ; 77, sprite dimensions
-dw ScytherPicFront
-dw ScytherPicBack
-; attacks known at lvl 0
-db QUICK_ATTACK
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/seadra.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SEADRA ; pokedex id
-db 55 ; base hp
-db 65 ; base attack
-db 95 ; base defense
-db 85 ; base speed
-db 95 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 75 ; catch rate
-db 155 ; base exp yield
-INCBIN "gfx/pokemon/front/seadra.pic",0,1 ; 66, sprite dimensions
-dw SeadraPicFront
-dw SeadraPicBack
-; attacks known at lvl 0
-db BUBBLE
-db SMOKESCREEN
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/seaking.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SEAKING ; pokedex id
-db 80 ; base hp
-db 92 ; base attack
-db 65 ; base defense
-db 68 ; base speed
-db 80 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 60 ; catch rate
-db 170 ; base exp yield
-INCBIN "gfx/pokemon/front/seaking.pic",0,1 ; 77, sprite dimensions
-dw SeakingPicFront
-dw SeakingPicBack
-; attacks known at lvl 0
-db PECK
-db TAIL_WHIP
-db SUPERSONIC
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,7
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/seel.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SEEL ; pokedex id
-db 65 ; base hp
-db 45 ; base attack
-db 55 ; base defense
-db 45 ; base speed
-db 70 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 190 ; catch rate
-db 100 ; base exp yield
-INCBIN "gfx/pokemon/front/seel.pic",0,1 ; 66, sprite dimensions
-dw SeelPicFront
-dw SeelPicBack
-; attacks known at lvl 0
-db HEADBUTT
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,11,12,13,14,16
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/shellder.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SHELLDER ; pokedex id
-db 30 ; base hp
-db 65 ; base attack
-db 100 ; base defense
-db 40 ; base speed
-db 45 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 190 ; catch rate
-db 97 ; base exp yield
-INCBIN "gfx/pokemon/front/shellder.pic",0,1 ; 55, sprite dimensions
-dw ShellderPicFront
-dw ShellderPicBack
-; attacks known at lvl 0
-db TACKLE
-db WITHDRAW
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,11,12,13,14
- tmlearn 20
- tmlearn 30,31,32
- tmlearn 33,34,36,39
- tmlearn 44,47
- tmlearn 49,50,53
-db 0 ; padding
--- a/data/baseStats/slowbro.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SLOWBRO ; pokedex id
-db 95 ; base hp
-db 75 ; base attack
-db 110 ; base defense
-db 30 ; base speed
-db 80 ; base special
-db WATER ; species type 1
-db PSYCHIC ; species type 2
-db 75 ; catch rate
-db 164 ; base exp yield
-INCBIN "gfx/pokemon/front/slowbro.pic",0,1 ; 77, sprite dimensions
-dw SlowbroPicFront
-dw SlowbroPicBack
-; attacks known at lvl 0
-db CONFUSION
-db DISABLE
-db HEADBUTT
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20
- tmlearn 26,27,28,29,30,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44,45,46
- tmlearn 49,50,53,54,55
-db 0 ; padding
--- a/data/baseStats/slowpoke.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SLOWPOKE ; pokedex id
-db 90 ; base hp
-db 65 ; base attack
-db 65 ; base defense
-db 15 ; base speed
-db 40 ; base special
-db WATER ; species type 1
-db PSYCHIC ; species type 2
-db 190 ; catch rate
-db 99 ; base exp yield
-INCBIN "gfx/pokemon/front/slowpoke.pic",0,1 ; 55, sprite dimensions
-dw SlowpokePicFront
-dw SlowpokePicBack
-; attacks known at lvl 0
-db CONFUSION
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14,16
- tmlearn 20
- tmlearn 26,27,28,29,30,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44,45,46
- tmlearn 49,50,53,54,55
-db 0 ; padding
--- a/data/baseStats/snorlax.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SNORLAX ; pokedex id
-db 160 ; base hp
-db 110 ; base attack
-db 65 ; base defense
-db 30 ; base speed
-db 65 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 25 ; catch rate
-db 154 ; base exp yield
-INCBIN "gfx/pokemon/front/snorlax.pic",0,1 ; 77, sprite dimensions
-dw SnorlaxPicFront
-dw SnorlaxPicBack
-; attacks known at lvl 0
-db HEADBUTT
-db AMNESIA
-db REST
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15,16
- tmlearn 17,18,19,20,22,24
- tmlearn 25,26,27,29,31,32
- tmlearn 33,34,35,36,38,40
- tmlearn 44,46,48
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/spearow.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SPEAROW ; pokedex id
-db 40 ; base hp
-db 60 ; base attack
-db 30 ; base defense
-db 70 ; base speed
-db 31 ; base special
-db NORMAL ; species type 1
-db FLYING ; species type 2
-db 255 ; catch rate
-db 58 ; base exp yield
-INCBIN "gfx/pokemon/front/spearow.pic",0,1 ; 55, sprite dimensions
-dw SpearowPicFront
-dw SpearowPicBack
-; attacks known at lvl 0
-db PECK
-db GROWL
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10
- tmlearn 20
- tmlearn 31,32
- tmlearn 34,39
- tmlearn 43,44
- tmlearn 50,52
-db 0 ; padding
--- a/data/baseStats/squirtle.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_SQUIRTLE ; pokedex id
-db 44 ; base hp
-db 48 ; base attack
-db 65 ; base defense
-db 43 ; base speed
-db 50 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 66 ; base exp yield
-INCBIN "gfx/pokemon/front/squirtle.pic",0,1 ; 55, sprite dimensions
-dw SquirtlePicFront
-dw SquirtlePicBack
-; attacks known at lvl 0
-db TACKLE
-db TAIL_WHIP
-db 0
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 17,18,19,20
- tmlearn 28,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/starmie.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_STARMIE ; pokedex id
-db 60 ; base hp
-db 75 ; base attack
-db 85 ; base defense
-db 115 ; base speed
-db 100 ; base special
-db WATER ; species type 1
-db PSYCHIC ; species type 2
-db 60 ; catch rate
-db 207 ; base exp yield
-INCBIN "gfx/pokemon/front/starmie.pic",0,1 ; 66, sprite dimensions
-dw StarmiePicFront
-dw StarmiePicBack
-; attacks known at lvl 0
-db TACKLE
-db WATER_GUN
-db HARDEN
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,39,40
- tmlearn 44,45,46
- tmlearn 49,50,53,55
-db 0 ; padding
--- a/data/baseStats/staryu.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_STARYU ; pokedex id
-db 30 ; base hp
-db 45 ; base attack
-db 55 ; base defense
-db 85 ; base speed
-db 70 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 225 ; catch rate
-db 106 ; base exp yield
-INCBIN "gfx/pokemon/front/staryu.pic",0,1 ; 66, sprite dimensions
-dw StaryuPicFront
-dw StaryuPicBack
-; attacks known at lvl 0
-db TACKLE
-db 0
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10,11,12,13,14
- tmlearn 20,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,39,40
- tmlearn 44,45,46
- tmlearn 49,50,53,55
-db 0 ; padding
--- a/data/baseStats/tangela.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_TANGELA ; pokedex id
-db 65 ; base hp
-db 55 ; base attack
-db 115 ; base defense
-db 60 ; base speed
-db 100 ; base special
-db GRASS ; species type 1
-db GRASS ; species type 2
-db 45 ; catch rate
-db 166 ; base exp yield
-INCBIN "gfx/pokemon/front/tangela.pic",0,1 ; 66, sprite dimensions
-dw TangelaPicFront
-dw TangelaPicBack
-; attacks known at lvl 0
-db CONSTRICT
-db BIND
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 34,40
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/tauros.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_TAUROS ; pokedex id
-db 75 ; base hp
-db 100 ; base attack
-db 95 ; base defense
-db 110 ; base speed
-db 70 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 45 ; catch rate
-db 211 ; base exp yield
-INCBIN "gfx/pokemon/front/tauros.pic",0,1 ; 77, sprite dimensions
-dw TaurosPicFront
-dw TaurosPicBack
-; attacks known at lvl 0
-db TACKLE
-db 0
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 6,7,8
- tmlearn 9,10,13,14,15
- tmlearn 20,24
- tmlearn 25,26,27,31,32
- tmlearn 34,38,40
- tmlearn 44
- tmlearn 50,54
-db 0 ; padding
--- a/data/baseStats/tentacool.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_TENTACOOL ; pokedex id
-db 40 ; base hp
-db 40 ; base attack
-db 35 ; base defense
-db 70 ; base speed
-db 100 ; base special
-db WATER ; species type 1
-db POISON ; species type 2
-db 190 ; catch rate
-db 105 ; base exp yield
-INCBIN "gfx/pokemon/front/tentacool.pic",0,1 ; 55, sprite dimensions
-dw TentacoolPicFront
-dw TentacoolPicBack
-; attacks known at lvl 0
-db ACID
-db 0
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10,11,12,13,14
- tmlearn 20,21
- tmlearn 31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,51,53
-db 0 ; padding
--- a/data/baseStats/tentacruel.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_TENTACRUEL ; pokedex id
-db 80 ; base hp
-db 70 ; base attack
-db 65 ; base defense
-db 100 ; base speed
-db 120 ; base special
-db WATER ; species type 1
-db POISON ; species type 2
-db 60 ; catch rate
-db 205 ; base exp yield
-INCBIN "gfx/pokemon/front/tentacruel.pic",0,1 ; 66, sprite dimensions
-dw TentacruelPicFront
-dw TentacruelPicBack
-; attacks known at lvl 0
-db ACID
-db SUPERSONIC
-db WRAP
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20,21
- tmlearn 31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,51,53
-db 0 ; padding
--- a/data/baseStats/vaporeon.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VAPOREON ; pokedex id
-db 130 ; base hp
-db 65 ; base attack
-db 60 ; base defense
-db 65 ; base speed
-db 110 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 196 ; base exp yield
-INCBIN "gfx/pokemon/front/vaporeon.pic",0,1 ; 66, sprite dimensions
-dw VaporeonPicFront
-dw VaporeonPicBack
-; attacks known at lvl 0
-db TACKLE
-db SAND_ATTACK
-db QUICK_ATTACK
-db WATER_GUN
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 20
- tmlearn 31,32
- tmlearn 33,34,39,40
- tmlearn 44
- tmlearn 50,53
-db 0 ; padding
--- a/data/baseStats/venomoth.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VENOMOTH ; pokedex id
-db 70 ; base hp
-db 65 ; base attack
-db 60 ; base defense
-db 90 ; base speed
-db 90 ; base special
-db BUG ; species type 1
-db POISON ; species type 2
-db 75 ; catch rate
-db 138 ; base exp yield
-INCBIN "gfx/pokemon/front/venomoth.pic",0,1 ; 77, sprite dimensions
-dw VenomothPicFront
-dw VenomothPicBack
-; attacks known at lvl 0
-db TACKLE
-db DISABLE
-db POISONPOWDER
-db LEECH_LIFE
-db 0 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 29,30,31,32
- tmlearn 33,34,39
- tmlearn 44,46
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/venonat.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VENONAT ; pokedex id
-db 60 ; base hp
-db 55 ; base attack
-db 50 ; base defense
-db 45 ; base speed
-db 40 ; base special
-db BUG ; species type 1
-db POISON ; species type 2
-db 190 ; catch rate
-db 75 ; base exp yield
-INCBIN "gfx/pokemon/front/venonat.pic",0,1 ; 55, sprite dimensions
-dw VenonatPicFront
-dw VenonatPicBack
-; attacks known at lvl 0
-db TACKLE
-db DISABLE
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 29,31,32
- tmlearn 33,34
- tmlearn 44,46
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/venusaur.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VENUSAUR ; pokedex id
-db 80 ; base hp
-db 82 ; base attack
-db 83 ; base defense
-db 80 ; base speed
-db 100 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 208 ; base exp yield
-INCBIN "gfx/pokemon/front/venusaur.pic",0,1 ; 77, sprite dimensions
-dw VenusaurPicFront
-dw VenusaurPicBack
-; attacks known at lvl 0
-db TACKLE
-db GROWL
-db LEECH_SEED
-db VINE_WHIP
-db 3 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/victreebel.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VICTREEBEL ; pokedex id
-db 80 ; base hp
-db 105 ; base attack
-db 65 ; base defense
-db 70 ; base speed
-db 100 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 191 ; base exp yield
-INCBIN "gfx/pokemon/front/victreebel.pic",0,1 ; 77, sprite dimensions
-dw VictreebelPicFront
-dw VictreebelPicBack
-; attacks known at lvl 0
-db SLEEP_POWDER
-db STUN_SPORE
-db ACID
-db RAZOR_LEAF
-db 3 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/vileplume.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VILEPLUME ; pokedex id
-db 75 ; base hp
-db 80 ; base attack
-db 85 ; base defense
-db 50 ; base speed
-db 100 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 45 ; catch rate
-db 184 ; base exp yield
-INCBIN "gfx/pokemon/front/vileplume.pic",0,1 ; 77, sprite dimensions
-dw VileplumePicFront
-dw VileplumePicBack
-; attacks known at lvl 0
-db STUN_SPORE
-db SLEEP_POWDER
-db ACID
-db PETAL_DANCE
-db 3 ; growth rate
-; learnset
- tmlearn 3,6,8
- tmlearn 9,10,15
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/voltorb.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VOLTORB ; pokedex id
-db 40 ; base hp
-db 30 ; base attack
-db 50 ; base defense
-db 100 ; base speed
-db 55 ; base special
-db ELECTRIC ; species type 1
-db ELECTRIC ; species type 2
-db 190 ; catch rate
-db 103 ; base exp yield
-INCBIN "gfx/pokemon/front/voltorb.pic",0,1 ; 55, sprite dimensions
-dw VoltorbPicFront
-dw VoltorbPicBack
-; attacks known at lvl 0
-db TACKLE
-db SCREECH
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 9
- tmlearn 20,24
- tmlearn 25,30,31,32
- tmlearn 33,34,36,39
- tmlearn 44,45,47
- tmlearn 50,55
-db 0 ; padding
--- a/data/baseStats/vulpix.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_VULPIX ; pokedex id
-db 38 ; base hp
-db 41 ; base attack
-db 40 ; base defense
-db 65 ; base speed
-db 65 ; base special
-db FIRE ; species type 1
-db FIRE ; species type 2
-db 190 ; catch rate
-db 63 ; base exp yield
-INCBIN "gfx/pokemon/front/vulpix.pic",0,1 ; 66, sprite dimensions
-dw VulpixPicFront
-dw VulpixPicBack
-; attacks known at lvl 0
-db EMBER
-db TAIL_WHIP
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6,8
- tmlearn 9,10
- tmlearn 20
- tmlearn 28,31,32
- tmlearn 33,34,38,39,40
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/wartortle.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_WARTORTLE ; pokedex id
-db 59 ; base hp
-db 63 ; base attack
-db 80 ; base defense
-db 58 ; base speed
-db 65 ; base special
-db WATER ; species type 1
-db WATER ; species type 2
-db 45 ; catch rate
-db 143 ; base exp yield
-INCBIN "gfx/pokemon/front/wartortle.pic",0,1 ; 66, sprite dimensions
-dw WartortlePicFront
-dw WartortlePicBack
-; attacks known at lvl 0
-db TACKLE
-db TAIL_WHIP
-db BUBBLE
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14
- tmlearn 17,18,19,20
- tmlearn 28,31,32
- tmlearn 33,34,40
- tmlearn 44
- tmlearn 50,53,54
-db 0 ; padding
--- a/data/baseStats/weedle.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_WEEDLE ; pokedex id
-db 40 ; base hp
-db 35 ; base attack
-db 30 ; base defense
-db 50 ; base speed
-db 20 ; base special
-db BUG ; species type 1
-db POISON ; species type 2
-db 255 ; catch rate
-db 52 ; base exp yield
-INCBIN "gfx/pokemon/front/weedle.pic",0,1 ; 55, sprite dimensions
-dw WeedlePicFront
-dw WeedlePicBack
-; attacks known at lvl 0
-db POISON_STING
-db STRING_SHOT
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
- tmlearn 0
-db 0 ; padding
--- a/data/baseStats/weepinbell.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_WEEPINBELL ; pokedex id
-db 65 ; base hp
-db 90 ; base attack
-db 50 ; base defense
-db 55 ; base speed
-db 85 ; base special
-db GRASS ; species type 1
-db POISON ; species type 2
-db 120 ; catch rate
-db 151 ; base exp yield
-INCBIN "gfx/pokemon/front/weepinbell.pic",0,1 ; 66, sprite dimensions
-dw WeepinbellPicFront
-dw WeepinbellPicBack
-; attacks known at lvl 0
-db VINE_WHIP
-db GROWTH
-db WRAP
-db 0
-db 3 ; growth rate
-; learnset
- tmlearn 3,6
- tmlearn 9,10
- tmlearn 20,21,22
- tmlearn 31,32
- tmlearn 33,34
- tmlearn 44
- tmlearn 50,51
-db 0 ; padding
--- a/data/baseStats/weezing.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_WEEZING ; pokedex id
-db 65 ; base hp
-db 90 ; base attack
-db 120 ; base defense
-db 60 ; base speed
-db 85 ; base special
-db POISON ; species type 1
-db POISON ; species type 2
-db 60 ; catch rate
-db 173 ; base exp yield
-INCBIN "gfx/pokemon/front/weezing.pic",0,1 ; 77, sprite dimensions
-dw WeezingPicFront
-dw WeezingPicBack
-; attacks known at lvl 0
-db TACKLE
-db SMOG
-db SLUDGE
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 6
- tmlearn 15
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 34,36,38
- tmlearn 44,47
- tmlearn 50
-db 0 ; padding
--- a/data/baseStats/wigglytuff.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_WIGGLYTUFF ; pokedex id
-db 140 ; base hp
-db 70 ; base attack
-db 45 ; base defense
-db 45 ; base speed
-db 50 ; base special
-db NORMAL ; species type 1
-db NORMAL ; species type 2
-db 50 ; catch rate
-db 109 ; base exp yield
-INCBIN "gfx/pokemon/front/wigglytuff.pic",0,1 ; 66, sprite dimensions
-dw WigglytuffPicFront
-dw WigglytuffPicBack
-; attacks known at lvl 0
-db SING
-db DISABLE
-db DEFENSE_CURL
-db DOUBLESLAP
-db 4 ; growth rate
-; learnset
- tmlearn 1,5,6,8
- tmlearn 9,10,11,12,13,14,15
- tmlearn 17,18,19,20,22,24
- tmlearn 25,29,30,31,32
- tmlearn 33,34,38,40
- tmlearn 44,45,46
- tmlearn 49,50,54,55
-db 0 ; padding
--- a/data/baseStats/zapdos.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ZAPDOS ; pokedex id
-db 90 ; base hp
-db 90 ; base attack
-db 85 ; base defense
-db 100 ; base speed
-db 125 ; base special
-db ELECTRIC ; species type 1
-db FLYING ; species type 2
-db 3 ; catch rate
-db 216 ; base exp yield
-INCBIN "gfx/pokemon/front/zapdos.pic",0,1 ; 77, sprite dimensions
-dw ZapdosPicFront
-dw ZapdosPicBack
-; attacks known at lvl 0
-db THUNDERSHOCK
-db DRILL_PECK
-db 0
-db 0
-db 5 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10,15
- tmlearn 20,24
- tmlearn 25,31,32
- tmlearn 33,34,39
- tmlearn 43,44,45
- tmlearn 50,52,55
-db 0 ; padding
--- a/data/baseStats/zubat.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-db DEX_ZUBAT ; pokedex id
-db 40 ; base hp
-db 45 ; base attack
-db 35 ; base defense
-db 55 ; base speed
-db 40 ; base special
-db POISON ; species type 1
-db FLYING ; species type 2
-db 255 ; catch rate
-db 54 ; base exp yield
-INCBIN "gfx/pokemon/front/zubat.pic",0,1 ; 55, sprite dimensions
-dw ZubatPicFront
-dw ZubatPicBack
-; attacks known at lvl 0
-db LEECH_LIFE
-db 0
-db 0
-db 0
-db 0 ; growth rate
-; learnset
- tmlearn 2,4,6
- tmlearn 9,10
- tmlearn 20,21
- tmlearn 31,32
- tmlearn 34,39
- tmlearn 44
- tmlearn 50
-db 0 ; padding
--- a/data/base_stats.asm
+++ /dev/null
@@ -1,153 +1,0 @@
-BaseStats::
-MonBaseStats::
-INCLUDE "data/baseStats/bulbasaur.asm"
-MonBaseStatsEnd::
-INCLUDE "data/baseStats/ivysaur.asm"
-INCLUDE "data/baseStats/venusaur.asm"
-INCLUDE "data/baseStats/charmander.asm"
-INCLUDE "data/baseStats/charmeleon.asm"
-INCLUDE "data/baseStats/charizard.asm"
-INCLUDE "data/baseStats/squirtle.asm"
-INCLUDE "data/baseStats/wartortle.asm"
-INCLUDE "data/baseStats/blastoise.asm"
-INCLUDE "data/baseStats/caterpie.asm"
-INCLUDE "data/baseStats/metapod.asm"
-INCLUDE "data/baseStats/butterfree.asm"
-INCLUDE "data/baseStats/weedle.asm"
-INCLUDE "data/baseStats/kakuna.asm"
-INCLUDE "data/baseStats/beedrill.asm"
-INCLUDE "data/baseStats/pidgey.asm"
-INCLUDE "data/baseStats/pidgeotto.asm"
-INCLUDE "data/baseStats/pidgeot.asm"
-INCLUDE "data/baseStats/rattata.asm"
-INCLUDE "data/baseStats/raticate.asm"
-INCLUDE "data/baseStats/spearow.asm"
-INCLUDE "data/baseStats/fearow.asm"
-INCLUDE "data/baseStats/ekans.asm"
-INCLUDE "data/baseStats/arbok.asm"
-INCLUDE "data/baseStats/pikachu.asm"
-INCLUDE "data/baseStats/raichu.asm"
-INCLUDE "data/baseStats/sandshrew.asm"
-INCLUDE "data/baseStats/sandslash.asm"
-INCLUDE "data/baseStats/nidoranf.asm"
-INCLUDE "data/baseStats/nidorina.asm"
-INCLUDE "data/baseStats/nidoqueen.asm"
-INCLUDE "data/baseStats/nidoranm.asm"
-INCLUDE "data/baseStats/nidorino.asm"
-INCLUDE "data/baseStats/nidoking.asm"
-INCLUDE "data/baseStats/clefairy.asm"
-INCLUDE "data/baseStats/clefable.asm"
-INCLUDE "data/baseStats/vulpix.asm"
-INCLUDE "data/baseStats/ninetales.asm"
-INCLUDE "data/baseStats/jigglypuff.asm"
-INCLUDE "data/baseStats/wigglytuff.asm"
-INCLUDE "data/baseStats/zubat.asm"
-INCLUDE "data/baseStats/golbat.asm"
-INCLUDE "data/baseStats/oddish.asm"
-INCLUDE "data/baseStats/gloom.asm"
-INCLUDE "data/baseStats/vileplume.asm"
-INCLUDE "data/baseStats/paras.asm"
-INCLUDE "data/baseStats/parasect.asm"
-INCLUDE "data/baseStats/venonat.asm"
-INCLUDE "data/baseStats/venomoth.asm"
-INCLUDE "data/baseStats/diglett.asm"
-INCLUDE "data/baseStats/dugtrio.asm"
-INCLUDE "data/baseStats/meowth.asm"
-INCLUDE "data/baseStats/persian.asm"
-INCLUDE "data/baseStats/psyduck.asm"
-INCLUDE "data/baseStats/golduck.asm"
-INCLUDE "data/baseStats/mankey.asm"
-INCLUDE "data/baseStats/primeape.asm"
-INCLUDE "data/baseStats/growlithe.asm"
-INCLUDE "data/baseStats/arcanine.asm"
-INCLUDE "data/baseStats/poliwag.asm"
-INCLUDE "data/baseStats/poliwhirl.asm"
-INCLUDE "data/baseStats/poliwrath.asm"
-INCLUDE "data/baseStats/abra.asm"
-INCLUDE "data/baseStats/kadabra.asm"
-INCLUDE "data/baseStats/alakazam.asm"
-INCLUDE "data/baseStats/machop.asm"
-INCLUDE "data/baseStats/machoke.asm"
-INCLUDE "data/baseStats/machamp.asm"
-INCLUDE "data/baseStats/bellsprout.asm"
-INCLUDE "data/baseStats/weepinbell.asm"
-INCLUDE "data/baseStats/victreebel.asm"
-INCLUDE "data/baseStats/tentacool.asm"
-INCLUDE "data/baseStats/tentacruel.asm"
-INCLUDE "data/baseStats/geodude.asm"
-INCLUDE "data/baseStats/graveler.asm"
-INCLUDE "data/baseStats/golem.asm"
-INCLUDE "data/baseStats/ponyta.asm"
-INCLUDE "data/baseStats/rapidash.asm"
-INCLUDE "data/baseStats/slowpoke.asm"
-INCLUDE "data/baseStats/slowbro.asm"
-INCLUDE "data/baseStats/magnemite.asm"
-INCLUDE "data/baseStats/magneton.asm"
-INCLUDE "data/baseStats/farfetchd.asm"
-INCLUDE "data/baseStats/doduo.asm"
-INCLUDE "data/baseStats/dodrio.asm"
-INCLUDE "data/baseStats/seel.asm"
-INCLUDE "data/baseStats/dewgong.asm"
-INCLUDE "data/baseStats/grimer.asm"
-INCLUDE "data/baseStats/muk.asm"
-INCLUDE "data/baseStats/shellder.asm"
-INCLUDE "data/baseStats/cloyster.asm"
-INCLUDE "data/baseStats/gastly.asm"
-INCLUDE "data/baseStats/haunter.asm"
-INCLUDE "data/baseStats/gengar.asm"
-INCLUDE "data/baseStats/onix.asm"
-INCLUDE "data/baseStats/drowzee.asm"
-INCLUDE "data/baseStats/hypno.asm"
-INCLUDE "data/baseStats/krabby.asm"
-INCLUDE "data/baseStats/kingler.asm"
-INCLUDE "data/baseStats/voltorb.asm"
-INCLUDE "data/baseStats/electrode.asm"
-INCLUDE "data/baseStats/exeggcute.asm"
-INCLUDE "data/baseStats/exeggutor.asm"
-INCLUDE "data/baseStats/cubone.asm"
-INCLUDE "data/baseStats/marowak.asm"
-INCLUDE "data/baseStats/hitmonlee.asm"
-INCLUDE "data/baseStats/hitmonchan.asm"
-INCLUDE "data/baseStats/lickitung.asm"
-INCLUDE "data/baseStats/koffing.asm"
-INCLUDE "data/baseStats/weezing.asm"
-INCLUDE "data/baseStats/rhyhorn.asm"
-INCLUDE "data/baseStats/rhydon.asm"
-INCLUDE "data/baseStats/chansey.asm"
-INCLUDE "data/baseStats/tangela.asm"
-INCLUDE "data/baseStats/kangaskhan.asm"
-INCLUDE "data/baseStats/horsea.asm"
-INCLUDE "data/baseStats/seadra.asm"
-INCLUDE "data/baseStats/goldeen.asm"
-INCLUDE "data/baseStats/seaking.asm"
-INCLUDE "data/baseStats/staryu.asm"
-INCLUDE "data/baseStats/starmie.asm"
-INCLUDE "data/baseStats/mrmime.asm"
-INCLUDE "data/baseStats/scyther.asm"
-INCLUDE "data/baseStats/jynx.asm"
-INCLUDE "data/baseStats/electabuzz.asm"
-INCLUDE "data/baseStats/magmar.asm"
-INCLUDE "data/baseStats/pinsir.asm"
-INCLUDE "data/baseStats/tauros.asm"
-INCLUDE "data/baseStats/magikarp.asm"
-INCLUDE "data/baseStats/gyarados.asm"
-INCLUDE "data/baseStats/lapras.asm"
-INCLUDE "data/baseStats/ditto.asm"
-INCLUDE "data/baseStats/eevee.asm"
-INCLUDE "data/baseStats/vaporeon.asm"
-INCLUDE "data/baseStats/jolteon.asm"
-INCLUDE "data/baseStats/flareon.asm"
-INCLUDE "data/baseStats/porygon.asm"
-INCLUDE "data/baseStats/omanyte.asm"
-INCLUDE "data/baseStats/omastar.asm"
-INCLUDE "data/baseStats/kabuto.asm"
-INCLUDE "data/baseStats/kabutops.asm"
-INCLUDE "data/baseStats/aerodactyl.asm"
-INCLUDE "data/baseStats/snorlax.asm"
-INCLUDE "data/baseStats/articuno.asm"
-INCLUDE "data/baseStats/zapdos.asm"
-INCLUDE "data/baseStats/moltres.asm"
-INCLUDE "data/baseStats/dratini.asm"
-INCLUDE "data/baseStats/dragonair.asm"
-INCLUDE "data/baseStats/dragonite.asm"
-INCLUDE "data/baseStats/mewtwo.asm"
--- /dev/null
+++ b/data/battle/stat_names.asm
@@ -1,0 +1,7 @@
+StatsTextStrings:
+ db "ATTACK@"
+ db "DEFENSE@"
+ db "SPEED@"
+ db "SPECIAL@"
+ db "ACCURACY@"
+ db "EVADE@"
--- a/data/bike_riding_tilesets.asm
+++ /dev/null
@@ -1,2 +1,0 @@
-BikeRidingTilesets::
- db OVERWORLD, FOREST, UNDERGROUND, SHIP_PORT, CAVERN, $FF
--- a/data/bookshelf_tile_ids.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-; format: db tileset id, bookshelf tile id, text id
-BookshelfTileIDs:
- db PLATEAU, $30
- db_tx_pre IndigoPlateauStatues
- db HOUSE, $3D
- db_tx_pre TownMapText
- db HOUSE, $1E
- db_tx_pre BookOrSculptureText
- db MANSION, $32
- db_tx_pre BookOrSculptureText
- db REDS_HOUSE_1, $32
- db_tx_pre BookOrSculptureText
- db LAB, $28
- db_tx_pre BookOrSculptureText
- db LOBBY, $16
- db_tx_pre ElevatorText
- db GYM, $1D
- db_tx_pre BookOrSculptureText
- db DOJO, $1D
- db_tx_pre BookOrSculptureText
- db GATE, $22
- db_tx_pre BookOrSculptureText
- db MART, $54
- db_tx_pre PokemonStuffText
- db MART, $55
- db_tx_pre PokemonStuffText
- db POKECENTER, $54
- db_tx_pre PokemonStuffText
- db POKECENTER, $55
- db_tx_pre PokemonStuffText
- db LOBBY, $50
- db_tx_pre PokemonStuffText
- db LOBBY, $52
- db_tx_pre PokemonStuffText
- db SHIP, $36
- db_tx_pre BookOrSculptureText
- db $FF
--- a/data/collision_tile_ids.asm
+++ /dev/null
@@ -1,82 +1,0 @@
-Underground_Coll::
- db $0b, $0c, $13, $15, $18
- db -1 ; end
-
-Overworld_Coll::
- db $00, $10, $1b, $20, $21, $23, $2c, $2d, $2e, $30, $31, $33, $39, $3c, $3e, $52, $54, $58, $5b
- db -1 ; end
-
-RedsHouse1_Coll::
-RedsHouse2_Coll::
- db $01, $02, $03, $11, $12, $13, $14, $1c, $1a
- db -1 ; end
-
-Mart_Coll::
-Pokecenter_Coll::
- db $11, $1a, $1c, $3c, $5e
- db -1 ; end
-
-Dojo_Coll::
-Gym_Coll::
- db $11, $16, $19, $2b, $3c, $3d, $3f, $4a, $4c, $4d, $03
- db -1 ; end
-
-Forest_Coll::
- db $1e, $20, $2e, $30, $34, $37, $39, $3a, $40, $51, $52, $5a, $5c, $5e, $5f
- db -1 ; end
-
-House_Coll::
- db $01, $12, $14, $28, $32, $37, $44, $54, $5c
- db -1 ; end
-
-ForestGate_Coll::
-Museum_Coll::
-Gate_Coll::
- db $01, $12, $14, $1a, $1c, $37, $38, $3b, $3c, $5e
- db -1 ; end
-
-Ship_Coll::
- db $04, $0d, $17, $1d, $1e, $23, $34, $37, $39, $4a
- db -1 ; end
-
-ShipPort_Coll::
- db $0a, $1a, $32, $3b
- db -1 ; end
-
-Cemetery_Coll::
- db $01, $10, $13, $1b, $22, $42, $52
- db -1 ; end
-
-Interior_Coll::
- db $04, $0f, $15, $1f, $3b, $45, $47, $55, $56
- db -1 ; end
-
-Cavern_Coll::
- db $05, $15, $18, $1a, $20, $21, $22, $2a, $2d, $30
- db -1 ; end
-
- db -1 ; unused
-
-Lobby_Coll::
- db $14, $17, $1a, $1c, $20, $38, $45
- db -1 ; end
-
-Mansion_Coll::
- db $01, $05, $11, $12, $14, $1a, $1c, $2c, $53
- db -1 ; end
-
-Lab_Coll::
- db $0c, $26, $16, $1e, $34, $37
- db -1 ; end
-
-Club_Coll::
- db $0f, $1a, $1f, $26, $28, $29, $2c, $2d, $2e, $2f, $41
- db -1 ; end
-
-Facility_Coll::
- db $01, $10, $11, $13, $1b, $20, $21, $22, $30, $31, $32, $42, $43, $48, $52, $55, $58, $5e
- db -1 ; end
-
-Plateau_Coll::
- db $1b, $23, $2c, $2d, $3b, $45
- db -1 ; end
--- a/data/credit_mons.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-CreditsMons:
- db VENUSAUR
- db ARBOK
- db RHYHORN
- db FEAROW
- db ABRA
- db GRAVELER
- db HITMONLEE
- db TANGELA
- db STARMIE
- db GYARADOS
- db DITTO
- db OMASTAR
- db VILEPLUME
- db NIDOKING
- db PARASECT
--- /dev/null
+++ b/data/credits/credits_mons.asm
@@ -1,0 +1,16 @@
+CreditsMons:
+ db VENUSAUR
+ db ARBOK
+ db RHYHORN
+ db FEAROW
+ db ABRA
+ db GRAVELER
+ db HITMONLEE
+ db TANGELA
+ db STARMIE
+ db GYARADOS
+ db DITTO
+ db OMASTAR
+ db VILEPLUME
+ db NIDOKING
+ db PARASECT
--- /dev/null
+++ b/data/credits/credits_order.asm
@@ -1,0 +1,39 @@
+CreditsOrder:
+; subsequent credits elements will be displayed on separate lines.
+; $FF, $FE, $FD, $FC, $FB, and $FA are commands that are used
+; to go to the next set of credits texts.
+ db CRED_MON, CRED_VERSION, $FF
+ db CRED_DIRECTOR, CRED_TAJIRI, $FF
+ db CRED_PROGRAMMERS, CRED_TA_OOTA, CRED_MORIMOTO, $FD
+ db CRED_PROGRAMMERS, CRED_WATANABE, CRED_MASUDE, CRED_TAMADA, $FE
+ db CRED_CHAR_DESIGN, CRED_SUGIMORI, CRED_NISHIDA, $FF
+ db CRED_MUSIC, CRED_MASUDE, $FD
+ db CRED_SOUND_EFFECTS, CRED_MASUDE, $FE
+ db CRED_GAME_DESIGN, CRED_TAJIRI, $FF
+ db CRED_MONSTER_DESIGN, CRED_SUGIMORI, CRED_NISHIDA, CRED_FUZIWARA, $FD
+ db CRED_MONSTER_DESIGN, CRED_MORIMOTO, CRED_SA_OOTA, CRED_YOSHIKAWA, $FE
+ db CRED_GAME_SCENE, CRED_TAJIRI, $FD
+ db CRED_GAME_SCENE, CRED_TANIGUCHI, CRED_NONOMURA, CRED_ZINNAI, $FE
+ db CRED_PARAM, CRED_NISINO, CRED_TA_NAKAMURA, $FF
+ db CRED_MAP, CRED_TAJIRI, CRED_NISINO, $FD
+ db CRED_MAP, CRED_MATSUSIMA, CRED_NONOMURA, CRED_TANIGUCHI, $FE
+ db CRED_TEST, CRED_KAKEI, CRED_TSUCHIYA, $FD
+ db CRED_TEST, CRED_TA_NAKAMURA, CRED_YUDA, $FE
+ db CRED_SPECIAL, CRED_HISHIDA, CRED_SAKAI, $FD
+ db CRED_SPECIAL, CRED_YAMAGUCHI, CRED_YAMAMOTO, $FC
+ db CRED_SPECIAL, CRED_TOMISAWA, CRED_KAWAMOTO, CRED_TO_OOTA, $FE
+ db CRED_PRODUCERS, CRED_MIYAMOTO, $FD
+ db CRED_PRODUCERS, CRED_KAWAGUCHI, $FC
+ db CRED_PRODUCERS, CRED_ISHIHARA, $FE
+ db CRED_US_STAFF, $FD
+ db CRED_US_COORD, CRED_TILDEN, $FD
+ db CRED_US_COORD, CRED_KAWAKAMI, CRED_HI_NAKAMURA, $FC
+ db CRED_US_COORD, CRED_GIESE, CRED_OSBORNE, $FC
+ db CRED_TRANS, CRED_OGASAWARA, $FD
+ db CRED_PROGRAMMERS, CRED_MURAKAWA, CRED_FUKUI, $FD
+ db CRED_SPECIAL, CRED_IWATA, $FD
+ db CRED_SPECIAL, CRED_HARADA, $FC
+ db CRED_TEST, CRED_PAAD, CRED_CLUB, $FD
+ db CRED_PRODUCER, CRED_IZUSHI, $FD
+ db CRED_EXECUTIVE, CRED_YAMAUCHI, $FF
+ db $FB, $FF, $FA
--- /dev/null
+++ b/data/credits/credits_text.asm
@@ -1,0 +1,199 @@
+CreditsTextPointers:
+ dw CredVersion
+ dw CredTajiri
+ dw CredTaOota
+ dw CredMorimoto
+ dw CredWatanabe
+ dw CredMasuda
+ dw CredNisino
+ dw CredSugimori
+ dw CredNishida
+ dw CredMiyamoto
+ dw CredKawaguchi
+ dw CredIshihara
+ dw CredYamauchi
+ dw CredZinnai
+ dw CredHishida
+ dw CredSakai
+ dw CredYamaguchi
+ dw CredYamamoto
+ dw CredTaniguchi
+ dw CredNonomura
+ dw CredFuziwara
+ dw CredMatsusima
+ dw CredTomisawa
+ dw CredKawamoto
+ dw CredKakei
+ dw CredTsuchiya
+ dw CredTaNakamura
+ dw CredYuda
+ dw CredMon
+ dw CredDirector
+ dw CredProgrammers
+ dw CredCharDesign
+ dw CredMusic
+ dw CredSoundEffects
+ dw CredGameDesign
+ dw CredMonsterDesign
+ dw CredGameScene
+ dw CredParam
+ dw CredMap
+ dw CredTest
+ dw CredSpecial
+ dw CredProducers
+ dw CredProducer
+ dw CredExecutive
+ dw CredTamada
+ dw CredSaOota
+ dw CredYoshikawa
+ dw CredToOota
+ dw CredUSStaff
+ dw CredUSCoord
+ dw CredTilden
+ dw CredKawakami
+ dw CredHiNakamura
+ dw CredGiese
+ dw CredOsborne
+ dw CredTrans
+ dw CredOgasawara
+ dw CredIwata
+ dw CredIzushi
+ dw CredHarada
+ dw CredMurakawa
+ dw CredFukui
+ dw CredClub
+ dw CredPAAD
+
+CredVersion: ; this 1 byte difference makes all bank addresses offset by 1 in the blue version
+IF DEF(_RED)
+ db -8, "RED VERSION STAFF@"
+ENDC
+IF DEF(_BLUE)
+ db -8, "BLUE VERSION STAFF@"
+ENDC
+CredTajiri:
+ db -6, "SATOSHI TAJIRI@"
+CredTaOota:
+ db -6, "TAKENORI OOTA@"
+CredMorimoto:
+ db -7, "SHIGEKI MORIMOTO@"
+CredWatanabe:
+ db -7, "TETSUYA WATANABE@"
+CredMasuda:
+ db -6, "JUNICHI MASUDA@"
+CredNisino:
+ db -5, "KOHJI NISINO@"
+CredSugimori:
+ db -5, "KEN SUGIMORI@"
+CredNishida:
+ db -6, "ATSUKO NISHIDA@"
+CredMiyamoto:
+ db -7, "SHIGERU MIYAMOTO@"
+CredKawaguchi:
+ db -8, "TAKASHI KAWAGUCHI@"
+CredIshihara:
+ db -8, "TSUNEKAZU ISHIHARA@"
+CredYamauchi:
+ db -7, "HIROSHI YAMAUCHI@"
+CredZinnai:
+ db -7, "HIROYUKI ZINNAI@"
+CredHishida:
+ db -7, "TATSUYA HISHIDA@"
+CredSakai:
+ db -6, "YASUHIRO SAKAI@"
+CredYamaguchi:
+ db -7, "WATARU YAMAGUCHI@"
+CredYamamoto:
+ db -8, "KAZUYUKI YAMAMOTO@"
+CredTaniguchi:
+ db -8, "RYOHSUKE TANIGUCHI@"
+CredNonomura:
+ db -8, "FUMIHIRO NONOMURA@"
+CredFuziwara:
+ db -7, "MOTOFUMI FUZIWARA@"
+CredMatsusima:
+ db -7, "KENJI MATSUSIMA@"
+CredTomisawa:
+ db -7, "AKIHITO TOMISAWA@"
+CredKawamoto:
+ db -7, "HIROSHI KAWAMOTO@"
+CredKakei:
+ db -6, "AKIYOSHI KAKEI@"
+CredTsuchiya:
+ db -7, "KAZUKI TSUCHIYA@"
+CredTaNakamura:
+ db -6, "TAKEO NAKAMURA@"
+CredYuda:
+ db -6, "MASAMITSU YUDA@"
+CredMon:
+ db -3, "#MON@"
+CredDirector:
+ db -3, "DIRECTOR@"
+CredProgrammers:
+ db -5, "PROGRAMMERS@"
+CredCharDesign:
+ db -7, "CHARACTER DESIGN@"
+CredMusic:
+ db -2, "MUSIC@"
+CredSoundEffects:
+ db -6, "SOUND EFFECTS@"
+CredGameDesign:
+ db -5, "GAME DESIGN@"
+CredMonsterDesign:
+ db -6, "MONSTER DESIGN@"
+CredGameScene:
+ db -6, "GAME SCENARIO@"
+CredParam:
+ db -8, "PARAMETRIC DESIGN@"
+CredMap:
+ db -4, "MAP DESIGN@"
+CredTest:
+ db -7, "PRODUCT TESTING@"
+CredSpecial:
+ db -6, "SPECIAL THANKS@"
+CredProducers:
+ db -4, "PRODUCERS@"
+CredProducer:
+ db -4, "PRODUCER@"
+CredExecutive:
+ db -8, "EXECUTIVE PRODUCER@"
+CredTamada:
+ db -6, "SOUSUKE TAMADA@"
+CredSaOota:
+ db -5, "SATOSHI OOTA@"
+CredYoshikawa:
+ db -6, "RENA YOSHIKAWA@"
+CredToOota:
+ db -6, "TOMOMICHI OOTA@"
+CredUSStaff:
+ db -7, "US VERSION STAFF@"
+CredUSCoord:
+ db -7, "US COORDINATION@"
+CredTilden:
+ db -5, "GAIL TILDEN@"
+CredKawakami:
+ db -6, "NAOKO KAWAKAMI@"
+CredHiNakamura:
+ db -6, "HIRO NAKAMURA@"
+CredGiese:
+ db -6, "WILLIAM GIESE@"
+CredOsborne:
+ db -5, "SARA OSBORNE@"
+CredTrans:
+ db -7, "TEXT TRANSLATION@"
+CredOgasawara:
+ db -6, "NOB OGASAWARA@"
+CredIwata:
+ db -5, "SATORU IWATA@"
+CredIzushi:
+ db -7, "TAKEHIRO IZUSHI@"
+CredHarada:
+ db -7, "TAKAHIRO HARADA@"
+CredMurakawa:
+ db -7, "TERUKI MURAKAWA@"
+CredFukui:
+ db -5, "KOHTA FUKUI@"
+CredClub:
+ db -9, "NCL SUPER MARIO CLUB@"
+CredPAAD:
+ db -5, "PAAD TESTING@"
--- a/data/credits_order.asm
+++ /dev/null
@@ -1,39 +1,0 @@
-CreditsOrder:
-; subsequent credits elements will be displayed on separate lines.
-; $FF, $FE, $FD, $FC, $FB, and $FA are commands that are used
-; to go to the next set of credits texts.
- db CRED_MON, CRED_VERSION, $FF
- db CRED_DIRECTOR, CRED_TAJIRI, $FF
- db CRED_PROGRAMMERS, CRED_TA_OOTA, CRED_MORIMOTO, $FD
- db CRED_PROGRAMMERS, CRED_WATANABE, CRED_MASUDE, CRED_TAMADA, $FE
- db CRED_CHAR_DESIGN, CRED_SUGIMORI, CRED_NISHIDA, $FF
- db CRED_MUSIC, CRED_MASUDE, $FD
- db CRED_SOUND_EFFECTS, CRED_MASUDE, $FE
- db CRED_GAME_DESIGN, CRED_TAJIRI, $FF
- db CRED_MONSTER_DESIGN, CRED_SUGIMORI, CRED_NISHIDA, CRED_FUZIWARA, $FD
- db CRED_MONSTER_DESIGN, CRED_MORIMOTO, CRED_SA_OOTA, CRED_YOSHIKAWA, $FE
- db CRED_GAME_SCENE, CRED_TAJIRI, $FD
- db CRED_GAME_SCENE, CRED_TANIGUCHI, CRED_NONOMURA, CRED_ZINNAI, $FE
- db CRED_PARAM, CRED_NISINO, CRED_TA_NAKAMURA, $FF
- db CRED_MAP, CRED_TAJIRI, CRED_NISINO, $FD
- db CRED_MAP, CRED_MATSUSIMA, CRED_NONOMURA, CRED_TANIGUCHI, $FE
- db CRED_TEST, CRED_KAKEI, CRED_TSUCHIYA, $FD
- db CRED_TEST, CRED_TA_NAKAMURA, CRED_YUDA, $FE
- db CRED_SPECIAL, CRED_HISHIDA, CRED_SAKAI, $FD
- db CRED_SPECIAL, CRED_YAMAGUCHI, CRED_YAMAMOTO, $FC
- db CRED_SPECIAL, CRED_TOMISAWA, CRED_KAWAMOTO, CRED_TO_OOTA, $FE
- db CRED_PRODUCERS, CRED_MIYAMOTO, $FD
- db CRED_PRODUCERS, CRED_KAWAGUCHI, $FC
- db CRED_PRODUCERS, CRED_ISHIHARA, $FE
- db CRED_US_STAFF, $FD
- db CRED_US_COORD, CRED_TILDEN, $FD
- db CRED_US_COORD, CRED_KAWAKAMI, CRED_HI_NAKAMURA, $FC
- db CRED_US_COORD, CRED_GIESE, CRED_OSBORNE, $FC
- db CRED_TRANS, CRED_OGASAWARA, $FD
- db CRED_PROGRAMMERS, CRED_MURAKAWA, CRED_FUKUI, $FD
- db CRED_SPECIAL, CRED_IWATA, $FD
- db CRED_SPECIAL, CRED_HARADA, $FC
- db CRED_TEST, CRED_PAAD, CRED_CLUB, $FD
- db CRED_PRODUCER, CRED_IZUSHI, $FD
- db CRED_EXECUTIVE, CRED_YAMAUCHI, $FF
- db $FB, $FF, $FA
--- a/data/cries.asm
+++ /dev/null
@@ -1,192 +1,0 @@
-CryData::
- ;$BaseCry, $Pitch, $Length
- db $11, $00, $80; Rhydon
- db $03, $00, $80; Kangaskhan
- db $00, $00, $80; Nidoran♂
- db $19, $CC, $01; Clefairy
- db $10, $00, $80; Spearow
- db $06, $ED, $80; Voltorb
- db $09, $00, $80; Nidoking
- db $1F, $00, $80; Slowbro
- db $0F, $20, $80; Ivysaur
- db $0D, $00, $80; Exeggutor
- db $0C, $00, $80; Lickitung
- db $0B, $00, $80; Exeggcute
- db $05, $00, $80; Grimer
- db $07, $00, $FF; Gengar
- db $01, $00, $80; Nidoran♀
- db $0A, $00, $80; Nidoqueen
- db $19, $00, $80; Cubone
- db $04, $00, $80; Rhyhorn
- db $1B, $00, $80; Lapras
- db $15, $00, $80; Arcanine
- db $1E, $EE, $FF; Mew
- db $17, $00, $80; Gyarados
- db $18, $00, $80; Shellder
- db $1A, $00, $80; Tentacool
- db $1C, $00, $80; Gastly
- db $16, $00, $80; Scyther
- db $1E, $02, $20; Staryu
- db $13, $00, $80; Blastoise
- db $14, $00, $80; Pinsir
- db $12, $00, $80; Tangela
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $1F, $20, $40; Growlithe
- db $17, $FF, $C0; Onix
- db $18, $40, $A0; Fearow
- db $0E, $DF, $04; Pidgey
- db $02, $00, $80; Slowpoke
- db $1C, $A8, $C0; Kadabra
- db $24, $00, $80; Graveler
- db $14, $0A, $C0; Chansey
- db $1F, $48, $60; Machoke
- db $20, $08, $40; Mr.Mime
- db $12, $80, $C0; Hitmonlee
- db $0C, $EE, $C0; Hitmonchan
- db $17, $E0, $10; Arbok
- db $1E, $42, $FF; Parasect
- db $21, $20, $60; Psyduck
- db $0D, $88, $20; Drowzee
- db $12, $E0, $40; Golem
- db $00, $00, $00; MissingNo.
- db $04, $FF, $30; Magmar
- db $00, $00, $00; MissingNo.
- db $06, $8F, $FF; Electabuzz
- db $1C, $20, $C0; Magneton
- db $12, $E6, $DD; Koffing
- db $00, $00, $00; MissingNo.
- db $0A, $DD, $60; Mankey
- db $0C, $88, $C0; Seel
- db $0B, $AA, $01; Diglett
- db $1D, $11, $40; Tauros
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $10, $DD, $01; Farfetch'd
- db $1A, $44, $40; Venonat
- db $0F, $3C, $C0; Dragonite
- db $00, $80, $10; MissingNo.
- db $00, $00, $00; MissingNo.
- db $1D, $E0, $80; MissingNo.
- db $0B, $BB, $01; Doduo
- db $0E, $FF, $FF; Poliwag
- db $0D, $FF, $FF; Jynx
- db $09, $F8, $40; Moltres
- db $09, $80, $40; Articuno
- db $18, $FF, $80; Zapdos
- db $0E, $FF, $FF; Ditto
- db $19, $77, $10; Meowth
- db $20, $20, $E0; Krabby
- db $22, $FF, $40; MissingNo.
- db $00, $00, $00; MissingNo.
- db $0E, $E0, $60; MissingNo.
- db $24, $4F, $10; Vulpix
- db $24, $88, $60; Ninetales
- db $0F, $EE, $01; Pikachu
- db $09, $EE, $08; Raichu
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $0F, $60, $40; Dratini
- db $0F, $40, $80; Dragonair
- db $16, $BB, $40; Kabuto
- db $18, $EE, $01; Kabutops
- db $19, $99, $10; Horsea
- db $19, $3C, $01; Seadra
- db $0F, $40, $C0; MissingNo.
- db $0F, $20, $C0; MissingNo.
- db $00, $20, $40; Sandshrew
- db $00, $FF, $FF; Sandslash
- db $1F, $F0, $01; Omanyte
- db $1F, $FF, $40; Omastar
- db $0E, $FF, $35; Jigglypuff
- db $0E, $68, $60; Wigglytuff
- db $1A, $88, $60; Eevee
- db $1A, $10, $20; Flareon
- db $1A, $3D, $80; Jolteon
- db $1A, $AA, $FF; Vaporeon
- db $1F, $EE, $01; Machop
- db $1D, $E0, $80; Zubat
- db $17, $12, $40; Ekans
- db $1E, $20, $E0; Paras
- db $0E, $77, $60; Poliwhirl
- db $0E, $00, $FF; Poliwrath
- db $15, $EE, $01; Weedle
- db $13, $FF, $01; Kakuna
- db $13, $60, $80; Beedrill
- db $00, $00, $00; MissingNo.
- db $0B, $99, $20; Dodrio
- db $0A, $AF, $40; Primeape
- db $0B, $2A, $10; Dugtrio
- db $1A, $29, $80; Venomoth
- db $0C, $23, $FF; Dewgong
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $16, $80, $20; Caterpie
- db $1C, $CC, $01; Metapod
- db $16, $77, $40; Butterfree
- db $1F, $08, $C0; Machamp
- db $11, $20, $10; MissingNo.
- db $21, $FF, $40; Golduck
- db $0D, $EE, $40; Hypno
- db $1D, $FA, $80; Golbat
- db $1E, $99, $FF; Mewtwo
- db $05, $55, $01; Snorlax
- db $17, $80, $00; Magikarp
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $07, $EF, $FF; Muk
- db $0F, $40, $80; MissingNo.
- db $20, $EE, $E0; Kingler
- db $18, $6F, $E0; Cloyster
- db $00, $00, $00; MissingNo.
- db $06, $A8, $90; Electrode
- db $19, $AA, $20; Clefable
- db $12, $FF, $FF; Weezing
- db $19, $99, $FF; Persian
- db $08, $4F, $60; Marowak
- db $00, $00, $00; MissingNo.
- db $1C, $30, $40; Haunter
- db $1C, $C0, $01; Abra
- db $1C, $98, $FF; Alakazam
- db $14, $28, $C0; Pidgeotto
- db $14, $11, $FF; Pidgeot
- db $1E, $00, $80; Starmie
- db $0F, $80, $01; Bulbasaur
- db $0F, $00, $C0; Venusaur
- db $1A, $EE, $FF; Tentacruel
- db $00, $00, $00; MissingNo.
- db $16, $80, $40; Goldeen
- db $16, $10, $FF; Seaking
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $25, $00, $80; Ponyta
- db $25, $20, $C0; Rapidash
- db $22, $00, $80; Rattata
- db $22, $20, $FF; Raticate
- db $00, $2C, $C0; Nidorino
- db $01, $2C, $E0; Nidorina
- db $24, $F0, $10; Geodude
- db $25, $AA, $FF; Porygon
- db $23, $20, $F0; Aerodactyl
- db $00, $00, $00; MissingNo.
- db $1C, $80, $60; Magnemite
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $04, $60, $40; Charmander
- db $1D, $60, $40; Squirtle
- db $04, $20, $40; Charmeleon
- db $1D, $20, $40; Wartortle
- db $04, $00, $80; Charizard
- db $1D, $00, $80; MissingNo.
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $00, $00, $00; MissingNo.
- db $08, $DD, $01; Oddish
- db $08, $AA, $40; Gloom
- db $23, $22, $FF; Vileplume
- db $21, $55, $01; Bellsprout
- db $25, $44, $20; Weepinbell
- db $25, $66, $CC; Victreebel
--- a/data/cut_tree_blocks.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-CutTreeBlockSwaps:
-; first byte = tileset block containing the cut tree
-; second byte = corresponding tileset block after the cut animation happens
- db $32, $6D
- db $33, $6C
- db $34, $6F
- db $35, $4C
- db $60, $6E
- db $0B, $0A
- db $3C, $35
- db $3F, $35
- db $3D, $36
- db $FF ; list terminator
--- a/data/door_tile_ids.asm
+++ /dev/null
@@ -1,48 +1,0 @@
-DoorTileIDPointers:
- dbw OVERWORLD, OverworldDoorTileIDs
- dbw FOREST, ForestDoorTileIDs
- dbw MART, MartDoorTileIDs
- dbw HOUSE, HouseDoorTileIDs
- dbw FOREST_GATE, TilesetMuseumDoorTileIDs
- dbw MUSEUM, TilesetMuseumDoorTileIDs
- dbw GATE, TilesetMuseumDoorTileIDs
- dbw SHIP, ShipDoorTileIDs
- dbw LOBBY, LobbyDoorTileIDs
- dbw MANSION, MansionDoorTileIDs
- dbw LAB, LabDoorTileIDs
- dbw FACILITY, FacilityDoorTileIDs
- dbw PLATEAU, PlateauDoorTileIDs
- db $ff
-
-OverworldDoorTileIDs:
- db $1B,$58,$00
-
-ForestDoorTileIDs:
- db $3a,$00
-
-MartDoorTileIDs:
- db $5e,$00
-
-HouseDoorTileIDs:
- db $54,$00
-
-TilesetMuseumDoorTileIDs:
- db $3b,$00
-
-ShipDoorTileIDs:
- db $1e,$00
-
-LobbyDoorTileIDs:
- db $1c,$38,$1a,$00
-
-MansionDoorTileIDs:
- db $1a,$1c,$53,$00
-
-LabDoorTileIDs:
- db $34,$00
-
-FacilityDoorTileIDs:
- db $43,$58,$1b,$00
-
-PlateauDoorTileIDs:
- db $3b,$1b,$00
--- a/data/dungeon_maps.asm
+++ /dev/null
@@ -1,29 +1,0 @@
-; GetBattleTransitionID_IsDungeonMap checks if wCurMap
-; is equal to one of these maps
-DungeonMaps1:
- db VIRIDIAN_FOREST
- db ROCK_TUNNEL_1F
- db SEAFOAM_ISLANDS_1F
- db ROCK_TUNNEL_B1F
- db $FF
-
-; GetBattleTransitionID_IsDungeonMap checks if wCurMap
-; is in between or equal to each pair of maps
-DungeonMaps2:
- ; all MT_MOON maps
- db MT_MOON_1F
- db MT_MOON_B2F
-
- ; all SS_ANNE maps, VICTORY_ROAD_1F, LANCES_ROOM, and HALL_OF_FAME
- db SS_ANNE_1F
- db HALL_OF_FAME
-
- ; all POKEMON_TOWER maps and Lavender Town buildings
- db LAVENDER_POKECENTER
- db LAVENDER_CUBONE_HOUSE
-
- ; SILPH_CO_[2-8]F, POKEMON_MANSION[2F-B1F], SAFARI_ZONE, and
- ; CERULEAN_CAVE maps, except for SILPH_CO_1F
- db SILPH_CO_2F
- db CERULEAN_CAVE_1F
- db $FF
--- a/data/dungeon_tilesets.asm
+++ /dev/null
@@ -1,2 +1,0 @@
-DungeonTilesets:
- db FOREST, MUSEUM, SHIP, CAVERN, LOBBY, MANSION, GATE, LAB, FACILITY, CEMETERY, GYM, $FF
--- a/data/effects_pointers.asm
+++ /dev/null
@@ -1,87 +1,0 @@
-MoveEffectPointerTable:
- dw SleepEffect ; unused effect
- dw PoisonEffect ; POISON_SIDE_EFFECT1
- dw DrainHPEffect ; DRAIN_HP_EFFECT
- dw FreezeBurnParalyzeEffect ; BURN_SIDE_EFFECT1
- dw FreezeBurnParalyzeEffect ; FREEZE_SIDE_EFFECT
- dw FreezeBurnParalyzeEffect ; PARALYZE_SIDE_EFFECT1
- dw ExplodeEffect ; EXPLODE_EFFECT
- dw DrainHPEffect ; DREAM_EATER_EFFECT
- dw $0000 ; MIRROR_MOVE_EFFECT
- dw StatModifierUpEffect ; ATTACK_UP1_EFFECT
- dw StatModifierUpEffect ; DEFENSE_UP1_EFFECT
- dw StatModifierUpEffect ; SPEED_UP1_EFFECT
- dw StatModifierUpEffect ; SPECIAL_UP1_EFFECT
- dw StatModifierUpEffect ; ACCURACY_UP1_EFFECT
- dw StatModifierUpEffect ; EVASION_UP1_EFFECT
- dw PayDayEffect ; PAY_DAY_EFFECT
- dw $0000 ; SWIFT_EFFECT
- dw StatModifierDownEffect ; ATTACK_DOWN1_EFFECT
- dw StatModifierDownEffect ; DEFENSE_DOWN1_EFFECT
- dw StatModifierDownEffect ; SPEED_DOWN1_EFFECT
- dw StatModifierDownEffect ; SPECIAL_DOWN1_EFFECT
- dw StatModifierDownEffect ; ACCURACY_DOWN1_EFFECT
- dw StatModifierDownEffect ; EVASION_DOWN1_EFFECT
- dw ConversionEffect ; CONVERSION_EFFECT
- dw HazeEffect ; HAZE_EFFECT
- dw BideEffect ; BIDE_EFFECT
- dw ThrashPetalDanceEffect ; THRASH_PETAL_DANCE_EFFECT
- dw SwitchAndTeleportEffect ; SWITCH_AND_TELEPORT_EFFECT
- dw TwoToFiveAttacksEffect ; TWO_TO_FIVE_ATTACKS_EFFECT
- dw TwoToFiveAttacksEffect ; unused effect
- dw FlinchSideEffect ; FLINCH_SIDE_EFFECT1
- dw SleepEffect ; SLEEP_EFFECT
- dw PoisonEffect ; POISON_SIDE_EFFECT2
- dw FreezeBurnParalyzeEffect ; BURN_SIDE_EFFECT2
- dw FreezeBurnParalyzeEffect ; unused effect
- dw FreezeBurnParalyzeEffect ; PARALYZE_SIDE_EFFECT2
- dw FlinchSideEffect ; FLINCH_SIDE_EFFECT2
- dw OneHitKOEffect ; OHKO_EFFECT
- dw ChargeEffect ; CHARGE_EFFECT
- dw $0000 ; SUPER_FANG_EFFECT
- dw $0000 ; SPECIAL_DAMAGE_EFFECT
- dw TrappingEffect ; TRAPPING_EFFECT
- dw ChargeEffect ; FLY_EFFECT
- dw TwoToFiveAttacksEffect ; ATTACK_TWICE_EFFECT
- dw $0000 ; JUMP_KICK_EFFECT
- dw MistEffect ; MIST_EFFECT
- dw FocusEnergyEffect ; FOCUS_ENERGY_EFFECT
- dw RecoilEffect ; RECOIL_EFFECT
- dw ConfusionEffect ; CONFUSION_EFFECT
- dw StatModifierUpEffect ; ATTACK_UP2_EFFECT
- dw StatModifierUpEffect ; DEFENSE_UP2_EFFECT
- dw StatModifierUpEffect ; SPEED_UP2_EFFECT
- dw StatModifierUpEffect ; SPECIAL_UP2_EFFECT
- dw StatModifierUpEffect ; ACCURACY_UP2_EFFECT
- dw StatModifierUpEffect ; EVASION_UP2_EFFECT
- dw HealEffect ; HEAL_EFFECT
- dw TransformEffect ; TRANSFORM_EFFECT
- dw StatModifierDownEffect ; ATTACK_DOWN2_EFFECT
- dw StatModifierDownEffect ; DEFENSE_DOWN2_EFFECT
- dw StatModifierDownEffect ; SPEED_DOWN2_EFFECT
- dw StatModifierDownEffect ; SPECIAL_DOWN2_EFFECT
- dw StatModifierDownEffect ; ACCURACY_DOWN2_EFFECT
- dw StatModifierDownEffect ; EVASION_DOWN2_EFFECT
- dw ReflectLightScreenEffect ; LIGHT_SCREEN_EFFECT
- dw ReflectLightScreenEffect ; REFLECT_EFFECT
- dw PoisonEffect ; POISON_EFFECT
- dw ParalyzeEffect ; PARALYZE_EFFECT
- dw StatModifierDownEffect ; ATTACK_DOWN_SIDE_EFFECT
- dw StatModifierDownEffect ; DEFENSE_DOWN_SIDE_EFFECT
- dw StatModifierDownEffect ; SPEED_DOWN_SIDE_EFFECT
- dw StatModifierDownEffect ; SPECIAL_DOWN_SIDE_EFFECT
- dw StatModifierDownEffect ; unused effect
- dw StatModifierDownEffect ; unused effect
- dw StatModifierDownEffect ; unused effect
- dw StatModifierDownEffect ; unused effect
- dw ConfusionSideEffect ; CONFUSION_SIDE_EFFECT
- dw TwoToFiveAttacksEffect ; TWINEEDLE_EFFECT
- dw $0000 ; unused effect
- dw SubstituteEffect ; SUBSTITUTE_EFFECT
- dw HyperBeamEffect ; HYPER_BEAM_EFFECT
- dw RageEffect ; RAGE_EFFECT
- dw MimicEffect ; MIMIC_EFFECT
- dw $0000 ; METRONOME_EFFECT
- dw LeechSeedEffect ; LEECH_SEED_EFFECT
- dw SplashEffect ; SPLASH_EFFECT
- dw DisableEffect ; DISABLE_EFFECT
--- /dev/null
+++ b/data/events/hidden_coins.asm
@@ -1,0 +1,14 @@
+HiddenCoinCoords:
+ db GAME_CORNER,$08,$00
+ db GAME_CORNER,$10,$01
+ db GAME_CORNER,$0b,$03
+ db GAME_CORNER,$0e,$03
+ db GAME_CORNER,$0c,$04
+ db GAME_CORNER,$0c,$09
+ db GAME_CORNER,$0f,$09
+ db GAME_CORNER,$0e,$10
+ db GAME_CORNER,$10,$0a
+ db GAME_CORNER,$07,$0b
+ db GAME_CORNER,$08,$0f
+ db GAME_CORNER,$0f,$0c
+ db $ff
--- /dev/null
+++ b/data/events/hidden_item_coords.asm
@@ -1,0 +1,57 @@
+HiddenItemCoords:
+; map ID, then coords
+ db VIRIDIAN_FOREST,$12,$01
+ db VIRIDIAN_FOREST,$2a,$10
+ db MT_MOON_B2F,$0c,$12
+ db ROUTE_25,$03,$26
+ db ROUTE_9,$07,$0e
+ db SS_ANNE_KITCHEN,$09,$0d
+ db SS_ANNE_B1F_ROOMS,$01,$03
+ db ROUTE_10,$11,$09
+ db ROUTE_10,$35,$10
+ db ROCKET_HIDEOUT_B1F,$0f,$15
+ db ROCKET_HIDEOUT_B3F,$11,$1b
+ db ROCKET_HIDEOUT_B4F,$01,$19
+ db POKEMON_TOWER_5F,$0c,$04
+ db ROUTE_13,$0e,$01
+ db ROUTE_13,$0d,$10
+ db POKEMON_MANSION_B1F,$09,$01
+ db SAFARI_ZONE_GATE,$01,$0a
+ db SAFARI_ZONE_WEST,$05,$06
+ db SILPH_CO_5F,$03,$0c
+ db SILPH_CO_9F,$0f,$02
+ db COPYCATS_HOUSE_2F,$01,$01
+ db CERULEAN_CAVE_1F,$0b,$0e
+ db CERULEAN_CAVE_B1F,$03,$1b
+ db POWER_PLANT,$10,$11
+ db POWER_PLANT,$01,$0c
+ db SEAFOAM_ISLANDS_B2F,$0f,$0f
+ db SEAFOAM_ISLANDS_B4F,$11,$19
+ db POKEMON_MANSION_1F,$10,$08
+ db POKEMON_MANSION_3F,$09,$01
+ db ROUTE_23,$2c,$09
+ db ROUTE_23,$46,$13
+ db ROUTE_23,$5a,$08
+ db VICTORY_ROAD_2F,$02,$05
+ db VICTORY_ROAD_2F,$07,$1a
+ db UNUSED_MAP_6F,$0b,$0e
+ db VIRIDIAN_CITY,$04,$0e
+ db ROUTE_11,$05,$30
+ db ROUTE_12,$3f,$02
+ db ROUTE_17,$0e,$0f
+ db ROUTE_17,$2d,$08
+ db ROUTE_17,$48,$11
+ db ROUTE_17,$5b,$04
+ db ROUTE_17,$79,$08
+ db UNDERGROUND_PATH_NORTH_SOUTH,$04,$03
+ db UNDERGROUND_PATH_NORTH_SOUTH,$22,$04
+ db UNDERGROUND_PATH_WEST_EAST,$02,$0c
+ db UNDERGROUND_PATH_WEST_EAST,$05,$15
+ db CELADON_CITY,$0f,$30
+ db ROUTE_25,$01,$0a
+ db MT_MOON_B2F,$09,$21
+ db SEAFOAM_ISLANDS_B3F,$10,$09
+ db VERMILION_CITY,$0b,$0e
+ db CERULEAN_CITY,$08,$0f
+ db ROUTE_4,$03,$28
+ db $ff
--- /dev/null
+++ b/data/events/hidden_objects.asm
@@ -1,0 +1,853 @@
+HiddenObjectMaps:
+ db REDS_HOUSE_2F
+ db BLUES_HOUSE
+ db OAKS_LAB
+ db VIRIDIAN_POKECENTER
+ db VIRIDIAN_MART
+ db VIRIDIAN_SCHOOL_HOUSE
+ db VIRIDIAN_GYM
+ db MUSEUM_1F
+ db PEWTER_GYM
+ db PEWTER_MART
+ db PEWTER_POKECENTER
+ db CERULEAN_POKECENTER
+ db CERULEAN_GYM
+ db CERULEAN_MART
+ db LAVENDER_POKECENTER
+ db VERMILION_POKECENTER
+ db VERMILION_GYM
+ db CELADON_MANSION_2F
+ db CELADON_POKECENTER
+ db CELADON_GYM
+ db GAME_CORNER
+ db CELADON_HOTEL
+ db FUCHSIA_POKECENTER
+ db FUCHSIA_GYM
+ db CINNABAR_GYM
+ db CINNABAR_POKECENTER
+ db SAFFRON_GYM
+ db MT_MOON_POKECENTER
+ db ROCK_TUNNEL_POKECENTER
+ db TRADE_CENTER
+ db COLOSSEUM
+ db VIRIDIAN_FOREST
+ db MT_MOON_B2F
+ db INDIGO_PLATEAU
+ db ROUTE_25
+ db ROUTE_9
+ db SS_ANNE_KITCHEN
+ db SS_ANNE_B1F_ROOMS
+ db ROCKET_HIDEOUT_B1F
+ db ROCKET_HIDEOUT_B3F
+ db ROCKET_HIDEOUT_B4F
+ db SAFFRON_POKECENTER
+ db POKEMON_TOWER_5F
+ db ROUTE_13
+ db SAFARI_ZONE_GATE
+ db SAFARI_ZONE_WEST
+ db SILPH_CO_5F
+ db SILPH_CO_9F
+ db COPYCATS_HOUSE_2F
+ db CERULEAN_CAVE_1F
+ db CERULEAN_CAVE_B1F
+ db POWER_PLANT
+ db SEAFOAM_ISLANDS_B2F
+ db SEAFOAM_ISLANDS_B4F
+ db POKEMON_MANSION_1F
+ db POKEMON_MANSION_3F
+ db ROUTE_23
+ db VICTORY_ROAD_2F
+ db UNUSED_MAP_6F
+ db BILLS_HOUSE
+ db VIRIDIAN_CITY
+ db SAFARI_ZONE_WEST_REST_HOUSE
+ db SAFARI_ZONE_EAST_REST_HOUSE
+ db SAFARI_ZONE_NORTH_REST_HOUSE
+ db ROUTE_15_GATE_2F
+ db MR_FUJIS_HOUSE
+ db CELADON_MANSION_ROOF_HOUSE
+ db FIGHTING_DOJO
+ db ROUTE_10
+ db INDIGO_PLATEAU_LOBBY
+ db CINNABAR_LAB_FOSSIL_ROOM
+ db BIKE_SHOP
+ db ROUTE_11
+ db ROUTE_12
+ db POKEMON_MANSION_2F
+ db POKEMON_MANSION_B1F
+ db SILPH_CO_11F
+ db ROUTE_17
+ db UNDERGROUND_PATH_NORTH_SOUTH
+ db UNDERGROUND_PATH_WEST_EAST
+ db CELADON_CITY
+ db SEAFOAM_ISLANDS_B3F
+ db VERMILION_CITY
+ db CERULEAN_CITY
+ db ROUTE_4
+ db $FF
+
+HiddenObjectPointers:
+; each of these pointers is for the corresponding map in HiddenObjectMaps
+ dw RedsHouse2FHiddenObjects
+ dw BluesHouseHiddenObjects
+ dw OaksLabHiddenObjects
+ dw ViridianPokecenterHiddenObjects
+ dw ViridianMartHiddenObjects
+ dw ViridianSchoolHiddenObjects
+ dw ViridianGymHiddenObjects
+ dw Museum1FHiddenObjects
+ dw PewterGymHiddenObjects
+ dw PewterMartHiddenObjects
+ dw PewterPokecenterHiddenObjects
+ dw CeruleanPokecenterHiddenObjects
+ dw CeruleanGymHiddenObjects
+ dw CeruleanMartHiddenObjects
+ dw LavenderPokecenterHiddenObjects
+ dw VermilionPokecenterHiddenObjects
+ dw VermilionGymHiddenObjects
+ dw CeladonMansion2HiddenObjects
+ dw CeladonPokecenterHiddenObjects
+ dw CeladonGymHiddenObjects
+ dw GameCornerHiddenObjects
+ dw CeladonHotelHiddenObjects
+ dw FuchsiaPokecenterHiddenObjects
+ dw FuchsiaGymHiddenObjects
+ dw CinnabarGymHiddenObjects
+ dw CinnabarPokecenterHiddenObjects
+ dw SaffronGymHiddenObjects
+ dw MtMoonPokecenterHiddenObjects
+ dw RockTunnelPokecenterHiddenObjects
+ dw TradeCenterHiddenObjects
+ dw ColosseumHiddenObjects
+ dw ViridianForestHiddenObjects
+ dw MtMoon3HiddenObjects
+ dw IndigoPlateauHiddenObjects
+ dw Route25HiddenObjects
+ dw Route9HiddenObjects
+ dw SSAnne6HiddenObjects
+ dw SSAnne10HiddenObjects
+ dw RocketHideout1HiddenObjects
+ dw RocketHideout3HiddenObjects
+ dw RocketHideout4HiddenObjects
+ dw SaffronPokecenterHiddenObjects
+ dw PokemonTower5HiddenObjects
+ dw Route13HiddenObjects
+ dw SafariZoneEntranceHiddenObjects
+ dw SafariZoneWestHiddenObjects
+ dw SilphCo5FHiddenObjects
+ dw SilphCo9FHiddenObjects
+ dw CopycatsHouse2FHiddenObjects
+ dw CeruleanCave1HiddenObjects
+ dw CeruleanCave3HiddenObjects
+ dw PowerPlantHiddenObjects
+ dw SeafoamIslands3HiddenObjects
+ dw SeafoamIslands5HiddenObjects
+ dw Mansion1HiddenObjects
+ dw Mansion3HiddenObjects
+ dw Route23HiddenObjects
+ dw VictoryRoad2HiddenObjects
+ dw Unused6FHiddenObjects
+ dw BillsHouseHiddenObjects
+ dw ViridianCityHiddenObjects
+ dw SafariZoneRestHouse2HiddenObjects
+ dw SafariZoneRestHouse3HiddenObjects
+ dw SafariZoneRestHouse4HiddenObjects
+ dw Route15GateUpstairsHiddenObjects
+ dw LavenderHouse1HiddenObjects
+ dw CeladonMansion5HiddenObjects
+ dw FightingDojoHiddenObjects
+ dw Route10HiddenObjects
+ dw IndigoPlateauLobbyHiddenObjects
+ dw CinnabarLab4HiddenObjects
+ dw BikeShopHiddenObjects
+ dw Route11HiddenObjects
+ dw Route12HiddenObjects
+ dw Mansion2HiddenObjects
+ dw Mansion4HiddenObjects
+ dw SilphCo11FHiddenObjects
+ dw Route17HiddenObjects
+ dw UndergroundPathNsHiddenObjects
+ dw UndergroundPathWeHiddenObjects
+ dw CeladonCityHiddenObjects
+ dw SeafoamIslands4HiddenObjects
+ dw VermilionCityHiddenObjects
+ dw CeruleanCityHiddenObjects
+ dw Route4HiddenObjects
+
+; format: y-coord, x-coord, text id/item id, object routine
+TradeCenterHiddenObjects:
+ db $04,$05,$d0
+ db BANK(CableClubRightGameboy)
+ dw CableClubRightGameboy
+ db $04,$04,$d0
+ db BANK(CableClubLeftGameboy)
+ dw CableClubLeftGameboy
+ db $FF
+ColosseumHiddenObjects:
+ db $04,$05,$d0
+ db BANK(CableClubRightGameboy)
+ dw CableClubRightGameboy
+ db $04,$04,$d0
+ db BANK(CableClubLeftGameboy)
+ dw CableClubLeftGameboy
+ db $FF
+RedsHouse2FHiddenObjects:
+ db $01,$00,$04
+ dbw BANK(OpenRedsPC), OpenRedsPC
+ db $05,$03,$d0
+ dbw BANK(PrintRedSNESText), PrintRedSNESText
+ db $FF
+BluesHouseHiddenObjects:
+ db $01,$00,$04
+ db BANK(PrintBookcaseText)
+ dw PrintBookcaseText
+ db $01,$01,$04
+ db BANK(PrintBookcaseText)
+ dw PrintBookcaseText
+ db $01,$07,$04
+ db BANK(PrintBookcaseText)
+ dw PrintBookcaseText
+ db $FF
+OaksLabHiddenObjects:
+ db $00,$04,$04
+ db BANK(DisplayOakLabLeftPoster)
+ dw DisplayOakLabLeftPoster
+ db $00,$05,$04
+ db BANK(DisplayOakLabRightPoster)
+ dw DisplayOakLabRightPoster
+ db $01,$00,$04
+ db BANK(DisplayOakLabEmailText)
+ dw DisplayOakLabEmailText
+ db $01,$01,$04
+ db BANK(DisplayOakLabEmailText)
+ dw DisplayOakLabEmailText
+ db $FF
+ViridianPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+ViridianMartHiddenObjects:
+ db $FF
+ViridianSchoolHiddenObjects:
+ db $04,$03,(ViridianSchoolNotebook_id - TextPredefs) / 2 + 1
+ db BANK(PrintNotebookText)
+ dw PrintNotebookText
+ db $00,$03,(ViridianSchoolBlackboard_id - TextPredefs) / 2 + 1
+ db BANK(PrintBlackboardLinkCableText)
+ dw PrintBlackboardLinkCableText
+ db $FF
+ViridianGymHiddenObjects:
+ db $0f,$0f,$04
+ dbw BANK(GymStatues),GymStatues
+ db $0f,$12,$04
+ dbw BANK(GymStatues),GymStatues
+ db $FF
+Museum1FHiddenObjects:
+ db $03,$02,$04
+ dbw BANK(AerodactylFossil), AerodactylFossil
+ db $06,$02,$04
+ dbw BANK(KabutopsFossil), KabutopsFossil
+ db $FF
+PewterGymHiddenObjects:
+ db $0a,$03,$04
+ dbw BANK(GymStatues),GymStatues
+ db $0a,$06,$04
+ dbw BANK(GymStatues),GymStatues
+ db $FF
+PewterMartHiddenObjects:
+ db $FF
+PewterPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+CeruleanPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+CeruleanGymHiddenObjects:
+ db $0b,$03,$04
+ dbw BANK(GymStatues),GymStatues
+ db $0b,$06,$04
+ dbw BANK(GymStatues),GymStatues
+ db $FF
+CeruleanMartHiddenObjects:
+ db $FF
+LavenderPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+VermilionPokecenterHiddenObjects:
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $04,$00,$04
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $FF
+VermilionGymHiddenObjects:
+ db $0e,$03,$04
+ dbw BANK(GymStatues), GymStatues
+ db $0e,$06,$04
+ dbw BANK(GymStatues), GymStatues
+ db $01,$06,$00
+ dbw BANK(PrintTrashText), PrintTrashText
+ db $07,$01,$00
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $09,$01,$01
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $0b,$01,$02
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $07,$03,$03
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $09,$03,$04
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $0b,$03,$05
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $07,$05,$06
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $09,$05,$07
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $0b,$05,$08
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $07,$07,$09
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $09,$07,$0a
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $0b,$07,$0b
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $07,$09,$0c
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $09,$09,$0d
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $0b,$09,$0e
+ dbw BANK(GymTrashScript), GymTrashScript
+ db $FF
+CeladonMansion2HiddenObjects:
+ db $05,$00,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+CeladonPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+CeladonGymHiddenObjects:
+ db $0f,$03,$04
+ dbw BANK(GymStatues),GymStatues
+ db $0f,$06,$04
+ dbw BANK(GymStatues),GymStatues
+ db $FF
+GameCornerHiddenObjects:
+ db $0f,$12,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0e,$12,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0d,$12,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0c,$12,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0b,$12,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0a,$12,$ff ; "Someone's Keys"
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0a,$0d,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0b,$0d,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0c,$0d,$fe ; "Out To Lunch"
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0d,$0d,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0e,$0d,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0f,$0d,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0f,$0c,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0e,$0c,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0d,$0c,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0c,$0c,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0b,$0c,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0a,$0c,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0a,$07,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0b,$07,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0c,$07,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0d,$07,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0e,$07,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0f,$07,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0f,$06,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0e,$06,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0d,$06,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0c,$06,$fd ; "Out Of Order"
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0b,$06,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0a,$06,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0a,$01,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0b,$01,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0c,$01,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0d,$01,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0e,$01,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $0f,$01,$d0
+ dbw BANK(StartSlotMachine), StartSlotMachine
+ db $08,$00,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $10,$01,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0b,$03,COIN+20
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0e,$03,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0c,$04,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0c,$09,COIN+20
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0f,$09,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0e,$10,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $10,$0a,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $07,$0b,COIN+40
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $08,$0f,COIN+100
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $0f,$0c,COIN+10
+ dbw BANK(HiddenCoins),HiddenCoins
+ db $FF
+CeladonHotelHiddenObjects:
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $FF
+FuchsiaPokecenterHiddenObjects:
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $04,$00,$04
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $FF
+FuchsiaGymHiddenObjects:
+ db $0f,$03,$04
+ dbw BANK(GymStatues),GymStatues
+ db $0f,$06,$04
+ dbw BANK(GymStatues),GymStatues
+ db $FF
+CinnabarGymHiddenObjects:
+ db $0d,$11,$04
+ dbw BANK(GymStatues),GymStatues
+ db $07,$0f,$01
+ db BANK(PrintCinnabarQuiz)
+ dw PrintCinnabarQuiz
+ db $01,$0a,$12
+ db BANK(PrintCinnabarQuiz)
+ dw PrintCinnabarQuiz
+ db $07,$09,$13
+ db BANK(PrintCinnabarQuiz)
+ dw PrintCinnabarQuiz
+ db $0d,$09,$14
+ db BANK(PrintCinnabarQuiz)
+ dw PrintCinnabarQuiz
+ db $0d,$01,$05
+ db BANK(PrintCinnabarQuiz)
+ dw PrintCinnabarQuiz
+ db $07,$01,$16
+ db BANK(PrintCinnabarQuiz)
+ dw PrintCinnabarQuiz
+ db $FF
+CinnabarPokecenterHiddenObjects:
+ db $04,$00,$04
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+SaffronGymHiddenObjects:
+ db $0f,$09,$04
+ dbw BANK(GymStatues),GymStatues
+ db $FF
+MtMoonPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+RockTunnelPokecenterHiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+ViridianForestHiddenObjects:
+ db $12,$01,POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $2a,$10,ANTIDOTE
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+MtMoon3HiddenObjects:
+ db $0c,$12,MOON_STONE
+ dbw BANK(HiddenItems),HiddenItems
+ db $09,$21,ETHER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+IndigoPlateauHiddenObjects:
+ db $0d,$08,$ff
+ db BANK(PrintIndigoPlateauHQText)
+ dw PrintIndigoPlateauHQText
+ db $0d,$0b,$00
+ db BANK(PrintIndigoPlateauHQText)
+ dw PrintIndigoPlateauHQText
+ db $FF
+Route25HiddenObjects:
+ db $03,$26,ETHER
+ dbw BANK(HiddenItems),HiddenItems
+ db $01,$0a,ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Route9HiddenObjects:
+ db $07,$0e,ETHER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SSAnne6HiddenObjects:
+ db $05,$0d,$00
+ dbw BANK(PrintTrashText), PrintTrashText
+ db $07,$0d,$00
+ dbw BANK(PrintTrashText), PrintTrashText
+ db $09,$0d,GREAT_BALL
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SSAnne10HiddenObjects:
+ db $01,$03,HYPER_POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Route10HiddenObjects:
+ db $11,$09,SUPER_POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $35,$10,MAX_ETHER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+RocketHideout1HiddenObjects:
+ db $0f,$15,PP_UP
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+RocketHideout3HiddenObjects:
+ db $11,$1b,NUGGET
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+RocketHideout4HiddenObjects:
+ db $01,$19,SUPER_POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SaffronPokecenterHiddenObjects:
+ db $04,$00,$04
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+PokemonTower5HiddenObjects:
+ db $0c,$04,ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Route13HiddenObjects:
+ db $0e,$01,PP_UP
+ dbw BANK(HiddenItems),HiddenItems
+ db $0d,$10,CALCIUM
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SafariZoneEntranceHiddenObjects:
+ db $01,$0a,NUGGET
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SafariZoneWestHiddenObjects:
+ db $05,$06,REVIVE
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SilphCo5FHiddenObjects:
+ db $03,$0c,ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SilphCo9FHiddenObjects:
+ db $0f,$02,MAX_POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+CopycatsHouse2FHiddenObjects:
+ db $01,$01,NUGGET
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+CeruleanCave1HiddenObjects:
+ db $0b,$0e,RARE_CANDY
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+CeruleanCave3HiddenObjects:
+ db $03,$1b,ULTRA_BALL
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+PowerPlantHiddenObjects:
+ db $10,$11,MAX_ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $01,$0c,PP_UP
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SeafoamIslands3HiddenObjects:
+ db $0f,$0f,NUGGET
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SeafoamIslands5HiddenObjects:
+ db $11,$19,ULTRA_BALL
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Mansion1HiddenObjects:
+ db $10,$08,MOON_STONE
+ dbw BANK(HiddenItems),HiddenItems
+ db $05,$02,$04
+ db BANK(Mansion1Script_Switches)
+ dw Mansion1Script_Switches
+ db $FF
+Mansion2HiddenObjects:
+ db $0b,$02,$04
+ db BANK(Mansion2Script_Switches)
+ dw Mansion2Script_Switches
+ db $FF
+Mansion3HiddenObjects:
+ db $09,$01,MAX_REVIVE
+ dbw BANK(HiddenItems),HiddenItems
+ db $05,$0a,$04
+ db BANK(Mansion3Script_Switches)
+ dw Mansion3Script_Switches
+ db $FF
+Mansion4HiddenObjects:
+ db $09,$01,RARE_CANDY
+ dbw BANK(HiddenItems),HiddenItems
+ db $03,$14,$04
+ db BANK(Mansion4Script_Switches)
+ dw Mansion4Script_Switches
+ db $19,$12,$04
+ db BANK(Mansion4Script_Switches)
+ dw Mansion4Script_Switches
+ db $FF
+Route23HiddenObjects:
+ db $2c,$09,FULL_RESTORE
+ dbw BANK(HiddenItems),HiddenItems
+ db $46,$13,ULTRA_BALL
+ dbw BANK(HiddenItems),HiddenItems
+ db $5a,$08,MAX_ETHER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+VictoryRoad2HiddenObjects:
+ db $02,$05,ULTRA_BALL
+ dbw BANK(HiddenItems),HiddenItems
+ db $07,$1a,FULL_RESTORE
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Unused6FHiddenObjects:
+ db $0b,$0e,MAX_ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+BillsHouseHiddenObjects:
+ db $04,$01,$04
+ dbw BANK(BillsHousePC), BillsHousePC
+ db $FF
+ViridianCityHiddenObjects:
+ db $04,$0e,POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SafariZoneRestHouse2HiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+SafariZoneRestHouse3HiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+SafariZoneRestHouse4HiddenObjects:
+ db $04,$00,$08
+ db BANK(PrintBenchGuyText)
+ dw PrintBenchGuyText
+ db $03,$0d,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+Route15GateUpstairsHiddenObjects:
+ db $02,$01,$04
+ db BANK(Route15GateLeftBinoculars)
+ dw Route15GateLeftBinoculars
+ db $FF
+LavenderHouse1HiddenObjects:
+ db $01,$00,$00
+ db BANK(PrintMagazinesText)
+ dw PrintMagazinesText
+ db $01,$01,$00
+ db BANK(PrintMagazinesText)
+ dw PrintMagazinesText
+ db $01,$07,$00
+ db BANK(PrintMagazinesText)
+ dw PrintMagazinesText
+ db $FF
+CeladonMansion5HiddenObjects:
+ db $00,$03,(LinkCableHelp_id - TextPredefs) / 2 + 1
+ db BANK(PrintBlackboardLinkCableText)
+ dw PrintBlackboardLinkCableText
+ db $00,$04,(LinkCableHelp_id - TextPredefs) / 2 + 1
+ db BANK(PrintBlackboardLinkCableText)
+ dw PrintBlackboardLinkCableText
+ db $04,$03,(TMNotebook_id - TextPredefs) / 2 + 1
+ db BANK(PrintNotebookText)
+ dw PrintNotebookText
+ db $FF
+FightingDojoHiddenObjects:
+ db $09,$03,$04
+ db BANK(PrintFightingDojoText)
+ dw PrintFightingDojoText
+ db $09,$06,$04
+ db BANK(PrintFightingDojoText)
+ dw PrintFightingDojoText
+ db $00,$04,$04
+ db BANK(PrintFightingDojoText2)
+ dw PrintFightingDojoText2
+ db $00,$05,$04
+ db BANK(PrintFightingDojoText3)
+ dw PrintFightingDojoText3
+ db $FF
+IndigoPlateauLobbyHiddenObjects:
+ db $07,$0f,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+CinnabarLab4HiddenObjects:
+ db $04,$00,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $04,$02,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+BikeShopHiddenObjects:
+ db $00,$01,$d0
+ dbw BANK(PrintNewBikeText), PrintNewBikeText
+ db $01,$02,$d0
+ dbw BANK(PrintNewBikeText), PrintNewBikeText
+ db $02,$01,$d0
+ dbw BANK(PrintNewBikeText), PrintNewBikeText
+ db $02,$03,$d0
+ dbw BANK(PrintNewBikeText), PrintNewBikeText
+ db $04,$00,$d0
+ dbw BANK(PrintNewBikeText), PrintNewBikeText
+ db $05,$01,$d0
+ dbw BANK(PrintNewBikeText), PrintNewBikeText
+ db $FF
+Route11HiddenObjects:
+ db $05,$30,ESCAPE_ROPE
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Route12HiddenObjects:
+ db $3f,$02,HYPER_POTION
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SilphCo11FHiddenObjects:
+ db $0c,$0a,$04
+ db BANK(OpenPokemonCenterPC)
+ dw OpenPokemonCenterPC
+ db $FF
+Route17HiddenObjects:
+ db $0e,$0f,RARE_CANDY
+ dbw BANK(HiddenItems),HiddenItems
+ db $2d,$08,FULL_RESTORE
+ dbw BANK(HiddenItems),HiddenItems
+ db $48,$11,PP_UP
+ dbw BANK(HiddenItems),HiddenItems
+ db $5b,$04,MAX_REVIVE
+ dbw BANK(HiddenItems),HiddenItems
+ db $79,$08,MAX_ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+UndergroundPathNsHiddenObjects:
+ db $04,$03,FULL_RESTORE
+ dbw BANK(HiddenItems),HiddenItems
+ db $22,$04,X_SPECIAL
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+UndergroundPathWeHiddenObjects:
+ db $02,$0c,NUGGET
+ dbw BANK(HiddenItems),HiddenItems
+ db $05,$15,ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+CeladonCityHiddenObjects:
+ db $0f,$30,PP_UP
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+SeafoamIslands4HiddenObjects:
+ db $10,$09,MAX_ELIXER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+VermilionCityHiddenObjects:
+ db $0b,$0e,MAX_ETHER
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+CeruleanCityHiddenObjects:
+ db $08,$0f,RARE_CANDY
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
+Route4HiddenObjects:
+ db $03,$28,GREAT_BALL
+ dbw BANK(HiddenItems),HiddenItems
+ db $FF
--- /dev/null
+++ b/data/events/prize_mon_levels.asm
@@ -1,0 +1,19 @@
+PrizeMonLevelDictionary:
+IF DEF(_RED)
+ db ABRA,9
+ db CLEFAIRY,8
+ db NIDORINA,17
+
+ db DRATINI,18
+ db SCYTHER,25
+ db PORYGON,26
+ENDC
+IF DEF(_BLUE)
+ db ABRA,6
+ db CLEFAIRY,12
+ db NIDORINO,17
+
+ db PINSIR,20
+ db DRATINI,24
+ db PORYGON,18
+ENDC
--- /dev/null
+++ b/data/events/prizes.asm
@@ -1,0 +1,72 @@
+PrizeDifferentMenuPtrs:
+ dw PrizeMenuMon1Entries
+ dw PrizeMenuMon1Cost
+
+ dw PrizeMenuMon2Entries
+ dw PrizeMenuMon2Cost
+
+ dw PrizeMenuTMsEntries
+ dw PrizeMenuTMsCost
+
+NoThanksText:
+ db "NO THANKS@"
+
+PrizeMenuMon1Entries:
+ db ABRA
+ db CLEFAIRY
+IF DEF(_RED)
+ db NIDORINA
+ENDC
+IF DEF(_BLUE)
+ db NIDORINO
+ENDC
+ db "@"
+
+PrizeMenuMon1Cost:
+IF DEF(_RED)
+ coins 180
+ coins 500
+ENDC
+IF DEF(_BLUE)
+ coins 120
+ coins 750
+ENDC
+ coins 1200
+ db "@"
+
+PrizeMenuMon2Entries:
+IF DEF(_RED)
+ db DRATINI
+ db SCYTHER
+ENDC
+IF DEF(_BLUE)
+ db PINSIR
+ db DRATINI
+ENDC
+ db PORYGON
+ db "@"
+
+PrizeMenuMon2Cost:
+IF DEF(_RED)
+ coins 2800
+ coins 5500
+ coins 9999
+ENDC
+IF DEF(_BLUE)
+ coins 2500
+ coins 4600
+ coins 6500
+ENDC
+ db "@"
+
+PrizeMenuTMsEntries:
+ db TM_23
+ db TM_15
+ db TM_50
+ db "@"
+
+PrizeMenuTMsCost:
+ coins 3300
+ coins 5500
+ coins 7700
+ db "@"
--- /dev/null
+++ b/data/events/slot_machine_wheels.asm
@@ -1,0 +1,59 @@
+SlotMachineWheel1:
+ dw SLOTS7
+ dw SLOTSMOUSE
+ dw SLOTSFISH
+ dw SLOTSBAR
+ dw SLOTSCHERRY
+ dw SLOTS7
+ dw SLOTSFISH
+ dw SLOTSBIRD
+ dw SLOTSBAR
+ dw SLOTSCHERRY
+ dw SLOTS7
+ dw SLOTSMOUSE
+ dw SLOTSBIRD
+ dw SLOTSBAR
+ dw SLOTSCHERRY
+ dw SLOTS7
+ dw SLOTSMOUSE
+ dw SLOTSFISH
+
+SlotMachineWheel2:
+ dw SLOTS7
+ dw SLOTSFISH
+ dw SLOTSCHERRY
+ dw SLOTSBIRD
+ dw SLOTSMOUSE
+ dw SLOTSBAR
+ dw SLOTSCHERRY
+ dw SLOTSFISH
+ dw SLOTSBIRD
+ dw SLOTSCHERRY
+ dw SLOTSBAR
+ dw SLOTSFISH
+ dw SLOTSBIRD
+ dw SLOTSCHERRY
+ dw SLOTSMOUSE
+ dw SLOTS7
+ dw SLOTSFISH
+ dw SLOTSCHERRY
+
+SlotMachineWheel3:
+ dw SLOTS7
+ dw SLOTSBIRD
+ dw SLOTSFISH
+ dw SLOTSCHERRY
+ dw SLOTSMOUSE
+ dw SLOTSBIRD
+ dw SLOTSFISH
+ dw SLOTSCHERRY
+ dw SLOTSMOUSE
+ dw SLOTSBIRD
+ dw SLOTSFISH
+ dw SLOTSCHERRY
+ dw SLOTSMOUSE
+ dw SLOTSBIRD
+ dw SLOTSBAR
+ dw SLOTS7
+ dw SLOTSBIRD
+ dw SLOTSFISH
--- /dev/null
+++ b/data/events/trades.asm
@@ -1,0 +1,12 @@
+TradeMons:
+; givemonster, getmonster, textstring, nickname (11 bytes), 14 bytes total
+ db NIDORINO, NIDORINA, 0,"TERRY@@@@@@"
+ db ABRA, MR_MIME, 0,"MARCEL@@@@@"
+ db BUTTERFREE,BEEDRILL, 2,"CHIKUCHIKU@"
+ db PONYTA, SEEL, 0,"SAILOR@@@@@"
+ db SPEAROW, FARFETCHD,2,"DUX@@@@@@@@"
+ db SLOWBRO, LICKITUNG,0,"MARC@@@@@@@"
+ db POLIWHIRL, JYNX, 1,"LOLA@@@@@@@"
+ db RAICHU, ELECTRODE,1,"DORIS@@@@@@"
+ db VENONAT, TANGELA, 2,"CRINKLES@@@"
+ db NIDORAN_M, NIDORAN_F,2,"SPOT@@@@@@@"
--- a/data/evos_moves.asm
+++ /dev/null
@@ -1,2134 +1,0 @@
-; See constants/evolution_constants.asm
-; The max number of evolutions per monster is MAX_EVOLUTIONS
-
-EvosMovesPointerTable:
- dw RhydonEvosMoves
- dw KangaskhanEvosMoves
- dw NidoranMEvosMoves
- dw ClefairyEvosMoves
- dw SpearowEvosMoves
- dw VoltorbEvosMoves
- dw NidokingEvosMoves
- dw SlowbroEvosMoves
- dw IvysaurEvosMoves
- dw ExeggutorEvosMoves
- dw LickitungEvosMoves
- dw ExeggcuteEvosMoves
- dw GrimerEvosMoves
- dw GengarEvosMoves
- dw NidoranFEvosMoves
- dw NidoqueenEvosMoves
- dw CuboneEvosMoves
- dw RhyhornEvosMoves
- dw LaprasEvosMoves
- dw ArcanineEvosMoves
- dw MewEvosMoves
- dw GyaradosEvosMoves
- dw ShellderEvosMoves
- dw TentacoolEvosMoves
- dw GastlyEvosMoves
- dw ScytherEvosMoves
- dw StaryuEvosMoves
- dw BlastoiseEvosMoves
- dw PinsirEvosMoves
- dw TangelaEvosMoves
- dw MissingNo1FEvosMoves
- dw MissingNo20EvosMoves
- dw GrowlitheEvosMoves
- dw OnixEvosMoves
- dw FearowEvosMoves
- dw PidgeyEvosMoves
- dw SlowpokeEvosMoves
- dw KadabraEvosMoves
- dw GravelerEvosMoves
- dw ChanseyEvosMoves
- dw MachokeEvosMoves
- dw MrMimeEvosMoves
- dw HitmonleeEvosMoves
- dw HitmonchanEvosMoves
- dw ArbokEvosMoves
- dw ParasectEvosMoves
- dw PsyduckEvosMoves
- dw DrowzeeEvosMoves
- dw GolemEvosMoves
- dw MissingNo32EvosMoves
- dw MagmarEvosMoves
- dw MissingNo34EvosMoves
- dw ElectabuzzEvosMoves
- dw MagnetonEvosMoves
- dw KoffingEvosMoves
- dw MissingNo38EvosMoves
- dw MankeyEvosMoves
- dw SeelEvosMoves
- dw DiglettEvosMoves
- dw TaurosEvosMoves
- dw MissingNo3DEvosMoves
- dw MissingNo3EEvosMoves
- dw MissingNo3FEvosMoves
- dw FarfetchdEvosMoves
- dw VenonatEvosMoves
- dw DragoniteEvosMoves
- dw MissingNo43EvosMoves
- dw MissingNo44EvosMoves
- dw MissingNo45EvosMoves
- dw DoduoEvosMoves
- dw PoliwagEvosMoves
- dw JynxEvosMoves
- dw MoltresEvosMoves
- dw ArticunoEvosMoves
- dw ZapdosEvosMoves
- dw DittoEvosMoves
- dw MeowthEvosMoves
- dw KrabbyEvosMoves
- dw MissingNo4FEvosMoves
- dw MissingNo50EvosMoves
- dw MissingNo51EvosMoves
- dw VulpixEvosMoves
- dw NinetalesEvosMoves
- dw PikachuEvosMoves
- dw RaichuEvosMoves
- dw MissingNo56EvosMoves
- dw MissingNo57EvosMoves
- dw DratiniEvosMoves
- dw DragonairEvosMoves
- dw KabutoEvosMoves
- dw KabutopsEvosMoves
- dw HorseaEvosMoves
- dw SeadraEvosMoves
- dw MissingNo5EEvosMoves
- dw MissingNo5FEvosMoves
- dw SandshrewEvosMoves
- dw SandslashEvosMoves
- dw OmanyteEvosMoves
- dw OmastarEvosMoves
- dw JigglypuffEvosMoves
- dw WigglytuffEvosMoves
- dw EeveeEvosMoves
- dw FlareonEvosMoves
- dw JolteonEvosMoves
- dw VaporeonEvosMoves
- dw MachopEvosMoves
- dw ZubatEvosMoves
- dw EkansEvosMoves
- dw ParasEvosMoves
- dw PoliwhirlEvosMoves
- dw PoliwrathEvosMoves
- dw WeedleEvosMoves
- dw KakunaEvosMoves
- dw BeedrillEvosMoves
- dw MissingNo73EvosMoves
- dw DodrioEvosMoves
- dw PrimeapeEvosMoves
- dw DugtrioEvosMoves
- dw VenomothEvosMoves
- dw DewgongEvosMoves
- dw MissingNo79EvosMoves
- dw MissingNo7AEvosMoves
- dw CaterpieEvosMoves
- dw MetapodEvosMoves
- dw ButterfreeEvosMoves
- dw MachampEvosMoves
- dw MissingNo7FEvosMoves
- dw GolduckEvosMoves
- dw HypnoEvosMoves
- dw GolbatEvosMoves
- dw MewtwoEvosMoves
- dw SnorlaxEvosMoves
- dw MagikarpEvosMoves
- dw MissingNo86EvosMoves
- dw MissingNo87EvosMoves
- dw MukEvosMoves
- dw MissingNo8AEvosMoves
- dw KinglerEvosMoves
- dw CloysterEvosMoves
- dw MissingNo8CEvosMoves
- dw ElectrodeEvosMoves
- dw ClefableEvosMoves
- dw WeezingEvosMoves
- dw PersianEvosMoves
- dw MarowakEvosMoves
- dw MissingNo92EvosMoves
- dw HaunterEvosMoves
- dw AbraEvosMoves
- dw AlakazamEvosMoves
- dw PidgeottoEvosMoves
- dw PidgeotEvosMoves
- dw StarmieEvosMoves
- dw BulbasaurEvosMoves
- dw VenusaurEvosMoves
- dw TentacruelEvosMoves
- dw MissingNo9CEvosMoves
- dw GoldeenEvosMoves
- dw SeakingEvosMoves
- dw MissingNo9FEvosMoves
- dw MissingNoA0EvosMoves
- dw MissingNoA1EvosMoves
- dw MissingNoA2EvosMoves
- dw PonytaEvosMoves
- dw RapidashEvosMoves
- dw RattataEvosMoves
- dw RaticateEvosMoves
- dw NidorinoEvosMoves
- dw NidorinaEvosMoves
- dw GeodudeEvosMoves
- dw PorygonEvosMoves
- dw AerodactylEvosMoves
- dw MissingNoACEvosMoves
- dw MagnemiteEvosMoves
- dw MissingNoAEEvosMoves
- dw MissingNoAFEvosMoves
- dw CharmanderEvosMoves
- dw SquirtleEvosMoves
- dw CharmeleonEvosMoves
- dw WartortleEvosMoves
- dw CharizardEvosMoves
- dw MissingNoB5EvosMoves
- dw FossilKabutopsEvosMoves
- dw FossilAerodactylEvosMoves
- dw MonGhostEvosMoves
- dw OddishEvosMoves
- dw GloomEvosMoves
- dw VileplumeEvosMoves
- dw BellsproutEvosMoves
- dw WeepinbellEvosMoves
- dw VictreebelEvosMoves
-
-RhydonEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 30, STOMP
- db 35, TAIL_WHIP
- db 40, FURY_ATTACK
- db 48, HORN_DRILL
- db 55, LEER
- db 64, TAKE_DOWN
- db 0
-
-KangaskhanEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 26, BITE
- db 31, TAIL_WHIP
- db 36, MEGA_PUNCH
- db 41, LEER
- db 46, DIZZY_PUNCH
- db 0
-
-NidoranMEvosMoves:
-; Evolutions
- db EV_LEVEL, 16, NIDORINO
- db 0
-; Learnset
- db 8, HORN_ATTACK
- db 14, POISON_STING
- db 21, FOCUS_ENERGY
- db 29, FURY_ATTACK
- db 36, HORN_DRILL
- db 43, DOUBLE_KICK
- db 0
-
-ClefairyEvosMoves:
-; Evolutions
- db EV_ITEM, MOON_STONE, 1, CLEFABLE
- db 0
-; Learnset
- db 13, SING
- db 18, DOUBLESLAP
- db 24, MINIMIZE
- db 31, METRONOME
- db 39, DEFENSE_CURL
- db 48, LIGHT_SCREEN
- db 0
-
-SpearowEvosMoves:
-; Evolutions
- db EV_LEVEL, 20, FEAROW
- db 0
-; Learnset
- db 9, LEER
- db 15, FURY_ATTACK
- db 22, MIRROR_MOVE
- db 29, DRILL_PECK
- db 36, AGILITY
- db 0
-
-VoltorbEvosMoves:
-; Evolutions
- db EV_LEVEL, 30, ELECTRODE
- db 0
-; Learnset
- db 17, SONICBOOM
- db 22, SELFDESTRUCT
- db 29, LIGHT_SCREEN
- db 36, SWIFT
- db 43, EXPLOSION
- db 0
-
-NidokingEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 8, HORN_ATTACK
- db 14, POISON_STING
- db 23, THRASH
- db 0
-
-SlowbroEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 18, DISABLE
- db 22, HEADBUTT
- db 27, GROWL
- db 33, WATER_GUN
- db 37, WITHDRAW
- db 44, AMNESIA
- db 55, PSYCHIC_M
- db 0
-
-IvysaurEvosMoves:
-; Evolutions
- db EV_LEVEL, 32, VENUSAUR
- db 0
-; Learnset
- db 7, LEECH_SEED
- db 13, VINE_WHIP
- db 22, POISONPOWDER
- db 30, RAZOR_LEAF
- db 38, GROWTH
- db 46, SLEEP_POWDER
- db 54, SOLARBEAM
- db 0
-
-ExeggutorEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 28, STOMP
- db 0
-
-LickitungEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 7, STOMP
- db 15, DISABLE
- db 23, DEFENSE_CURL
- db 31, SLAM
- db 39, SCREECH
- db 0
-
-ExeggcuteEvosMoves:
-; Evolutions
- db EV_ITEM, LEAF_STONE, 1, EXEGGUTOR
- db 0
-; Learnset
- db 25, REFLECT
- db 28, LEECH_SEED
- db 32, STUN_SPORE
- db 37, POISONPOWDER
- db 42, SOLARBEAM
- db 48, SLEEP_POWDER
- db 0
-
-GrimerEvosMoves:
-; Evolutions
- db EV_LEVEL, 38, MUK
- db 0
-; Learnset
- db 30, POISON_GAS
- db 33, MINIMIZE
- db 37, SLUDGE
- db 42, HARDEN
- db 48, SCREECH
- db 55, ACID_ARMOR
- db 0
-
-GengarEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 29, HYPNOSIS
- db 38, DREAM_EATER
- db 0
-
-NidoranFEvosMoves:
-; Evolutions
- db EV_LEVEL, 16, NIDORINA
- db 0
-; Learnset
- db 8, SCRATCH
- db 14, POISON_STING
- db 21, TAIL_WHIP
- db 29, BITE
- db 36, FURY_SWIPES
- db 43, DOUBLE_KICK
- db 0
-
-NidoqueenEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 8, SCRATCH
- db 14, POISON_STING
- db 23, BODY_SLAM
- db 0
-
-CuboneEvosMoves:
-; Evolutions
- db EV_LEVEL, 28, MAROWAK
- db 0
-; Learnset
- db 25, LEER
- db 31, FOCUS_ENERGY
- db 38, THRASH
- db 43, BONEMERANG
- db 46, RAGE
- db 0
-
-RhyhornEvosMoves:
-; Evolutions
- db EV_LEVEL, 42, RHYDON
- db 0
-; Learnset
- db 30, STOMP
- db 35, TAIL_WHIP
- db 40, FURY_ATTACK
- db 45, HORN_DRILL
- db 50, LEER
- db 55, TAKE_DOWN
- db 0
-
-LaprasEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 16, SING
- db 20, MIST
- db 25, BODY_SLAM
- db 31, CONFUSE_RAY
- db 38, ICE_BEAM
- db 46, HYDRO_PUMP
- db 0
-
-ArcanineEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MewEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 10, TRANSFORM
- db 20, MEGA_PUNCH
- db 30, METRONOME
- db 40, PSYCHIC_M
- db 0
-
-GyaradosEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 20, BITE
- db 25, DRAGON_RAGE
- db 32, LEER
- db 41, HYDRO_PUMP
- db 52, HYPER_BEAM
- db 0
-
-ShellderEvosMoves:
-; Evolutions
- db EV_ITEM, WATER_STONE, 1, CLOYSTER
- db 0
-; Learnset
- db 18, SUPERSONIC
- db 23, CLAMP
- db 30, AURORA_BEAM
- db 39, LEER
- db 50, ICE_BEAM
- db 0
-
-TentacoolEvosMoves:
-; Evolutions
- db EV_LEVEL, 30, TENTACRUEL
- db 0
-; Learnset
- db 7, SUPERSONIC
- db 13, WRAP
- db 18, POISON_STING
- db 22, WATER_GUN
- db 27, CONSTRICT
- db 33, BARRIER
- db 40, SCREECH
- db 48, HYDRO_PUMP
- db 0
-
-GastlyEvosMoves:
-; Evolutions
- db EV_LEVEL, 25, HAUNTER
- db 0
-; Learnset
- db 27, HYPNOSIS
- db 35, DREAM_EATER
- db 0
-
-ScytherEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 17, LEER
- db 20, FOCUS_ENERGY
- db 24, DOUBLE_TEAM
- db 29, SLASH
- db 35, SWORDS_DANCE
- db 42, AGILITY
- db 0
-
-StaryuEvosMoves:
-; Evolutions
- db EV_ITEM, WATER_STONE, 1, STARMIE
- db 0
-; Learnset
- db 17, WATER_GUN
- db 22, HARDEN
- db 27, RECOVER
- db 32, SWIFT
- db 37, MINIMIZE
- db 42, LIGHT_SCREEN
- db 47, HYDRO_PUMP
- db 0
-
-BlastoiseEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 8, BUBBLE
- db 15, WATER_GUN
- db 24, BITE
- db 31, WITHDRAW
- db 42, SKULL_BASH
- db 52, HYDRO_PUMP
- db 0
-
-PinsirEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 25, SEISMIC_TOSS
- db 30, GUILLOTINE
- db 36, FOCUS_ENERGY
- db 43, HARDEN
- db 49, SLASH
- db 54, SWORDS_DANCE
- db 0
-
-TangelaEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 29, ABSORB
- db 32, POISONPOWDER
- db 36, STUN_SPORE
- db 39, SLEEP_POWDER
- db 45, SLAM
- db 49, GROWTH
- db 0
-
-MissingNo1FEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo20EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-GrowlitheEvosMoves:
-; Evolutions
- db EV_ITEM, FIRE_STONE, 1, ARCANINE
- db 0
-; Learnset
- db 18, EMBER
- db 23, LEER
- db 30, TAKE_DOWN
- db 39, AGILITY
- db 50, FLAMETHROWER
- db 0
-
-OnixEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 15, BIND
- db 19, ROCK_THROW
- db 25, RAGE
- db 33, SLAM
- db 43, HARDEN
- db 0
-
-FearowEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 9, LEER
- db 15, FURY_ATTACK
- db 25, MIRROR_MOVE
- db 34, DRILL_PECK
- db 43, AGILITY
- db 0
-
-PidgeyEvosMoves:
-; Evolutions
- db EV_LEVEL, 18, PIDGEOTTO
- db 0
-; Learnset
- db 5, SAND_ATTACK
- db 12, QUICK_ATTACK
- db 19, WHIRLWIND
- db 28, WING_ATTACK
- db 36, AGILITY
- db 44, MIRROR_MOVE
- db 0
-
-SlowpokeEvosMoves:
-; Evolutions
- db EV_LEVEL, 37, SLOWBRO
- db 0
-; Learnset
- db 18, DISABLE
- db 22, HEADBUTT
- db 27, GROWL
- db 33, WATER_GUN
- db 40, AMNESIA
- db 48, PSYCHIC_M
- db 0
-
-KadabraEvosMoves:
-; Evolutions
- db EV_TRADE, 1, ALAKAZAM
- db 0
-; Learnset
- db 16, CONFUSION
- db 20, DISABLE
- db 27, PSYBEAM
- db 31, RECOVER
- db 38, PSYCHIC_M
- db 42, REFLECT
- db 0
-
-GravelerEvosMoves:
-; Evolutions
- db EV_TRADE, 1, GOLEM
- db 0
-; Learnset
- db 11, DEFENSE_CURL
- db 16, ROCK_THROW
- db 21, SELFDESTRUCT
- db 29, HARDEN
- db 36, EARTHQUAKE
- db 43, EXPLOSION
- db 0
-
-ChanseyEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 24, SING
- db 30, GROWL
- db 38, MINIMIZE
- db 44, DEFENSE_CURL
- db 48, LIGHT_SCREEN
- db 54, DOUBLE_EDGE
- db 0
-
-MachokeEvosMoves:
-; Evolutions
- db EV_TRADE, 1, MACHAMP
- db 0
-; Learnset
- db 20, LOW_KICK
- db 25, LEER
- db 36, FOCUS_ENERGY
- db 44, SEISMIC_TOSS
- db 52, SUBMISSION
- db 0
-
-MrMimeEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 15, CONFUSION
- db 23, LIGHT_SCREEN
- db 31, DOUBLESLAP
- db 39, MEDITATE
- db 47, SUBSTITUTE
- db 0
-
-HitmonleeEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 33, ROLLING_KICK
- db 38, JUMP_KICK
- db 43, FOCUS_ENERGY
- db 48, HI_JUMP_KICK
- db 53, MEGA_KICK
- db 0
-
-HitmonchanEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 33, FIRE_PUNCH
- db 38, ICE_PUNCH
- db 43, THUNDERPUNCH
- db 48, MEGA_PUNCH
- db 53, COUNTER
- db 0
-
-ArbokEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 10, POISON_STING
- db 17, BITE
- db 27, GLARE
- db 36, SCREECH
- db 47, ACID
- db 0
-
-ParasectEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 13, STUN_SPORE
- db 20, LEECH_LIFE
- db 30, SPORE
- db 39, SLASH
- db 48, GROWTH
- db 0
-
-PsyduckEvosMoves:
-; Evolutions
- db EV_LEVEL, 33, GOLDUCK
- db 0
-; Learnset
- db 28, TAIL_WHIP
- db 31, DISABLE
- db 36, CONFUSION
- db 43, FURY_SWIPES
- db 52, HYDRO_PUMP
- db 0
-
-DrowzeeEvosMoves:
-; Evolutions
- db EV_LEVEL, 26, HYPNO
- db 0
-; Learnset
- db 12, DISABLE
- db 17, CONFUSION
- db 24, HEADBUTT
- db 29, POISON_GAS
- db 32, PSYCHIC_M
- db 37, MEDITATE
- db 0
-
-GolemEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 11, DEFENSE_CURL
- db 16, ROCK_THROW
- db 21, SELFDESTRUCT
- db 29, HARDEN
- db 36, EARTHQUAKE
- db 43, EXPLOSION
- db 0
-
-MissingNo32EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MagmarEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 36, LEER
- db 39, CONFUSE_RAY
- db 43, FIRE_PUNCH
- db 48, SMOKESCREEN
- db 52, SMOG
- db 55, FLAMETHROWER
- db 0
-
-MissingNo34EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-ElectabuzzEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 34, THUNDERSHOCK
- db 37, SCREECH
- db 42, THUNDERPUNCH
- db 49, LIGHT_SCREEN
- db 54, THUNDER
- db 0
-
-MagnetonEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 21, SONICBOOM
- db 25, THUNDERSHOCK
- db 29, SUPERSONIC
- db 38, THUNDER_WAVE
- db 46, SWIFT
- db 54, SCREECH
- db 0
-
-KoffingEvosMoves:
-; Evolutions
- db EV_LEVEL, 35, WEEZING
- db 0
-; Learnset
- db 32, SLUDGE
- db 37, SMOKESCREEN
- db 40, SELFDESTRUCT
- db 45, HAZE
- db 48, EXPLOSION
- db 0
-
-MissingNo38EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MankeyEvosMoves:
-; Evolutions
- db EV_LEVEL, 28, PRIMEAPE
- db 0
-; Learnset
- db 15, KARATE_CHOP
- db 21, FURY_SWIPES
- db 27, FOCUS_ENERGY
- db 33, SEISMIC_TOSS
- db 39, THRASH
- db 0
-
-SeelEvosMoves:
-; Evolutions
- db EV_LEVEL, 34, DEWGONG
- db 0
-; Learnset
- db 30, GROWL
- db 35, AURORA_BEAM
- db 40, REST
- db 45, TAKE_DOWN
- db 50, ICE_BEAM
- db 0
-
-DiglettEvosMoves:
-; Evolutions
- db EV_LEVEL, 26, DUGTRIO
- db 0
-; Learnset
- db 15, GROWL
- db 19, DIG
- db 24, SAND_ATTACK
- db 31, SLASH
- db 40, EARTHQUAKE
- db 0
-
-TaurosEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 21, STOMP
- db 28, TAIL_WHIP
- db 35, LEER
- db 44, RAGE
- db 51, TAKE_DOWN
- db 0
-
-MissingNo3DEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo3EEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo3FEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-FarfetchdEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 7, LEER
- db 15, FURY_ATTACK
- db 23, SWORDS_DANCE
- db 31, AGILITY
- db 39, SLASH
- db 0
-
-VenonatEvosMoves:
-; Evolutions
- db EV_LEVEL, 31, VENOMOTH
- db 0
-; Learnset
- db 24, POISONPOWDER
- db 27, LEECH_LIFE
- db 30, STUN_SPORE
- db 35, PSYBEAM
- db 38, SLEEP_POWDER
- db 43, PSYCHIC_M
- db 0
-
-DragoniteEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 10, THUNDER_WAVE
- db 20, AGILITY
- db 35, SLAM
- db 45, DRAGON_RAGE
- db 60, HYPER_BEAM
- db 0
-
-MissingNo43EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo44EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo45EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-DoduoEvosMoves:
-; Evolutions
- db EV_LEVEL, 31, DODRIO
- db 0
-; Learnset
- db 20, GROWL
- db 24, FURY_ATTACK
- db 30, DRILL_PECK
- db 36, RAGE
- db 40, TRI_ATTACK
- db 44, AGILITY
- db 0
-
-PoliwagEvosMoves:
-; Evolutions
- db EV_LEVEL, 25, POLIWHIRL
- db 0
-; Learnset
- db 16, HYPNOSIS
- db 19, WATER_GUN
- db 25, DOUBLESLAP
- db 31, BODY_SLAM
- db 38, AMNESIA
- db 45, HYDRO_PUMP
- db 0
-
-JynxEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 18, LICK
- db 23, DOUBLESLAP
- db 31, ICE_PUNCH
- db 39, BODY_SLAM
- db 47, THRASH
- db 58, BLIZZARD
- db 0
-
-MoltresEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 51, LEER
- db 55, AGILITY
- db 60, SKY_ATTACK
- db 0
-
-ArticunoEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 51, BLIZZARD
- db 55, AGILITY
- db 60, MIST
- db 0
-
-ZapdosEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 51, THUNDER
- db 55, AGILITY
- db 60, LIGHT_SCREEN
- db 0
-
-DittoEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MeowthEvosMoves:
-; Evolutions
- db EV_LEVEL, 28, PERSIAN
- db 0
-; Learnset
- db 12, BITE
- db 17, PAY_DAY
- db 24, SCREECH
- db 33, FURY_SWIPES
- db 44, SLASH
- db 0
-
-KrabbyEvosMoves:
-; Evolutions
- db EV_LEVEL, 28, KINGLER
- db 0
-; Learnset
- db 20, VICEGRIP
- db 25, GUILLOTINE
- db 30, STOMP
- db 35, CRABHAMMER
- db 40, HARDEN
- db 0
-
-MissingNo4FEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo50EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo51EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-VulpixEvosMoves:
-; Evolutions
- db EV_ITEM, FIRE_STONE, 1, NINETALES
- db 0
-; Learnset
- db 16, QUICK_ATTACK
- db 21, ROAR
- db 28, CONFUSE_RAY
- db 35, FLAMETHROWER
- db 42, FIRE_SPIN
- db 0
-
-NinetalesEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-PikachuEvosMoves:
-; Evolutions
- db EV_ITEM, THUNDER_STONE, 1, RAICHU
- db 0
-; Learnset
- db 9, THUNDER_WAVE
- db 16, QUICK_ATTACK
- db 26, SWIFT
- db 33, AGILITY
- db 43, THUNDER
- db 0
-
-RaichuEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo56EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo57EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-DratiniEvosMoves:
-; Evolutions
- db EV_LEVEL, 30, DRAGONAIR
- db 0
-; Learnset
- db 10, THUNDER_WAVE
- db 20, AGILITY
- db 30, SLAM
- db 40, DRAGON_RAGE
- db 50, HYPER_BEAM
- db 0
-
-DragonairEvosMoves:
-; Evolutions
- db EV_LEVEL, 55, DRAGONITE
- db 0
-; Learnset
- db 10, THUNDER_WAVE
- db 20, AGILITY
- db 35, SLAM
- db 45, DRAGON_RAGE
- db 55, HYPER_BEAM
- db 0
-
-KabutoEvosMoves:
-; Evolutions
- db EV_LEVEL, 40, KABUTOPS
- db 0
-; Learnset
- db 34, ABSORB
- db 39, SLASH
- db 44, LEER
- db 49, HYDRO_PUMP
- db 0
-
-KabutopsEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 34, ABSORB
- db 39, SLASH
- db 46, LEER
- db 53, HYDRO_PUMP
- db 0
-
-HorseaEvosMoves:
-; Evolutions
- db EV_LEVEL, 32, SEADRA
- db 0
-; Learnset
- db 19, SMOKESCREEN
- db 24, LEER
- db 30, WATER_GUN
- db 37, AGILITY
- db 45, HYDRO_PUMP
- db 0
-
-SeadraEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 19, SMOKESCREEN
- db 24, LEER
- db 30, WATER_GUN
- db 41, AGILITY
- db 52, HYDRO_PUMP
- db 0
-
-MissingNo5EEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo5FEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-SandshrewEvosMoves:
-; Evolutions
- db EV_LEVEL, 22, SANDSLASH
- db 0
-; Learnset
- db 10, SAND_ATTACK
- db 17, SLASH
- db 24, POISON_STING
- db 31, SWIFT
- db 38, FURY_SWIPES
- db 0
-
-SandslashEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 10, SAND_ATTACK
- db 17, SLASH
- db 27, POISON_STING
- db 36, SWIFT
- db 47, FURY_SWIPES
- db 0
-
-OmanyteEvosMoves:
-; Evolutions
- db EV_LEVEL, 40, OMASTAR
- db 0
-; Learnset
- db 34, HORN_ATTACK
- db 39, LEER
- db 46, SPIKE_CANNON
- db 53, HYDRO_PUMP
- db 0
-
-OmastarEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 34, HORN_ATTACK
- db 39, LEER
- db 44, SPIKE_CANNON
- db 49, HYDRO_PUMP
- db 0
-
-JigglypuffEvosMoves:
-; Evolutions
- db EV_ITEM, MOON_STONE, 1, WIGGLYTUFF
- db 0
-; Learnset
- db 9, POUND
- db 14, DISABLE
- db 19, DEFENSE_CURL
- db 24, DOUBLESLAP
- db 29, REST
- db 34, BODY_SLAM
- db 39, DOUBLE_EDGE
- db 0
-
-WigglytuffEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-EeveeEvosMoves:
-; Evolutions
- db EV_ITEM, FIRE_STONE, 1, FLAREON
- db EV_ITEM, THUNDER_STONE, 1, JOLTEON
- db EV_ITEM, WATER_STONE, 1, VAPOREON
- db 0
-; Learnset
- db 27, QUICK_ATTACK
- db 31, TAIL_WHIP
- db 37, BITE
- db 45, TAKE_DOWN
- db 0
-
-FlareonEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 27, QUICK_ATTACK
- db 31, EMBER
- db 37, TAIL_WHIP
- db 40, BITE
- db 42, LEER
- db 44, FIRE_SPIN
- db 48, RAGE
- db 54, FLAMETHROWER
- db 0
-
-JolteonEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 27, QUICK_ATTACK
- db 31, THUNDERSHOCK
- db 37, TAIL_WHIP
- db 40, THUNDER_WAVE
- db 42, DOUBLE_KICK
- db 44, AGILITY
- db 48, PIN_MISSILE
- db 54, THUNDER
- db 0
-
-VaporeonEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 27, QUICK_ATTACK
- db 31, WATER_GUN
- db 37, TAIL_WHIP
- db 40, BITE
- db 42, ACID_ARMOR
- db 44, HAZE
- db 48, MIST
- db 54, HYDRO_PUMP
- db 0
-
-MachopEvosMoves:
-; Evolutions
- db EV_LEVEL, 28, MACHOKE
- db 0
-; Learnset
- db 20, LOW_KICK
- db 25, LEER
- db 32, FOCUS_ENERGY
- db 39, SEISMIC_TOSS
- db 46, SUBMISSION
- db 0
-
-ZubatEvosMoves:
-; Evolutions
- db EV_LEVEL, 22, GOLBAT
- db 0
-; Learnset
- db 10, SUPERSONIC
- db 15, BITE
- db 21, CONFUSE_RAY
- db 28, WING_ATTACK
- db 36, HAZE
- db 0
-
-EkansEvosMoves:
-; Evolutions
- db EV_LEVEL, 22, ARBOK
- db 0
-; Learnset
- db 10, POISON_STING
- db 17, BITE
- db 24, GLARE
- db 31, SCREECH
- db 38, ACID
- db 0
-
-ParasEvosMoves:
-; Evolutions
- db EV_LEVEL, 24, PARASECT
- db 0
-; Learnset
- db 13, STUN_SPORE
- db 20, LEECH_LIFE
- db 27, SPORE
- db 34, SLASH
- db 41, GROWTH
- db 0
-
-PoliwhirlEvosMoves:
-; Evolutions
- db EV_ITEM, WATER_STONE, 1, POLIWRATH
- db 0
-; Learnset
- db 16, HYPNOSIS
- db 19, WATER_GUN
- db 26, DOUBLESLAP
- db 33, BODY_SLAM
- db 41, AMNESIA
- db 49, HYDRO_PUMP
- db 0
-
-PoliwrathEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 16, HYPNOSIS
- db 19, WATER_GUN
- db 0
-
-WeedleEvosMoves:
-; Evolutions
- db EV_LEVEL, 7, KAKUNA
- db 0
-; Learnset
- db 0
-
-KakunaEvosMoves:
-; Evolutions
- db EV_LEVEL, 10, BEEDRILL
- db 0
-; Learnset
- db 0
-
-BeedrillEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 12, FURY_ATTACK
- db 16, FOCUS_ENERGY
- db 20, TWINEEDLE
- db 25, RAGE
- db 30, PIN_MISSILE
- db 35, AGILITY
- db 0
-
-MissingNo73EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-DodrioEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 20, GROWL
- db 24, FURY_ATTACK
- db 30, DRILL_PECK
- db 39, RAGE
- db 45, TRI_ATTACK
- db 51, AGILITY
- db 0
-
-PrimeapeEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 15, KARATE_CHOP
- db 21, FURY_SWIPES
- db 27, FOCUS_ENERGY
- db 37, SEISMIC_TOSS
- db 46, THRASH
- db 0
-
-DugtrioEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 15, GROWL
- db 19, DIG
- db 24, SAND_ATTACK
- db 35, SLASH
- db 47, EARTHQUAKE
- db 0
-
-VenomothEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 24, POISONPOWDER
- db 27, LEECH_LIFE
- db 30, STUN_SPORE
- db 38, PSYBEAM
- db 43, SLEEP_POWDER
- db 50, PSYCHIC_M
- db 0
-
-DewgongEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 30, GROWL
- db 35, AURORA_BEAM
- db 44, REST
- db 50, TAKE_DOWN
- db 56, ICE_BEAM
- db 0
-
-MissingNo79EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo7AEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-CaterpieEvosMoves:
-; Evolutions
- db EV_LEVEL, 7, METAPOD
- db 0
-; Learnset
- db 0
-
-MetapodEvosMoves:
-; Evolutions
- db EV_LEVEL, 10, BUTTERFREE
- db 0
-; Learnset
- db 0
-
-ButterfreeEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 12, CONFUSION
- db 15, POISONPOWDER
- db 16, STUN_SPORE
- db 17, SLEEP_POWDER
- db 21, SUPERSONIC
- db 26, WHIRLWIND
- db 32, PSYBEAM
- db 0
-
-MachampEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 20, LOW_KICK
- db 25, LEER
- db 36, FOCUS_ENERGY
- db 44, SEISMIC_TOSS
- db 52, SUBMISSION
- db 0
-
-MissingNo7FEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-GolduckEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 28, TAIL_WHIP
- db 31, DISABLE
- db 39, CONFUSION
- db 48, FURY_SWIPES
- db 59, HYDRO_PUMP
- db 0
-
-HypnoEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 12, DISABLE
- db 17, CONFUSION
- db 24, HEADBUTT
- db 33, POISON_GAS
- db 37, PSYCHIC_M
- db 43, MEDITATE
- db 0
-
-GolbatEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 10, SUPERSONIC
- db 15, BITE
- db 21, CONFUSE_RAY
- db 32, WING_ATTACK
- db 43, HAZE
- db 0
-
-MewtwoEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 63, BARRIER
- db 66, PSYCHIC_M
- db 70, RECOVER
- db 75, MIST
- db 81, AMNESIA
- db 0
-
-SnorlaxEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 35, BODY_SLAM
- db 41, HARDEN
- db 48, DOUBLE_EDGE
- db 56, HYPER_BEAM
- db 0
-
-MagikarpEvosMoves:
-; Evolutions
- db EV_LEVEL, 20, GYARADOS
- db 0
-; Learnset
- db 15, TACKLE
- db 0
-
-MissingNo86EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNo87EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MukEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 30, POISON_GAS
- db 33, MINIMIZE
- db 37, SLUDGE
- db 45, HARDEN
- db 53, SCREECH
- db 60, ACID_ARMOR
- db 0
-
-MissingNo8AEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-KinglerEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 20, VICEGRIP
- db 25, GUILLOTINE
- db 34, STOMP
- db 42, CRABHAMMER
- db 49, HARDEN
- db 0
-
-CloysterEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 50, SPIKE_CANNON
- db 0
-
-MissingNo8CEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-ElectrodeEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 17, SONICBOOM
- db 22, SELFDESTRUCT
- db 29, LIGHT_SCREEN
- db 40, SWIFT
- db 50, EXPLOSION
- db 0
-
-ClefableEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-WeezingEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 32, SLUDGE
- db 39, SMOKESCREEN
- db 43, SELFDESTRUCT
- db 49, HAZE
- db 53, EXPLOSION
- db 0
-
-PersianEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 12, BITE
- db 17, PAY_DAY
- db 24, SCREECH
- db 37, FURY_SWIPES
- db 51, SLASH
- db 0
-
-MarowakEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 25, LEER
- db 33, FOCUS_ENERGY
- db 41, THRASH
- db 48, BONEMERANG
- db 55, RAGE
- db 0
-
-MissingNo92EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-HaunterEvosMoves:
-; Evolutions
- db EV_TRADE, 1, GENGAR
- db 0
-; Learnset
- db 29, HYPNOSIS
- db 38, DREAM_EATER
- db 0
-
-AbraEvosMoves:
-; Evolutions
- db EV_LEVEL, 16, KADABRA
- db 0
-; Learnset
- db 0
-
-AlakazamEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 16, CONFUSION
- db 20, DISABLE
- db 27, PSYBEAM
- db 31, RECOVER
- db 38, PSYCHIC_M
- db 42, REFLECT
- db 0
-
-PidgeottoEvosMoves:
-; Evolutions
- db EV_LEVEL, 36, PIDGEOT
- db 0
-; Learnset
- db 5, SAND_ATTACK
- db 12, QUICK_ATTACK
- db 21, WHIRLWIND
- db 31, WING_ATTACK
- db 40, AGILITY
- db 49, MIRROR_MOVE
- db 0
-
-PidgeotEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 5, SAND_ATTACK
- db 12, QUICK_ATTACK
- db 21, WHIRLWIND
- db 31, WING_ATTACK
- db 44, AGILITY
- db 54, MIRROR_MOVE
- db 0
-
-StarmieEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-BulbasaurEvosMoves:
-; Evolutions
- db EV_LEVEL, 16, IVYSAUR
- db 0
-; Learnset
- db 7, LEECH_SEED
- db 13, VINE_WHIP
- db 20, POISONPOWDER
- db 27, RAZOR_LEAF
- db 34, GROWTH
- db 41, SLEEP_POWDER
- db 48, SOLARBEAM
- db 0
-
-VenusaurEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 7, LEECH_SEED
- db 13, VINE_WHIP
- db 22, POISONPOWDER
- db 30, RAZOR_LEAF
- db 43, GROWTH
- db 55, SLEEP_POWDER
- db 65, SOLARBEAM
- db 0
-
-TentacruelEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 7, SUPERSONIC
- db 13, WRAP
- db 18, POISON_STING
- db 22, WATER_GUN
- db 27, CONSTRICT
- db 35, BARRIER
- db 43, SCREECH
- db 50, HYDRO_PUMP
- db 0
-
-MissingNo9CEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-GoldeenEvosMoves:
-; Evolutions
- db EV_LEVEL, 33, SEAKING
- db 0
-; Learnset
- db 19, SUPERSONIC
- db 24, HORN_ATTACK
- db 30, FURY_ATTACK
- db 37, WATERFALL
- db 45, HORN_DRILL
- db 54, AGILITY
- db 0
-
-SeakingEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 19, SUPERSONIC
- db 24, HORN_ATTACK
- db 30, FURY_ATTACK
- db 39, WATERFALL
- db 48, HORN_DRILL
- db 54, AGILITY
- db 0
-
-MissingNo9FEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNoA0EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNoA1EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNoA2EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-PonytaEvosMoves:
-; Evolutions
- db EV_LEVEL, 40, RAPIDASH
- db 0
-; Learnset
- db 30, TAIL_WHIP
- db 32, STOMP
- db 35, GROWL
- db 39, FIRE_SPIN
- db 43, TAKE_DOWN
- db 48, AGILITY
- db 0
-
-RapidashEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 30, TAIL_WHIP
- db 32, STOMP
- db 35, GROWL
- db 39, FIRE_SPIN
- db 47, TAKE_DOWN
- db 55, AGILITY
- db 0
-
-RattataEvosMoves:
-; Evolutions
- db EV_LEVEL, 20, RATICATE
- db 0
-; Learnset
- db 7, QUICK_ATTACK
- db 14, HYPER_FANG
- db 23, FOCUS_ENERGY
- db 34, SUPER_FANG
- db 0
-
-RaticateEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 7, QUICK_ATTACK
- db 14, HYPER_FANG
- db 27, FOCUS_ENERGY
- db 41, SUPER_FANG
- db 0
-
-NidorinoEvosMoves:
-; Evolutions
- db EV_ITEM, MOON_STONE, 1, NIDOKING
- db 0
-; Learnset
- db 8, HORN_ATTACK
- db 14, POISON_STING
- db 23, FOCUS_ENERGY
- db 32, FURY_ATTACK
- db 41, HORN_DRILL
- db 50, DOUBLE_KICK
- db 0
-
-NidorinaEvosMoves:
-; Evolutions
- db EV_ITEM, MOON_STONE, 1, NIDOQUEEN
- db 0
-; Learnset
- db 8, SCRATCH
- db 14, POISON_STING
- db 23, TAIL_WHIP
- db 32, BITE
- db 41, FURY_SWIPES
- db 50, DOUBLE_KICK
- db 0
-
-GeodudeEvosMoves:
-; Evolutions
- db EV_LEVEL, 25, GRAVELER
- db 0
-; Learnset
- db 11, DEFENSE_CURL
- db 16, ROCK_THROW
- db 21, SELFDESTRUCT
- db 26, HARDEN
- db 31, EARTHQUAKE
- db 36, EXPLOSION
- db 0
-
-PorygonEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 23, PSYBEAM
- db 28, RECOVER
- db 35, AGILITY
- db 42, TRI_ATTACK
- db 0
-
-AerodactylEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 33, SUPERSONIC
- db 38, BITE
- db 45, TAKE_DOWN
- db 54, HYPER_BEAM
- db 0
-
-MissingNoACEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MagnemiteEvosMoves:
-; Evolutions
- db EV_LEVEL, 30, MAGNETON
- db 0
-; Learnset
- db 21, SONICBOOM
- db 25, THUNDERSHOCK
- db 29, SUPERSONIC
- db 35, THUNDER_WAVE
- db 41, SWIFT
- db 47, SCREECH
- db 0
-
-MissingNoAEEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MissingNoAFEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-CharmanderEvosMoves:
-; Evolutions
- db EV_LEVEL, 16, CHARMELEON
- db 0
-; Learnset
- db 9, EMBER
- db 15, LEER
- db 22, RAGE
- db 30, SLASH
- db 38, FLAMETHROWER
- db 46, FIRE_SPIN
- db 0
-
-SquirtleEvosMoves:
-; Evolutions
- db EV_LEVEL, 16, WARTORTLE
- db 0
-; Learnset
- db 8, BUBBLE
- db 15, WATER_GUN
- db 22, BITE
- db 28, WITHDRAW
- db 35, SKULL_BASH
- db 42, HYDRO_PUMP
- db 0
-
-CharmeleonEvosMoves:
-; Evolutions
- db EV_LEVEL, 36, CHARIZARD
- db 0
-; Learnset
- db 9, EMBER
- db 15, LEER
- db 24, RAGE
- db 33, SLASH
- db 42, FLAMETHROWER
- db 56, FIRE_SPIN
- db 0
-
-WartortleEvosMoves:
-; Evolutions
- db EV_LEVEL, 36, BLASTOISE
- db 0
-; Learnset
- db 8, BUBBLE
- db 15, WATER_GUN
- db 24, BITE
- db 31, WITHDRAW
- db 39, SKULL_BASH
- db 47, HYDRO_PUMP
- db 0
-
-CharizardEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 9, EMBER
- db 15, LEER
- db 24, RAGE
- db 36, SLASH
- db 46, FLAMETHROWER
- db 55, FIRE_SPIN
- db 0
-
-MissingNoB5EvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-FossilKabutopsEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-FossilAerodactylEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-MonGhostEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 0
-
-OddishEvosMoves:
-; Evolutions
- db EV_LEVEL, 21, GLOOM
- db 0
-; Learnset
- db 15, POISONPOWDER
- db 17, STUN_SPORE
- db 19, SLEEP_POWDER
- db 24, ACID
- db 33, PETAL_DANCE
- db 46, SOLARBEAM
- db 0
-
-GloomEvosMoves:
-; Evolutions
- db EV_ITEM, LEAF_STONE, 1, VILEPLUME
- db 0
-; Learnset
- db 15, POISONPOWDER
- db 17, STUN_SPORE
- db 19, SLEEP_POWDER
- db 28, ACID
- db 38, PETAL_DANCE
- db 52, SOLARBEAM
- db 0
-
-VileplumeEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 15, POISONPOWDER
- db 17, STUN_SPORE
- db 19, SLEEP_POWDER
- db 0
-
-BellsproutEvosMoves:
-; Evolutions
- db EV_LEVEL, 21, WEEPINBELL
- db 0
-; Learnset
- db 13, WRAP
- db 15, POISONPOWDER
- db 18, SLEEP_POWDER
- db 21, STUN_SPORE
- db 26, ACID
- db 33, RAZOR_LEAF
- db 42, SLAM
- db 0
-
-WeepinbellEvosMoves:
-; Evolutions
- db EV_ITEM, LEAF_STONE, 1, VICTREEBEL
- db 0
-; Learnset
- db 13, WRAP
- db 15, POISONPOWDER
- db 18, SLEEP_POWDER
- db 23, STUN_SPORE
- db 29, ACID
- db 38, RAZOR_LEAF
- db 49, SLAM
- db 0
-
-VictreebelEvosMoves:
-; Evolutions
- db 0
-; Learnset
- db 13, WRAP
- db 15, POISONPOWDER
- db 18, SLEEP_POWDER
- db 0
--- a/data/facing.asm
+++ /dev/null
@@ -1,57 +1,0 @@
-SpriteFacingAndAnimationTable:
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; facing down, walk animation frame 0
- dw SpriteFacingDownAndWalking, SpriteOAMParameters ; facing down, walk animation frame 1
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; facing down, walk animation frame 2
- dw SpriteFacingDownAndWalking, SpriteOAMParametersFlipped ; facing down, walk animation frame 3
- dw SpriteFacingUpAndStanding, SpriteOAMParameters ; facing up, walk animation frame 0
- dw SpriteFacingUpAndWalking, SpriteOAMParameters ; facing up, walk animation frame 1
- dw SpriteFacingUpAndStanding, SpriteOAMParameters ; facing up, walk animation frame 2
- dw SpriteFacingUpAndWalking, SpriteOAMParametersFlipped ; facing up, walk animation frame 3
- dw SpriteFacingLeftAndStanding, SpriteOAMParameters ; facing left, walk animation frame 0
- dw SpriteFacingLeftAndWalking, SpriteOAMParameters ; facing left, walk animation frame 1
- dw SpriteFacingLeftAndStanding, SpriteOAMParameters ; facing left, walk animation frame 2
- dw SpriteFacingLeftAndWalking, SpriteOAMParameters ; facing left, walk animation frame 3
- dw SpriteFacingLeftAndStanding, SpriteOAMParametersFlipped ; facing right, walk animation frame 0
- dw SpriteFacingLeftAndWalking, SpriteOAMParametersFlipped ; facing right, walk animation frame 1
- dw SpriteFacingLeftAndStanding, SpriteOAMParametersFlipped ; facing right, walk animation frame 2
- dw SpriteFacingLeftAndWalking, SpriteOAMParametersFlipped ; facing right, walk animation frame 3
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; ---
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; This table is used for sprites $a and $b.
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; All orientation and animation parameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; lead to the same result. Used for immobile
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; sprites like items on the ground
- dw SpriteFacingDownAndStanding, SpriteOAMParameters ; ---
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
- dw SpriteFacingDownAndStanding, SpriteOAMParameters
-
-SpriteFacingDownAndStanding:
- db $00,$01,$02,$03
-SpriteFacingDownAndWalking:
- db $80,$81,$82,$83
-SpriteFacingUpAndStanding:
- db $04,$05,$06,$07
-SpriteFacingUpAndWalking:
- db $84,$85,$86,$87
-SpriteFacingLeftAndStanding:
- db $08,$09,$0a,$0b
-SpriteFacingLeftAndWalking:
- db $88,$89,$8a,$8b
-
-SpriteOAMParameters:
- db $00,$00, $00 ; top left
- db $00,$08, $00 ; top right
- db $08,$00, OAMFLAG_CANBEMASKED ; bottom left
- db $08,$08, OAMFLAG_CANBEMASKED | OAMFLAG_ENDOFDATA ; bottom right
-SpriteOAMParametersFlipped:
- db $00,$08, OAMFLAG_VFLIPPED
- db $00,$00, OAMFLAG_VFLIPPED
- db $08,$08, OAMFLAG_VFLIPPED | OAMFLAG_CANBEMASKED
- db $08,$00, OAMFLAG_VFLIPPED | OAMFLAG_CANBEMASKED | OAMFLAG_ENDOFDATA
--- a/data/force_bike_surf.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-ForcedBikeOrSurfMaps:
-; map id, y, x
- db ROUTE_16,$0A,$11
- db ROUTE_16,$0B,$11
- db ROUTE_18,$08,$21
- db ROUTE_18,$09,$21
- db SEAFOAM_ISLANDS_B3F,$07,$12
- db SEAFOAM_ISLANDS_B3F,$07,$13
- db SEAFOAM_ISLANDS_B4F,$0E,$04
- db SEAFOAM_ISLANDS_B4F,$0E,$05
- db $FF ;end
--- a/data/good_rod.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-GoodRodMons:
- db 10,GOLDEEN
- db 10,POLIWAG
--- a/data/guard_drink_items.asm
+++ /dev/null
@@ -1,2 +1,0 @@
-GuardDrinksList:
- db FRESH_WATER, SODA_POP, LEMONADE, $00
--- a/data/hidden_coins.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-HiddenCoinCoords:
- db GAME_CORNER,$08,$00
- db GAME_CORNER,$10,$01
- db GAME_CORNER,$0b,$03
- db GAME_CORNER,$0e,$03
- db GAME_CORNER,$0c,$04
- db GAME_CORNER,$0c,$09
- db GAME_CORNER,$0f,$09
- db GAME_CORNER,$0e,$10
- db GAME_CORNER,$10,$0a
- db GAME_CORNER,$07,$0b
- db GAME_CORNER,$08,$0f
- db GAME_CORNER,$0f,$0c
- db $ff
--- a/data/hidden_item_coords.asm
+++ /dev/null
@@ -1,57 +1,0 @@
-HiddenItemCoords:
-; map ID, then coords
- db VIRIDIAN_FOREST,$12,$01
- db VIRIDIAN_FOREST,$2a,$10
- db MT_MOON_B2F,$0c,$12
- db ROUTE_25,$03,$26
- db ROUTE_9,$07,$0e
- db SS_ANNE_KITCHEN,$09,$0d
- db SS_ANNE_B1F_ROOMS,$01,$03
- db ROUTE_10,$11,$09
- db ROUTE_10,$35,$10
- db ROCKET_HIDEOUT_B1F,$0f,$15
- db ROCKET_HIDEOUT_B3F,$11,$1b
- db ROCKET_HIDEOUT_B4F,$01,$19
- db POKEMON_TOWER_5F,$0c,$04
- db ROUTE_13,$0e,$01
- db ROUTE_13,$0d,$10
- db POKEMON_MANSION_B1F,$09,$01
- db SAFARI_ZONE_GATE,$01,$0a
- db SAFARI_ZONE_WEST,$05,$06
- db SILPH_CO_5F,$03,$0c
- db SILPH_CO_9F,$0f,$02
- db COPYCATS_HOUSE_2F,$01,$01
- db CERULEAN_CAVE_1F,$0b,$0e
- db CERULEAN_CAVE_B1F,$03,$1b
- db POWER_PLANT,$10,$11
- db POWER_PLANT,$01,$0c
- db SEAFOAM_ISLANDS_B2F,$0f,$0f
- db SEAFOAM_ISLANDS_B4F,$11,$19
- db POKEMON_MANSION_1F,$10,$08
- db POKEMON_MANSION_3F,$09,$01
- db ROUTE_23,$2c,$09
- db ROUTE_23,$46,$13
- db ROUTE_23,$5a,$08
- db VICTORY_ROAD_2F,$02,$05
- db VICTORY_ROAD_2F,$07,$1a
- db UNUSED_MAP_6F,$0b,$0e
- db VIRIDIAN_CITY,$04,$0e
- db ROUTE_11,$05,$30
- db ROUTE_12,$3f,$02
- db ROUTE_17,$0e,$0f
- db ROUTE_17,$2d,$08
- db ROUTE_17,$48,$11
- db ROUTE_17,$5b,$04
- db ROUTE_17,$79,$08
- db UNDERGROUND_PATH_NORTH_SOUTH,$04,$03
- db UNDERGROUND_PATH_NORTH_SOUTH,$22,$04
- db UNDERGROUND_PATH_WEST_EAST,$02,$0c
- db UNDERGROUND_PATH_WEST_EAST,$05,$15
- db CELADON_CITY,$0f,$30
- db ROUTE_25,$01,$0a
- db MT_MOON_B2F,$09,$21
- db SEAFOAM_ISLANDS_B3F,$10,$09
- db VERMILION_CITY,$0b,$0e
- db CERULEAN_CITY,$08,$0f
- db ROUTE_4,$03,$28
- db $ff
--- a/data/hidden_objects.asm
+++ /dev/null
@@ -1,853 +1,0 @@
-HiddenObjectMaps:
- db REDS_HOUSE_2F
- db BLUES_HOUSE
- db OAKS_LAB
- db VIRIDIAN_POKECENTER
- db VIRIDIAN_MART
- db VIRIDIAN_SCHOOL_HOUSE
- db VIRIDIAN_GYM
- db MUSEUM_1F
- db PEWTER_GYM
- db PEWTER_MART
- db PEWTER_POKECENTER
- db CERULEAN_POKECENTER
- db CERULEAN_GYM
- db CERULEAN_MART
- db LAVENDER_POKECENTER
- db VERMILION_POKECENTER
- db VERMILION_GYM
- db CELADON_MANSION_2F
- db CELADON_POKECENTER
- db CELADON_GYM
- db GAME_CORNER
- db CELADON_HOTEL
- db FUCHSIA_POKECENTER
- db FUCHSIA_GYM
- db CINNABAR_GYM
- db CINNABAR_POKECENTER
- db SAFFRON_GYM
- db MT_MOON_POKECENTER
- db ROCK_TUNNEL_POKECENTER
- db TRADE_CENTER
- db COLOSSEUM
- db VIRIDIAN_FOREST
- db MT_MOON_B2F
- db INDIGO_PLATEAU
- db ROUTE_25
- db ROUTE_9
- db SS_ANNE_KITCHEN
- db SS_ANNE_B1F_ROOMS
- db ROCKET_HIDEOUT_B1F
- db ROCKET_HIDEOUT_B3F
- db ROCKET_HIDEOUT_B4F
- db SAFFRON_POKECENTER
- db POKEMON_TOWER_5F
- db ROUTE_13
- db SAFARI_ZONE_GATE
- db SAFARI_ZONE_WEST
- db SILPH_CO_5F
- db SILPH_CO_9F
- db COPYCATS_HOUSE_2F
- db CERULEAN_CAVE_1F
- db CERULEAN_CAVE_B1F
- db POWER_PLANT
- db SEAFOAM_ISLANDS_B2F
- db SEAFOAM_ISLANDS_B4F
- db POKEMON_MANSION_1F
- db POKEMON_MANSION_3F
- db ROUTE_23
- db VICTORY_ROAD_2F
- db UNUSED_MAP_6F
- db BILLS_HOUSE
- db VIRIDIAN_CITY
- db SAFARI_ZONE_WEST_REST_HOUSE
- db SAFARI_ZONE_EAST_REST_HOUSE
- db SAFARI_ZONE_NORTH_REST_HOUSE
- db ROUTE_15_GATE_2F
- db MR_FUJIS_HOUSE
- db CELADON_MANSION_ROOF_HOUSE
- db FIGHTING_DOJO
- db ROUTE_10
- db INDIGO_PLATEAU_LOBBY
- db CINNABAR_LAB_FOSSIL_ROOM
- db BIKE_SHOP
- db ROUTE_11
- db ROUTE_12
- db POKEMON_MANSION_2F
- db POKEMON_MANSION_B1F
- db SILPH_CO_11F
- db ROUTE_17
- db UNDERGROUND_PATH_NORTH_SOUTH
- db UNDERGROUND_PATH_WEST_EAST
- db CELADON_CITY
- db SEAFOAM_ISLANDS_B3F
- db VERMILION_CITY
- db CERULEAN_CITY
- db ROUTE_4
- db $FF
-
-HiddenObjectPointers:
-; each of these pointers is for the corresponding map in HiddenObjectMaps
- dw RedsHouse2FHiddenObjects
- dw BluesHouseHiddenObjects
- dw OaksLabHiddenObjects
- dw ViridianPokecenterHiddenObjects
- dw ViridianMartHiddenObjects
- dw ViridianSchoolHiddenObjects
- dw ViridianGymHiddenObjects
- dw Museum1FHiddenObjects
- dw PewterGymHiddenObjects
- dw PewterMartHiddenObjects
- dw PewterPokecenterHiddenObjects
- dw CeruleanPokecenterHiddenObjects
- dw CeruleanGymHiddenObjects
- dw CeruleanMartHiddenObjects
- dw LavenderPokecenterHiddenObjects
- dw VermilionPokecenterHiddenObjects
- dw VermilionGymHiddenObjects
- dw CeladonMansion2HiddenObjects
- dw CeladonPokecenterHiddenObjects
- dw CeladonGymHiddenObjects
- dw GameCornerHiddenObjects
- dw CeladonHotelHiddenObjects
- dw FuchsiaPokecenterHiddenObjects
- dw FuchsiaGymHiddenObjects
- dw CinnabarGymHiddenObjects
- dw CinnabarPokecenterHiddenObjects
- dw SaffronGymHiddenObjects
- dw MtMoonPokecenterHiddenObjects
- dw RockTunnelPokecenterHiddenObjects
- dw TradeCenterHiddenObjects
- dw ColosseumHiddenObjects
- dw ViridianForestHiddenObjects
- dw MtMoon3HiddenObjects
- dw IndigoPlateauHiddenObjects
- dw Route25HiddenObjects
- dw Route9HiddenObjects
- dw SSAnne6HiddenObjects
- dw SSAnne10HiddenObjects
- dw RocketHideout1HiddenObjects
- dw RocketHideout3HiddenObjects
- dw RocketHideout4HiddenObjects
- dw SaffronPokecenterHiddenObjects
- dw PokemonTower5HiddenObjects
- dw Route13HiddenObjects
- dw SafariZoneEntranceHiddenObjects
- dw SafariZoneWestHiddenObjects
- dw SilphCo5FHiddenObjects
- dw SilphCo9FHiddenObjects
- dw CopycatsHouse2FHiddenObjects
- dw CeruleanCave1HiddenObjects
- dw CeruleanCave3HiddenObjects
- dw PowerPlantHiddenObjects
- dw SeafoamIslands3HiddenObjects
- dw SeafoamIslands5HiddenObjects
- dw Mansion1HiddenObjects
- dw Mansion3HiddenObjects
- dw Route23HiddenObjects
- dw VictoryRoad2HiddenObjects
- dw Unused6FHiddenObjects
- dw BillsHouseHiddenObjects
- dw ViridianCityHiddenObjects
- dw SafariZoneRestHouse2HiddenObjects
- dw SafariZoneRestHouse3HiddenObjects
- dw SafariZoneRestHouse4HiddenObjects
- dw Route15GateUpstairsHiddenObjects
- dw LavenderHouse1HiddenObjects
- dw CeladonMansion5HiddenObjects
- dw FightingDojoHiddenObjects
- dw Route10HiddenObjects
- dw IndigoPlateauLobbyHiddenObjects
- dw CinnabarLab4HiddenObjects
- dw BikeShopHiddenObjects
- dw Route11HiddenObjects
- dw Route12HiddenObjects
- dw Mansion2HiddenObjects
- dw Mansion4HiddenObjects
- dw SilphCo11FHiddenObjects
- dw Route17HiddenObjects
- dw UndergroundPathNsHiddenObjects
- dw UndergroundPathWeHiddenObjects
- dw CeladonCityHiddenObjects
- dw SeafoamIslands4HiddenObjects
- dw VermilionCityHiddenObjects
- dw CeruleanCityHiddenObjects
- dw Route4HiddenObjects
-
-; format: y-coord, x-coord, text id/item id, object routine
-TradeCenterHiddenObjects:
- db $04,$05,$d0
- db BANK(CableClubRightGameboy)
- dw CableClubRightGameboy
- db $04,$04,$d0
- db BANK(CableClubLeftGameboy)
- dw CableClubLeftGameboy
- db $FF
-ColosseumHiddenObjects:
- db $04,$05,$d0
- db BANK(CableClubRightGameboy)
- dw CableClubRightGameboy
- db $04,$04,$d0
- db BANK(CableClubLeftGameboy)
- dw CableClubLeftGameboy
- db $FF
-RedsHouse2FHiddenObjects:
- db $01,$00,$04
- dbw BANK(OpenRedsPC), OpenRedsPC
- db $05,$03,$d0
- dbw BANK(PrintRedSNESText), PrintRedSNESText
- db $FF
-BluesHouseHiddenObjects:
- db $01,$00,$04
- db BANK(PrintBookcaseText)
- dw PrintBookcaseText
- db $01,$01,$04
- db BANK(PrintBookcaseText)
- dw PrintBookcaseText
- db $01,$07,$04
- db BANK(PrintBookcaseText)
- dw PrintBookcaseText
- db $FF
-OaksLabHiddenObjects:
- db $00,$04,$04
- db BANK(DisplayOakLabLeftPoster)
- dw DisplayOakLabLeftPoster
- db $00,$05,$04
- db BANK(DisplayOakLabRightPoster)
- dw DisplayOakLabRightPoster
- db $01,$00,$04
- db BANK(DisplayOakLabEmailText)
- dw DisplayOakLabEmailText
- db $01,$01,$04
- db BANK(DisplayOakLabEmailText)
- dw DisplayOakLabEmailText
- db $FF
-ViridianPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-ViridianMartHiddenObjects:
- db $FF
-ViridianSchoolHiddenObjects:
- db $04,$03,(ViridianSchoolNotebook_id - TextPredefs) / 2 + 1
- db Bank(PrintNotebookText)
- dw PrintNotebookText
- db $00,$03,(ViridianSchoolBlackboard_id - TextPredefs) / 2 + 1
- db BANK(PrintBlackboardLinkCableText)
- dw PrintBlackboardLinkCableText
- db $FF
-ViridianGymHiddenObjects:
- db $0f,$0f,$04
- dbw BANK(GymStatues),GymStatues
- db $0f,$12,$04
- dbw BANK(GymStatues),GymStatues
- db $FF
-Museum1FHiddenObjects:
- db $03,$02,$04
- dbw BANK(AerodactylFossil), AerodactylFossil
- db $06,$02,$04
- dbw BANK(KabutopsFossil), KabutopsFossil
- db $FF
-PewterGymHiddenObjects:
- db $0a,$03,$04
- dbw BANK(GymStatues),GymStatues
- db $0a,$06,$04
- dbw BANK(GymStatues),GymStatues
- db $FF
-PewterMartHiddenObjects:
- db $FF
-PewterPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-CeruleanPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-CeruleanGymHiddenObjects:
- db $0b,$03,$04
- dbw BANK(GymStatues),GymStatues
- db $0b,$06,$04
- dbw BANK(GymStatues),GymStatues
- db $FF
-CeruleanMartHiddenObjects:
- db $FF
-LavenderPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-VermilionPokecenterHiddenObjects:
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $04,$00,$04
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $FF
-VermilionGymHiddenObjects:
- db $0e,$03,$04
- dbw BANK(GymStatues), GymStatues
- db $0e,$06,$04
- dbw BANK(GymStatues), GymStatues
- db $01,$06,$00
- dbw BANK(PrintTrashText), PrintTrashText
- db $07,$01,$00
- dbw BANK(GymTrashScript), GymTrashScript
- db $09,$01,$01
- dbw BANK(GymTrashScript), GymTrashScript
- db $0b,$01,$02
- dbw BANK(GymTrashScript), GymTrashScript
- db $07,$03,$03
- dbw BANK(GymTrashScript), GymTrashScript
- db $09,$03,$04
- dbw BANK(GymTrashScript), GymTrashScript
- db $0b,$03,$05
- dbw BANK(GymTrashScript), GymTrashScript
- db $07,$05,$06
- dbw BANK(GymTrashScript), GymTrashScript
- db $09,$05,$07
- dbw BANK(GymTrashScript), GymTrashScript
- db $0b,$05,$08
- dbw BANK(GymTrashScript), GymTrashScript
- db $07,$07,$09
- dbw BANK(GymTrashScript), GymTrashScript
- db $09,$07,$0a
- dbw BANK(GymTrashScript), GymTrashScript
- db $0b,$07,$0b
- dbw BANK(GymTrashScript), GymTrashScript
- db $07,$09,$0c
- dbw BANK(GymTrashScript), GymTrashScript
- db $09,$09,$0d
- dbw BANK(GymTrashScript), GymTrashScript
- db $0b,$09,$0e
- dbw BANK(GymTrashScript), GymTrashScript
- db $FF
-CeladonMansion2HiddenObjects:
- db $05,$00,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-CeladonPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-CeladonGymHiddenObjects:
- db $0f,$03,$04
- dbw BANK(GymStatues),GymStatues
- db $0f,$06,$04
- dbw BANK(GymStatues),GymStatues
- db $FF
-GameCornerHiddenObjects:
- db $0f,$12,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0e,$12,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0d,$12,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0c,$12,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0b,$12,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0a,$12,$ff ; "Someone's Keys"
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0a,$0d,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0b,$0d,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0c,$0d,$fe ; "Out To Lunch"
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0d,$0d,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0e,$0d,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0f,$0d,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0f,$0c,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0e,$0c,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0d,$0c,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0c,$0c,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0b,$0c,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0a,$0c,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0a,$07,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0b,$07,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0c,$07,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0d,$07,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0e,$07,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0f,$07,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0f,$06,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0e,$06,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0d,$06,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0c,$06,$fd ; "Out Of Order"
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0b,$06,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0a,$06,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0a,$01,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0b,$01,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0c,$01,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0d,$01,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0e,$01,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $0f,$01,$d0
- dbw BANK(StartSlotMachine), StartSlotMachine
- db $08,$00,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $10,$01,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $0b,$03,COIN+20
- dbw BANK(HiddenCoins),HiddenCoins
- db $0e,$03,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $0c,$04,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $0c,$09,COIN+20
- dbw BANK(HiddenCoins),HiddenCoins
- db $0f,$09,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $0e,$10,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $10,$0a,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $07,$0b,COIN+40
- dbw BANK(HiddenCoins),HiddenCoins
- db $08,$0f,COIN+100
- dbw BANK(HiddenCoins),HiddenCoins
- db $0f,$0c,COIN+10
- dbw BANK(HiddenCoins),HiddenCoins
- db $FF
-CeladonHotelHiddenObjects:
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $FF
-FuchsiaPokecenterHiddenObjects:
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $04,$00,$04
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $FF
-FuchsiaGymHiddenObjects:
- db $0f,$03,$04
- dbw BANK(GymStatues),GymStatues
- db $0f,$06,$04
- dbw BANK(GymStatues),GymStatues
- db $FF
-CinnabarGymHiddenObjects:
- db $0d,$11,$04
- dbw BANK(GymStatues),GymStatues
- db $07,$0f,$01
- db Bank(PrintCinnabarQuiz)
- dw PrintCinnabarQuiz
- db $01,$0a,$12
- db Bank(PrintCinnabarQuiz)
- dw PrintCinnabarQuiz
- db $07,$09,$13
- db Bank(PrintCinnabarQuiz)
- dw PrintCinnabarQuiz
- db $0d,$09,$14
- db Bank(PrintCinnabarQuiz)
- dw PrintCinnabarQuiz
- db $0d,$01,$05
- db Bank(PrintCinnabarQuiz)
- dw PrintCinnabarQuiz
- db $07,$01,$16
- db Bank(PrintCinnabarQuiz)
- dw PrintCinnabarQuiz
- db $FF
-CinnabarPokecenterHiddenObjects:
- db $04,$00,$04
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-SaffronGymHiddenObjects:
- db $0f,$09,$04
- dbw BANK(GymStatues),GymStatues
- db $FF
-MtMoonPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-RockTunnelPokecenterHiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-ViridianForestHiddenObjects:
- db $12,$01,POTION
- dbw BANK(HiddenItems),HiddenItems
- db $2a,$10,ANTIDOTE
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-MtMoon3HiddenObjects:
- db $0c,$12,MOON_STONE
- dbw BANK(HiddenItems),HiddenItems
- db $09,$21,ETHER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-IndigoPlateauHiddenObjects:
- db $0d,$08,$ff
- db BANK(PrintIndigoPlateauHQText)
- dw PrintIndigoPlateauHQText
- db $0d,$0b,$00
- db BANK(PrintIndigoPlateauHQText)
- dw PrintIndigoPlateauHQText
- db $FF
-Route25HiddenObjects:
- db $03,$26,ETHER
- dbw BANK(HiddenItems),HiddenItems
- db $01,$0a,ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Route9HiddenObjects:
- db $07,$0e,ETHER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SSAnne6HiddenObjects:
- db $05,$0d,$00
- dbw BANK(PrintTrashText), PrintTrashText
- db $07,$0d,$00
- dbw BANK(PrintTrashText), PrintTrashText
- db $09,$0d,GREAT_BALL
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SSAnne10HiddenObjects:
- db $01,$03,HYPER_POTION
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Route10HiddenObjects:
- db $11,$09,SUPER_POTION
- dbw BANK(HiddenItems),HiddenItems
- db $35,$10,MAX_ETHER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-RocketHideout1HiddenObjects:
- db $0f,$15,PP_UP
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-RocketHideout3HiddenObjects:
- db $11,$1b,NUGGET
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-RocketHideout4HiddenObjects:
- db $01,$19,SUPER_POTION
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SaffronPokecenterHiddenObjects:
- db $04,$00,$04
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-PokemonTower5HiddenObjects:
- db $0c,$04,ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Route13HiddenObjects:
- db $0e,$01,PP_UP
- dbw BANK(HiddenItems),HiddenItems
- db $0d,$10,CALCIUM
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SafariZoneEntranceHiddenObjects:
- db $01,$0a,NUGGET
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SafariZoneWestHiddenObjects:
- db $05,$06,REVIVE
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SilphCo5FHiddenObjects:
- db $03,$0c,ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SilphCo9FHiddenObjects:
- db $0f,$02,MAX_POTION
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-CopycatsHouse2FHiddenObjects:
- db $01,$01,NUGGET
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-CeruleanCave1HiddenObjects:
- db $0b,$0e,RARE_CANDY
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-CeruleanCave3HiddenObjects:
- db $03,$1b,ULTRA_BALL
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-PowerPlantHiddenObjects:
- db $10,$11,MAX_ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $01,$0c,PP_UP
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SeafoamIslands3HiddenObjects:
- db $0f,$0f,NUGGET
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SeafoamIslands5HiddenObjects:
- db $11,$19,ULTRA_BALL
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Mansion1HiddenObjects:
- db $10,$08,MOON_STONE
- dbw BANK(HiddenItems),HiddenItems
- db $05,$02,$04
- db BANK(Mansion1Script_Switches)
- dw Mansion1Script_Switches
- db $FF
-Mansion2HiddenObjects:
- db $0b,$02,$04
- db BANK(Mansion2Script_Switches)
- dw Mansion2Script_Switches
- db $FF
-Mansion3HiddenObjects:
- db $09,$01,MAX_REVIVE
- dbw BANK(HiddenItems),HiddenItems
- db $05,$0a,$04
- db BANK(Mansion3Script_Switches)
- dw Mansion3Script_Switches
- db $FF
-Mansion4HiddenObjects:
- db $09,$01,RARE_CANDY
- dbw BANK(HiddenItems),HiddenItems
- db $03,$14,$04
- db BANK(Mansion4Script_Switches)
- dw Mansion4Script_Switches
- db $19,$12,$04
- db BANK(Mansion4Script_Switches)
- dw Mansion4Script_Switches
- db $FF
-Route23HiddenObjects:
- db $2c,$09,FULL_RESTORE
- dbw BANK(HiddenItems),HiddenItems
- db $46,$13,ULTRA_BALL
- dbw BANK(HiddenItems),HiddenItems
- db $5a,$08,MAX_ETHER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-VictoryRoad2HiddenObjects:
- db $02,$05,ULTRA_BALL
- dbw BANK(HiddenItems),HiddenItems
- db $07,$1a,FULL_RESTORE
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Unused6FHiddenObjects:
- db $0b,$0e,MAX_ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-BillsHouseHiddenObjects:
- db $04,$01,$04
- dbw BANK(BillsHousePC), BillsHousePC
- db $FF
-ViridianCityHiddenObjects:
- db $04,$0e,POTION
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SafariZoneRestHouse2HiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-SafariZoneRestHouse3HiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-SafariZoneRestHouse4HiddenObjects:
- db $04,$00,$08
- db Bank(PrintBenchGuyText)
- dw PrintBenchGuyText
- db $03,$0d,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-Route15GateUpstairsHiddenObjects:
- db $02,$01,$04
- db BANK(Route15GateLeftBinoculars)
- dw Route15GateLeftBinoculars
- db $FF
-LavenderHouse1HiddenObjects:
- db $01,$00,$00
- db BANK(PrintMagazinesText)
- dw PrintMagazinesText
- db $01,$01,$00
- db BANK(PrintMagazinesText)
- dw PrintMagazinesText
- db $01,$07,$00
- db BANK(PrintMagazinesText)
- dw PrintMagazinesText
- db $FF
-CeladonMansion5HiddenObjects:
- db $00,$03,(LinkCableHelp_id - TextPredefs) / 2 + 1
- db BANK(PrintBlackboardLinkCableText)
- dw PrintBlackboardLinkCableText
- db $00,$04,(LinkCableHelp_id - TextPredefs) / 2 + 1
- db BANK(PrintBlackboardLinkCableText)
- dw PrintBlackboardLinkCableText
- db $04,$03,(TMNotebook_id - TextPredefs) / 2 + 1
- db Bank(PrintNotebookText)
- dw PrintNotebookText
- db $FF
-FightingDojoHiddenObjects:
- db $09,$03,$04
- db BANK(PrintFightingDojoText)
- dw PrintFightingDojoText
- db $09,$06,$04
- db BANK(PrintFightingDojoText)
- dw PrintFightingDojoText
- db $00,$04,$04
- db BANK(PrintFightingDojoText2)
- dw PrintFightingDojoText2
- db $00,$05,$04
- db BANK(PrintFightingDojoText3)
- dw PrintFightingDojoText3
- db $FF
-IndigoPlateauLobbyHiddenObjects:
- db $07,$0f,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-CinnabarLab4HiddenObjects:
- db $04,$00,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $04,$02,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-BikeShopHiddenObjects:
- db $00,$01,$d0
- dbw BANK(PrintNewBikeText), PrintNewBikeText
- db $01,$02,$d0
- dbw BANK(PrintNewBikeText), PrintNewBikeText
- db $02,$01,$d0
- dbw BANK(PrintNewBikeText), PrintNewBikeText
- db $02,$03,$d0
- dbw BANK(PrintNewBikeText), PrintNewBikeText
- db $04,$00,$d0
- dbw BANK(PrintNewBikeText), PrintNewBikeText
- db $05,$01,$d0
- dbw BANK(PrintNewBikeText), PrintNewBikeText
- db $FF
-Route11HiddenObjects:
- db $05,$30,ESCAPE_ROPE
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Route12HiddenObjects:
- db $3f,$02,HYPER_POTION
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SilphCo11FHiddenObjects:
- db $0c,$0a,$04
- db BANK(OpenPokemonCenterPC)
- dw OpenPokemonCenterPC
- db $FF
-Route17HiddenObjects:
- db $0e,$0f,RARE_CANDY
- dbw BANK(HiddenItems),HiddenItems
- db $2d,$08,FULL_RESTORE
- dbw BANK(HiddenItems),HiddenItems
- db $48,$11,PP_UP
- dbw BANK(HiddenItems),HiddenItems
- db $5b,$04,MAX_REVIVE
- dbw BANK(HiddenItems),HiddenItems
- db $79,$08,MAX_ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-UndergroundPathNsHiddenObjects:
- db $04,$03,FULL_RESTORE
- dbw BANK(HiddenItems),HiddenItems
- db $22,$04,X_SPECIAL
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-UndergroundPathWeHiddenObjects:
- db $02,$0c,NUGGET
- dbw BANK(HiddenItems),HiddenItems
- db $05,$15,ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-CeladonCityHiddenObjects:
- db $0f,$30,PP_UP
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-SeafoamIslands4HiddenObjects:
- db $10,$09,MAX_ELIXER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-VermilionCityHiddenObjects:
- db $0b,$0e,MAX_ETHER
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-CeruleanCityHiddenObjects:
- db $08,$0f,RARE_CANDY
- dbw BANK(HiddenItems),HiddenItems
- db $FF
-Route4HiddenObjects:
- db $03,$28,GREAT_BALL
- dbw BANK(HiddenItems),HiddenItems
- db $FF
--- a/data/hide_show_data.asm
+++ /dev/null
@@ -1,577 +1,0 @@
-; data for default hidden/shown
-; objects for each map ($00-$F8)
-
-; Table of 2-Byte pointers, one pointer per map,
-; goes up to Map_F7, ends with $FFFF.
-; points to table listing all missable object in the area
-MapHSPointers:
- dw MapHS00
- dw MapHS01
- dw MapHS02
- dw MapHS03
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS0A
- dw MapHSXX
- dw MapHSXX
- dw MapHS0D
- dw MapHSXX
- dw MapHS0F
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS14
- dw MapHSXX
- dw MapHSXX
- dw MapHS17
- dw MapHSXX
- dw MapHSXX
- dw MapHS1A
- dw MapHS1B
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS21
- dw MapHSXX
- dw MapHS23
- dw MapHS24
- dw MapHSXX
- dw MapHSXX
- dw MapHS27
- dw MapHS28
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS2D
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS33
- dw MapHS34
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS3B
- dw MapHSXX
- dw MapHS3D
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS53
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS58
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS60
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS66
- dw MapHS67
- dw MapHS68
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS6C
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS78
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS84
- dw MapHSXX
- dw MapHSXX
- dw MapHS87
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS8F
- dw MapHS90
- dw MapHS91
- dw MapHS92
- dw MapHS93
- dw MapHS94
- dw MapHS95
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS9B
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHS9F
- dw MapHSA0
- dw MapHSA1
- dw MapHSA2
- dw MapHSXX
- dw MapHSXX
- dw MapHSA5
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSB1
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSB5
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSC0
- dw MapHSXX
- dw MapHSC2
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSC6
- dw MapHSC7
- dw MapHSC8
- dw MapHSC9
- dw MapHSCA
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSCF
- dw MapHSD0
- dw MapHSD1
- dw MapHSD2
- dw MapHSD3
- dw MapHSD4
- dw MapHSD5
- dw MapHSD6
- dw MapHSD7
- dw MapHSD8
- dw MapHSD9
- dw MapHSDA
- dw MapHSDB
- dw MapHSDC
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSE2
- dw MapHSE3
- dw MapHSE4
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSE9
- dw MapHSEA
- dw MapHSEB
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw MapHSF4
- dw MapHSXX
- dw MapHSXX
- dw MapHSXX
- dw $FFFF
-
-; Structure:
-; 3 bytes per object
-; [Map_ID][Object_ID][H/S]
-;
-; Program stops reading when either:
-; a) Map_ID = $FF
-; b) Map_ID ≠ currentMapID
-;
-; This Data is loaded into RAM at wd5ce-$D5F?. (wMissableObjectList)
-
-; These constants come from the bytes for Predef functions:
-Hide equ $11
-Show equ $15
-
-MapHSXX:
- db $FF,$FF,$FF
-MapHS00:
- db PALLET_TOWN,$01,Hide
-MapHS01:
- db VIRIDIAN_CITY,$05,Show
- db VIRIDIAN_CITY,$07,Hide
-MapHS02:
- db PEWTER_CITY,$03,Show
- db PEWTER_CITY,$05,Show
-MapHS03:
- db CERULEAN_CITY,$01,Hide
- db CERULEAN_CITY,$02,Show
- db CERULEAN_CITY,$06,Hide
- db CERULEAN_CITY,$0A,Show
- db CERULEAN_CITY,$0B,Show
-MapHS0A:
- db SAFFRON_CITY,$01,Show
- db SAFFRON_CITY,$02,Show
- db SAFFRON_CITY,$03,Show
- db SAFFRON_CITY,$04,Show
- db SAFFRON_CITY,$05,Show
- db SAFFRON_CITY,$06,Show
- db SAFFRON_CITY,$07,Show
- db SAFFRON_CITY,$08,Hide
- db SAFFRON_CITY,$09,Hide
- db SAFFRON_CITY,$0A,Hide
- db SAFFRON_CITY,$0B,Hide
- db SAFFRON_CITY,$0C,Hide
- db SAFFRON_CITY,$0D,Hide
- db SAFFRON_CITY,$0E,Show
- db SAFFRON_CITY,$0F,Hide
-MapHS0D:
- db ROUTE_2,$01,Show
- db ROUTE_2,$02,Show
-MapHS0F:
- db ROUTE_4,$03,Show
-MapHS14:
- db ROUTE_9,$0A,Show
-MapHS17:
- db ROUTE_12,$01,Show
- db ROUTE_12,$09,Show
- db ROUTE_12,$0A,Show
-MapHS1A:
- db ROUTE_15,$0B,Show
-MapHS1B:
- db ROUTE_16,$07,Show
-MapHS21:
- db ROUTE_22,$01,Hide
- db ROUTE_22,$02,Hide
-MapHS23:
- db ROUTE_24,$01,Show
- db ROUTE_24,$08,Show
-MapHS24:
- db ROUTE_25,$0A,Show
-MapHS27:
- db BLUES_HOUSE,$01,Show
- db BLUES_HOUSE,$02,Hide
- db BLUES_HOUSE,$03,Show
-MapHS28:
- db OAKS_LAB,$01,Show
- db OAKS_LAB,$02,Show
- db OAKS_LAB,$03,Show
- db OAKS_LAB,$04,Show
- db OAKS_LAB,$05,Hide
- db OAKS_LAB,$06,Show
- db OAKS_LAB,$07,Show
- db OAKS_LAB,$08,Hide
-MapHS2D:
- db VIRIDIAN_GYM,$01,Show
- db VIRIDIAN_GYM,$0B,Show
-MapHS34:
- db MUSEUM_1F,$05,Show
-MapHSE4:
- db CERULEAN_CAVE_1F,$01,Show
- db CERULEAN_CAVE_1F,$02,Show
- db CERULEAN_CAVE_1F,$03,Show
-MapHS8F:
- db POKEMON_TOWER_2F,$01,Show
-MapHS90:
- db POKEMON_TOWER_3F,$04,Show
-MapHS91:
- db POKEMON_TOWER_4F,$04,Show
- db POKEMON_TOWER_4F,$05,Show
- db POKEMON_TOWER_4F,$06,Show
-MapHS92:
- db POKEMON_TOWER_5F,$06,Show
-MapHS93:
- db POKEMON_TOWER_6F,$04,Show
- db POKEMON_TOWER_6F,$05,Show
-MapHS94:
- db POKEMON_TOWER_7F,$01,Show
- db POKEMON_TOWER_7F,$02,Show
- db POKEMON_TOWER_7F,$03,Show
- db POKEMON_TOWER_7F,$04,Show
-MapHS95:
- db MR_FUJIS_HOUSE,$05,Hide
-MapHS84:
- db CELADON_MANSION_ROOF_HOUSE,$02,Show
-MapHS87:
- db GAME_CORNER,$0B,Show
-MapHS9B:
- db WARDENS_HOUSE,$02,Show
-MapHSA5:
- db POKEMON_MANSION_1F,$02,Show
- db POKEMON_MANSION_1F,$03,Show
-MapHSB1:
- db FIGHTING_DOJO,$06,Show
- db FIGHTING_DOJO,$07,Show
-MapHSB5:
- db SILPH_CO_1F,$01,Hide
-MapHS53:
- db POWER_PLANT,$01,Show
- db POWER_PLANT,$02,Show
- db POWER_PLANT,$03,Show
- db POWER_PLANT,$04,Show
- db POWER_PLANT,$05,Show
- db POWER_PLANT,$06,Show
- db POWER_PLANT,$07,Show
- db POWER_PLANT,$08,Show
- db POWER_PLANT,$09,Show
- db POWER_PLANT,$0A,Show
- db POWER_PLANT,$0B,Show
- db POWER_PLANT,$0C,Show
- db POWER_PLANT,$0D,Show
- db POWER_PLANT,$0E,Show
-MapHSC2:
- db VICTORY_ROAD_2F,$06,Show
- db VICTORY_ROAD_2F,$07,Show
- db VICTORY_ROAD_2F,$08,Show
- db VICTORY_ROAD_2F,$09,Show
- db VICTORY_ROAD_2F,$0A,Show
- db VICTORY_ROAD_2F,$0D,Show
-MapHS58:
- db BILLS_HOUSE,$01,Show
- db BILLS_HOUSE,$02,Hide
- db BILLS_HOUSE,$03,Hide
-MapHS33:
- db VIRIDIAN_FOREST,$05,Show
- db VIRIDIAN_FOREST,$06,Show
- db VIRIDIAN_FOREST,$07,Show
-MapHS3B:
- db MT_MOON_1F,$08,Show
- db MT_MOON_1F,$09,Show
- db MT_MOON_1F,$0A,Show
- db MT_MOON_1F,$0B,Show
- db MT_MOON_1F,$0C,Show
- db MT_MOON_1F,$0D,Show
-MapHS3D:
- db MT_MOON_B2F,$06,Show
- db MT_MOON_B2F,$07,Show
- db MT_MOON_B2F,$08,Show
- db MT_MOON_B2F,$09,Show
-MapHS60:
- db SS_ANNE_2F,$02,Hide
-MapHS66:
- db SS_ANNE_1F_ROOMS,$0A,Show
-MapHS67:
- db SS_ANNE_2F_ROOMS,$06,Show
- db SS_ANNE_2F_ROOMS,$09,Show
-MapHS68:
- db SS_ANNE_B1F_ROOMS,$09,Show
- db SS_ANNE_B1F_ROOMS,$0A,Show
- db SS_ANNE_B1F_ROOMS,$0B,Show
-MapHSC6:
- db VICTORY_ROAD_3F,$05,Show
- db VICTORY_ROAD_3F,$06,Show
- db VICTORY_ROAD_3F,$0A,Show
-MapHSC7:
- db ROCKET_HIDEOUT_B1F,$06,Show
- db ROCKET_HIDEOUT_B1F,$07,Show
-MapHSC8:
- db ROCKET_HIDEOUT_B2F,$02,Show
- db ROCKET_HIDEOUT_B2F,$03,Show
- db ROCKET_HIDEOUT_B2F,$04,Show
- db ROCKET_HIDEOUT_B2F,$05,Show
-MapHSC9:
- db ROCKET_HIDEOUT_B3F,$03,Show
- db ROCKET_HIDEOUT_B3F,$04,Show
-MapHSCA:
- db ROCKET_HIDEOUT_B4F,$01,Show
- db ROCKET_HIDEOUT_B4F,$05,Show
- db ROCKET_HIDEOUT_B4F,$06,Show
- db ROCKET_HIDEOUT_B4F,$07,Show
- db ROCKET_HIDEOUT_B4F,$08,Hide
- db ROCKET_HIDEOUT_B4F,$09,Hide
-MapHSCF:
- db SILPH_CO_2F,$01,Show
- db SILPH_CO_2F,$02,Show
- db SILPH_CO_2F,$03,Show
- db SILPH_CO_2F,$04,Show
- db SILPH_CO_2F,$05,Show
-MapHSD0:
- db SILPH_CO_3F,$02,Show
- db SILPH_CO_3F,$03,Show
- db SILPH_CO_3F,$04,Show
-MapHSD1:
- db SILPH_CO_4F,$02,Show
- db SILPH_CO_4F,$03,Show
- db SILPH_CO_4F,$04,Show
- db SILPH_CO_4F,$05,Show
- db SILPH_CO_4F,$06,Show
- db SILPH_CO_4F,$07,Show
-MapHSD2:
- db SILPH_CO_5F,$02,Show
- db SILPH_CO_5F,$03,Show
- db SILPH_CO_5F,$04,Show
- db SILPH_CO_5F,$05,Show
- db SILPH_CO_5F,$06,Show
- db SILPH_CO_5F,$07,Show
- db SILPH_CO_5F,$08,Show
-MapHSD3:
- db SILPH_CO_6F,$06,Show
- db SILPH_CO_6F,$07,Show
- db SILPH_CO_6F,$08,Show
- db SILPH_CO_6F,$09,Show
- db SILPH_CO_6F,$0A,Show
-MapHSD4:
- db SILPH_CO_7F,$05,Show
- db SILPH_CO_7F,$06,Show
- db SILPH_CO_7F,$07,Show
- db SILPH_CO_7F,$08,Show
- db SILPH_CO_7F,$09,Show
- db SILPH_CO_7F,$0A,Show
- db SILPH_CO_7F,$0B,Show
- db SILPH_CO_7F,$0C,Show
-MapHSD5:
- db SILPH_CO_8F,$02,Show
- db SILPH_CO_8F,$03,Show
- db SILPH_CO_8F,$04,Show
-MapHSE9:
- db SILPH_CO_9F,$02,Show
- db SILPH_CO_9F,$03,Show
- db SILPH_CO_9F,$04,Show
-MapHSEA:
- db SILPH_CO_10F,$01,Show
- db SILPH_CO_10F,$02,Show
- db SILPH_CO_10F,$03,Show
- db SILPH_CO_10F,$04,Show
- db SILPH_CO_10F,$05,Show
- db SILPH_CO_10F,$06,Show
-MapHSEB:
- db SILPH_CO_11F,$03,Show
- db SILPH_CO_11F,$04,Show
- db SILPH_CO_11F,$05,Show
-MapHSF4:
- db UNUSED_MAP_F4,$02,Show
-MapHSD6:
- db POKEMON_MANSION_2F,$02,Show
-MapHSD7:
- db POKEMON_MANSION_3F,$03,Show
- db POKEMON_MANSION_3F,$04,Show
-MapHSD8:
- db POKEMON_MANSION_B1F,$03,Show
- db POKEMON_MANSION_B1F,$04,Show
- db POKEMON_MANSION_B1F,$05,Show
- db POKEMON_MANSION_B1F,$06,Show
- db POKEMON_MANSION_B1F,$08,Show
-MapHSD9:
- db SAFARI_ZONE_EAST,$01,Show
- db SAFARI_ZONE_EAST,$02,Show
- db SAFARI_ZONE_EAST,$03,Show
- db SAFARI_ZONE_EAST,$04,Show
-MapHSDA:
- db SAFARI_ZONE_NORTH,$01,Show
- db SAFARI_ZONE_NORTH,$02,Show
-MapHSDB:
- db SAFARI_ZONE_WEST,$01,Show
- db SAFARI_ZONE_WEST,$02,Show
- db SAFARI_ZONE_WEST,$03,Show
- db SAFARI_ZONE_WEST,$04,Show
-MapHSDC:
- db SAFARI_ZONE_CENTER,$01,Show
-MapHSE2:
- db CERULEAN_CAVE_2F,$01,Show
- db CERULEAN_CAVE_2F,$02,Show
- db CERULEAN_CAVE_2F,$03,Show
-MapHSE3:
- db CERULEAN_CAVE_B1F,$01,Show
- db CERULEAN_CAVE_B1F,$02,Show
- db CERULEAN_CAVE_B1F,$03,Show
-MapHS6C:
- db VICTORY_ROAD_1F,$03,Show
- db VICTORY_ROAD_1F,$04,Show
-MapHS78:
- db CHAMPIONS_ROOM,$02,Hide
-MapHSC0:
- db SEAFOAM_ISLANDS_1F,$01,Show
- db SEAFOAM_ISLANDS_1F,$02,Show
-MapHS9F:
- db SEAFOAM_ISLANDS_B1F,$01,Hide
- db SEAFOAM_ISLANDS_B1F,$02,Hide
-MapHSA0:
- db SEAFOAM_ISLANDS_B2F,$01,Hide
- db SEAFOAM_ISLANDS_B2F,$02,Hide
-MapHSA1:
- db SEAFOAM_ISLANDS_B3F,$02,Show
- db SEAFOAM_ISLANDS_B3F,$03,Show
- db SEAFOAM_ISLANDS_B3F,$05,Hide
- db SEAFOAM_ISLANDS_B3F,$06,Hide
-MapHSA2:
- db SEAFOAM_ISLANDS_B4F,$01,Hide
- db SEAFOAM_ISLANDS_B4F,$02,Hide
- db SEAFOAM_ISLANDS_B4F,$03,Show
-
- db $FF,$01,Show
--- a/data/hm_moves.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-HMMoveArray:
- db CUT
- db FLY
- db SURF
- db STRENGTH
- db FLASH
- db -1
--- /dev/null
+++ b/data/icon_pointers.asm
@@ -1,0 +1,140 @@
+MonPartySpritePointers:
+ dw SlowbroSprite + $c0
+ db $40 / $10 ; 40 bytes
+ db BANK(SlowbroSprite)
+ dw vSprites
+
+ dw BallSprite
+ db $80 / $10 ; $80 bytes
+ db BANK(BallSprite)
+ dw vSprites + $40
+
+ dw ClefairySprite + $c0
+ db $40 / $10 ; $40 bytes
+ db BANK(ClefairySprite)
+ dw vSprites + $c0
+
+ dw BirdSprite + $c0
+ db $40 / $10 ; $40 bytes
+ db BANK(BirdSprite)
+ dw vSprites + $100
+
+ dw SeelSprite
+ db $40 / $10 ; $40 bytes
+ db BANK(SeelSprite)
+ dw vSprites + $140
+
+ dw BugIconFrame2
+ db $10 / $10 ; $10 bytes
+ db BANK(BugIconFrame2)
+ dw vSprites + $180
+
+ dw BugIconFrame2 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(BugIconFrame2)
+ dw vSprites + $1a0
+
+ dw PlantIconFrame2
+ db $10 / $10 ; $10 bytes
+ db BANK(PlantIconFrame2)
+ dw vSprites + $1c0
+
+ dw PlantIconFrame2 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(PlantIconFrame2)
+ dw vSprites + $1e0
+
+ dw SnakeIconFrame1
+ db $10 / $10 ; $10 bytes
+ db BANK(SnakeIconFrame1)
+ dw vSprites + $200
+
+ dw SnakeIconFrame1 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(SnakeIconFrame1)
+ dw vSprites + $220
+
+ dw QuadrupedIconFrame1
+ db $10 / $10 ; $10 bytes
+ db BANK(QuadrupedIconFrame1)
+ dw vSprites + $240
+
+ dw QuadrupedIconFrame1 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(QuadrupedIconFrame1)
+ dw vSprites + $260
+
+ dw TradeBubbleIconGFX
+ db $40 / $10 ; $40 bytes
+ db BANK(TradeBubbleIconGFX)
+ dw vSprites + $380
+
+ dw SlowbroSprite
+ db $40 / $10 ; $40 bytes
+ db BANK(SlowbroSprite)
+ dw vSprites + $400
+
+ dw BallSprite
+ db $80 / $10 ; $80 bytes
+ db BANK(BallSprite)
+ dw vSprites + $440
+
+ dw ClefairySprite
+ db $40 / $10 ; $40 bytes
+ db BANK(ClefairySprite)
+ dw vSprites + $4c0
+
+ dw BirdSprite
+ db $40 / $10 ; $40 bytes
+ db BANK(BirdSprite)
+ dw vSprites + $500
+
+ dw SeelSprite + $C0
+ db $40 / $10 ; $40 bytes
+ db BANK(SeelSprite)
+ dw vSprites + $540
+
+ dw BugIconFrame1
+ db $10 / $10 ; $10 bytes
+ db BANK(BugIconFrame1)
+ dw vSprites + $580
+
+ dw BugIconFrame1 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(BugIconFrame1)
+ dw vSprites + $5a0
+
+ dw PlantIconFrame1
+ db $10 / $10 ; $10 bytes
+ db BANK(PlantIconFrame1)
+ dw vSprites + $5c0
+
+ dw PlantIconFrame1 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(PlantIconFrame1)
+ dw vSprites + $5E0
+
+ dw SnakeIconFrame2
+ db $10 / $10 ; $10 bytes
+ db BANK(SnakeIconFrame2)
+ dw vSprites + $600
+
+ dw SnakeIconFrame2 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(SnakeIconFrame2)
+ dw vSprites + $620
+
+ dw QuadrupedIconFrame2
+ db $10 / $10 ; $10 bytes
+ db BANK(QuadrupedIconFrame2)
+ dw vSprites + $640
+
+ dw QuadrupedIconFrame2 + $10
+ db $10 / $10 ; $10 bytes
+ db BANK(QuadrupedIconFrame2)
+ dw vSprites + $660
+
+ dw TradeBubbleIconGFX + $40
+ db $40 / $10 ; $40 bytes
+ db BANK(TradeBubbleIconGFX)
+ dw vSprites + $780
--- a/data/item_prices.asm
+++ /dev/null
@@ -1,98 +1,0 @@
-ItemPrices::
- money 0 ; MASTER_BALL
- money 1200 ; ULTRA_BALL
- money 600 ; GREAT_BALL
- money 200 ; POKE_BALL
- money 0 ; TOWN_MAP
- money 0 ; BICYCLE
- money 0 ; SURFBOARD
- money 1000 ; SAFARI_BALL
- money 0 ; POKEDEX
- money 0 ; MOON_STONE
- money 100 ; ANTIDOTE
- money 250 ; BURN_HEAL
- money 250 ; ICE_HEAL
- money 200 ; AWAKENING
- money 200 ; PARLYZ_HEAL
- money 3000 ; FULL_RESTORE
- money 2500 ; MAX_POTION
- money 1500 ; HYPER_POTION
- money 700 ; SUPER_POTION
- money 300 ; POTION
- money 0 ; BOULDERBADGE
- money 0 ; CASCADEBADGE
- money 0 ; THUNDERBADGE
- money 0 ; RAINBOWBADGE
- money 0 ; SOULBADGE
- money 0 ; MARSHBADGE
- money 0 ; VOLCANOBADGE
- money 0 ; EARTHBADGE
- money 550 ; ESCAPE_ROPE
- money 350 ; REPEL
- money 0 ; OLD_AMBER
- money 2100 ; FIRE_STONE
- money 2100 ; THUNDER_STONE
- money 2100 ; WATER_STONE
- money 9800 ; HP_UP
- money 9800 ; PROTEIN
- money 9800 ; IRON
- money 9800 ; CARBOS
- money 9800 ; CALCIUM
- money 4800 ; RARE_CANDY
- money 0 ; DOME_FOSSIL
- money 0 ; HELIX_FOSSIL
- money 0 ; SECRET_KEY
- money 0 ; XXX
- money 0 ; BIKE_VOUCHER
- money 950 ; X_ACCURACY
- money 2100 ; LEAF_STONE
- money 0 ; CARD_KEY
- money 10000 ; NUGGET
- money 9800 ; XXX PP_UP
- money 1000 ; POKE_DOLL
- money 600 ; FULL_HEAL
- money 1500 ; REVIVE
- money 4000 ; MAX_REVIVE
- money 700 ; GUARD_SPEC
- money 500 ; SUPER_REPEL
- money 700 ; MAX_REPEL
- money 650 ; DIRE_HIT
- money 10 ; COIN
- money 200 ; FRESH_WATER
- money 300 ; SODA_POP
- money 350 ; LEMONADE
- money 0 ; S_S_TICKET
- money 0 ; GOLD_TEETH
- money 500 ; X_ATTACK
- money 550 ; X_DEFEND
- money 350 ; X_SPEED
- money 350 ; X_SPECIAL
- money 0 ; COIN_CASE
- money 0 ; OAKS_PARCEL
- money 0 ; ITEMFINDER
- money 0 ; SILPH_SCOPE
- money 0 ; POKE_FLUTE
- money 0 ; LIFT_KEY
- money 0 ; EXP_ALL
- money 0 ; OLD_ROD
- money 0 ; GOOD_ROD
- money 0 ; SUPER_ROD
- money 0 ; PP_UP
- money 0 ; ETHER
- money 0 ; MAX_ETHER
- money 0 ; ELIXER
- money 0 ; MAX_ELIXER
- money 0 ; FLOOR_B2F
- money 0 ; FLOOR_B1F
- money 0 ; FLOOR_1F
- money 0 ; FLOOR_2F
- money 0 ; FLOOR_3F
- money 0 ; FLOOR_4F
- money 0 ; FLOOR_5F
- money 0 ; FLOOR_6F
- money 0 ; FLOOR_7F
- money 0 ; FLOOR_8F
- money 0 ; FLOOR_9F
- money 0 ; FLOOR_10F
- money 0 ; FLOOR_11F
- money 0 ; FLOOR_B4F
--- /dev/null
+++ b/data/items/guard_drink_items.asm
@@ -1,0 +1,2 @@
+GuardDrinksList:
+ db FRESH_WATER, SODA_POP, LEMONADE, $00
--- /dev/null
+++ b/data/items/key_items.asm
@@ -1,0 +1,12 @@
+KeyItemBitfield:
+ db %11110000
+ db %00000001
+ db %11110000
+ db %01001111
+ db %00000000
+ db %10011111
+ db %00000000
+ db %11000000
+ db %11110000
+ db %00111011
+ db %00000000
--- /dev/null
+++ b/data/items/marts.asm
@@ -1,0 +1,64 @@
+; mart inventories are below
+; they are texts
+
+; Viridian
+ViridianCashierText::
+ TX_MART POKE_BALL, ANTIDOTE, PARLYZ_HEAL, BURN_HEAL
+
+; Pewter
+PewterCashierText::
+ TX_MART POKE_BALL, POTION, ESCAPE_ROPE, ANTIDOTE, BURN_HEAL, AWAKENING, PARLYZ_HEAL
+
+; Cerulean
+CeruleanCashierText::
+ TX_MART POKE_BALL, POTION, REPEL, ANTIDOTE, BURN_HEAL, AWAKENING, PARLYZ_HEAL
+
+; Bike shop
+ TX_MART BICYCLE
+
+; Vermilion
+VermilionCashierText::
+ TX_MART POKE_BALL, SUPER_POTION, ICE_HEAL, AWAKENING, PARLYZ_HEAL, REPEL
+
+; Lavender
+LavenderCashierText::
+ TX_MART GREAT_BALL, SUPER_POTION, REVIVE, ESCAPE_ROPE, SUPER_REPEL, ANTIDOTE, BURN_HEAL, ICE_HEAL, PARLYZ_HEAL
+
+; Celadon Dept. Store 2F (1)
+CeladonMart2Clerk1Text::
+ TX_MART GREAT_BALL, SUPER_POTION, REVIVE, SUPER_REPEL, ANTIDOTE, BURN_HEAL, ICE_HEAL, AWAKENING, PARLYZ_HEAL
+
+; Celadon Dept. Store 2F (2)
+CeladonMart2Clerk2Text::
+ TX_MART TM_32, TM_33, TM_02, TM_07, TM_37, TM_01, TM_05, TM_09, TM_17
+
+; Celadon Dept. Store 4F
+CeladonMart4ClerkText::
+ TX_MART POKE_DOLL, FIRE_STONE, THUNDER_STONE, WATER_STONE, LEAF_STONE
+
+; Celadon Dept. Store 5F (1)
+CeladonMart5Clerk1Text::
+ TX_MART X_ACCURACY, GUARD_SPEC, DIRE_HIT, X_ATTACK, X_DEFEND, X_SPEED, X_SPECIAL
+
+; Celadon Dept. Store 5F (2)
+CeladonMart5Clerk2Text::
+ TX_MART HP_UP, PROTEIN, IRON, CARBOS, CALCIUM
+
+; Fuchsia
+FuchsiaCashierText::
+ TX_MART ULTRA_BALL, GREAT_BALL, SUPER_POTION, REVIVE, FULL_HEAL, SUPER_REPEL
+
+; unused?
+ TX_MART GREAT_BALL, HYPER_POTION, SUPER_POTION, FULL_HEAL, REVIVE
+
+; Cinnabar
+CinnabarCashierText::
+ TX_MART ULTRA_BALL, GREAT_BALL, HYPER_POTION, MAX_REPEL, ESCAPE_ROPE, FULL_HEAL, REVIVE
+
+; Saffron
+SaffronCashierText::
+ TX_MART GREAT_BALL, HYPER_POTION, MAX_REPEL, ESCAPE_ROPE, FULL_HEAL, REVIVE
+
+; Indigo
+IndigoCashierText::
+ TX_MART ULTRA_BALL, GREAT_BALL, FULL_RESTORE, MAX_POTION, FULL_HEAL, REVIVE, MAX_REPEL
--- /dev/null
+++ b/data/items/names.asm
@@ -1,0 +1,98 @@
+ItemNames::
+ db "MASTER BALL@"
+ db "ULTRA BALL@"
+ db "GREAT BALL@"
+ db "POKé BALL@"
+ db "TOWN MAP@"
+ db "BICYCLE@"
+ db "?????@"
+ db "SAFARI BALL@"
+ db "POKéDEX@"
+ db "MOON STONE@"
+ db "ANTIDOTE@"
+ db "BURN HEAL@"
+ db "ICE HEAL@"
+ db "AWAKENING@"
+ db "PARLYZ HEAL@"
+ db "FULL RESTORE@"
+ db "MAX POTION@"
+ db "HYPER POTION@"
+ db "SUPER POTION@"
+ db "POTION@"
+ db "BOULDERBADGE@"
+ db "CASCADEBADGE@"
+ db "THUNDERBADGE@"
+ db "RAINBOWBADGE@"
+ db "SOULBADGE@"
+ db "MARSHBADGE@"
+ db "VOLCANOBADGE@"
+ db "EARTHBADGE@"
+ db "ESCAPE ROPE@"
+ db "REPEL@"
+ db "OLD AMBER@"
+ db "FIRE STONE@"
+ db "THUNDERSTONE@"
+ db "WATER STONE@"
+ db "HP UP@"
+ db "PROTEIN@"
+ db "IRON@"
+ db "CARBOS@"
+ db "CALCIUM@"
+ db "RARE CANDY@"
+ db "DOME FOSSIL@"
+ db "HELIX FOSSIL@"
+ db "SECRET KEY@"
+ db "?????@"
+ db "BIKE VOUCHER@"
+ db "X ACCURACY@"
+ db "LEAF STONE@"
+ db "CARD KEY@"
+ db "NUGGET@"
+ db "PP UP@"
+ db "POKé DOLL@"
+ db "FULL HEAL@"
+ db "REVIVE@"
+ db "MAX REVIVE@"
+ db "GUARD SPEC.@"
+ db "SUPER REPEL@"
+ db "MAX REPEL@"
+ db "DIRE HIT@"
+ db "COIN@"
+ db "FRESH WATER@"
+ db "SODA POP@"
+ db "LEMONADE@"
+ db "S.S.TICKET@"
+ db "GOLD TEETH@"
+ db "X ATTACK@"
+ db "X DEFEND@"
+ db "X SPEED@"
+ db "X SPECIAL@"
+ db "COIN CASE@"
+ db "OAK's PARCEL@"
+ db "ITEMFINDER@"
+ db "SILPH SCOPE@"
+ db "POKé FLUTE@"
+ db "LIFT KEY@"
+ db "EXP.ALL@"
+ db "OLD ROD@"
+ db "GOOD ROD@"
+ db "SUPER ROD@"
+ db "PP UP@"
+ db "ETHER@"
+ db "MAX ETHER@"
+ db "ELIXER@"
+ db "MAX ELIXER@"
+ db "B2F@"
+ db "B1F@"
+ db "1F@"
+ db "2F@"
+ db "3F@"
+ db "4F@"
+ db "5F@"
+ db "6F@"
+ db "7F@"
+ db "8F@"
+ db "9F@"
+ db "10F@"
+ db "11F@"
+ db "B4F@"
--- /dev/null
+++ b/data/items/prices.asm
@@ -1,0 +1,98 @@
+ItemPrices::
+ money 0 ; MASTER_BALL
+ money 1200 ; ULTRA_BALL
+ money 600 ; GREAT_BALL
+ money 200 ; POKE_BALL
+ money 0 ; TOWN_MAP
+ money 0 ; BICYCLE
+ money 0 ; SURFBOARD
+ money 1000 ; SAFARI_BALL
+ money 0 ; POKEDEX
+ money 0 ; MOON_STONE
+ money 100 ; ANTIDOTE
+ money 250 ; BURN_HEAL
+ money 250 ; ICE_HEAL
+ money 200 ; AWAKENING
+ money 200 ; PARLYZ_HEAL
+ money 3000 ; FULL_RESTORE
+ money 2500 ; MAX_POTION
+ money 1500 ; HYPER_POTION
+ money 700 ; SUPER_POTION
+ money 300 ; POTION
+ money 0 ; BOULDERBADGE
+ money 0 ; CASCADEBADGE
+ money 0 ; THUNDERBADGE
+ money 0 ; RAINBOWBADGE
+ money 0 ; SOULBADGE
+ money 0 ; MARSHBADGE
+ money 0 ; VOLCANOBADGE
+ money 0 ; EARTHBADGE
+ money 550 ; ESCAPE_ROPE
+ money 350 ; REPEL
+ money 0 ; OLD_AMBER
+ money 2100 ; FIRE_STONE
+ money 2100 ; THUNDER_STONE
+ money 2100 ; WATER_STONE
+ money 9800 ; HP_UP
+ money 9800 ; PROTEIN
+ money 9800 ; IRON
+ money 9800 ; CARBOS
+ money 9800 ; CALCIUM
+ money 4800 ; RARE_CANDY
+ money 0 ; DOME_FOSSIL
+ money 0 ; HELIX_FOSSIL
+ money 0 ; SECRET_KEY
+ money 0 ; XXX
+ money 0 ; BIKE_VOUCHER
+ money 950 ; X_ACCURACY
+ money 2100 ; LEAF_STONE
+ money 0 ; CARD_KEY
+ money 10000 ; NUGGET
+ money 9800 ; XXX PP_UP
+ money 1000 ; POKE_DOLL
+ money 600 ; FULL_HEAL
+ money 1500 ; REVIVE
+ money 4000 ; MAX_REVIVE
+ money 700 ; GUARD_SPEC
+ money 500 ; SUPER_REPEL
+ money 700 ; MAX_REPEL
+ money 650 ; DIRE_HIT
+ money 10 ; COIN
+ money 200 ; FRESH_WATER
+ money 300 ; SODA_POP
+ money 350 ; LEMONADE
+ money 0 ; S_S_TICKET
+ money 0 ; GOLD_TEETH
+ money 500 ; X_ATTACK
+ money 550 ; X_DEFEND
+ money 350 ; X_SPEED
+ money 350 ; X_SPECIAL
+ money 0 ; COIN_CASE
+ money 0 ; OAKS_PARCEL
+ money 0 ; ITEMFINDER
+ money 0 ; SILPH_SCOPE
+ money 0 ; POKE_FLUTE
+ money 0 ; LIFT_KEY
+ money 0 ; EXP_ALL
+ money 0 ; OLD_ROD
+ money 0 ; GOOD_ROD
+ money 0 ; SUPER_ROD
+ money 0 ; PP_UP
+ money 0 ; ETHER
+ money 0 ; MAX_ETHER
+ money 0 ; ELIXER
+ money 0 ; MAX_ELIXER
+ money 0 ; FLOOR_B2F
+ money 0 ; FLOOR_B1F
+ money 0 ; FLOOR_1F
+ money 0 ; FLOOR_2F
+ money 0 ; FLOOR_3F
+ money 0 ; FLOOR_4F
+ money 0 ; FLOOR_5F
+ money 0 ; FLOOR_6F
+ money 0 ; FLOOR_7F
+ money 0 ; FLOOR_8F
+ money 0 ; FLOOR_9F
+ money 0 ; FLOOR_10F
+ money 0 ; FLOOR_11F
+ money 0 ; FLOOR_B4F
--- /dev/null
+++ b/data/items/tm_prices.asm
@@ -1,0 +1,27 @@
+TechnicalMachinePrices:
+; In thousands (nybbles).
+ dn 3, 2 ; TM_01, TM_02
+ dn 2, 1 ; TM_03, TM_04
+ dn 3, 4 ; TM_05, TM_06
+ dn 2, 4 ; TM_07, TM_08
+ dn 3, 4 ; TM_09, TM_10
+ dn 2, 1 ; TM_11, TM_12
+ dn 4, 5 ; TM_13, TM_14
+ dn 5, 5 ; TM_15, TM_16
+ dn 3, 2 ; TM_17, TM_18
+ dn 3, 2 ; TM_19, TM_20
+ dn 5, 5 ; TM_21, TM_22
+ dn 5, 2 ; TM_23, TM_24
+ dn 5, 4 ; TM_25, TM_26
+ dn 5, 2 ; TM_27, TM_28
+ dn 4, 1 ; TM_29, TM_30
+ dn 2, 1 ; TM_31, TM_32
+ dn 1, 2 ; TM_33, TM_34
+ dn 4, 2 ; TM_35, TM_36
+ dn 2, 5 ; TM_37, TM_38
+ dn 2, 4 ; TM_39, TM_40
+ dn 2, 2 ; TM_41, TM_42
+ dn 5, 2 ; TM_43, TM_44
+ dn 2, 4 ; TM_45, TM_46
+ dn 3, 4 ; TM_47, TM_48
+ dn 4, 2 ; TM_49, TM_50
--- /dev/null
+++ b/data/items/use_overworld.asm
@@ -1,0 +1,9 @@
+; items which close the item menu when used
+UsableItems_CloseMenu:
+ db ESCAPE_ROPE
+ db ITEMFINDER
+ db POKE_FLUTE
+ db OLD_ROD
+ db GOOD_ROD
+ db SUPER_ROD
+ db $ff
--- /dev/null
+++ b/data/items/use_party.asm
@@ -1,0 +1,39 @@
+; items which bring up the party menu when used
+UsableItems_PartyMenu:
+ db MOON_STONE
+ db ANTIDOTE
+ db BURN_HEAL
+ db ICE_HEAL
+ db AWAKENING
+ db PARLYZ_HEAL
+ db FULL_RESTORE
+ db MAX_POTION
+ db HYPER_POTION
+ db SUPER_POTION
+ db POTION
+ db FIRE_STONE
+ db THUNDER_STONE
+ db WATER_STONE
+ db HP_UP
+ db PROTEIN
+ db IRON
+ db CARBOS
+ db CALCIUM
+ db RARE_CANDY
+ db LEAF_STONE
+ db FULL_HEAL
+ db REVIVE
+ db MAX_REVIVE
+ db FRESH_WATER
+ db SODA_POP
+ db LEMONADE
+ db X_ATTACK
+ db X_DEFEND
+ db X_SPEED
+ db X_SPECIAL
+ db PP_UP
+ db ETHER
+ db MAX_ETHER
+ db ELIXER
+ db MAX_ELIXER
+ db $ff
--- /dev/null
+++ b/data/items/vending_prices.asm
@@ -1,0 +1,7 @@
+VendingPrices:
+ db FRESH_WATER
+ money 200
+ db SODA_POP
+ money 300
+ db LEMONADE
+ money 350
--- a/data/key_items.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-KeyItemBitfield:
- db %11110000
- db %00000001
- db %11110000
- db %01001111
- db %00000000
- db %10011111
- db %00000000
- db %11000000
- db %11110000
- db %00111011
- db %00000000
--- a/data/ledge_tiles.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-LedgeTiles:
- ; (player direction) (tile player standing on) (ledge tile) (input required)
- db SPRITE_FACING_DOWN, $2C,$37,D_DOWN
- db SPRITE_FACING_DOWN, $39,$36,D_DOWN
- db SPRITE_FACING_DOWN, $39,$37,D_DOWN
- db SPRITE_FACING_LEFT, $2C,$27,D_LEFT
- db SPRITE_FACING_LEFT, $39,$27,D_LEFT
- db SPRITE_FACING_RIGHT,$2C,$0D,D_RIGHT
- db SPRITE_FACING_RIGHT,$2C,$1D,D_RIGHT
- db SPRITE_FACING_RIGHT,$39,$0D,D_RIGHT
- db $FF
--- a/data/mapHeaders/AgathasRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-AgathasRoom_h::
- db CEMETERY ; tileset
- db AGATHAS_ROOM_HEIGHT, AGATHAS_ROOM_WIDTH ; dimensions (y, x)
- dw AgathasRoom_Blocks ; blocks
- dw AgathasRoom_TextPointers ; texts
- dw AgathasRoom_Script ; scripts
- db 0 ; connections
- dw AgathasRoom_Object ; objects
--- a/data/mapHeaders/BikeShop.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-BikeShop_h::
- db CLUB ; tileset
- db BIKE_SHOP_HEIGHT, BIKE_SHOP_WIDTH ; dimensions (y, x)
- dw BikeShop_Blocks ; blocks
- dw BikeShop_TextPointers ; texts
- dw BikeShop_Script ; scripts
- db 0 ; connections
- dw BikeShop_Object ; objects
--- a/data/mapHeaders/BillsHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-BillsHouse_h::
- db INTERIOR ; tileset
- db BILLS_HOUSE_HEIGHT, BILLS_HOUSE_WIDTH ; dimensions (y, x)
- dw BillsHouse_Blocks ; blocks
- dw BillsHouse_TextPointers ; texts
- dw BillsHouse_Script ; scripts
- db 0 ; connections
- dw BillsHouse_Object ; objects
--- a/data/mapHeaders/BluesHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-BluesHouse_h::
- db HOUSE ; tileset
- db BLUES_HOUSE_HEIGHT, BLUES_HOUSE_WIDTH ; dimensions (y, x)
- dw BluesHouse_Blocks ; blocks
- dw BluesHouse_TextPointers ; texts
- dw BluesHouse_Script ; scripts
- db 0 ; connections
- dw BluesHouse_Object ; objects
--- a/data/mapHeaders/BrunosRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-BrunosRoom_h::
- db GYM ; tileset
- db BRUNOS_ROOM_HEIGHT, BRUNOS_ROOM_WIDTH ; dimensions (y, x)
- dw BrunosRoom_Blocks ; blocks
- dw BrunosRoom_TextPointers ; texts
- dw BrunosRoom_Script ; scripts
- db 0 ; connections
- dw BrunosRoom_Object ; objects
--- a/data/mapHeaders/CeladonChiefHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonChiefHouse_h::
- db MANSION ; tileset
- db CELADON_CHIEF_HOUSE_HEIGHT, CELADON_CHIEF_HOUSE_WIDTH ; dimensions (y, x)
- dw CeladonChiefHouse_Blocks ; blocks
- dw CeladonChiefHouse_TextPointers ; texts
- dw CeladonChiefHouse_Script ; scripts
- db 0 ; connections
- dw CeladonChiefHouse_Object ; objects
--- a/data/mapHeaders/CeladonCity.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-CeladonCity_h::
- db OVERWORLD ; tileset
- db CELADON_CITY_HEIGHT, CELADON_CITY_WIDTH ; dimensions (y, x)
- dw CeladonCity_Blocks ; blocks
- dw CeladonCity_TextPointers ; texts
- dw CeladonCity_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION CELADON_CITY, ROUTE_16, 4, 0, Route16_Blocks
- EAST_MAP_CONNECTION CELADON_CITY, ROUTE_7, 4, 0, Route7_Blocks, 1
- dw CeladonCity_Object ; objects
--- a/data/mapHeaders/CeladonDiner.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonDiner_h::
- db LOBBY ; tileset
- db CELADON_DINER_HEIGHT, CELADON_DINER_WIDTH ; dimensions (y, x)
- dw CeladonDiner_Blocks ; blocks
- dw CeladonDiner_TextPointers ; texts
- dw CeladonDiner_Script ; scripts
- db 0 ; connections
- dw CeladonDiner_Object ; objects
--- a/data/mapHeaders/CeladonGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonGym_h::
- db GYM ; tileset
- db CELADON_GYM_HEIGHT, CELADON_GYM_WIDTH ; dimensions (y, x)
- dw CeladonGym_Blocks ; blocks
- dw CeladonGym_TextPointers ; texts
- dw CeladonGym_Script ; scripts
- db 0 ; connections
- dw CeladonGym_Object ; objects
--- a/data/mapHeaders/CeladonHotel.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonHotel_h::
- db POKECENTER ; tileset
- db CELADON_HOTEL_HEIGHT, CELADON_HOTEL_WIDTH ; dimensions (y, x)
- dw CeladonHotel_Blocks ; blocks
- dw CeladonHotel_TextPointers ; texts
- dw CeladonHotel_Script ; scripts
- db 0 ; connections
- dw CeladonHotel_Object ; objects
--- a/data/mapHeaders/CeladonMansion1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMansion1F_h::
- db MANSION ; tileset
- db CELADON_MANSION_1F_HEIGHT, CELADON_MANSION_1F_WIDTH ; dimensions (y, x)
- dw CeladonMansion1F_Blocks ; blocks
- dw CeladonMansion1F_TextPointers ; texts
- dw CeladonMansion1F_Script ; scripts
- db 0 ; connections
- dw CeladonMansion1F_Object ; objects
--- a/data/mapHeaders/CeladonMansion2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMansion2F_h::
- db MANSION ; tileset
- db CELADON_MANSION_2F_HEIGHT, CELADON_MANSION_2F_WIDTH ; dimensions (y, x)
- dw CeladonMansion2F_Blocks ; blocks
- dw CeladonMansion2F_TextPointers ; texts
- dw CeladonMansion2F_Script ; scripts
- db 0 ; connections
- dw CeladonMansion2F_Object ; objects
--- a/data/mapHeaders/CeladonMansion3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMansion3F_h::
- db MANSION ; tileset
- db CELADON_MANSION_3F_HEIGHT, CELADON_MANSION_3F_WIDTH ; dimensions (y, x)
- dw CeladonMansion3F_Blocks ; blocks
- dw CeladonMansion3F_TextPointers ; texts
- dw CeladonMansion3F_Script ; scripts
- db 0 ; connections
- dw CeladonMansion3F_Object ; objects
--- a/data/mapHeaders/CeladonMansionRoof.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMansionRoof_h::
- db MANSION ; tileset
- db CELADON_MANSION_ROOF_HEIGHT, CELADON_MANSION_ROOF_WIDTH ; dimensions (y, x)
- dw CeladonMansionRoof_Blocks ; blocks
- dw CeladonMansionRoof_TextPointers ; texts
- dw CeladonMansionRoof_Script ; scripts
- db 0 ; connections
- dw CeladonMansionRoof_Object ; objects
--- a/data/mapHeaders/CeladonMansionRoofHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMansionRoofHouse_h::
- db HOUSE ; tileset
- db CELADON_MANSION_ROOF_HOUSE_HEIGHT, CELADON_MANSION_ROOF_HOUSE_WIDTH ; dimensions (y, x)
- dw CeladonMansionRoofHouse_Blocks ; blocks
- dw CeladonMansionRoofHouse_TextPointers ; texts
- dw CeladonMansionRoofHouse_Script ; scripts
- db 0 ; connections
- dw CeladonMansionRoofHouse_Object ; objects
--- a/data/mapHeaders/CeladonMart1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMart1F_h::
- db LOBBY ; tileset
- db CELADON_MART_1F_HEIGHT, CELADON_MART_1F_WIDTH ; dimensions (y, x)
- dw CeladonMart1F_Blocks ; blocks
- dw CeladonMart1F_TextPointers ; texts
- dw CeladonMart1F_Script ; scripts
- db 0 ; connections
- dw CeladonMart1F_Object ; objects
--- a/data/mapHeaders/CeladonMart2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMart2F_h::
- db LOBBY ; tileset
- db CELADON_MART_2F_HEIGHT, CELADON_MART_2F_WIDTH ; dimensions (y, x)
- dw CeladonMart2F_Blocks ; blocks
- dw CeladonMart2F_TextPointers ; texts
- dw CeladonMart2F_Script ; scripts
- db 0 ; connections
- dw CeladonMart2F_Object ; objects
--- a/data/mapHeaders/CeladonMart3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMart3F_h::
- db LOBBY ; tileset
- db CELADON_MART_3F_HEIGHT, CELADON_MART_3F_WIDTH ; dimensions (y, x)
- dw CeladonMart3F_Blocks ; blocks
- dw CeladonMart3F_TextPointers ; texts
- dw CeladonMart3F_Script ; scripts
- db 0 ; connections
- dw CeladonMart3F_Object ; objects
--- a/data/mapHeaders/CeladonMart4F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMart4F_h::
- db LOBBY ; tileset
- db CELADON_MART_4F_HEIGHT, CELADON_MART_4F_WIDTH ; dimensions (y, x)
- dw CeladonMart4F_Blocks ; blocks
- dw CeladonMart4F_TextPointers ; texts
- dw CeladonMart4F_Script ; scripts
- db 0 ; connections
- dw CeladonMart4F_Object ; objects
--- a/data/mapHeaders/CeladonMart5F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMart5F_h::
- db LOBBY ; tileset
- db CELADON_MART_5F_HEIGHT, CELADON_MART_5F_WIDTH ; dimensions (y, x)
- dw CeladonMart5F_Blocks ; blocks
- dw CeladonMart5F_TextPointers ; texts
- dw CeladonMart5F_Script ; scripts
- db 0 ; connections
- dw CeladonMart5F_Object ; objects
--- a/data/mapHeaders/CeladonMartElevator.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMartElevator_h::
- db LOBBY ; tileset
- db CELADON_MART_ELEVATOR_HEIGHT, CELADON_MART_ELEVATOR_WIDTH ; dimensions (y, x)
- dw CeladonMartElevator_Blocks ; blocks
- dw CeladonMartElevator_TextPointers ; texts
- dw CeladonMartElevator_Script ; scripts
- db 0 ; connections
- dw CeladonMartElevator_Object ; objects
--- a/data/mapHeaders/CeladonMartRoof.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonMartRoof_h::
- db LOBBY ; tileset
- db CELADON_MART_ROOF_HEIGHT, CELADON_MART_ROOF_WIDTH ; dimensions (y, x)
- dw CeladonMartRoof_Blocks ; blocks
- dw CeladonMartRoof_TextPointers ; texts
- dw CeladonMartRoof_Script ; scripts
- db 0 ; connections
- dw CeladonMartRoof_Object ; objects
--- a/data/mapHeaders/CeladonPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeladonPokecenter_h::
- db POKECENTER ; tileset
- db CELADON_POKECENTER_HEIGHT, CELADON_POKECENTER_WIDTH ; dimensions (y, x)
- dw CeladonPokecenter_Blocks ; blocks
- dw CeladonPokecenter_TextPointers ; texts
- dw CeladonPokecenter_Script ; scripts
- db 0 ; connections
- dw CeladonPokecenter_Object ; objects
--- a/data/mapHeaders/CeruleanBadgeHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanBadgeHouse_h::
- db SHIP ; tileset
- db CERULEAN_BADGE_HOUSE_HEIGHT, CERULEAN_BADGE_HOUSE_WIDTH ; dimensions (y, x)
- dw CeruleanBadgeHouse_Blocks ; blocks
- dw CeruleanBadgeHouse_TextPointers ; texts
- dw CeruleanBadgeHouse_Script ; scripts
- db 0 ; connections
- dw CeruleanBadgeHouse_Object ; objects
--- a/data/mapHeaders/CeruleanCave1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanCave1F_h::
- db CAVERN ; tileset
- db CERULEAN_CAVE_1F_HEIGHT, CERULEAN_CAVE_1F_WIDTH ; dimensions (y, x)
- dw CeruleanCave1F_Blocks ; blocks
- dw CeruleanCave1F_TextPointers ; texts
- dw CeruleanCave1F_Script ; scripts
- db 0 ; connections
- dw CeruleanCave1F_Object ; objects
--- a/data/mapHeaders/CeruleanCave2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanCave2F_h::
- db CAVERN ; tileset
- db CERULEAN_CAVE_2F_HEIGHT, CERULEAN_CAVE_2F_WIDTH ; dimensions (y, x)
- dw CeruleanCave2F_Blocks ; blocks
- dw CeruleanCave2F_TextPointers ; texts
- dw CeruleanCave2F_Script ; scripts
- db 0 ; connections
- dw CeruleanCave2F_Object ; objects
--- a/data/mapHeaders/CeruleanCaveB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanCaveB1F_h::
- db CAVERN ; tileset
- db CERULEAN_CAVE_B1F_HEIGHT, CERULEAN_CAVE_B1F_WIDTH ; dimensions (y, x)
- dw CeruleanCaveB1F_Blocks ; blocks
- dw CeruleanCaveB1F_TextPointers ; texts
- dw CeruleanCaveB1F_Script ; scripts
- db 0 ; connections
- dw CeruleanCaveB1F_Object ; objects
--- a/data/mapHeaders/CeruleanCity.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-CeruleanCity_h::
- db OVERWORLD ; tileset
- db CERULEAN_CITY_HEIGHT, CERULEAN_CITY_WIDTH ; dimensions (y, x)
- dw CeruleanCity_Blocks ; blocks
- dw CeruleanCity_TextPointers ; texts
- dw CeruleanCity_Script ; scripts
- db NORTH | SOUTH | WEST | EAST ; connections
- NORTH_MAP_CONNECTION CERULEAN_CITY, ROUTE_24, 5, 0, Route24_Blocks
- SOUTH_MAP_CONNECTION CERULEAN_CITY, ROUTE_5, 5, 0, Route5_Blocks, 1
- WEST_MAP_CONNECTION CERULEAN_CITY, ROUTE_4, 4, 0, Route4_Blocks
- EAST_MAP_CONNECTION CERULEAN_CITY, ROUTE_9, 4, 0, Route9_Blocks
- dw CeruleanCity_Object ; objects
--- a/data/mapHeaders/CeruleanGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanGym_h::
- db GYM ; tileset
- db CERULEAN_GYM_HEIGHT, CERULEAN_GYM_WIDTH ; dimensions (y, x)
- dw CeruleanGym_Blocks ; blocks
- dw CeruleanGym_TextPointers ; texts
- dw CeruleanGym_Script ; scripts
- db 0 ; connections
- dw CeruleanGym_Object ; objects
--- a/data/mapHeaders/CeruleanMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanMart_h::
- db MART ; tileset
- db CERULEAN_MART_HEIGHT, CERULEAN_MART_WIDTH ; dimensions (y, x)
- dw CeruleanMart_Blocks ; blocks
- dw CeruleanMart_TextPointers ; texts
- dw CeruleanMart_Script ; scripts
- db 0 ; connections
- dw CeruleanMart_Object ; objects
--- a/data/mapHeaders/CeruleanPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanPokecenter_h::
- db POKECENTER ; tileset
- db CERULEAN_POKECENTER_HEIGHT, CERULEAN_POKECENTER_WIDTH ; dimensions (y, x)
- dw CeruleanPokecenter_Blocks ; blocks
- dw CeruleanPokecenter_TextPointers ; texts
- dw CeruleanPokecenter_Script ; scripts
- db 0 ; connections
- dw CeruleanPokecenter_Object ; objects
--- a/data/mapHeaders/CeruleanTradeHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanTradeHouse_h::
- db HOUSE ; tileset
- db CERULEAN_TRADE_HOUSE_HEIGHT, CERULEAN_TRADE_HOUSE_WIDTH ; dimensions (y, x)
- dw CeruleanTradeHouse_Blocks ; blocks
- dw CeruleanTradeHouse_TextPointers ; texts
- dw CeruleanTradeHouse_Script ; scripts
- db 0 ; connections
- dw CeruleanTradeHouse_Object ; objects
--- a/data/mapHeaders/CeruleanTrashedHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CeruleanTrashedHouse_h::
- db HOUSE ; tileset
- db CERULEAN_TRASHED_HOUSE_HEIGHT, CERULEAN_TRASHED_HOUSE_WIDTH ; dimensions (y, x)
- dw CeruleanTrashedHouse_Blocks ; blocks
- dw CeruleanTrashedHouse_TextPointers ; texts
- dw CeruleanTrashedHouse_Script ; scripts
- db 0 ; connections
- dw CeruleanTrashedHouse_Object ; objects
--- a/data/mapHeaders/ChampionsRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ChampionsRoom_h::
- db GYM ; tileset
- db CHAMPIONS_ROOM_HEIGHT, CHAMPIONS_ROOM_WIDTH ; dimensions (y, x)
- dw ChampionsRoom_Blocks ; blocks
- dw ChampionsRoom_TextPointers ; texts
- dw ChampionsRoom_Script ; scripts
- db $0 ; connections
- dw ChampionsRoom_Object ; objects
--- a/data/mapHeaders/CinnabarGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarGym_h::
- db FACILITY ; tileset
- db CINNABAR_GYM_HEIGHT, CINNABAR_GYM_WIDTH ; dimensions (y, x)
- dw CinnabarGym_Blocks ; blocks
- dw CinnabarGym_TextPointers ; texts
- dw CinnabarGym_Script ; scripts
- db 0 ; connections
- dw CinnabarGym_Object ; objects
--- a/data/mapHeaders/CinnabarIsland.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-CinnabarIsland_h::
- db OVERWORLD ; tileset
- db CINNABAR_ISLAND_HEIGHT, CINNABAR_ISLAND_WIDTH ; dimensions (y, x)
- dw CinnabarIsland_Blocks ; blocks
- dw CinnabarIsland_TextPointers ; texts
- dw CinnabarIsland_Script ; scripts
- db NORTH | EAST ; connections
- NORTH_MAP_CONNECTION CINNABAR_ISLAND, ROUTE_21, 0, 0, Route21_Blocks
- EAST_MAP_CONNECTION CINNABAR_ISLAND, ROUTE_20, 0, 0, Route20_Blocks
- dw CinnabarIsland_Object ; objects
--- a/data/mapHeaders/CinnabarLab.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarLab_h::
- db LAB ; tileset
- db CINNABAR_LAB_HEIGHT, CINNABAR_LAB_WIDTH ; dimensions (y, x)
- dw CinnabarLab_Blocks ; blocks
- dw CinnabarLab_TextPointers ; texts
- dw CinnabarLab_Script ; scripts
- db 0 ; connections
- dw CinnabarLab_Object ; objects
--- a/data/mapHeaders/CinnabarLabFossilRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarLabFossilRoom_h::
- db LAB ; tileset
- db CINNABAR_LAB_FOSSIL_ROOM_HEIGHT, CINNABAR_LAB_FOSSIL_ROOM_WIDTH ; dimensions (y, x)
- dw CinnabarLabFossilRoom_Blocks ; blocks
- dw CinnabarLabFossilRoom_TextPointers ; texts
- dw CinnabarLabFossilRoom_Script ; scripts
- db 0 ; connections
- dw CinnabarLabFossilRoom_Object ; objects
--- a/data/mapHeaders/CinnabarLabMetronomeRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarLabMetronomeRoom_h::
- db LAB ; tileset
- db CINNABAR_LAB_METRONOME_ROOM_HEIGHT, CINNABAR_LAB_METRONOME_ROOM_WIDTH ; dimensions (y, x)
- dw CinnabarLabMetronomeRoom_Blocks ; blocks
- dw CinnabarLabMetronomeRoom_TextPointers ; texts
- dw CinnabarLabMetronomeRoom_Script ; scripts
- db 0 ; connections
- dw CinnabarLabMetronomeRoom_Object ; objects
--- a/data/mapHeaders/CinnabarLabTradeRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarLabTradeRoom_h::
- db LAB ; tileset
- db CINNABAR_LAB_TRADE_ROOM_HEIGHT, CINNABAR_LAB_TRADE_ROOM_WIDTH ; dimensions (y, x)
- dw CinnabarLabTradeRoom_Blocks ; blocks
- dw CinnabarLabTradeRoom_TextPointers ; texts
- dw CinnabarLabTradeRoom_Script ; scripts
- db 0 ; connections
- dw CinnabarLabTradeRoom_Object ; objects
--- a/data/mapHeaders/CinnabarMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarMart_h::
- db MART ; tileset
- db CINNABAR_MART_HEIGHT, CINNABAR_MART_WIDTH ; dimensions (y, x)
- dw CinnabarMart_Blocks ; blocks
- dw CinnabarMart_TextPointers ; texts
- dw CinnabarMart_Script ; scripts
- db 0 ; connections
- dw CinnabarMart_Object ; objects
--- a/data/mapHeaders/CinnabarPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CinnabarPokecenter_h::
- db POKECENTER ; tileset
- db CINNABAR_POKECENTER_HEIGHT, CINNABAR_POKECENTER_WIDTH ; dimensions (y, x)
- dw CinnabarPokecenter_Blocks ; blocks
- dw CinnabarPokecenter_TextPointers ; texts
- dw CinnabarPokecenter_Script ; scripts
- db 0 ; connections
- dw CinnabarPokecenter_Object ; objects
--- a/data/mapHeaders/Colosseum.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Colosseum_h::
- db CLUB ; tileset
- db COLOSSEUM_HEIGHT, COLOSSEUM_WIDTH ; dimensions (y, x)
- dw Colosseum_Blocks ; blocks
- dw Colosseum_TextPointers ; texts
- dw Colosseum_Script ; scripts
- db 0 ; connections
- dw Colosseum_Object ; objects
--- a/data/mapHeaders/CopycatsHouse1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CopycatsHouse1F_h::
- db REDS_HOUSE_1 ; tileset
- db COPYCATS_HOUSE_1F_HEIGHT, COPYCATS_HOUSE_1F_WIDTH ; dimensions (y, x)
- dw CopycatsHouse1F_Blocks ; blocks
- dw CopycatsHouse1F_TextPointers ; texts
- dw CopycatsHouse1F_Script ; scripts
- db 0 ; connections
- dw CopycatsHouse1F_Object ; objects
--- a/data/mapHeaders/CopycatsHouse2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-CopycatsHouse2F_h::
- db REDS_HOUSE_2 ; tileset
- db COPYCATS_HOUSE_2F_HEIGHT, COPYCATS_HOUSE_2F_WIDTH ; dimensions (y, x)
- dw CopycatsHouse2F_Blocks ; blocks
- dw CopycatsHouse2F_TextPointers ; texts
- dw CopycatsHouse2F_Script ; scripts
- db 0 ; connections
- dw CopycatsHouse2F_Object ; objects
--- a/data/mapHeaders/Daycare.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Daycare_h::
- db HOUSE ; tileset
- db DAYCARE_HEIGHT, DAYCARE_WIDTH ; dimensions (y, x)
- dw Daycare_Blocks ; blocks
- dw Daycare_TextPointers ; texts
- dw Daycare_Script ; scripts
- db 0 ; connections
- dw Daycare_Object ; objects
--- a/data/mapHeaders/DiglettsCave.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-DiglettsCave_h::
- db CAVERN ; tileset
- db DIGLETTS_CAVE_HEIGHT, DIGLETTS_CAVE_WIDTH ; dimensions (y, x)
- dw DiglettsCave_Blocks ; blocks
- dw DiglettsCave_TextPointers ; texts
- dw DiglettsCave_Script ; scripts
- db 0 ; connections
- dw DiglettsCave_Object ; objects
--- a/data/mapHeaders/DiglettsCaveRoute11.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-DiglettsCaveRoute11_h::
- db CAVERN ; tileset
- db DIGLETTS_CAVE_ROUTE_11_HEIGHT, DIGLETTS_CAVE_ROUTE_11_WIDTH ; dimensions (y, x)
- dw DiglettsCaveRoute11_Blocks ; blocks
- dw DiglettsCaveRoute11_TextPointers ; texts
- dw DiglettsCaveRoute11_Script ; scripts
- db 0 ; connections
- dw DiglettsCaveRoute11_Object ; objects
--- a/data/mapHeaders/DiglettsCaveRoute2.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-DiglettsCaveRoute2_h::
- db CAVERN ; tileset
- db DIGLETTS_CAVE_ROUTE_2_HEIGHT, DIGLETTS_CAVE_ROUTE_2_WIDTH ; dimensions (y, x)
- dw DiglettsCaveRoute2_Blocks ; blocks
- dw DiglettsCaveRoute2_TextPointers ; texts
- dw DiglettsCaveRoute2_Script ; scripts
- db 0 ; connections
- dw DiglettsCaveRoute2_Object ; objects
--- a/data/mapHeaders/FightingDojo.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FightingDojo_h::
- db DOJO ; tileset
- db FIGHTING_DOJO_HEIGHT, FIGHTING_DOJO_WIDTH ; dimensions (y, x)
- dw FightingDojo_Blocks ; blocks
- dw FightingDojo_TextPointers ; texts
- dw FightingDojo_Script ; scripts
- db 0 ; connections
- dw FightingDojo_Object ; objects
--- a/data/mapHeaders/FuchsiaBillsGrandpasHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FuchsiaBillsGrandpasHouse_h::
- db HOUSE ; tileset
- db FUCHSIA_BILLS_GRANDPAS_HOUSE_HEIGHT, FUCHSIA_BILLS_GRANDPAS_HOUSE_WIDTH ; dimensions (y, x)
- dw FuchsiaBillsGrandpasHouse_Blocks ; blocks
- dw FuchsiaBillsGrandpasHouse_TextPointers ; texts
- dw FuchsiaBillsGrandpasHouse_Script ; scripts
- db 0 ; connections
- dw FuchsiaBillsGrandpasHouse_Object ; objects
--- a/data/mapHeaders/FuchsiaCity.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-FuchsiaCity_h::
- db OVERWORLD ; tileset
- db FUCHSIA_CITY_HEIGHT, FUCHSIA_CITY_WIDTH ; dimensions (y, x)
- dw FuchsiaCity_Blocks ; blocks
- dw FuchsiaCity_TextPointers ; texts
- dw FuchsiaCity_Script ; scripts
- db SOUTH | WEST | EAST ; connections
- SOUTH_MAP_CONNECTION FUCHSIA_CITY, ROUTE_19, 5, 0, Route19_Blocks
- WEST_MAP_CONNECTION FUCHSIA_CITY, ROUTE_18, 4, 0, Route18_Blocks
- EAST_MAP_CONNECTION FUCHSIA_CITY, ROUTE_15, 4, 0, Route15_Blocks
- dw FuchsiaCity_Object ; objects
--- a/data/mapHeaders/FuchsiaGoodRodHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FuchsiaGoodRodHouse_h::
- db SHIP ; tileset
- db FUCHSIA_GOOD_ROD_HOUSE_HEIGHT, FUCHSIA_GOOD_ROD_HOUSE_WIDTH ; dimensions (y, x)
- dw FuchsiaGoodRodHouse_Blocks ; blocks
- dw FuchsiaGoodRodHouse_TextPointers ; texts
- dw FuchsiaGoodRodHouse_Script ; scripts
- db 0 ; connections
- dw FuchsiaGoodRodHouse_Object ; objects
--- a/data/mapHeaders/FuchsiaGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FuchsiaGym_h::
- db GYM ; tileset
- db FUCHSIA_GYM_HEIGHT, FUCHSIA_GYM_WIDTH ; dimensions (y, x)
- dw FuchsiaGym_Blocks ; blocks
- dw FuchsiaGym_TextPointers ; texts
- dw FuchsiaGym_Script ; scripts
- db 0 ; connections
- dw FuchsiaGym_Object ; objects
--- a/data/mapHeaders/FuchsiaMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FuchsiaMart_h::
- db MART ; tileset
- db FUCHSIA_MART_HEIGHT, FUCHSIA_MART_WIDTH ; dimensions (y, x)
- dw FuchsiaMart_Blocks ; blocks
- dw FuchsiaMart_TextPointers ; texts
- dw FuchsiaMart_Script ; scripts
- db 0 ; connections
- dw FuchsiaMart_Object ; objects
--- a/data/mapHeaders/FuchsiaMeetingRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FuchsiaMeetingRoom_h::
- db LAB ; tileset
- db FUCHSIA_MEETING_ROOM_HEIGHT, FUCHSIA_MEETING_ROOM_WIDTH ; dimensions (y, x)
- dw FuchsiaMeetingRoom_Blocks ; blocks
- dw FuchsiaMeetingRoom_TextPointers ; texts
- dw FuchsiaMeetingRoom_Script ; scripts
- db 0 ; connections
- dw FuchsiaMeetingRoom_Object ; objects
--- a/data/mapHeaders/FuchsiaPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-FuchsiaPokecenter_h::
- db POKECENTER ; tileset
- db FUCHSIA_POKECENTER_HEIGHT, FUCHSIA_POKECENTER_WIDTH ; dimensions (y, x)
- dw FuchsiaPokecenter_Blocks ; blocks
- dw FuchsiaPokecenter_TextPointers ; texts
- dw FuchsiaPokecenter_Script ; scripts
- db 0 ; connections
- dw FuchsiaPokecenter_Object ; objects
--- a/data/mapHeaders/GameCorner.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-GameCorner_h::
- db LOBBY ; tileset
- db GAME_CORNER_HEIGHT, GAME_CORNER_WIDTH ; dimensions (y, x)
- dw GameCorner_Blocks ; blocks
- dw GameCorner_TextPointers ; texts
- dw GameCorner_Script ; scripts
- db 0 ; connections
- dw GameCorner_Object ; objects
--- a/data/mapHeaders/GameCornerPrizeRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-GameCornerPrizeRoom_h::
- db LOBBY ; tileset
- db GAME_CORNER_PRIZE_ROOM_HEIGHT, GAME_CORNER_PRIZE_ROOM_WIDTH ; dimensions (y, x)
- dw GameCornerPrizeRoom_Blocks ; blocks
- dw GameCornerPrizeRoom_TextPointers ; texts
- dw GameCornerPrizeRoom_Script ; scripts
- db 0 ; connections
- dw GameCornerPrizeRoom_Object ; objects
--- a/data/mapHeaders/HallOfFame.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-HallOfFame_h::
- db GYM ; tileset
- db HALL_OF_FAME_HEIGHT, HALL_OF_FAME_WIDTH ; dimensions (y, x)
- dw HallOfFame_Blocks ; blocks
- dw HallOfFame_TextPointers ; texts
- dw HallOfFame_Script ; scripts
- db 0 ; connections
- dw HallOfFame_Object ; objects
--- a/data/mapHeaders/IndigoPlateau.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-IndigoPlateau_h::
- db PLATEAU ; tileset
- db INDIGO_PLATEAU_HEIGHT, INDIGO_PLATEAU_WIDTH ; dimensions (y, x)
- dw IndigoPlateau_Blocks ; blocks
- dw IndigoPlateau_TextPointers ; texts
- dw IndigoPlateau_Script ; scripts
- db SOUTH ; connections
- SOUTH_MAP_CONNECTION INDIGO_PLATEAU, ROUTE_23, 0, 0, Route23_Blocks
- dw IndigoPlateau_Object ; objects
--- a/data/mapHeaders/IndigoPlateauLobby.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-IndigoPlateauLobby_h::
- db MART ; tileset
- db INDIGO_PLATEAU_LOBBY_HEIGHT, INDIGO_PLATEAU_LOBBY_WIDTH ; dimensions (y, x)
- dw IndigoPlateauLobby_Blocks ; blocks
- dw IndigoPlateauLobby_TextPointers ; texts
- dw IndigoPlateauLobby_Script ; scripts
- db 0 ; connections
- dw IndigoPlateauLobby_Object ; objects
--- a/data/mapHeaders/LancesRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-LancesRoom_h::
- db DOJO ; tileset
- db LANCES_ROOM_HEIGHT, LANCES_ROOM_WIDTH ; dimensions (y, x)
- dw LancesRoom_Blocks ; blocks
- dw LancesRoom_TextPointers ; texts
- dw LancesRoom_Script ; scripts
- db 0 ; connections
- dw LancesRoom_Object ; objects
--- a/data/mapHeaders/LavenderCuboneHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-LavenderCuboneHouse_h::
- db HOUSE ; tileset
- db LAVENDER_CUBONE_HOUSE_HEIGHT, LAVENDER_CUBONE_HOUSE_WIDTH ; dimensions (y, x)
- dw LavenderCuboneHouse_Blocks ; blocks
- dw LavenderCuboneHouse_TextPointers ; texts
- dw LavenderCuboneHouse_Script ; scripts
- db 0 ; connections
- dw LavenderCuboneHouse_Object ; objects
--- a/data/mapHeaders/LavenderMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-LavenderMart_h::
- db MART ; tileset
- db LAVENDER_MART_HEIGHT, LAVENDER_MART_WIDTH ; dimensions (y, x)
- dw LavenderMart_Blocks ; blocks
- dw LavenderMart_TextPointers ; texts
- dw LavenderMart_Script ; scripts
- db 0 ; connections
- dw LavenderMart_Object ; objects
--- a/data/mapHeaders/LavenderPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-LavenderPokecenter_h::
- db POKECENTER ; tileset
- db LAVENDER_POKECENTER_HEIGHT, LAVENDER_POKECENTER_WIDTH ; dimensions (y, x)
- dw LavenderPokecenter_Blocks ; blocks
- dw LavenderPokecenter_TextPointers ; texts
- dw LavenderPokecenter_Script ; scripts
- db 0 ; connections
- dw LavenderPokecenter_Object ; objects
--- a/data/mapHeaders/LavenderTown.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-LavenderTown_h::
- db OVERWORLD ; tileset
- db LAVENDER_TOWN_HEIGHT, LAVENDER_TOWN_WIDTH ; dimensions (y, x)
- dw LavenderTown_Blocks ; blocks
- dw LavenderTown_TextPointers ; texts
- dw LavenderTown_Script ; scripts
- db NORTH | SOUTH | WEST ; connections
- NORTH_MAP_CONNECTION LAVENDER_TOWN, ROUTE_10, 0, 0, Route10_Blocks
- SOUTH_MAP_CONNECTION LAVENDER_TOWN, ROUTE_12, 0, 0, Route12_Blocks, 1
- WEST_MAP_CONNECTION LAVENDER_TOWN, ROUTE_8, 0, 0, Route8_Blocks
- dw LavenderTown_Object ; objects
--- a/data/mapHeaders/LoreleisRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-LoreleisRoom_h::
- db GYM ; tileset
- db LORELEIS_ROOM_HEIGHT, LORELEIS_ROOM_WIDTH ; dimensions (y, x)
- dw LoreleisRoom_Blocks ; blocks
- dw LoreleisRoom_TextPointers ; texts
- dw LoreleisRoom_Script ; scripts
- db 0 ; connections
- dw LoreleisRoom_Object ; objects
--- a/data/mapHeaders/MrFujisHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-MrFujisHouse_h::
- db HOUSE ; tileset
- db MR_FUJIS_HOUSE_HEIGHT, MR_FUJIS_HOUSE_WIDTH ; dimensions (y, x)
- dw MrFujisHouse_Blocks ; blocks
- dw MrFujisHouse_TextPointers ; texts
- dw MrFujisHouse_Script ; scripts
- db 0 ; connections
- dw MrFujisHouse_Object ; objects
--- a/data/mapHeaders/MrPsychicsHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-MrPsychicsHouse_h::
- db HOUSE ; tileset
- db MR_PSYCHICS_HOUSE_HEIGHT, MR_PSYCHICS_HOUSE_WIDTH ; dimensions (y, x)
- dw MrPsychicsHouse_Blocks ; blocks
- dw MrPsychicsHouse_TextPointers ; texts
- dw MrPsychicsHouse_Script ; scripts
- db 0 ; connections
- dw MrPsychicsHouse_Object ; objects
--- a/data/mapHeaders/MtMoon1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-MtMoon1F_h::
- db CAVERN ; tileset
- db MT_MOON_1F_HEIGHT, MT_MOON_1F_WIDTH ; dimensions (y, x)
- dw MtMoon1F_Blocks ; blocks
- dw MtMoon1F_TextPointers ; texts
- dw MtMoon1F_Script ; scripts
- db 0 ; connections
- dw MtMoon1F_Object ; objects
--- a/data/mapHeaders/MtMoonB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-MtMoonB1F_h::
- db CAVERN ; tileset
- db MT_MOON_B1F_HEIGHT, MT_MOON_B1F_WIDTH ; dimensions (y, x)
- dw MtMoonB1F_Blocks ; blocks
- dw MtMoonB1F_TextPointers ; texts
- dw MtMoonB1F_Script ; scripts
- db 0 ; connections
- dw MtMoonB1F_Object ; objects
--- a/data/mapHeaders/MtMoonB2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-MtMoonB2F_h::
- db CAVERN ; tileset
- db MT_MOON_B2F_HEIGHT, MT_MOON_B2F_WIDTH ; dimensions (y, x)
- dw MtMoonB2F_Blocks ; blocks
- dw MtMoonB2F_TextPointers ; texts
- dw MtMoonB2F_Script ; scripts
- db 0 ; connections
- dw MtMoonB2F_Object ; objects
--- a/data/mapHeaders/MtMoonPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-MtMoonPokecenter_h::
- db POKECENTER ; tileset
- db MT_MOON_POKECENTER_HEIGHT, MT_MOON_POKECENTER_WIDTH ; dimensions (y, x)
- dw MtMoonPokecenter_Blocks ; blocks
- dw MtMoonPokecenter_TextPointers ; texts
- dw MtMoonPokecenter_Script ; scripts
- db 0 ; connections
- dw MtMoonPokecenter_Object ; objects
--- a/data/mapHeaders/Museum1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Museum1F_h::
- db MUSEUM ; tileset
- db MUSEUM_1F_HEIGHT, MUSEUM_1F_WIDTH ; dimensions (y, x)
- dw Museum1F_Blocks ; blocks
- dw Museum1F_TextPointers ; texts
- dw Museum1F_Script ; scripts
- db 0 ; connections
- dw Museum1F_Object ; objects
--- a/data/mapHeaders/Museum2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Museum2F_h::
- db MUSEUM ; tileset
- db MUSEUM_2F_HEIGHT, MUSEUM_2F_WIDTH ; dimensions (y, x)
- dw Museum2F_Blocks ; blocks
- dw Museum2F_TextPointers ; texts
- dw Museum2F_Script ; scripts
- db 0 ; connections
- dw Museum2F_Object ; objects
--- a/data/mapHeaders/NameRatersHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-NameRatersHouse_h::
- db HOUSE ; tileset
- db NAME_RATERS_HOUSE_HEIGHT, NAME_RATERS_HOUSE_WIDTH ; dimensions (y, x)
- dw NameRatersHouse_Blocks ; blocks
- dw NameRatersHouse_TextPointers ; texts
- dw NameRatersHouse_Script ; scripts
- db 0 ; connections
- dw NameRatersHouse_Object ; objects
--- a/data/mapHeaders/OaksLab.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-OaksLab_h::
- db DOJO ; tileset
- db OAKS_LAB_HEIGHT, OAKS_LAB_WIDTH ; dimensions (y, x)
- dw OaksLab_Blocks ; blocks
- dw OaksLab_TextPointers ; texts
- dw OaksLab_Script ; scripts
- db 0 ; connections
- dw OaksLab_Object ; objects
--- a/data/mapHeaders/PalletTown.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-PalletTown_h::
- db OVERWORLD ; tileset
- db PALLET_TOWN_HEIGHT, PALLET_TOWN_WIDTH ; dimensions (y, x)
- dw PalletTown_Blocks ; blocks
- dw PalletTown_TextPointers ; texts
- dw PalletTown_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION PALLET_TOWN, ROUTE_1, 0, 0, Route1_Blocks
- SOUTH_MAP_CONNECTION PALLET_TOWN, ROUTE_21, 0, 0, Route21_Blocks, 1
- dw PalletTown_Object ; objects
--- a/data/mapHeaders/PewterCity.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-PewterCity_h::
- db OVERWORLD ; tileset
- db PEWTER_CITY_HEIGHT, PEWTER_CITY_WIDTH ; dimensions (y, x)
- dw PewterCity_Blocks ; blocks
- dw PewterCity_TextPointers ; texts
- dw PewterCity_Script ; scripts
- db SOUTH | EAST ; connections
- SOUTH_MAP_CONNECTION PEWTER_CITY, ROUTE_2, 5, 0, Route2_Blocks
- EAST_MAP_CONNECTION PEWTER_CITY, ROUTE_3, 4, 0, Route3_Blocks
- dw PewterCity_Object ; objects
--- a/data/mapHeaders/PewterGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PewterGym_h::
- db GYM ; tileset
- db PEWTER_GYM_HEIGHT, PEWTER_GYM_WIDTH ; dimensions (y, x)
- dw PewterGym_Blocks ; blocks
- dw PewterGym_TextPointers ; texts
- dw PewterGym_Script ; scripts
- db 0 ; connections
- dw PewterGym_Object ; objects
--- a/data/mapHeaders/PewterMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PewterMart_h::
- db MART ; tileset
- db PEWTER_MART_HEIGHT, PEWTER_MART_WIDTH ; dimensions (y, x)
- dw PewterMart_Blocks ; blocks
- dw PewterMart_TextPointers ; texts
- dw PewterMart_Script ; scripts
- db 0 ; connections
- dw PewterMart_Object ; objects
--- a/data/mapHeaders/PewterNidoranHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PewterNidoranHouse_h::
- db HOUSE ; tileset
- db PEWTER_NIDORAN_HOUSE_HEIGHT, PEWTER_NIDORAN_HOUSE_WIDTH ; dimensions (y, x)
- dw PewterNidoranHouse_Blocks ; blocks
- dw PewterNidoranHouse_TextPointers ; texts
- dw PewterNidoranHouse_Script ; scripts
- db 0 ; connections
- dw PewterNidoranHouse_Object ; objects
--- a/data/mapHeaders/PewterPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PewterPokecenter_h::
- db POKECENTER ; tileset
- db PEWTER_POKECENTER_HEIGHT, PEWTER_POKECENTER_WIDTH ; dimensions (y, x)
- dw PewterPokecenter_Blocks ; blocks
- dw PewterPokecenter_TextPointers ; texts
- dw PewterPokecenter_Script ; scripts
- db 0 ; connections
- dw PewterPokecenter_Object ; objects
--- a/data/mapHeaders/PewterSpeechHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PewterSpeechHouse_h::
- db HOUSE ; tileset
- db PEWTER_SPEECH_HOUSE_HEIGHT, PEWTER_SPEECH_HOUSE_WIDTH ; dimensions (y, x)
- dw PewterSpeechHouse_Blocks ; blocks
- dw PewterSpeechHouse_TextPointers ; texts
- dw PewterSpeechHouse_Script ; scripts
- db 0 ; connections
- dw PewterSpeechHouse_Object ; objects
--- a/data/mapHeaders/PokemonFanClub.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonFanClub_h::
- db INTERIOR ; tileset
- db POKEMON_FAN_CLUB_HEIGHT, POKEMON_FAN_CLUB_WIDTH ; dimensions (y, x)
- dw PokemonFanClub_Blocks ; blocks
- dw PokemonFanClub_TextPointers ; texts
- dw PokemonFanClub_Script ; scripts
- db 0 ; connections
- dw PokemonFanClub_Object ; objects
--- a/data/mapHeaders/PokemonMansion1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonMansion1F_h::
- db FACILITY ; tileset
- db POKEMON_MANSION_1F_HEIGHT, POKEMON_MANSION_1F_WIDTH ; dimensions (y, x)
- dw PokemonMansion1F_Blocks ; blocks
- dw PokemonMansion1F_TextPointers ; texts
- dw PokemonMansion1F_Script ; scripts
- db 0 ; connections
- dw PokemonMansion1F_Object ; objects
--- a/data/mapHeaders/PokemonMansion2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonMansion2F_h::
- db FACILITY ; tileset
- db POKEMON_MANSION_2F_HEIGHT, POKEMON_MANSION_2F_WIDTH ; dimensions (y, x)
- dw PokemonMansion2F_Blocks ; blocks
- dw PokemonMansion2F_TextPointers ; texts
- dw PokemonMansion2F_Script ; scripts
- db 0 ; connections
- dw PokemonMansion2F_Object ; objects
--- a/data/mapHeaders/PokemonMansion3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonMansion3F_h::
- db FACILITY ; tileset
- db POKEMON_MANSION_3F_HEIGHT, POKEMON_MANSION_3F_WIDTH ; dimensions (y, x)
- dw PokemonMansion3F_Blocks ; blocks
- dw PokemonMansion3F_TextPointers ; texts
- dw PokemonMansion3F_Script ; scripts
- db 0 ; connections
- dw PokemonMansion3F_Object ; objects
--- a/data/mapHeaders/PokemonMansionB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonMansionB1F_h::
- db FACILITY ; tileset
- db POKEMON_MANSION_B1F_HEIGHT, POKEMON_MANSION_B1F_WIDTH ; dimensions (y, x)
- dw PokemonMansionB1F_Blocks ; blocks
- dw PokemonMansionB1F_TextPointers ; texts
- dw PokemonMansionB1F_Script ; scripts
- db 0 ; connections
- dw PokemonMansionB1F_Object ; objects
--- a/data/mapHeaders/PokemonTower1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower1F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_1F_HEIGHT, POKEMON_TOWER_1F_WIDTH ; dimensions (y, x)
- dw PokemonTower1F_Blocks ; blocks
- dw PokemonTower1F_TextPointers ; texts
- dw PokemonTower1F_Script ; scripts
- db 0 ; connections
- dw PokemonTower1F_Object ; objects
--- a/data/mapHeaders/PokemonTower2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower2F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_2F_HEIGHT, POKEMON_TOWER_2F_WIDTH ; dimensions (y, x)
- dw PokemonTower2F_Blocks ; blocks
- dw PokemonTower2F_TextPointers ; texts
- dw PokemonTower2F_Script ; scripts
- db 0 ; connections
- dw PokemonTower2F_Object ; objects
--- a/data/mapHeaders/PokemonTower3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower3F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_3F_HEIGHT, POKEMON_TOWER_3F_WIDTH ; dimensions (y, x)
- dw PokemonTower3F_Blocks ; blocks
- dw PokemonTower3F_TextPointers ; texts
- dw PokemonTower3F_Script ; scripts
- db 0 ; connections
- dw PokemonTower3F_Object ; objects
--- a/data/mapHeaders/PokemonTower4F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower4F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_4F_HEIGHT, POKEMON_TOWER_4F_WIDTH ; dimensions (y, x)
- dw PokemonTower4F_Blocks ; blocks
- dw PokemonTower4F_TextPointers ; texts
- dw PokemonTower4F_Script ; scripts
- db 0 ; connections
- dw PokemonTower4F_Object ; objects
--- a/data/mapHeaders/PokemonTower5F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower5F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_5F_HEIGHT, POKEMON_TOWER_5F_WIDTH ; dimensions (y, x)
- dw PokemonTower5F_Blocks ; blocks
- dw PokemonTower5F_TextPointers ; texts
- dw PokemonTower5F_Script ; scripts
- db 0 ; connections
- dw PokemonTower5F_Object ; objects
--- a/data/mapHeaders/PokemonTower6F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower6F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_6F_HEIGHT, POKEMON_TOWER_6F_WIDTH ; dimensions (y, x)
- dw PokemonTower6F_Blocks ; blocks
- dw PokemonTower6F_TextPointers ; texts
- dw PokemonTower6F_Script ; scripts
- db 0 ; connections
- dw PokemonTower6F_Object ; objects
--- a/data/mapHeaders/PokemonTower7F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PokemonTower7F_h::
- db CEMETERY ; tileset
- db POKEMON_TOWER_7F_HEIGHT, POKEMON_TOWER_7F_WIDTH ; dimensions (y, x)
- dw PokemonTower7F_Blocks ; blocks
- dw PokemonTower7F_TextPointers ; texts
- dw PokemonTower7F_Script ; scripts
- db 0 ; connections
- dw PokemonTower7F_Object ; objects
--- a/data/mapHeaders/PowerPlant.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-PowerPlant_h::
- db FACILITY ; tileset
- db POWER_PLANT_HEIGHT, POWER_PLANT_WIDTH ; dimensions (y, x)
- dw PowerPlant_Blocks ; blocks
- dw PowerPlant_TextPointers ; texts
- dw PowerPlant_Script ; scripts
- db 0 ; connections
- dw PowerPlant_Object ; objects
--- a/data/mapHeaders/RedsHouse1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RedsHouse1F_h::
- db REDS_HOUSE_1 ; tileset
- db REDS_HOUSE_1F_HEIGHT, REDS_HOUSE_1F_WIDTH ; dimensions (y, x)
- dw RedsHouse1F_Blocks ; blocks
- dw RedsHouse1F_TextPointers ; texts
- dw RedsHouse1F_Script ; scripts
- db 0 ; connections
- dw RedsHouse1F_Object ; objects
--- a/data/mapHeaders/RedsHouse2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RedsHouse2F_h::
- db REDS_HOUSE_2 ; tileset
- db REDS_HOUSE_2F_HEIGHT, REDS_HOUSE_2F_WIDTH ; dimensions (y, x)
- dw RedsHouse2F_Blocks ; blocks
- dw RedsHouse2F_TextPointers ; texts
- dw RedsHouse2F_Script ; scripts
- db $00 ; connections
- dw RedsHouse2F_Object ; objects
--- a/data/mapHeaders/RockTunnel1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RockTunnel1F_h::
- db CAVERN ; tileset
- db ROCK_TUNNEL_1F_HEIGHT, ROCK_TUNNEL_1F_WIDTH ; dimensions (y, x)
- dw RockTunnel1F_Blocks ; blocks
- dw RockTunnel1F_TextPointers ; texts
- dw RockTunnel1F_Script ; scripts
- db 0 ; connections
- dw RockTunnel1F_Object ; objects
--- a/data/mapHeaders/RockTunnelB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RockTunnelB1F_h::
- db CAVERN ; tileset
- db ROCK_TUNNEL_B1F_HEIGHT, ROCK_TUNNEL_B1F_WIDTH ; dimensions (y, x)
- dw RockTunnelB1F_Blocks ; blocks
- dw RockTunnelB1F_TextPointers ; texts
- dw RockTunnelB1F_Script ; scripts
- db 0 ; connections
- dw RockTunnelB1F_Object ; objects
--- a/data/mapHeaders/RockTunnelPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RockTunnelPokecenter_h::
- db POKECENTER ; tileset
- db ROCK_TUNNEL_POKECENTER_HEIGHT, ROCK_TUNNEL_POKECENTER_WIDTH ; dimensions (y, x)
- dw RockTunnelPokecenter_Blocks ; blocks
- dw RockTunnelPokecenter_TextPointers ; texts
- dw RockTunnelPokecenter_Script ; scripts
- db 0 ; connections
- dw RockTunnelPokecenter_Object ; objects
--- a/data/mapHeaders/RocketHideoutB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RocketHideoutB1F_h::
- db FACILITY ; tileset
- db ROCKET_HIDEOUT_B1F_HEIGHT, ROCKET_HIDEOUT_B1F_WIDTH ; dimensions (y, x)
- dw RocketHideoutB1F_Blocks ; blocks
- dw RocketHideoutB1F_TextPointers ; texts
- dw RocketHideoutB1F_Script ; scripts
- db 0 ; connections
- dw RocketHideoutB1F_Object ; objects
--- a/data/mapHeaders/RocketHideoutB2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RocketHideoutB2F_h::
- db FACILITY ; tileset
- db ROCKET_HIDEOUT_B2F_HEIGHT, ROCKET_HIDEOUT_B2F_WIDTH ; dimensions (y, x)
- dw RocketHideoutB2F_Blocks ; blocks
- dw RocketHideoutB2F_TextPointers ; texts
- dw RocketHideoutB2F_Script ; scripts
- db 0 ; connections
- dw RocketHideoutB2F_Object ; objects
--- a/data/mapHeaders/RocketHideoutB3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RocketHideoutB3F_h::
- db FACILITY ; tileset
- db ROCKET_HIDEOUT_B3F_HEIGHT, ROCKET_HIDEOUT_B3F_WIDTH ; dimensions (y, x)
- dw RocketHideoutB3F_Blocks ; blocks
- dw RocketHideoutB3F_TextPointers ; texts
- dw RocketHideoutB3F_Script ; scripts
- db 0 ; connections
- dw RocketHideoutB3F_Object ; objects
--- a/data/mapHeaders/RocketHideoutB4F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RocketHideoutB4F_h::
- db FACILITY ; tileset
- db ROCKET_HIDEOUT_B4F_HEIGHT, ROCKET_HIDEOUT_B4F_WIDTH ; dimensions (y, x)
- dw RocketHideoutB4F_Blocks ; blocks
- dw RocketHideoutB4F_TextPointers ; texts
- dw RocketHideoutB4F_Script ; scripts
- db 0 ; connections
- dw RocketHideoutB4F_Object ; objects
--- a/data/mapHeaders/RocketHideoutElevator.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-RocketHideoutElevator_h::
- db LOBBY ; tileset
- db ROCKET_HIDEOUT_ELEVATOR_HEIGHT, ROCKET_HIDEOUT_ELEVATOR_WIDTH ; dimensions (y, x)
- dw RocketHideoutElevator_Blocks ; blocks
- dw RocketHideoutElevator_TextPointers ; texts
- dw RocketHideoutElevator_Script ; scripts
- db 0 ; connections
- dw RocketHideoutElevator_Object ; objects
--- a/data/mapHeaders/Route1.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route1_h::
- db OVERWORLD ; tileset
- db ROUTE_1_HEIGHT, ROUTE_1_WIDTH ; dimensions (y, x)
- dw Route1_Blocks ; blocks
- dw Route1_TextPointers ; texts
- dw Route1_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_1, VIRIDIAN_CITY, -3, 2, ViridianCity_Blocks
- SOUTH_MAP_CONNECTION ROUTE_1, PALLET_TOWN, 0, 0, PalletTown_Blocks, 1
- dw Route1_Object ; objects
--- a/data/mapHeaders/Route10.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route10_h::
- db OVERWORLD ; tileset
- db ROUTE_10_HEIGHT, ROUTE_10_WIDTH ; dimensions (y, x)
- dw Route10_Blocks ; blocks
- dw Route10_TextPointers ; texts
- dw Route10_Script ; scripts
- db SOUTH | WEST ; connections
- SOUTH_MAP_CONNECTION ROUTE_10, LAVENDER_TOWN, 0, 0, LavenderTown_Blocks
- WEST_MAP_CONNECTION ROUTE_10, ROUTE_9, 0, 0, Route9_Blocks
- dw Route10_Object ; objects
--- a/data/mapHeaders/Route11.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route11_h::
- db OVERWORLD ; tileset
- db ROUTE_11_HEIGHT, ROUTE_11_WIDTH ; dimensions (y, x)
- dw Route11_Blocks ; blocks
- dw Route11_TextPointers ; texts
- dw Route11_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_11, VERMILION_CITY, -3, 1, VermilionCity_Blocks
- EAST_MAP_CONNECTION ROUTE_11, ROUTE_12, -3, 24, Route12_Blocks, 1
- dw Route11_Object ; objects
--- a/data/mapHeaders/Route11Gate1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route11Gate1F_h::
- db GATE ; tileset
- db ROUTE_11_GATE_1F_HEIGHT, ROUTE_11_GATE_1F_WIDTH ; dimensions (y, x)
- dw Route11Gate1F_Blocks ; blocks
- dw Route11Gate1F_TextPointers ; texts
- dw Route11Gate1F_Script ; scripts
- db 0 ; connections
- dw Route11Gate1F_Object ; objects
--- a/data/mapHeaders/Route11Gate2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route11Gate2F_h::
- db GATE ; tileset
- db ROUTE_11_GATE_2F_HEIGHT, ROUTE_11_GATE_2F_WIDTH ; dimensions (y, x)
- dw Route11Gate2F_Blocks ; blocks
- dw Route11Gate2F_TextPointers ; texts
- dw Route11Gate2F_Script ; scripts
- db 0 ; connections
- dw Route11Gate2F_Object ; objects
--- a/data/mapHeaders/Route12.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-Route12_h::
- db OVERWORLD ; tileset
- db ROUTE_12_HEIGHT, ROUTE_12_WIDTH ; dimensions (y, x)
- dw Route12_Blocks ; blocks
- dw Route12_TextPointers ; texts
- dw Route12_Script ; scripts
- db NORTH | SOUTH | WEST ; connections
- NORTH_MAP_CONNECTION ROUTE_12, LAVENDER_TOWN, 0, 0, LavenderTown_Blocks
- SOUTH_MAP_CONNECTION ROUTE_12, ROUTE_13, -3, 17, Route13_Blocks
- WEST_MAP_CONNECTION ROUTE_12, ROUTE_11, 27, 0, Route11_Blocks
- dw Route12_Object ; objects
--- a/data/mapHeaders/Route12Gate1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route12Gate1F_h::
- db GATE ; tileset
- db ROUTE_12_GATE_1F_HEIGHT, ROUTE_12_GATE_1F_WIDTH ; dimensions (y, x)
- dw Route12Gate1F_Blocks ; blocks
- dw Route12Gate1F_TextPointers ; texts
- dw Route12Gate1F_Script ; scripts
- db 0 ; connections
- dw Route12Gate1F_Object ; objects
--- a/data/mapHeaders/Route12Gate2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route12Gate2F_h::
- db GATE ; tileset
- db ROUTE_12_GATE_2F_HEIGHT, ROUTE_12_GATE_2F_WIDTH ; dimensions (y, x)
- dw Route12Gate2F_Blocks ; blocks
- dw Route12Gate2F_TextPointers ; texts
- dw Route12Gate2F_Script ; scripts
- db 0 ; connections
- dw Route12Gate2F_Object ; objects
--- a/data/mapHeaders/Route12SuperRodHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route12SuperRodHouse_h::
- db HOUSE ; tileset
- db ROUTE_12_SUPER_ROD_HOUSE_HEIGHT, ROUTE_12_SUPER_ROD_HOUSE_WIDTH ; dimensions (y, x)
- dw Route12SuperRodHouse_Blocks ; blocks
- dw Route12SuperRodHouse_TextPointers ; texts
- dw Route12SuperRodHouse_Script ; scripts
- db 0 ; connections
- dw Route12SuperRodHouse_Object ; objects
--- a/data/mapHeaders/Route13.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route13_h::
- db OVERWORLD ; tileset
- db ROUTE_13_HEIGHT, ROUTE_13_WIDTH ; dimensions (y, x)
- dw Route13_Blocks ; blocks
- dw Route13_TextPointers ; texts
- dw Route13_Script ; scripts
- db NORTH | WEST ; connections
- NORTH_MAP_CONNECTION ROUTE_13, ROUTE_12, 20, 0, Route12_Blocks
- WEST_MAP_CONNECTION ROUTE_13, ROUTE_14, 0, 0, Route14_Blocks
- dw Route13_Object ; objects
--- a/data/mapHeaders/Route14.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route14_h::
- db OVERWORLD ; tileset
- db ROUTE_14_HEIGHT, ROUTE_14_WIDTH ; dimensions (y, x)
- dw Route14_Blocks ; blocks
- dw Route14_TextPointers ; texts
- dw Route14_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_14, ROUTE_15, 18, 0, Route15_Blocks
- EAST_MAP_CONNECTION ROUTE_14, ROUTE_13, 0, 0, Route13_Blocks
- dw Route14_Object ; objects
--- a/data/mapHeaders/Route15.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route15_h::
- db OVERWORLD ; tileset
- db ROUTE_15_HEIGHT, ROUTE_15_WIDTH ; dimensions (y, x)
- dw Route15_Blocks ; blocks
- dw Route15_TextPointers ; texts
- dw Route15_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_15, FUCHSIA_CITY, -3, 1, FuchsiaCity_Blocks
- EAST_MAP_CONNECTION ROUTE_15, ROUTE_14, -3, 15, Route14_Blocks
- dw Route15_Object ; objects
--- a/data/mapHeaders/Route15Gate1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route15Gate1F_h::
- db GATE ; tileset
- db ROUTE_15_GATE_1F_HEIGHT, ROUTE_15_GATE_1F_WIDTH ; dimensions (y, x)
- dw Route15Gate1F_Blocks ; blocks
- dw Route15Gate1F_TextPointers ; texts
- dw Route15Gate1F_Script ; scripts
- db 0 ; connections
- dw Route15Gate1F_Object ; objects
--- a/data/mapHeaders/Route15Gate2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route15Gate2F_h::
- db GATE ; tileset
- db ROUTE_15_GATE_2F_HEIGHT, ROUTE_15_GATE_2F_WIDTH ; dimensions (y, x)
- dw Route15Gate2F_Blocks ; blocks
- dw Route15Gate2F_TextPointers ; texts
- dw Route15Gate2F_Script ; scripts
- db 0 ; connections
- dw Route15Gate2F_Object ; objects
--- a/data/mapHeaders/Route16.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route16_h::
- db OVERWORLD ; tileset
- db ROUTE_16_HEIGHT, ROUTE_16_WIDTH ; dimensions (y, x)
- dw Route16_Blocks ; blocks
- dw Route16_TextPointers ; texts
- dw Route16_Script ; scripts
- db SOUTH | EAST ; connections
- SOUTH_MAP_CONNECTION ROUTE_16, ROUTE_17, 0, 0, Route17_Blocks
- EAST_MAP_CONNECTION ROUTE_16, CELADON_CITY, -3, 1, CeladonCity_Blocks, 1
- dw Route16_Object ; objects
--- a/data/mapHeaders/Route16FlyHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route16FlyHouse_h::
- db HOUSE ; tileset
- db ROUTE_16_FLY_HOUSE_HEIGHT, ROUTE_16_FLY_HOUSE_WIDTH ; dimensions (y, x)
- dw Route16FlyHouse_Blocks ; blocks
- dw Route16FlyHouse_TextPointers ; texts
- dw Route16FlyHouse_Script ; scripts
- db 0 ; connections
- dw Route16FlyHouse_Object ; objects
--- a/data/mapHeaders/Route16Gate1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route16Gate1F_h::
- db GATE ; tileset
- db ROUTE_16_GATE_1F_HEIGHT, ROUTE_16_GATE_1F_WIDTH ; dimensions (y, x)
- dw Route16Gate1F_Blocks ; blocks
- dw Route16Gate1F_TextPointers ; texts
- dw Route16Gate1F_Script ; scripts
- db 0 ; connections
- dw Route16Gate1F_Object ; objects
--- a/data/mapHeaders/Route16Gate2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route16Gate2F_h::
- db GATE ; tileset
- db ROUTE_16_GATE_2F_HEIGHT, ROUTE_16_GATE_2F_WIDTH ; dimensions (y, x)
- dw Route16Gate2F_Blocks ; blocks
- dw Route16Gate2F_TextPointers ; texts
- dw Route16Gate2F_Script ; scripts
- db 0 ; connections
- dw Route16Gate2F_Object ; objects
--- a/data/mapHeaders/Route17.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route17_h::
- db OVERWORLD ; tileset
- db ROUTE_17_HEIGHT, ROUTE_17_WIDTH ; dimensions (y, x)
- dw Route17_Blocks ; blocks
- dw Route17_TextPointers ; texts
- dw Route17_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_17, ROUTE_16, 0, 0, Route16_Blocks
- SOUTH_MAP_CONNECTION ROUTE_17, ROUTE_18, 0, 0, Route18_Blocks, 1
- dw Route17_Object ; objects
--- a/data/mapHeaders/Route18.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route18_h::
- db OVERWORLD ; tileset
- db ROUTE_18_HEIGHT, ROUTE_18_WIDTH ; dimensions (y, x)
- dw Route18_Blocks ; blocks
- dw Route18_TextPointers ; texts
- dw Route18_Script ; scripts
- db NORTH | EAST ; connections
- NORTH_MAP_CONNECTION ROUTE_18, ROUTE_17, 0, 0, Route17_Blocks
- EAST_MAP_CONNECTION ROUTE_18, FUCHSIA_CITY, -3, 1, FuchsiaCity_Blocks, 1
- dw Route18_Object ; objects
--- a/data/mapHeaders/Route18Gate1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route18Gate1F_h::
- db GATE ; tileset
- db ROUTE_18_GATE_1F_HEIGHT, ROUTE_18_GATE_1F_WIDTH ; dimensions (y, x)
- dw Route18Gate1F_Blocks ; blocks
- dw Route18Gate1F_TextPointers ; texts
- dw Route18Gate1F_Script ; scripts
- db 0 ; connections
- dw Route18Gate1F_Object ; objects
--- a/data/mapHeaders/Route18Gate2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route18Gate2F_h::
- db GATE ; tileset
- db ROUTE_18_GATE_2F_HEIGHT, ROUTE_18_GATE_2F_WIDTH ; dimensions (y, x)
- dw Route18Gate2F_Blocks ; blocks
- dw Route18Gate2F_TextPointers ; texts
- dw Route18Gate2F_Script ; scripts
- db 0 ; connections
- dw Route18Gate2F_Object ; objects
--- a/data/mapHeaders/Route19.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route19_h::
- db OVERWORLD ; tileset
- db ROUTE_19_HEIGHT, ROUTE_19_WIDTH ; dimensions (y, x)
- dw Route19_Blocks ; blocks
- dw Route19_TextPointers ; texts
- dw Route19_Script ; scripts
- db NORTH | WEST ; connections
- NORTH_MAP_CONNECTION ROUTE_19, FUCHSIA_CITY, -3, 2, FuchsiaCity_Blocks
- WEST_MAP_CONNECTION ROUTE_19, ROUTE_20, 18, 0, Route20_Blocks
- dw Route19_Object ; objects
--- a/data/mapHeaders/Route2.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route2_h::
- db OVERWORLD ; tileset
- db ROUTE_2_HEIGHT, ROUTE_2_WIDTH ; dimensions (y, x)
- dw Route2_Blocks ; blocks
- dw Route2_TextPointers ; texts
- dw Route2_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_2, PEWTER_CITY, -3, 2, PewterCity_Blocks
- SOUTH_MAP_CONNECTION ROUTE_2, VIRIDIAN_CITY, -3, 2, ViridianCity_Blocks, 1
- dw Route2_Object ; objects
--- a/data/mapHeaders/Route20.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route20_h::
- db OVERWORLD ; tileset
- db ROUTE_20_HEIGHT, ROUTE_20_WIDTH ; dimensions (y, x)
- dw Route20_Blocks ; blocks
- dw Route20_TextPointers ; texts
- dw Route20_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_20, CINNABAR_ISLAND, 0, 0, CinnabarIsland_Blocks
- EAST_MAP_CONNECTION ROUTE_20, ROUTE_19, -3, 15, Route19_Blocks
- dw Route20_Object ; objects
--- a/data/mapHeaders/Route21.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route21_h::
- db OVERWORLD ; tileset
- db ROUTE_21_HEIGHT, ROUTE_21_WIDTH ; dimensions (y, x)
- dw Route21_Blocks ; blocks
- dw Route21_TextPointers ; texts
- dw Route21_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_21, PALLET_TOWN, 0, 0, PalletTown_Blocks
- SOUTH_MAP_CONNECTION ROUTE_21, CINNABAR_ISLAND, 0, 0, CinnabarIsland_Blocks, 1
- dw Route21_Object ; objects
--- a/data/mapHeaders/Route22.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route22_h::
- db OVERWORLD ; tileset
- db ROUTE_22_HEIGHT, ROUTE_22_WIDTH ; dimensions (y, x)
- dw Route22_Blocks ; blocks
- dw Route22_TextPointers ; texts
- dw Route22_Script ; scripts
- db NORTH | EAST ; connections
- NORTH_MAP_CONNECTION ROUTE_22, ROUTE_23, 0, 0, Route23_Blocks
- EAST_MAP_CONNECTION ROUTE_22, VIRIDIAN_CITY, -3, 1, ViridianCity_Blocks, 1
- dw Route22_Object ; objects
--- a/data/mapHeaders/Route22Gate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route22Gate_h::
- db GATE ; tileset
- db ROUTE_22_GATE_HEIGHT, ROUTE_22_GATE_WIDTH ; dimensions (y, x)
- dw Route22Gate_Blocks ; blocks
- dw Route22Gate_TextPointers ; texts
- dw Route22Gate_Script ; scripts
- db 0 ; connections
- dw Route22Gate_Object ; objects
--- a/data/mapHeaders/Route23.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route23_h::
- db PLATEAU ; tileset
- db ROUTE_23_HEIGHT, ROUTE_23_WIDTH ; dimensions (y, x)
- dw Route23_Blocks ; blocks
- dw Route23_TextPointers ; texts
- dw Route23_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_23, INDIGO_PLATEAU, 0, 0, IndigoPlateau_Blocks
- SOUTH_MAP_CONNECTION ROUTE_23, ROUTE_22, 0, 0, Route22_Blocks, 1
- dw Route23_Object ; objects
--- a/data/mapHeaders/Route24.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route24_h::
- db OVERWORLD ; tileset
- db ROUTE_24_HEIGHT, ROUTE_24_WIDTH ; dimensions (y, x)
- dw Route24_Blocks ; blocks
- dw Route24_TextPointers ; texts
- dw Route24_Script ; scripts
- db SOUTH | EAST ; connections
- SOUTH_MAP_CONNECTION ROUTE_24, CERULEAN_CITY, -3, 2, CeruleanCity_Blocks, 1
- EAST_MAP_CONNECTION ROUTE_24, ROUTE_25, 0, 0, Route25_Blocks
- dw Route24_Object ; objects
--- a/data/mapHeaders/Route25.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-Route25_h::
- db OVERWORLD ; tileset
- db ROUTE_25_HEIGHT, ROUTE_25_WIDTH ; dimensions (y, x)
- dw Route25_Blocks ; blocks
- dw Route25_TextPointers ; texts
- dw Route25_Script ; scripts
- db WEST ; connections
- WEST_MAP_CONNECTION ROUTE_25, ROUTE_24, 0, 0, Route24_Blocks
- dw Route25_Object ; objects
--- a/data/mapHeaders/Route2Gate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route2Gate_h::
- db GATE ; tileset
- db ROUTE_2_GATE_HEIGHT, ROUTE_2_GATE_WIDTH ; dimensions (y, x)
- dw Route2Gate_Blocks ; blocks
- dw Route2Gate_TextPointers ; texts
- dw Route2Gate_Script ; scripts
- db 0 ; connections
- dw Route2Gate_Object ; objects
--- a/data/mapHeaders/Route2TradeHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route2TradeHouse_h::
- db HOUSE ; tileset
- db ROUTE_2_TRADE_HOUSE_HEIGHT, ROUTE_2_TRADE_HOUSE_WIDTH ; dimensions (y, x)
- dw Route2TradeHouse_Blocks ; blocks
- dw Route2TradeHouse_TextPointers ; texts
- dw Route2TradeHouse_Script ; scripts
- db 0 ; connections
- dw Route2TradeHouse_Object ; objects
--- a/data/mapHeaders/Route3.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route3_h::
- db OVERWORLD ; tileset
- db ROUTE_3_HEIGHT, ROUTE_3_WIDTH ; dimensions (y, x)
- dw Route3_Blocks ; blocks
- dw Route3_TextPointers ; texts
- dw Route3_Script ; scripts
- db NORTH | WEST ; connections
- NORTH_MAP_CONNECTION ROUTE_3, ROUTE_4, 25, 0, Route4_Blocks
- WEST_MAP_CONNECTION ROUTE_3, PEWTER_CITY, -3, 1, PewterCity_Blocks
- dw Route3_Object ; objects
--- a/data/mapHeaders/Route4.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route4_h::
- db OVERWORLD ; tileset
- db ROUTE_4_HEIGHT, ROUTE_4_WIDTH ; dimensions (y, x)
- dw Route4_Blocks ; blocks
- dw Route4_TextPointers ; texts
- dw Route4_Script ; scripts
- db SOUTH | EAST ; connections
- SOUTH_MAP_CONNECTION ROUTE_4, ROUTE_3, -3, 22, Route3_Blocks
- EAST_MAP_CONNECTION ROUTE_4, CERULEAN_CITY, -3, 1, CeruleanCity_Blocks, 1
- dw Route4_Object ; objects
--- a/data/mapHeaders/Route5.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route5_h::
- db OVERWORLD ; tileset
- db ROUTE_5_HEIGHT, ROUTE_5_WIDTH ; dimensions (y, x)
- dw Route5_Blocks ; blocks
- dw Route5_TextPointers ; texts
- dw Route5_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_5, CERULEAN_CITY, -3, 2, CeruleanCity_Blocks
- SOUTH_MAP_CONNECTION ROUTE_5, SAFFRON_CITY, -3, 2, SaffronCity_Blocks, 1
- dw Route5_Object ; objects
--- a/data/mapHeaders/Route5Gate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route5Gate_h::
- db GATE ; tileset
- db ROUTE_5_GATE_HEIGHT, ROUTE_5_GATE_WIDTH ; dimensions (y, x)
- dw Route5Gate_Blocks ; blocks
- dw Route5Gate_TextPointers ; texts
- dw Route5Gate_Script ; scripts
- db 0 ; connections
- dw Route5Gate_Object ; objects
--- a/data/mapHeaders/Route6.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route6_h::
- db OVERWORLD ; tileset
- db ROUTE_6_HEIGHT, ROUTE_6_WIDTH ; dimensions (y, x)
- dw Route6_Blocks ; blocks
- dw Route6_TextPointers ; texts
- dw Route6_Script ; scripts
- db NORTH | SOUTH ; connections
- NORTH_MAP_CONNECTION ROUTE_6, SAFFRON_CITY, -3, 2, SaffronCity_Blocks
- SOUTH_MAP_CONNECTION ROUTE_6, VERMILION_CITY, -3, 2, VermilionCity_Blocks, 1
- dw Route6_Object ; objects
--- a/data/mapHeaders/Route6Gate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route6Gate_h::
- db GATE ; tileset
- db ROUTE_6_GATE_HEIGHT, ROUTE_6_GATE_WIDTH ; dimensions (y, x)
- dw Route6Gate_Blocks ; blocks
- dw Route6Gate_TextPointers ; texts
- dw Route6Gate_Script ; scripts
- db 0 ; connections
- dw Route6Gate_Object ; objects
--- a/data/mapHeaders/Route7.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route7_h::
- db OVERWORLD ; tileset
- db ROUTE_7_HEIGHT, ROUTE_7_WIDTH ; dimensions (y, x)
- dw Route7_Blocks ; blocks
- dw Route7_TextPointers ; texts
- dw Route7_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_7, CELADON_CITY, -3, 1, CeladonCity_Blocks
- EAST_MAP_CONNECTION ROUTE_7, SAFFRON_CITY, -3, 1, SaffronCity_Blocks, 1
- dw Route7_Object ; objects
--- a/data/mapHeaders/Route7Gate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route7Gate_h::
- db GATE ; tileset
- db ROUTE_7_GATE_HEIGHT, ROUTE_7_GATE_WIDTH ; dimensions (y, x)
- dw Route7Gate_Blocks ; blocks
- dw Route7Gate_TextPointers ; texts
- dw Route7Gate_Script ; scripts
- db 0 ; connections
- dw Route7Gate_Object ; objects
--- a/data/mapHeaders/Route8.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route8_h::
- db OVERWORLD ; tileset
- db ROUTE_8_HEIGHT, ROUTE_8_WIDTH ; dimensions (y, x)
- dw Route8_Blocks ; blocks
- dw Route8_TextPointers ; texts
- dw Route8_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_8, SAFFRON_CITY, -3, 1, SaffronCity_Blocks
- EAST_MAP_CONNECTION ROUTE_8, LAVENDER_TOWN, 0, 0, LavenderTown_Blocks
- dw Route8_Object ; objects
--- a/data/mapHeaders/Route8Gate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-Route8Gate_h::
- db GATE ; tileset
- db ROUTE_8_GATE_HEIGHT, ROUTE_8_GATE_WIDTH ; dimensions (y, x)
- dw Route8Gate_Blocks ; blocks
- dw Route8Gate_TextPointers ; texts
- dw Route8Gate_Script ; scripts
- db 0 ; connections
- dw Route8Gate_Object ; objects
--- a/data/mapHeaders/Route9.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-Route9_h::
- db OVERWORLD ; tileset
- db ROUTE_9_HEIGHT, ROUTE_9_WIDTH ; dimensions (y, x)
- dw Route9_Blocks ; blocks
- dw Route9_TextPointers ; texts
- dw Route9_Script ; scripts
- db WEST | EAST ; connections
- WEST_MAP_CONNECTION ROUTE_9, CERULEAN_CITY, -3, 1, CeruleanCity_Blocks
- EAST_MAP_CONNECTION ROUTE_9, ROUTE_10, 0, 0, Route10_Blocks, 1
- dw Route9_Object ; objects
--- a/data/mapHeaders/SSAnne1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnne1F_h::
- db SHIP ; tileset
- db SS_ANNE_1F_HEIGHT, SS_ANNE_1F_WIDTH ; dimensions (y, x)
- dw SSAnne1F_Blocks ; blocks
- dw SSAnne1F_TextPointers ; texts
- dw SSAnne1F_Script ; scripts
- db 0 ; connections
- dw SSAnne1F_Object ; objects
--- a/data/mapHeaders/SSAnne1FRooms.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnne1FRooms_h::
- db SHIP ; tileset
- db SS_ANNE_1F_ROOMS_HEIGHT, SS_ANNE_1F_ROOMS_WIDTH ; dimensions (y, x)
- dw SSAnne1FRooms_Blocks ; blocks
- dw SSAnne1FRooms_TextPointers ; texts
- dw SSAnne1FRooms_Script ; scripts
- db 0 ; connections
- dw SSAnne1FRooms_Object ; objects
--- a/data/mapHeaders/SSAnne2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnne2F_h::
- db SHIP ; tileset
- db SS_ANNE_2F_HEIGHT, SS_ANNE_2F_WIDTH ; dimensions (y, x)
- dw SSAnne2F_Blocks ; blocks
- dw SSAnne2F_TextPointers ; texts
- dw SSAnne2F_Script ; scripts
- db 0 ; connections
- dw SSAnne2F_Object ; objects
--- a/data/mapHeaders/SSAnne2FRooms.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnne2FRooms_h::
- db SHIP ; tileset
- db SS_ANNE_2F_ROOMS_HEIGHT, SS_ANNE_2F_ROOMS_WIDTH ; dimensions (y, x)
- dw SSAnne2FRooms_Blocks ; blocks
- dw SSAnne2FRooms_TextPointers ; texts
- dw SSAnne2FRooms_Script ; scripts
- db 0 ; connections
- dw SSAnne2FRooms_Object ; objects
--- a/data/mapHeaders/SSAnne3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnne3F_h::
- db SHIP ; tileset
- db SS_ANNE_3F_HEIGHT, SS_ANNE_3F_WIDTH ; dimensions (y, x)
- dw SSAnne3F_Blocks ; blocks
- dw SSAnne3F_TextPointers ; texts
- dw SSAnne3F_Script ; scripts
- db 0 ; connections
- dw SSAnne3F_Object ; objects
--- a/data/mapHeaders/SSAnneB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnneB1F_h::
- db SHIP ; tileset
- db SS_ANNE_B1F_HEIGHT, SS_ANNE_B1F_WIDTH ; dimensions (y, x)
- dw SSAnneB1F_Blocks ; blocks
- dw SSAnneB1F_TextPointers ; texts
- dw SSAnneB1F_Script ; scripts
- db 0 ; connections
- dw SSAnneB1F_Object ; objects
--- a/data/mapHeaders/SSAnneB1FRooms.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnneB1FRooms_h::
- db SHIP ; tileset
- db SS_ANNE_B1F_ROOMS_HEIGHT, SS_ANNE_B1F_ROOMS_WIDTH ; dimensions (y, x)
- dw SSAnneB1FRooms_Blocks ; blocks
- dw SSAnneB1FRooms_TextPointers ; texts
- dw SSAnneB1FRooms_Script ; scripts
- db 0 ; connections
- dw SSAnneB1FRooms_Object ; objects
--- a/data/mapHeaders/SSAnneBow.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnneBow_h::
- db SHIP ; tileset
- db SS_ANNE_BOW_HEIGHT, SS_ANNE_BOW_WIDTH ; dimensions (y, x)
- dw SSAnneBow_Blocks ; blocks
- dw SSAnneBow_TextPointers ; texts
- dw SSAnneBow_Script ; scripts
- db 0 ; connections
- dw SSAnneBow_Object ; objects
--- a/data/mapHeaders/SSAnneCaptainsRoom.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnneCaptainsRoom_h::
- db SHIP ; tileset
- db SS_ANNE_CAPTAINS_ROOM_HEIGHT, SS_ANNE_CAPTAINS_ROOM_WIDTH ; dimensions (y, x)
- dw SSAnneCaptainsRoom_Blocks ; blocks
- dw SSAnneCaptainsRoom_TextPointers ; texts
- dw SSAnneCaptainsRoom_Script ; scripts
- db 0 ; connections
- dw SSAnneCaptainsRoom_Object ; objects
--- a/data/mapHeaders/SSAnneKitchen.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SSAnneKitchen_h::
- db SHIP ; tileset
- db SS_ANNE_KITCHEN_HEIGHT, SS_ANNE_KITCHEN_WIDTH ; dimensions (y, x)
- dw SSAnneKitchen_Blocks ; blocks
- dw SSAnneKitchen_TextPointers ; texts
- dw SSAnneKitchen_Script ; scripts
- db 0 ; connections
- dw SSAnneKitchen_Object ; objects
--- a/data/mapHeaders/SafariZoneCenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneCenter_h::
- db FOREST ; tileset
- db SAFARI_ZONE_CENTER_HEIGHT, SAFARI_ZONE_CENTER_WIDTH ; dimensions (y, x)
- dw SafariZoneCenter_Blocks ; blocks
- dw SafariZoneCenter_TextPointers ; texts
- dw SafariZoneCenter_Script ; scripts
- db 0 ; connections
- dw SafariZoneCenter_Object ; objects
--- a/data/mapHeaders/SafariZoneCenterRestHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneCenterRestHouse_h::
- db GATE ; tileset
- db SAFARI_ZONE_CENTER_REST_HOUSE_HEIGHT, SAFARI_ZONE_CENTER_REST_HOUSE_WIDTH ; dimensions (y, x)
- dw SafariZoneCenterRestHouse_Blocks ; blocks
- dw SafariZoneCenterRestHouse_TextPointers ; texts
- dw SafariZoneCenterRestHouse_Script ; scripts
- db 0 ; connections
- dw SafariZoneCenterRestHouse_Object ; objects
--- a/data/mapHeaders/SafariZoneEast.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneEast_h::
- db FOREST ; tileset
- db SAFARI_ZONE_EAST_HEIGHT, SAFARI_ZONE_EAST_WIDTH ; dimensions (y, x)
- dw SafariZoneEast_Blocks ; blocks
- dw SafariZoneEast_TextPointers ; texts
- dw SafariZoneEast_Script ; scripts
- db 0 ; connections
- dw SafariZoneEast_Object ; objects
--- a/data/mapHeaders/SafariZoneEastRestHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneEastRestHouse_h::
- db GATE ; tileset
- db SAFARI_ZONE_EAST_REST_HOUSE_HEIGHT, SAFARI_ZONE_EAST_REST_HOUSE_WIDTH ; dimensions (y, x)
- dw SafariZoneEastRestHouse_Blocks ; blocks
- dw SafariZoneEastRestHouse_TextPointers ; texts
- dw SafariZoneEastRestHouse_Script ; scripts
- db 0 ; connections
- dw SafariZoneEastRestHouse_Object ; objects
--- a/data/mapHeaders/SafariZoneGate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneGate_h::
- db GATE ; tileset
- db SAFARI_ZONE_GATE_HEIGHT, SAFARI_ZONE_GATE_WIDTH ; dimensions (y, x)
- dw SafariZoneGate_Blocks ; blocks
- dw SafariZoneGate_TextPointers ; texts
- dw SafariZoneGate_Script ; scripts
- db 0 ; connections
- dw SafariZoneGate_Object ; objects
--- a/data/mapHeaders/SafariZoneNorth.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneNorth_h::
- db FOREST ; tileset
- db SAFARI_ZONE_NORTH_HEIGHT, SAFARI_ZONE_NORTH_WIDTH ; dimensions (y, x)
- dw SafariZoneNorth_Blocks ; blocks
- dw SafariZoneNorth_TextPointers ; texts
- dw SafariZoneNorth_Script ; scripts
- db 0 ; connections
- dw SafariZoneNorth_Object ; objects
--- a/data/mapHeaders/SafariZoneNorthRestHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneNorthRestHouse_h::
- db GATE ; tileset
- db SAFARI_ZONE_NORTH_REST_HOUSE_HEIGHT, SAFARI_ZONE_NORTH_REST_HOUSE_WIDTH ; dimensions (y, x)
- dw SafariZoneNorthRestHouse_Blocks ; blocks
- dw SafariZoneNorthRestHouse_TextPointers ; texts
- dw SafariZoneNorthRestHouse_Script ; scripts
- db 0 ; connections
- dw SafariZoneNorthRestHouse_Object ; objects
--- a/data/mapHeaders/SafariZoneSecretHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneSecretHouse_h::
- db LAB ; tileset
- db SAFARI_ZONE_SECRET_HOUSE_HEIGHT, SAFARI_ZONE_SECRET_HOUSE_WIDTH ; dimensions (y, x)
- dw SafariZoneSecretHouse_Blocks ; blocks
- dw SafariZoneSecretHouse_TextPointers ; texts
- dw SafariZoneSecretHouse_Script ; scripts
- db 0 ; connections
- dw SafariZoneSecretHouse_Object ; objects
--- a/data/mapHeaders/SafariZoneWest.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneWest_h::
- db FOREST ; tileset
- db SAFARI_ZONE_WEST_HEIGHT, SAFARI_ZONE_WEST_WIDTH ; dimensions (y, x)
- dw SafariZoneWest_Blocks ; blocks
- dw SafariZoneWest_TextPointers ; texts
- dw SafariZoneWest_Script ; scripts
- db 0 ; connections
- dw SafariZoneWest_Object ; objects
--- a/data/mapHeaders/SafariZoneWestRestHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SafariZoneWestRestHouse_h::
- db GATE ; tileset
- db SAFARI_ZONE_WEST_REST_HOUSE_HEIGHT, SAFARI_ZONE_WEST_REST_HOUSE_WIDTH ; dimensions (y, x)
- dw SafariZoneWestRestHouse_Blocks ; blocks
- dw SafariZoneWestRestHouse_TextPointers ; texts
- dw SafariZoneWestRestHouse_Script ; scripts
- db 0 ; connections
- dw SafariZoneWestRestHouse_Object ; objects
--- a/data/mapHeaders/SaffronCity.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-SaffronCity_h::
- db OVERWORLD ; tileset
- db SAFFRON_CITY_HEIGHT, SAFFRON_CITY_WIDTH ; dimensions (y, x)
- dw SaffronCity_Blocks ; blocks
- dw SaffronCity_TextPointers ; texts
- dw SaffronCity_Script ; scripts
- db NORTH | SOUTH | WEST | EAST ; connections
- NORTH_MAP_CONNECTION SAFFRON_CITY, ROUTE_5, 5, 0, Route5_Blocks
- SOUTH_MAP_CONNECTION SAFFRON_CITY, ROUTE_6, 5, 0, Route6_Blocks, 1
- WEST_MAP_CONNECTION SAFFRON_CITY, ROUTE_7, 4, 0, Route7_Blocks
- EAST_MAP_CONNECTION SAFFRON_CITY, ROUTE_8, 4, 0, Route8_Blocks
- dw SaffronCity_Object ; objects
--- a/data/mapHeaders/SaffronGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SaffronGym_h::
- db FACILITY ; tileset
- db SAFFRON_GYM_HEIGHT, SAFFRON_GYM_WIDTH ; dimensions (y, x)
- dw SaffronGym_Blocks ; blocks
- dw SaffronGym_TextPointers ; texts
- dw SaffronGym_Script ; scripts
- db 0 ; connections
- dw SaffronGym_Object ; objects
--- a/data/mapHeaders/SaffronMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SaffronMart_h::
- db MART ; tileset
- db SAFFRON_MART_HEIGHT, SAFFRON_MART_WIDTH ; dimensions (y, x)
- dw SaffronMart_Blocks ; blocks
- dw SaffronMart_TextPointers ; texts
- dw SaffronMart_Script ; scripts
- db 0 ; connections
- dw SaffronMart_Object ; objects
--- a/data/mapHeaders/SaffronPidgeyHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SaffronPidgeyHouse_h::
- db HOUSE ; tileset
- db SAFFRON_PIDGEY_HOUSE_HEIGHT, SAFFRON_PIDGEY_HOUSE_WIDTH ; dimensions (y, x)
- dw SaffronPidgeyHouse_Blocks ; blocks
- dw SaffronPidgeyHouse_TextPointers ; texts
- dw SaffronPidgeyHouse_Script ; scripts
- db 0 ; connections
- dw SaffronPidgeyHouse_Object ; objects
--- a/data/mapHeaders/SaffronPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SaffronPokecenter_h::
- db POKECENTER ; tileset
- db SAFFRON_POKECENTER_HEIGHT, SAFFRON_POKECENTER_WIDTH ; dimensions (y, x)
- dw SaffronPokecenter_Blocks ; blocks
- dw SaffronPokecenter_TextPointers ; texts
- dw SaffronPokecenter_Script ; scripts
- db 0 ; connections
- dw SaffronPokecenter_Object ; objects
--- a/data/mapHeaders/SeafoamIslands1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SeafoamIslands1F_h::
- db CAVERN ; tileset
- db SEAFOAM_ISLANDS_1F_HEIGHT, SEAFOAM_ISLANDS_1F_WIDTH ; dimensions (y, x)
- dw SeafoamIslands1F_Blocks ; blocks
- dw SeafoamIslands1F_TextPointers ; texts
- dw SeafoamIslands1F_Script ; scripts
- db 0 ; connections
- dw SeafoamIslands1F_Object ; objects
--- a/data/mapHeaders/SeafoamIslandsB1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SeafoamIslandsB1F_h::
- db CAVERN ; tileset
- db SEAFOAM_ISLANDS_B1F_HEIGHT, SEAFOAM_ISLANDS_B1F_WIDTH ; dimensions (y, x)
- dw SeafoamIslandsB1F_Blocks ; blocks
- dw SeafoamIslandsB1F_TextPointers ; texts
- dw SeafoamIslandsB1F_Script ; scripts
- db 0 ; connections
- dw SeafoamIslandsB1F_Object ; objects
--- a/data/mapHeaders/SeafoamIslandsB2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SeafoamIslandsB2F_h::
- db CAVERN ; tileset
- db SEAFOAM_ISLANDS_B2F_HEIGHT, SEAFOAM_ISLANDS_B2F_WIDTH ; dimensions (y, x)
- dw SeafoamIslandsB2F_Blocks ; blocks
- dw SeafoamIslandsB2F_TextPointers ; texts
- dw SeafoamIslandsB2F_Script ; scripts
- db 0 ; connections
- dw SeafoamIslandsB2F_Object ; objects
--- a/data/mapHeaders/SeafoamIslandsB3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SeafoamIslandsB3F_h::
- db CAVERN ; tileset
- db SEAFOAM_ISLANDS_B3F_HEIGHT, SEAFOAM_ISLANDS_B3F_WIDTH ; dimensions (y, x)
- dw SeafoamIslandsB3F_Blocks ; blocks
- dw SeafoamIslandsB3F_TextPointers ; texts
- dw SeafoamIslandsB3F_Script ; scripts
- db 0 ; connections
- dw SeafoamIslandsB3F_Object ; objects
--- a/data/mapHeaders/SeafoamIslandsB4F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SeafoamIslandsB4F_h::
- db CAVERN ; tileset
- db SEAFOAM_ISLANDS_B4F_HEIGHT, SEAFOAM_ISLANDS_B4F_WIDTH ; dimensions (y, x)
- dw SeafoamIslandsB4F_Blocks ; blocks
- dw SeafoamIslandsB4F_TextPointers ; texts
- dw SeafoamIslandsB4F_Script ; scripts
- db 0 ; connections
- dw SeafoamIslandsB4F_Object ; objects
--- a/data/mapHeaders/SilphCo10F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo10F_h::
- db FACILITY ; tileset
- db SILPH_CO_10F_HEIGHT, SILPH_CO_10F_WIDTH ; dimensions (y, x)
- dw SilphCo10F_Blocks ; blocks
- dw SilphCo10F_TextPointers ; texts
- dw SilphCo10F_Script ; scripts
- db 0 ; connections
- dw SilphCo10F_Object ; objects
--- a/data/mapHeaders/SilphCo11F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo11F_h::
- db INTERIOR ; tileset
- db SILPH_CO_11F_HEIGHT, SILPH_CO_11F_WIDTH ; dimensions (y, x)
- dw SilphCo11F_Blocks ; blocks
- dw SilphCo11F_TextPointers ; texts
- dw SilphCo11F_Script ; scripts
- db 0 ; connections
- dw SilphCo11F_Object ; objects
--- a/data/mapHeaders/SilphCo1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo1F_h::
- db FACILITY ; tileset
- db SILPH_CO_1F_HEIGHT, SILPH_CO_1F_WIDTH ; dimensions (y, x)
- dw SilphCo1F_Blocks ; blocks
- dw SilphCo1F_TextPointers ; texts
- dw SilphCo1F_Script ; scripts
- db 0 ; connections
- dw SilphCo1F_Object ; objects
--- a/data/mapHeaders/SilphCo2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo2F_h::
- db FACILITY ; tileset
- db SILPH_CO_2F_HEIGHT, SILPH_CO_2F_WIDTH ; dimensions (y, x)
- dw SilphCo2F_Blocks ; blocks
- dw SilphCo2F_TextPointers ; texts
- dw SilphCo2F_Script ; scripts
- db 0 ; connections
- dw SilphCo2F_Object ; objects
--- a/data/mapHeaders/SilphCo3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo3F_h::
- db FACILITY ; tileset
- db SILPH_CO_3F_HEIGHT, SILPH_CO_3F_WIDTH ; dimensions (y, x)
- dw SilphCo3F_Blocks ; blocks
- dw SilphCo3F_TextPointers ; texts
- dw SilphCo3F_Script ; scripts
- db 0 ; connections
- dw SilphCo3F_Object ; objects
--- a/data/mapHeaders/SilphCo4F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo4F_h::
- db FACILITY ; tileset
- db SILPH_CO_4F_HEIGHT, SILPH_CO_4F_WIDTH ; dimensions (y, x)
- dw SilphCo4F_Blocks ; blocks
- dw SilphCo4F_TextPointers ; texts
- dw SilphCo4F_Script ; scripts
- db 0 ; connections
- dw SilphCo4F_Object ; objects
--- a/data/mapHeaders/SilphCo5F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo5F_h::
- db FACILITY ; tileset
- db SILPH_CO_5F_HEIGHT, SILPH_CO_5F_WIDTH ; dimensions (y, x)
- dw SilphCo5F_Blocks ; blocks
- dw SilphCo5F_TextPointers ; texts
- dw SilphCo5F_Script ; scripts
- db 0 ; connections
- dw SilphCo5F_Object ; objects
--- a/data/mapHeaders/SilphCo6F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo6F_h::
- db FACILITY ; tileset
- db SILPH_CO_6F_HEIGHT, SILPH_CO_6F_WIDTH ; dimensions (y, x)
- dw SilphCo6F_Blocks ; blocks
- dw SilphCo6F_TextPointers ; texts
- dw SilphCo6F_Script ; scripts
- db 0 ; connections
- dw SilphCo6F_Object ; objects
--- a/data/mapHeaders/SilphCo7F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo7F_h::
- db FACILITY ; tileset
- db SILPH_CO_7F_HEIGHT, SILPH_CO_7F_WIDTH ; dimensions (y, x)
- dw SilphCo7F_Blocks ; blocks
- dw SilphCo7F_TextPointers ; texts
- dw SilphCo7F_Script ; scripts
- db 0 ; connections
- dw SilphCo7F_Object ; objects
--- a/data/mapHeaders/SilphCo8F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo8F_h::
- db FACILITY ; tileset
- db SILPH_CO_8F_HEIGHT, SILPH_CO_8F_WIDTH ; dimensions (y, x)
- dw SilphCo8F_Blocks ; blocks
- dw SilphCo8F_TextPointers ; texts
- dw SilphCo8F_Script ; scripts
- db 0 ; connections
- dw SilphCo8F_Object ; objects
--- a/data/mapHeaders/SilphCo9F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCo9F_h::
- db FACILITY ; tileset
- db SILPH_CO_9F_HEIGHT, SILPH_CO_9F_WIDTH ; dimensions (y, x)
- dw SilphCo9F_Blocks ; blocks
- dw SilphCo9F_TextPointers ; texts
- dw SilphCo9F_Script ; scripts
- db 0 ; connections
- dw SilphCo9F_Object ; objects
--- a/data/mapHeaders/SilphCoElevator.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-SilphCoElevator_h::
- db LOBBY ; tileset
- db SILPH_CO_ELEVATOR_HEIGHT, SILPH_CO_ELEVATOR_WIDTH ; dimensions (y, x)
- dw SilphCoElevator_Blocks ; blocks
- dw SilphCoElevator_TextPointers ; texts
- dw SilphCoElevator_Script ; scripts
- db 0 ; connections
- dw SilphCoElevator_Object ; objects
--- a/data/mapHeaders/TradeCenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-TradeCenter_h::
- db CLUB ; tileset
- db TRADE_CENTER_HEIGHT, TRADE_CENTER_WIDTH ; dimensions (y, x)
- dw TradeCenter_Blocks ; blocks
- dw TradeCenter_TextPointers ; texts
- dw TradeCenter_Script ; scripts
- db 0 ; connections
- dw TradeCenter_Object ; objects
--- a/data/mapHeaders/UndergroundPathNorthSouth.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathNorthSouth_h::
- db UNDERGROUND ; tileset
- db UNDERGROUND_PATH_NORTH_SOUTH_HEIGHT, UNDERGROUND_PATH_NORTH_SOUTH_WIDTH ; dimensions (y, x)
- dw UndergroundPathNorthSouth_Blocks ; blocks
- dw UndergroundPathNorthSouth_TextPointers ; texts
- dw UndergroundPathNorthSouth_Script ; scripts
- db 0 ; connections
- dw UndergroundPathNorthSouth_Object ; objects
--- a/data/mapHeaders/UndergroundPathRoute5.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathRoute5_h::
- db GATE ; tileset
- db UNDERGROUND_PATH_ROUTE_5_HEIGHT, UNDERGROUND_PATH_ROUTE_5_WIDTH ; dimensions (y, x)
- dw UndergroundPathRoute5_Blocks ; blocks
- dw UndergroundPathRoute5_TextPointers ; texts
- dw UndergroundPathRoute5_Script ; scripts
- db 0 ; connections
- dw UndergroundPathRoute5_Object ; objects
--- a/data/mapHeaders/UndergroundPathRoute6.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathRoute6_h::
- db GATE ; tileset
- db UNDERGROUND_PATH_ROUTE_6_HEIGHT, UNDERGROUND_PATH_ROUTE_6_WIDTH ; dimensions (y, x)
- dw UndergroundPathRoute6_Blocks ; blocks
- dw UndergroundPathRoute6_TextPointers ; texts
- dw UndergroundPathRoute6_Script ; scripts
- db 0 ; connections
- dw UndergroundPathRoute6_Object ; objects
--- a/data/mapHeaders/UndergroundPathRoute7.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathRoute7_h::
- db GATE ; tileset
- db UNDERGROUND_PATH_ROUTE_7_HEIGHT, UNDERGROUND_PATH_ROUTE_7_WIDTH ; dimensions (y, x)
- dw UndergroundPathRoute7_Blocks ; blocks
- dw UndergroundPathRoute7_TextPointers ; texts
- dw UndergroundPathRoute7_Script ; scripts
- db 0 ; connections
- dw UndergroundPathRoute7_Object ; objects
--- a/data/mapHeaders/UndergroundPathRoute7Copy.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathRoute7Copy_h::
- db GATE ; tileset
- db UNDERGROUND_PATH_ROUTE_7_HEIGHT, UNDERGROUND_PATH_ROUTE_7_WIDTH ; dimensions (y, x)
- dw UndergroundPathRoute7Copy_Blocks ; blocks
- dw UndergroundPathRoute7Copy_TextPointers ; texts
- dw UndergroundPathRoute7Copy_Script ; scripts
- db 0 ; connections
- dw UndergroundPathRoute7Copy_Object ; objects
--- a/data/mapHeaders/UndergroundPathRoute8.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathRoute8_h::
- db GATE ; tileset
- db UNDERGROUND_PATH_ROUTE_8_HEIGHT, UNDERGROUND_PATH_ROUTE_8_WIDTH ; dimensions (y, x)
- dw UndergroundPathRoute8_Blocks ; blocks
- dw UndergroundPathRoute8_TextPointers ; texts
- dw UndergroundPathRoute8_Script ; scripts
- db 0 ; connections
- dw UndergroundPathRoute8_Object ; objects
--- a/data/mapHeaders/UndergroundPathWestEast.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-UndergroundPathWestEast_h::
- db UNDERGROUND ; tileset
- db UNDERGROUND_PATH_WEST_EAST_HEIGHT, UNDERGROUND_PATH_WEST_EAST_WIDTH ; dimensions (y, x)
- dw UndergroundPathWestEast_Blocks ; blocks
- dw UndergroundPathWestEast_TextPointers ; texts
- dw UndergroundPathWestEast_Script ; scripts
- db 0 ; connections
- dw UndergroundPathWestEast_Object ; objects
--- a/data/mapHeaders/VermilionCity.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-VermilionCity_h::
- db OVERWORLD ; tileset
- db VERMILION_CITY_HEIGHT, VERMILION_CITY_WIDTH ; dimensions (y, x)
- dw VermilionCity_Blocks ; blocks
- dw VermilionCity_TextPointers ; texts
- dw VermilionCity_Script ; scripts
- db NORTH | EAST ; connections
- NORTH_MAP_CONNECTION VERMILION_CITY, ROUTE_6, 5, 0, Route6_Blocks
- EAST_MAP_CONNECTION VERMILION_CITY, ROUTE_11, 4, 0, Route11_Blocks
- dw VermilionCity_Object ; objects
--- a/data/mapHeaders/VermilionDock.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionDock_h::
- db SHIP_PORT ; tileset
- db VERMILION_DOCK_HEIGHT, VERMILION_DOCK_WIDTH ; dimensions (y, x)
- dw VermilionDock_Blocks ; blocks
- dw VermilionDock_TextPointers ; texts
- dw VermilionDock_Script ; scripts
- db 0 ; connections
- dw VermilionDock_Object ; objects
--- a/data/mapHeaders/VermilionGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionGym_h::
- db GYM ; tileset
- db VERMILION_GYM_HEIGHT, VERMILION_GYM_WIDTH ; dimensions (y, x)
- dw VermilionGym_Blocks ; blocks
- dw VermilionGym_TextPointers ; texts
- dw VermilionGym_Script ; scripts
- db 0 ; connections
- dw VermilionGym_Object ; objects
--- a/data/mapHeaders/VermilionMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionMart_h::
- db MART ; tileset
- db VERMILION_MART_HEIGHT, VERMILION_MART_WIDTH ; dimensions (y, x)
- dw VermilionMart_Blocks ; blocks
- dw VermilionMart_TextPointers ; texts
- dw VermilionMart_Script ; scripts
- db 0 ; connections
- dw VermilionMart_Object ; objects
--- a/data/mapHeaders/VermilionOldRodHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionOldRodHouse_h::
- db HOUSE ; tileset
- db VERMILION_OLD_ROD_HOUSE_HEIGHT, VERMILION_OLD_ROD_HOUSE_WIDTH ; dimensions (y, x)
- dw VermilionOldRodHouse_Blocks ; blocks
- dw VermilionOldRodHouse_TextPointers ; texts
- dw VermilionOldRodHouse_Script ; scripts
- db 0 ; connections
- dw VermilionOldRodHouse_Object ; objects
--- a/data/mapHeaders/VermilionPidgeyHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionPidgeyHouse_h::
- db HOUSE ; tileset
- db VERMILION_PIDGEY_HOUSE_HEIGHT, VERMILION_PIDGEY_HOUSE_WIDTH ; dimensions (y, x)
- dw VermilionPidgeyHouse_Blocks ; blocks
- dw VermilionPidgeyHouse_TextPointers ; texts
- dw VermilionPidgeyHouse_Script ; scripts
- db 0 ; connections
- dw VermilionPidgeyHouse_Object ; objects
--- a/data/mapHeaders/VermilionPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionPokecenter_h::
- db POKECENTER ; tileset
- db VERMILION_POKECENTER_HEIGHT, VERMILION_POKECENTER_WIDTH ; dimensions (y, x)
- dw VermilionPokecenter_Blocks ; blocks
- dw VermilionPokecenter_TextPointers ; texts
- dw VermilionPokecenter_Script ; scripts
- db 0 ; connections
- dw VermilionPokecenter_Object ; objects
--- a/data/mapHeaders/VermilionTradeHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VermilionTradeHouse_h::
- db HOUSE ; tileset
- db VERMILION_TRADE_HOUSE_HEIGHT, VERMILION_TRADE_HOUSE_WIDTH ; dimensions (y, x)
- dw VermilionTradeHouse_Blocks ; blocks
- dw VermilionTradeHouse_TextPointers ; texts
- dw VermilionTradeHouse_Script ; scripts
- db 0 ; connections
- dw VermilionTradeHouse_Object ; objects
--- a/data/mapHeaders/VictoryRoad1F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VictoryRoad1F_h::
- db CAVERN ; tileset
- db VICTORY_ROAD_1F_HEIGHT, VICTORY_ROAD_1F_WIDTH ; dimensions (y, x)
- dw VictoryRoad1F_Blocks ; blocks
- dw VictoryRoad1F_TextPointers ; texts
- dw VictoryRoad1F_Script ; scripts
- db 0 ; connections
- dw VictoryRoad1F_Object ; objects
--- a/data/mapHeaders/VictoryRoad2F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VictoryRoad2F_h::
- db CAVERN ; tileset
- db VICTORY_ROAD_2F_HEIGHT, VICTORY_ROAD_2F_WIDTH ; dimensions (y, x)
- dw VictoryRoad2F_Blocks ; blocks
- dw VictoryRoad2F_TextPointers ; texts
- dw VictoryRoad2F_Script ; scripts
- db 0 ; connections
- dw VictoryRoad2F_Object ; objects
--- a/data/mapHeaders/VictoryRoad3F.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-VictoryRoad3F_h::
- db CAVERN ; tileset
- db VICTORY_ROAD_3F_HEIGHT, VICTORY_ROAD_3F_WIDTH ; dimensions (y, x)
- dw VictoryRoad3F_Blocks ; blocks
- dw VictoryRoad3F_TextPointers ; texts
- dw VictoryRoad3F_Script ; scripts
- db 0 ; connections
- dw VictoryRoad3F_Object ; objects
--- a/data/mapHeaders/ViridianCity.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-ViridianCity_h::
- db OVERWORLD ; tileset
- db VIRIDIAN_CITY_HEIGHT, VIRIDIAN_CITY_WIDTH ; dimensions (y, x)
- dw ViridianCity_Blocks ; blocks
- dw ViridianCity_TextPointers ; texts
- dw ViridianCity_Script ; scripts
- db NORTH | SOUTH | WEST ; connections
- NORTH_MAP_CONNECTION VIRIDIAN_CITY, ROUTE_2, 5, 0, Route2_Blocks
- SOUTH_MAP_CONNECTION VIRIDIAN_CITY, ROUTE_1, 5, 0, Route1_Blocks, 1
- WEST_MAP_CONNECTION VIRIDIAN_CITY, ROUTE_22, 4, 0, Route22_Blocks
- dw ViridianCity_Object ; objects
--- a/data/mapHeaders/ViridianForest.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianForest_h::
- db FOREST ; tileset
- db VIRIDIAN_FOREST_HEIGHT, VIRIDIAN_FOREST_WIDTH ; dimensions (y, x)
- dw ViridianForest_Blocks ; blocks
- dw ViridianForest_TextPointers ; texts
- dw ViridianForest_Script ; scripts
- db 0 ; connections
- dw ViridianForest_Object ; objects
--- a/data/mapHeaders/ViridianForestNorthGate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianForestNorthGate_h::
- db FOREST_GATE ; tileset
- db VIRIDIAN_FOREST_NORTH_GATE_HEIGHT, VIRIDIAN_FOREST_NORTH_GATE_WIDTH ; dimensions (y, x)
- dw ViridianForestNorthGate_Blocks ; blocks
- dw ViridianForestNorthGate_TextPointers ; texts
- dw ViridianForestNorthGate_Script ; scripts
- db 0 ; connections
- dw ViridianForestNorthGate_Object ; objects
--- a/data/mapHeaders/ViridianForestSouthGate.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianForestSouthGate_h::
- db FOREST_GATE ; tileset
- db VIRIDIAN_FOREST_SOUTH_GATE_HEIGHT, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH ; dimensions (y, x)
- dw ViridianForestSouthGate_Blocks ; blocks
- dw ViridianForestSouthGate_TextPointers ; texts
- dw ViridianForestSouthGate_Script ; scripts
- db 0 ; connections
- dw ViridianForestSouthGate_Object ; objects
--- a/data/mapHeaders/ViridianGym.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianGym_h::
- db GYM ; tileset
- db VIRIDIAN_GYM_HEIGHT, VIRIDIAN_GYM_WIDTH ; dimensions (y, x)
- dw ViridianGym_Blocks ; blocks
- dw ViridianGym_TextPointers ; texts
- dw ViridianGym_Script ; scripts
- db 0 ; connections
- dw ViridianGym_Object ; objects
--- a/data/mapHeaders/ViridianMart.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianMart_h::
- db MART ; tileset
- db VIRIDIAN_MART_HEIGHT, VIRIDIAN_MART_WIDTH ; dimensions (y, x)
- dw ViridianMart_Blocks ; blocks
- dw ViridianMart_TextPointers ; texts
- dw ViridianMart_Script ; scripts
- db 0 ; connections
- dw ViridianMart_Object ; objects
--- a/data/mapHeaders/ViridianNicknameHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianNicknameHouse_h::
- db HOUSE ; tileset
- db VIRIDIAN_NICKNAME_HOUSE_HEIGHT, VIRIDIAN_NICKNAME_HOUSE_WIDTH ; dimensions (y, x)
- dw ViridianNicknameHouse_Blocks ; blocks
- dw ViridianNicknameHouse_TextPointers ; texts
- dw ViridianNicknameHouse_Script ; scripts
- db 0 ; connections
- dw ViridianNicknameHouse_Object ; objects
--- a/data/mapHeaders/ViridianPokecenter.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianPokecenter_h::
- db POKECENTER ; tileset
- db VIRIDIAN_POKECENTER_HEIGHT, VIRIDIAN_POKECENTER_WIDTH ; dimensions (y, x)
- dw ViridianPokecenter_Blocks ; blocks
- dw ViridianPokecenter_TextPointers ; texts
- dw ViridianPokecenter_Script ; scripts
- db 0 ; connections
- dw ViridianPokecenter_Object ; objects
--- a/data/mapHeaders/ViridianSchoolHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-ViridianSchoolHouse_h::
- db HOUSE ; tileset
- db VIRIDIAN_SCHOOL_HOUSE_HEIGHT, VIRIDIAN_SCHOOL_HOUSE_WIDTH ; dimensions (y, x)
- dw ViridianSchoolHouse_Blocks ; blocks
- dw ViridianSchoolHouse_TextPointers ; texts
- dw ViridianSchoolHouse_Script ; scripts
- db 0 ; connections
- dw ViridianSchoolHouse_Object ; objects
--- a/data/mapHeaders/WardensHouse.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-WardensHouse_h::
- db LAB ; tileset
- db WARDENS_HOUSE_HEIGHT, WARDENS_HOUSE_WIDTH ; dimensions (y, x)
- dw WardensHouse_Blocks ; blocks
- dw WardensHouse_TextPointers ; texts
- dw WardensHouse_Script ; scripts
- db 0 ; connections
- dw WardensHouse_Object ; objects
--- a/data/mapObjects/AgathasRoom.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-AgathasRoom_Object:
- db $0 ; border block
-
- db 4 ; warps
- warp 4, 11, 2, BRUNOS_ROOM
- warp 5, 11, 3, BRUNOS_ROOM
- warp 4, 0, 0, LANCES_ROOM
- warp 5, 0, 0, LANCES_ROOM
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_AGATHA, 5, 2, STAY, DOWN, 1, OPP_AGATHA, 1
-
- ; warp-to
- warp_to 4, 11, AGATHAS_ROOM_WIDTH ; BRUNOS_ROOM
- warp_to 5, 11, AGATHAS_ROOM_WIDTH ; BRUNOS_ROOM
- warp_to 4, 0, AGATHAS_ROOM_WIDTH ; LANCES_ROOM
- warp_to 5, 0, AGATHAS_ROOM_WIDTH ; LANCES_ROOM
--- a/data/mapObjects/BikeShop.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-BikeShop_Object:
- db $e ; border block
-
- db 2 ; warps
- warp 2, 7, 4, -1
- warp 3, 7, 4, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_BIKE_SHOP_GUY, 6, 2, STAY, NONE, 1 ; person
- object SPRITE_MOM_GEISHA, 5, 6, WALK, 1, 2 ; person
- object SPRITE_BUG_CATCHER, 1, 3, STAY, UP, 3 ; person
-
- ; warp-to
- warp_to 2, 7, BIKE_SHOP_WIDTH
- warp_to 3, 7, BIKE_SHOP_WIDTH
--- a/data/mapObjects/BillsHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-BillsHouse_Object:
- db $d ; border block
-
- db 2 ; warps
- warp 2, 7, 0, -1
- warp 3, 7, 0, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_SLOWBRO, 6, 5, STAY, NONE, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 4, 4, STAY, NONE, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 6, 5, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 2, 7, BILLS_HOUSE_WIDTH
- warp_to 3, 7, BILLS_HOUSE_WIDTH
--- a/data/mapObjects/BluesHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-BluesHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 1, -1
- warp 3, 7, 1, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_DAISY, 2, 3, STAY, RIGHT, 1 ; Daisy, sitting by map
- object SPRITE_DAISY, 6, 4, WALK, 1, 2, 0 ; Daisy, walking around
- object SPRITE_BOOK_MAP_DEX, 3, 3, STAY, NONE, 3, 0 ; map on table
-
- ; warp-to
- warp_to 2, 7, BLUES_HOUSE_WIDTH
- warp_to 3, 7, BLUES_HOUSE_WIDTH
--- a/data/mapObjects/BrunosRoom.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-BrunosRoom_Object:
- db $3 ; border block
-
- db 4 ; warps
- warp 4, 11, 2, LORELEIS_ROOM
- warp 5, 11, 3, LORELEIS_ROOM
- warp 4, 0, 0, AGATHAS_ROOM
- warp 5, 0, 1, AGATHAS_ROOM
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_BRUNO, 5, 2, STAY, DOWN, 1, OPP_BRUNO, 1
-
- ; warp-to
- warp_to 4, 11, BRUNOS_ROOM_WIDTH ; LORELEIS_ROOM
- warp_to 5, 11, BRUNOS_ROOM_WIDTH ; LORELEIS_ROOM
- warp_to 4, 0, BRUNOS_ROOM_WIDTH ; AGATHAS_ROOM
- warp_to 5, 0, BRUNOS_ROOM_WIDTH ; AGATHAS_ROOM
--- a/data/mapObjects/CeladonChiefHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CeladonChiefHouse_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 2, 7, 11, -1
- warp 3, 7, 11, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_OLD_PERSON, 4, 2, STAY, DOWN, 1 ; person
- object SPRITE_ROCKET, 1, 4, WALK, 0, 2 ; person
- object SPRITE_SAILOR, 5, 6, STAY, LEFT, 3 ; person
-
- ; warp-to
- warp_to 2, 7, CELADON_CHIEF_HOUSE_WIDTH
- warp_to 3, 7, CELADON_CHIEF_HOUSE_WIDTH
--- a/data/mapObjects/CeladonCity.asm
+++ /dev/null
@@ -1,54 +1,0 @@
-CeladonCity_Object:
- db $f ; border block
-
- db 13 ; warps
- warp 8, 13, 0, CELADON_MART_1F
- warp 10, 13, 2, CELADON_MART_1F
- warp 24, 9, 0, CELADON_MANSION_1F
- warp 24, 3, 2, CELADON_MANSION_1F
- warp 25, 3, 2, CELADON_MANSION_1F
- warp 41, 9, 0, CELADON_POKECENTER
- warp 12, 27, 0, CELADON_GYM
- warp 28, 19, 0, GAME_CORNER
- warp 39, 19, 0, CELADON_MART_5F ; beta warp! no longer used
- warp 33, 19, 0, GAME_CORNER_PRIZE_ROOM
- warp 31, 27, 0, CELADON_DINER
- warp 35, 27, 0, CELADON_CHIEF_HOUSE
- warp 43, 27, 0, CELADON_HOTEL
-
- db 9 ; signs
- sign 27, 15, 10 ; CeladonCityText10
- sign 19, 15, 11 ; CeladonCityText11
- sign 42, 9, 12 ; PokeCenterSignText
- sign 13, 29, 13 ; CeladonCityText13
- sign 21, 9, 14 ; CeladonCityText14
- sign 12, 13, 15 ; CeladonCityText15
- sign 39, 21, 16 ; CeladonCityText16
- sign 33, 21, 17 ; CeladonCityText17
- sign 27, 21, 18 ; CeladonCityText18
-
- db 9 ; objects
- object SPRITE_LITTLE_GIRL, 8, 17, WALK, 0, 1 ; person
- object SPRITE_OLD_PERSON, 11, 28, STAY, UP, 2 ; person
- object SPRITE_GIRL, 14, 19, WALK, 1, 3 ; person
- object SPRITE_OLD_PERSON, 25, 22, STAY, DOWN, 4 ; person
- object SPRITE_OLD_PERSON, 22, 16, STAY, DOWN, 5 ; person
- object SPRITE_FISHER2, 32, 12, STAY, LEFT, 6 ; person
- object SPRITE_SLOWBRO, 30, 12, STAY, RIGHT, 7 ; person
- object SPRITE_ROCKET, 32, 29, WALK, 2, 8 ; person
- object SPRITE_ROCKET, 42, 14, WALK, 2, 9 ; person
-
- ; warp-to
- warp_to 8, 13, CELADON_CITY_WIDTH ; CELADON_MART_1F
- warp_to 10, 13, CELADON_CITY_WIDTH ; CELADON_MART_1F
- warp_to 24, 9, CELADON_CITY_WIDTH ; CELADON_MANSION_1F
- warp_to 24, 3, CELADON_CITY_WIDTH ; CELADON_MANSION_1F
- warp_to 25, 3, CELADON_CITY_WIDTH ; CELADON_MANSION_1F
- warp_to 41, 9, CELADON_CITY_WIDTH ; CELADON_POKECENTER
- warp_to 12, 27, CELADON_CITY_WIDTH ; CELADON_GYM
- warp_to 28, 19, CELADON_CITY_WIDTH ; GAME_CORNER
- warp_to 39, 19, CELADON_CITY_WIDTH ; CELADON_MART_5F
- warp_to 33, 19, CELADON_CITY_WIDTH ; GAME_CORNER_PRIZE_ROOM
- warp_to 31, 27, CELADON_CITY_WIDTH ; CELADON_DINER
- warp_to 35, 27, CELADON_CITY_WIDTH ; CELADON_CHIEF_HOUSE
- warp_to 43, 27, CELADON_CITY_WIDTH ; CELADON_HOTEL
--- a/data/mapObjects/CeladonDiner.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-CeladonDiner_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 3, 7, 10, -1
- warp 4, 7, 10, -1
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_COOK, 8, 5, WALK, 2, 1 ; person
- object SPRITE_MOM_GEISHA, 7, 2, STAY, NONE, 2 ; person
- object SPRITE_FAT_BALD_GUY, 1, 4, STAY, DOWN, 3 ; person
- object SPRITE_FISHER2, 5, 3, STAY, RIGHT, 4 ; person
- object SPRITE_GYM_HELPER, 0, 1, STAY, DOWN, 5 ; person
-
- ; warp-to
- warp_to 3, 7, CELADON_DINER_WIDTH
- warp_to 4, 7, CELADON_DINER_WIDTH
--- a/data/mapObjects/CeladonGym.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-CeladonGym_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 17, 6, -1
- warp 5, 17, 6, -1
-
- db 0 ; signs
-
- db 8 ; objects
- object SPRITE_ERIKA, 4, 3, STAY, DOWN, 1, OPP_ERIKA, 1
- object SPRITE_LASS, 2, 11, STAY, RIGHT, 2, OPP_LASS, 17
- object SPRITE_FOULARD_WOMAN, 7, 10, STAY, LEFT, 3, OPP_BEAUTY, 1
- object SPRITE_LASS, 9, 5, STAY, DOWN, 4, OPP_JR_TRAINER_F, 11
- object SPRITE_FOULARD_WOMAN, 1, 5, STAY, DOWN, 5, OPP_BEAUTY, 2
- object SPRITE_LASS, 6, 3, STAY, DOWN, 6, OPP_LASS, 18
- object SPRITE_FOULARD_WOMAN, 3, 3, STAY, DOWN, 7, OPP_BEAUTY, 3
- object SPRITE_LASS, 5, 3, STAY, DOWN, 8, OPP_COOLTRAINER_F, 1
-
- ; warp-to
- warp_to 4, 17, CELADON_GYM_WIDTH
- warp_to 5, 17, CELADON_GYM_WIDTH
--- a/data/mapObjects/CeladonHotel.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CeladonHotel_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 12, -1
- warp 4, 7, 12, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_OLD_MEDIUM_WOMAN, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_FOULARD_WOMAN, 2, 4, STAY, NONE, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 8, 4, WALK, 2, 3 ; person
-
- ; warp-to
- warp_to 3, 7, CELADON_HOTEL_WIDTH
- warp_to 4, 7, CELADON_HOTEL_WIDTH
--- a/data/mapObjects/CeladonMansion1F.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-CeladonMansion1F_Object:
- db $f ; border block
-
- db 5 ; warps
- warp 4, 11, 2, -1
- warp 5, 11, 2, -1
- warp 4, 0, 4, -1
- warp 7, 1, 1, CELADON_MANSION_2F
- warp 2, 1, 2, CELADON_MANSION_2F
-
- db 1 ; signs
- sign 4, 9, 5 ; CeladonMansion1Text5
-
- db 4 ; objects
- object SPRITE_SLOWBRO, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_OLD_MEDIUM_WOMAN, 1, 5, STAY, DOWN, 2 ; person
- object SPRITE_CLEFAIRY, 1, 8, WALK, 2, 3 ; person
- object SPRITE_SLOWBRO, 4, 4, WALK, 1, 4 ; person
-
- ; warp-to
- warp_to 4, 11, CELADON_MANSION_1F_WIDTH
- warp_to 5, 11, CELADON_MANSION_1F_WIDTH
- warp_to 4, 0, CELADON_MANSION_1F_WIDTH
- warp_to 7, 1, CELADON_MANSION_1F_WIDTH ; CELADON_MANSION_2F
- warp_to 2, 1, CELADON_MANSION_1F_WIDTH ; CELADON_MANSION_2F
--- a/data/mapObjects/CeladonMansion2F.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-CeladonMansion2F_Object:
- db $f ; border block
-
- db 4 ; warps
- warp 6, 1, 0, CELADON_MANSION_3F
- warp 7, 1, 3, CELADON_MANSION_1F
- warp 2, 1, 4, CELADON_MANSION_1F
- warp 4, 1, 3, CELADON_MANSION_3F
-
- db 1 ; signs
- sign 4, 9, 1 ; CeladonMansion2Text1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 6, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_3F
- warp_to 7, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_1F
- warp_to 2, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_1F
- warp_to 4, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_3F
--- a/data/mapObjects/CeladonMansion3F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-CeladonMansion3F_Object:
- db $f ; border block
-
- db 4 ; warps
- warp 6, 1, 0, CELADON_MANSION_2F
- warp 7, 1, 0, CELADON_MANSION_ROOF
- warp 2, 1, 1, CELADON_MANSION_ROOF
- warp 4, 1, 3, CELADON_MANSION_2F
-
- db 4 ; signs
- sign 1, 3, 5 ; CeladonMansion3Text5
- sign 4, 3, 6 ; CeladonMansion3Text6
- sign 1, 6, 7 ; CeladonMansion3Text7
- sign 4, 9, 8 ; CeladonMansion3Text8
-
- db 4 ; objects
- object SPRITE_BIKE_SHOP_GUY, 0, 4, STAY, UP, 1 ; person
- object SPRITE_MART_GUY, 3, 4, STAY, UP, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 0, 7, STAY, UP, 3 ; person
- object SPRITE_LAPRAS_GIVER, 2, 3, STAY, NONE, 4 ; person
-
- ; warp-to
- warp_to 6, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_2F
- warp_to 7, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_ROOF
- warp_to 2, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_ROOF
- warp_to 4, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_2F
--- a/data/mapObjects/CeladonMansionRoof.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CeladonMansionRoof_Object:
- db $9 ; border block
-
- db 3 ; warps
- warp 6, 1, 1, CELADON_MANSION_3F
- warp 2, 1, 2, CELADON_MANSION_3F
- warp 2, 7, 0, CELADON_MANSION_ROOF_HOUSE
-
- db 1 ; signs
- sign 3, 7, 1 ; CeladonMansion4Text1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 6, 1, CELADON_MANSION_ROOF_WIDTH ; CELADON_MANSION_3F
- warp_to 2, 1, CELADON_MANSION_ROOF_WIDTH ; CELADON_MANSION_3F
- warp_to 2, 7, CELADON_MANSION_ROOF_WIDTH ; CELADON_MANSION_ROOF_HOUSE
--- a/data/mapObjects/CeladonMansionRoofHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-CeladonMansionRoofHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 2, CELADON_MANSION_ROOF
- warp 3, 7, 2, CELADON_MANSION_ROOF
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_HIKER, 2, 2, STAY, DOWN, 1 ; person
- object SPRITE_BALL, 4, 3, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 2, 7, CELADON_MANSION_ROOF_HOUSE_WIDTH ; CELADON_MANSION_ROOF
- warp_to 3, 7, CELADON_MANSION_ROOF_HOUSE_WIDTH ; CELADON_MANSION_ROOF
--- a/data/mapObjects/CeladonMart1F.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-CeladonMart1F_Object:
- db $f ; border block
-
- db 6 ; warps
- warp 2, 7, 0, -1
- warp 3, 7, 0, -1
- warp 16, 7, 1, -1
- warp 17, 7, 1, -1
- warp 12, 1, 0, CELADON_MART_2F
- warp 1, 1, 0, CELADON_MART_ELEVATOR
-
- db 2 ; signs
- sign 11, 4, 2 ; CeladonMart1Text2
- sign 14, 1, 3 ; CeladonMart1Text3
-
- db 1 ; objects
- object SPRITE_CABLE_CLUB_WOMAN, 8, 3, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 2, 7, CELADON_MART_1F_WIDTH
- warp_to 3, 7, CELADON_MART_1F_WIDTH
- warp_to 16, 7, CELADON_MART_1F_WIDTH
- warp_to 17, 7, CELADON_MART_1F_WIDTH
- warp_to 12, 1, CELADON_MART_1F_WIDTH ; CELADON_MART_2F
- warp_to 1, 1, CELADON_MART_1F_WIDTH ; CELADON_MART_ELEVATOR
--- a/data/mapObjects/CeladonMart2F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-CeladonMart2F_Object:
- db $f ; border block
-
- db 3 ; warps
- warp 12, 1, 4, CELADON_MART_1F
- warp 16, 1, 1, CELADON_MART_3F
- warp 1, 1, 0, CELADON_MART_ELEVATOR
-
- db 1 ; signs
- sign 14, 1, 5 ; CeladonMart2Text5
-
- db 4 ; objects
- object SPRITE_MART_GUY, 5, 3, STAY, DOWN, 1 ; person
- object SPRITE_MART_GUY, 6, 3, STAY, DOWN, 2 ; person
- object SPRITE_FAT_BALD_GUY, 19, 5, STAY, NONE, 3 ; person
- object SPRITE_GIRL, 14, 4, WALK, 1, 4 ; person
-
- ; warp-to
- warp_to 12, 1, CELADON_MART_2F_WIDTH ; CELADON_MART_1F
- warp_to 16, 1, CELADON_MART_2F_WIDTH ; CELADON_MART_3F
- warp_to 1, 1, CELADON_MART_2F_WIDTH ; CELADON_MART_ELEVATOR
--- a/data/mapObjects/CeladonMart3F.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-CeladonMart3F_Object:
- db $f ; border block
-
- db 3 ; warps
- warp 12, 1, 0, CELADON_MART_4F
- warp 16, 1, 1, CELADON_MART_2F
- warp 1, 1, 0, CELADON_MART_ELEVATOR
-
- db 12 ; signs
- sign 2, 4, 6 ; CeladonMart3Text6
- sign 3, 4, 7 ; CeladonMart3Text7
- sign 5, 4, 8 ; CeladonMart3Text8
- sign 6, 4, 9 ; CeladonMart3Text9
- sign 2, 6, 10 ; CeladonMart3Text10
- sign 3, 6, 11 ; CeladonMart3Text11
- sign 5, 6, 12 ; CeladonMart3Text12
- sign 6, 6, 13 ; CeladonMart3Text13
- sign 14, 1, 14 ; CeladonMart3Text14
- sign 4, 1, 15 ; CeladonMart3Text15
- sign 6, 1, 16 ; CeladonMart3Text16
- sign 10, 1, 17 ; CeladonMart3Text17
-
- db 5 ; objects
- object SPRITE_MART_GUY, 16, 5, STAY, NONE, 1 ; person
- object SPRITE_GAMEBOY_KID_COPY, 11, 6, STAY, RIGHT, 2 ; person
- object SPRITE_GAMEBOY_KID_COPY, 7, 2, STAY, DOWN, 3 ; person
- object SPRITE_GAMEBOY_KID_COPY, 8, 2, STAY, DOWN, 4 ; person
- object SPRITE_YOUNG_BOY, 2, 5, STAY, UP, 5 ; person
-
- ; warp-to
- warp_to 12, 1, CELADON_MART_3F_WIDTH ; CELADON_MART_4F
- warp_to 16, 1, CELADON_MART_3F_WIDTH ; CELADON_MART_2F
- warp_to 1, 1, CELADON_MART_3F_WIDTH ; CELADON_MART_ELEVATOR
--- a/data/mapObjects/CeladonMart4F.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-CeladonMart4F_Object:
- db $f ; border block
-
- db 3 ; warps
- warp 12, 1, 0, CELADON_MART_3F
- warp 16, 1, 1, CELADON_MART_5F
- warp 1, 1, 0, CELADON_MART_ELEVATOR
-
- db 1 ; signs
- sign 14, 1, 4 ; CeladonMart4Text4
-
- db 3 ; objects
- object SPRITE_MART_GUY, 5, 7, STAY, NONE, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 15, 5, WALK, 2, 2 ; person
- object SPRITE_BUG_CATCHER, 5, 2, WALK, 2, 3 ; person
-
- ; warp-to
- warp_to 12, 1, CELADON_MART_4F_WIDTH ; CELADON_MART_3F
- warp_to 16, 1, CELADON_MART_4F_WIDTH ; CELADON_MART_5F
- warp_to 1, 1, CELADON_MART_4F_WIDTH ; CELADON_MART_ELEVATOR
--- a/data/mapObjects/CeladonMart5F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-CeladonMart5F_Object:
- db $f ; border block
-
- db 3 ; warps
- warp 12, 1, 0, CELADON_MART_ROOF
- warp 16, 1, 1, CELADON_MART_4F
- warp 1, 1, 0, CELADON_MART_ELEVATOR
-
- db 1 ; signs
- sign 14, 1, 5 ; CeladonMart5Text5
-
- db 4 ; objects
- object SPRITE_GENTLEMAN, 14, 5, WALK, 1, 1 ; person
- object SPRITE_SAILOR, 2, 6, STAY, NONE, 2 ; person
- object SPRITE_MART_GUY, 5, 3, STAY, DOWN, 3 ; person
- object SPRITE_MART_GUY, 6, 3, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 12, 1, CELADON_MART_5F_WIDTH ; CELADON_MART_ROOF
- warp_to 16, 1, CELADON_MART_5F_WIDTH ; CELADON_MART_4F
- warp_to 1, 1, CELADON_MART_5F_WIDTH ; CELADON_MART_ELEVATOR
--- a/data/mapObjects/CeladonMartElevator.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-CeladonMartElevator_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 1, 3, 5, CELADON_MART_1F
- warp 2, 3, 5, CELADON_MART_1F
-
- db 1 ; signs
- sign 3, 0, 1 ; CeladonMartElevatorText1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 1, 3, CELADON_MART_ELEVATOR_WIDTH ; CELADON_MART_1F
- warp_to 2, 3, CELADON_MART_ELEVATOR_WIDTH ; CELADON_MART_1F
--- a/data/mapObjects/CeladonMartRoof.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-CeladonMartRoof_Object:
- db $42 ; border block
-
- db 1 ; warps
- warp 15, 2, 0, CELADON_MART_5F
-
- db 4 ; signs
- sign 10, 1, 3 ; CeladonMartRoofText3
- sign 11, 1, 4 ; CeladonMartRoofText4
- sign 12, 2, 5 ; CeladonMartRoofText5
- sign 13, 2, 6 ; CeladonMartRoofText6
-
- db 2 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 10, 4, STAY, LEFT, 1 ; person
- object SPRITE_LITTLE_GIRL, 5, 5, WALK, 0, 2 ; person
-
- ; warp-to
- warp_to 15, 2, CELADON_MART_ROOF_WIDTH ; CELADON_MART_5F
--- a/data/mapObjects/CeladonPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-CeladonPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 5, -1
- warp 4, 7, 5, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_GENTLEMAN, 7, 3, WALK, 2, 2 ; person
- object SPRITE_FOULARD_WOMAN, 10, 5, WALK, 0, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, CELADON_POKECENTER_WIDTH
- warp_to 4, 7, CELADON_POKECENTER_WIDTH
--- a/data/mapObjects/CeruleanBadgeHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CeruleanBadgeHouse_Object:
- db $c ; border block
-
- db 3 ; warps
- warp 2, 0, 9, -1
- warp 2, 7, 8, -1
- warp 3, 7, 8, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FAT_BALD_GUY, 5, 3, STAY, RIGHT, 1 ; person
-
- ; warp-to
- warp_to 2, 0, CERULEAN_BADGE_HOUSE_WIDTH
- warp_to 2, 7, CERULEAN_BADGE_HOUSE_WIDTH
- warp_to 3, 7, CERULEAN_BADGE_HOUSE_WIDTH
--- a/data/mapObjects/CeruleanCave1F.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-CeruleanCave1F_Object:
- db $7d ; border block
-
- db 9 ; warps
- warp 24, 17, 6, -1
- warp 25, 17, 6, -1
- warp 27, 1, 0, CERULEAN_CAVE_2F
- warp 23, 7, 1, CERULEAN_CAVE_2F
- warp 18, 9, 2, CERULEAN_CAVE_2F
- warp 7, 1, 3, CERULEAN_CAVE_2F
- warp 1, 3, 4, CERULEAN_CAVE_2F
- warp 3, 11, 5, CERULEAN_CAVE_2F
- warp 0, 6, 0, CERULEAN_CAVE_B1F
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_BALL, 7, 13, STAY, NONE, 1, FULL_RESTORE
- object SPRITE_BALL, 19, 3, STAY, NONE, 2, MAX_ELIXER
- object SPRITE_BALL, 5, 0, STAY, NONE, 3, NUGGET
-
- ; warp-to
- warp_to 24, 17, CERULEAN_CAVE_1F_WIDTH
- warp_to 25, 17, CERULEAN_CAVE_1F_WIDTH
- warp_to 27, 1, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
- warp_to 23, 7, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
- warp_to 18, 9, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
- warp_to 7, 1, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
- warp_to 1, 3, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
- warp_to 3, 11, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
- warp_to 0, 6, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_B1F
--- a/data/mapObjects/CeruleanCave2F.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-CeruleanCave2F_Object:
- db $7d ; border block
-
- db 6 ; warps
- warp 29, 1, 2, CERULEAN_CAVE_1F
- warp 22, 6, 3, CERULEAN_CAVE_1F
- warp 19, 7, 4, CERULEAN_CAVE_1F
- warp 9, 1, 5, CERULEAN_CAVE_1F
- warp 1, 3, 6, CERULEAN_CAVE_1F
- warp 3, 11, 7, CERULEAN_CAVE_1F
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_BALL, 29, 9, STAY, NONE, 1, PP_UP
- object SPRITE_BALL, 4, 15, STAY, NONE, 2, ULTRA_BALL
- object SPRITE_BALL, 13, 6, STAY, NONE, 3, FULL_RESTORE
-
- ; warp-to
- warp_to 29, 1, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
- warp_to 22, 6, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
- warp_to 19, 7, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
- warp_to 9, 1, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
- warp_to 1, 3, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
- warp_to 3, 11, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
--- a/data/mapObjects/CeruleanCaveB1F.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-CeruleanCaveB1F_Object:
- db $7d ; border block
-
- db 1 ; warps
- warp 3, 6, 8, CERULEAN_CAVE_1F
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_SLOWBRO, 27, 13, STAY, DOWN, 1, MEWTWO, 70
- object SPRITE_BALL, 16, 9, STAY, NONE, 2, ULTRA_BALL
- object SPRITE_BALL, 18, 1, STAY, NONE, 3, MAX_REVIVE
-
- ; warp-to
- warp_to 3, 6, CERULEAN_CAVE_B1F_WIDTH ; CERULEAN_CAVE_1F
--- a/data/mapObjects/CeruleanCity.asm
+++ /dev/null
@@ -1,47 +1,0 @@
-CeruleanCity_Object:
- db $f ; border block
-
- db 10 ; warps
- warp 27, 11, 0, CERULEAN_TRASHED_HOUSE
- warp 13, 15, 0, CERULEAN_TRADE_HOUSE
- warp 19, 17, 0, CERULEAN_POKECENTER
- warp 30, 19, 0, CERULEAN_GYM
- warp 13, 25, 0, BIKE_SHOP
- warp 25, 25, 0, CERULEAN_MART
- warp 4, 11, 0, CERULEAN_CAVE_1F
- warp 27, 9, 2, CERULEAN_TRASHED_HOUSE
- warp 9, 11, 1, CERULEAN_BADGE_HOUSE
- warp 9, 9, 0, CERULEAN_BADGE_HOUSE
-
- db 6 ; signs
- sign 23, 19, 12 ; CeruleanCityText12
- sign 17, 29, 13 ; CeruleanCityText13
- sign 26, 25, 14 ; MartSignText
- sign 20, 17, 15 ; PokeCenterSignText
- sign 11, 25, 16 ; CeruleanCityText16
- sign 27, 21, 17 ; CeruleanCityText17
-
- db 11 ; objects
- object SPRITE_BLUE, 20, 2, STAY, DOWN, 1 ; person
- object SPRITE_ROCKET, 30, 8, STAY, NONE, 2, OPP_ROCKET, 5
- object SPRITE_BLACK_HAIR_BOY_1, 31, 20, STAY, DOWN, 3 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 15, 18, WALK, 1, 4 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 9, 21, WALK, 2, 5 ; person
- object SPRITE_GUARD, 28, 12, STAY, DOWN, 6 ; person
- object SPRITE_LASS, 29, 26, STAY, LEFT, 7 ; person
- object SPRITE_SLOWBRO, 28, 26, STAY, DOWN, 8 ; person
- object SPRITE_LASS, 9, 27, WALK, 2, 9 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 4, 12, STAY, DOWN, 10 ; person
- object SPRITE_GUARD, 27, 12, STAY, DOWN, 11 ; person
-
- ; warp-to
- warp_to 27, 11, CERULEAN_CITY_WIDTH ; CERULEAN_TRASHED_HOUSE
- warp_to 13, 15, CERULEAN_CITY_WIDTH ; CERULEAN_TRADE_HOUSE
- warp_to 19, 17, CERULEAN_CITY_WIDTH ; CERULEAN_POKECENTER
- warp_to 30, 19, CERULEAN_CITY_WIDTH ; CERULEAN_GYM
- warp_to 13, 25, CERULEAN_CITY_WIDTH ; BIKE_SHOP
- warp_to 25, 25, CERULEAN_CITY_WIDTH ; CERULEAN_MART
- warp_to 4, 11, CERULEAN_CITY_WIDTH ; CERULEAN_CAVE_1F
- warp_to 27, 9, CERULEAN_CITY_WIDTH ; CERULEAN_TRASHED_HOUSE
- warp_to 9, 11, CERULEAN_CITY_WIDTH ; CERULEAN_BADGE_HOUSE
- warp_to 9, 9, CERULEAN_CITY_WIDTH ; CERULEAN_BADGE_HOUSE
--- a/data/mapObjects/CeruleanGym.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-CeruleanGym_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 13, 3, -1
- warp 5, 13, 3, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_BRUNETTE_GIRL, 4, 2, STAY, DOWN, 1, OPP_MISTY, 1
- object SPRITE_LASS, 2, 3, STAY, RIGHT, 2, OPP_JR_TRAINER_F, 1
- object SPRITE_SWIMMER, 8, 7, STAY, LEFT, 3, OPP_SWIMMER, 1
- object SPRITE_GYM_HELPER, 7, 10, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 4, 13, CERULEAN_GYM_WIDTH
- warp_to 5, 13, CERULEAN_GYM_WIDTH
--- a/data/mapObjects/CeruleanMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CeruleanMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 5, -1
- warp 4, 7, 5, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 3, 4, WALK, 1, 2 ; person
- object SPRITE_LASS, 6, 2, WALK, 2, 3 ; person
-
- ; warp-to
- warp_to 3, 7, CERULEAN_MART_WIDTH
- warp_to 4, 7, CERULEAN_MART_WIDTH
--- a/data/mapObjects/CeruleanPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-CeruleanPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 2, -1
- warp 4, 7, 2, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 10, 5, WALK, 0, 2 ; person
- object SPRITE_GENTLEMAN, 4, 3, STAY, DOWN, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, CERULEAN_POKECENTER_WIDTH
- warp_to 4, 7, CERULEAN_POKECENTER_WIDTH
--- a/data/mapObjects/CeruleanTradeHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-CeruleanTradeHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 1, -1
- warp 3, 7, 1, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_OLD_MEDIUM_WOMAN, 5, 4, STAY, LEFT, 1 ; person
- object SPRITE_GAMBLER, 1, 2, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 2, 7, CERULEAN_TRADE_HOUSE_WIDTH
- warp_to 3, 7, CERULEAN_TRADE_HOUSE_WIDTH
--- a/data/mapObjects/CeruleanTrashedHouse.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-CeruleanTrashedHouse_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 2, 7, 0, -1
- warp 3, 7, 0, -1
- warp 3, 0, 7, -1
-
- db 1 ; signs
- sign 3, 0, 3 ; CeruleanHouseTrashedText3
-
- db 2 ; objects
- object SPRITE_FISHER, 2, 1, STAY, DOWN, 1 ; person
- object SPRITE_GIRL, 5, 6, WALK, 2, 2 ; person
-
- ; warp-to
- warp_to 2, 7, CERULEAN_TRASHED_HOUSE_WIDTH
- warp_to 3, 7, CERULEAN_TRASHED_HOUSE_WIDTH
- warp_to 3, 0, CERULEAN_TRASHED_HOUSE_WIDTH
--- a/data/mapObjects/ChampionsRoom.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-ChampionsRoom_Object:
- db $3 ; border block
-
- db 4 ; warps
- warp 3, 7, 1, LANCES_ROOM
- warp 4, 7, 2, LANCES_ROOM
- warp 3, 0, 0, HALL_OF_FAME
- warp 4, 0, 0, HALL_OF_FAME
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BLUE, 4, 2, STAY, DOWN, 1 ; person
- object SPRITE_OAK, 3, 7, STAY, UP, 2 ; person
-
- ; warp-to
- warp_to 3, 7, CHAMPIONS_ROOM_WIDTH ; LANCES_ROOM
- warp_to 4, 7, CHAMPIONS_ROOM_WIDTH ; LANCES_ROOM
- warp_to 3, 0, CHAMPIONS_ROOM_WIDTH ; HALL_OF_FAME
- warp_to 4, 0, CHAMPIONS_ROOM_WIDTH ; HALL_OF_FAME
--- a/data/mapObjects/CinnabarGym.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-CinnabarGym_Object:
- db $2e ; border block
-
- db 2 ; warps
- warp 16, 17, 1, -1
- warp 17, 17, 1, -1
-
- db 0 ; signs
-
- db 9 ; objects
- object SPRITE_FAT_BALD_GUY, 3, 3, STAY, DOWN, 1, OPP_BLAINE, 1
- object SPRITE_BLACK_HAIR_BOY_2, 17, 2, STAY, DOWN, 2, OPP_SUPER_NERD, 9
- object SPRITE_BLACK_HAIR_BOY_2, 17, 8, STAY, DOWN, 3, OPP_BURGLAR, 4
- object SPRITE_BLACK_HAIR_BOY_2, 11, 4, STAY, DOWN, 4, OPP_SUPER_NERD, 10
- object SPRITE_BLACK_HAIR_BOY_2, 11, 8, STAY, DOWN, 5, OPP_BURGLAR, 5
- object SPRITE_BLACK_HAIR_BOY_2, 11, 14, STAY, DOWN, 6, OPP_SUPER_NERD, 11
- object SPRITE_BLACK_HAIR_BOY_2, 3, 14, STAY, DOWN, 7, OPP_BURGLAR, 6
- object SPRITE_BLACK_HAIR_BOY_2, 3, 8, STAY, DOWN, 8, OPP_SUPER_NERD, 12
- object SPRITE_GYM_HELPER, 16, 13, STAY, DOWN, 9 ; person
-
- ; warp-to
- warp_to 16, 17, CINNABAR_GYM_WIDTH
- warp_to 17, 17, CINNABAR_GYM_WIDTH
--- a/data/mapObjects/CinnabarIsland.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-CinnabarIsland_Object:
- db $43 ; border block
-
- db 5 ; warps
- warp 6, 3, 1, POKEMON_MANSION_1F
- warp 18, 3, 0, CINNABAR_GYM
- warp 6, 9, 0, CINNABAR_LAB
- warp 11, 11, 0, CINNABAR_POKECENTER
- warp 15, 11, 0, CINNABAR_MART
-
- db 5 ; signs
- sign 9, 5, 3 ; CinnabarIslandText3
- sign 16, 11, 4 ; MartSignText
- sign 12, 11, 5 ; PokeCenterSignText
- sign 9, 11, 6 ; CinnabarIslandText6
- sign 13, 3, 7 ; CinnabarIslandText7
-
- db 2 ; objects
- object SPRITE_GIRL, 12, 5, WALK, 2, 1 ; person
- object SPRITE_GAMBLER, 14, 6, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 6, 3, CINNABAR_ISLAND_WIDTH ; POKEMON_MANSION_1F
- warp_to 18, 3, CINNABAR_ISLAND_WIDTH ; CINNABAR_GYM
- warp_to 6, 9, CINNABAR_ISLAND_WIDTH ; CINNABAR_LAB
- warp_to 11, 11, CINNABAR_ISLAND_WIDTH ; CINNABAR_POKECENTER
- warp_to 15, 11, CINNABAR_ISLAND_WIDTH ; CINNABAR_MART
--- a/data/mapObjects/CinnabarLab.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-CinnabarLab_Object:
- db $17 ; border block
-
- db 5 ; warps
- warp 2, 7, 2, -1
- warp 3, 7, 2, -1
- warp 8, 4, 0, CINNABAR_LAB_TRADE_ROOM
- warp 12, 4, 0, CINNABAR_LAB_METRONOME_ROOM
- warp 16, 4, 0, CINNABAR_LAB_FOSSIL_ROOM
-
- db 4 ; signs
- sign 3, 2, 2 ; Lab1Text2
- sign 9, 4, 3 ; Lab1Text3
- sign 13, 4, 4 ; Lab1Text4
- sign 17, 4, 5 ; Lab1Text5
-
- db 1 ; objects
- object SPRITE_FISHER, 1, 3, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 2, 7, CINNABAR_LAB_WIDTH
- warp_to 3, 7, CINNABAR_LAB_WIDTH
- warp_to 8, 4, CINNABAR_LAB_WIDTH ; CINNABAR_LAB_TRADE_ROOM
- warp_to 12, 4, CINNABAR_LAB_WIDTH ; CINNABAR_LAB_METRONOME_ROOM
- warp_to 16, 4, CINNABAR_LAB_WIDTH ; CINNABAR_LAB_FOSSIL_ROOM
--- a/data/mapObjects/CinnabarLabFossilRoom.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-CinnabarLabFossilRoom_Object:
- db $17 ; border block
-
- db 2 ; warps
- warp 2, 7, 4, CINNABAR_LAB
- warp 3, 7, 4, CINNABAR_LAB
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_OAK_AIDE, 5, 2, WALK, 2, 1 ; person
- object SPRITE_OAK_AIDE, 7, 6, STAY, UP, 2 ; person
-
- ; warp-to
- warp_to 2, 7, CINNABAR_LAB_FOSSIL_ROOM_WIDTH ; CINNABAR_LAB
- warp_to 3, 7, CINNABAR_LAB_FOSSIL_ROOM_WIDTH ; CINNABAR_LAB
--- a/data/mapObjects/CinnabarLabMetronomeRoom.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-CinnabarLabMetronomeRoom_Object:
- db $17 ; border block
-
- db 2 ; warps
- warp 2, 7, 3, CINNABAR_LAB
- warp 3, 7, 3, CINNABAR_LAB
-
- db 3 ; signs
- sign 0, 4, 3 ; Lab3Text3
- sign 1, 4, 4 ; Lab3Text4
- sign 2, 1, 5 ; Lab3Text5
-
- db 2 ; objects
- object SPRITE_OAK_AIDE, 7, 2, STAY, DOWN, 1 ; person
- object SPRITE_OAK_AIDE, 2, 3, WALK, 2, 2 ; person
-
- ; warp-to
- warp_to 2, 7, CINNABAR_LAB_METRONOME_ROOM_WIDTH ; CINNABAR_LAB
- warp_to 3, 7, CINNABAR_LAB_METRONOME_ROOM_WIDTH ; CINNABAR_LAB
--- a/data/mapObjects/CinnabarLabTradeRoom.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CinnabarLabTradeRoom_Object:
- db $17 ; border block
-
- db 2 ; warps
- warp 2, 7, 2, CINNABAR_LAB
- warp 3, 7, 2, CINNABAR_LAB
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 3, 2, STAY, DOWN, 1 ; person
- object SPRITE_OLD_PERSON, 1, 4, STAY, NONE, 2 ; person
- object SPRITE_FOULARD_WOMAN, 5, 5, STAY, UP, 3 ; person
-
- ; warp-to
- warp_to 2, 7, CINNABAR_LAB_TRADE_ROOM_WIDTH ; CINNABAR_LAB
- warp_to 3, 7, CINNABAR_LAB_TRADE_ROOM_WIDTH ; CINNABAR_LAB
--- a/data/mapObjects/CinnabarMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-CinnabarMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 4, -1
- warp 4, 7, 4, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_ERIKA, 6, 2, STAY, NONE, 2 ; person
- object SPRITE_OAK_AIDE, 3, 4, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 3, 7, CINNABAR_MART_WIDTH
- warp_to 4, 7, CINNABAR_MART_WIDTH
--- a/data/mapObjects/CinnabarPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-CinnabarPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 3, -1
- warp 4, 7, 3, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_LASS, 9, 4, WALK, 0, 2 ; person
- object SPRITE_GENTLEMAN, 2, 6, STAY, NONE, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, CINNABAR_POKECENTER_WIDTH
- warp_to 4, 7, CINNABAR_POKECENTER_WIDTH
--- a/data/mapObjects/Colosseum.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-Colosseum_Object:
- db $e ; border block
-
- db 0 ; warps
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_RED, 2, 2, STAY, 0, 1 ; person
--- a/data/mapObjects/CopycatsHouse1F.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-CopycatsHouse1F_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 2, 7, 0, -1
- warp 3, 7, 0, -1
- warp 7, 1, 0, COPYCATS_HOUSE_2F
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MOM_GEISHA, 2, 2, STAY, DOWN, 1 ; person
- object SPRITE_FAT_BALD_GUY, 5, 4, STAY, LEFT, 2 ; person
- object SPRITE_CLEFAIRY, 1, 4, WALK, 1, 3 ; person
-
- ; warp-to
- warp_to 2, 7, COPYCATS_HOUSE_1F_WIDTH
- warp_to 3, 7, COPYCATS_HOUSE_1F_WIDTH
- warp_to 7, 1, COPYCATS_HOUSE_1F_WIDTH ; COPYCATS_HOUSE_2F
--- a/data/mapObjects/CopycatsHouse2F.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-CopycatsHouse2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 1, 2, COPYCATS_HOUSE_1F
-
- db 2 ; signs
- sign 3, 5, 6 ; CopycatsHouse2FText6
- sign 0, 1, 7 ; CopycatsHouse2FText7
-
- db 5 ; objects
- object SPRITE_BRUNETTE_GIRL, 4, 3, WALK, 0, 1 ; person
- object SPRITE_BIRD, 4, 6, WALK, 2, 2 ; person
- object SPRITE_SLOWBRO, 5, 1, STAY, DOWN, 3 ; person
- object SPRITE_BIRD, 2, 0, STAY, DOWN, 4 ; person
- object SPRITE_CLEFAIRY, 1, 6, STAY, RIGHT, 5 ; person
-
- ; warp-to
- warp_to 7, 1, COPYCATS_HOUSE_2F_WIDTH ; COPYCATS_HOUSE_1F
--- a/data/mapObjects/Daycare.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-Daycare_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 4, -1
- warp 3, 7, 4, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GENTLEMAN, 2, 3, STAY, RIGHT, 1 ; person
-
- ; warp-to
- warp_to 2, 7, DAYCARE_WIDTH
- warp_to 3, 7, DAYCARE_WIDTH
--- a/data/mapObjects/DiglettsCave.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-DiglettsCave_Object:
- db $19 ; border block
-
- db 2 ; warps
- warp 5, 5, 2, DIGLETTS_CAVE_ROUTE_2
- warp 37, 31, 2, DIGLETTS_CAVE_ROUTE_11
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 5, 5, DIGLETTS_CAVE_WIDTH ; DIGLETTS_CAVE_ROUTE_2
- warp_to 37, 31, DIGLETTS_CAVE_WIDTH ; DIGLETTS_CAVE_ROUTE_11
--- a/data/mapObjects/DiglettsCaveRoute11.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-DiglettsCaveRoute11_Object:
- db $7d ; border block
-
- db 3 ; warps
- warp 2, 7, 4, -1
- warp 3, 7, 4, -1
- warp 4, 4, 1, DIGLETTS_CAVE
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GAMBLER, 2, 3, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 2, 7, DIGLETTS_CAVE_ROUTE_11_WIDTH
- warp_to 3, 7, DIGLETTS_CAVE_ROUTE_11_WIDTH
- warp_to 4, 4, DIGLETTS_CAVE_ROUTE_11_WIDTH ; DIGLETTS_CAVE
--- a/data/mapObjects/DiglettsCaveRoute2.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-DiglettsCaveRoute2_Object:
- db $7d ; border block
-
- db 3 ; warps
- warp 2, 7, 0, -1
- warp 3, 7, 0, -1
- warp 4, 4, 0, DIGLETTS_CAVE
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FISHER, 3, 3, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 2, 7, DIGLETTS_CAVE_ROUTE_2_WIDTH
- warp_to 3, 7, DIGLETTS_CAVE_ROUTE_2_WIDTH
- warp_to 4, 4, DIGLETTS_CAVE_ROUTE_2_WIDTH ; DIGLETTS_CAVE
--- a/data/mapObjects/FightingDojo.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-FightingDojo_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 11, 1, -1
- warp 5, 11, 1, -1
-
- db 0 ; signs
-
- db 7 ; objects
- object SPRITE_HIKER, 5, 3, STAY, DOWN, 1, OPP_BLACKBELT, 1
- object SPRITE_HIKER, 3, 4, STAY, RIGHT, 2, OPP_BLACKBELT, 2
- object SPRITE_HIKER, 3, 6, STAY, RIGHT, 3, OPP_BLACKBELT, 3
- object SPRITE_HIKER, 5, 5, STAY, LEFT, 4, OPP_BLACKBELT, 4
- object SPRITE_HIKER, 5, 7, STAY, LEFT, 5, OPP_BLACKBELT, 5
- object SPRITE_BALL, 4, 1, STAY, NONE, 6 ; person
- object SPRITE_BALL, 5, 1, STAY, NONE, 7 ; person
-
- ; warp-to
- warp_to 4, 11, FIGHTING_DOJO_WIDTH
- warp_to 5, 11, FIGHTING_DOJO_WIDTH
--- a/data/mapObjects/FuchsiaBillsGrandpasHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-FuchsiaBillsGrandpasHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 1, -1
- warp 3, 7, 1, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MOM_GEISHA, 2, 3, STAY, RIGHT, 1 ; person
- object SPRITE_GAMBLER, 7, 2, STAY, UP, 2 ; person
- object SPRITE_BUG_CATCHER, 5, 5, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 2, 7, FUCHSIA_BILLS_GRANDPAS_HOUSE_WIDTH
- warp_to 3, 7, FUCHSIA_BILLS_GRANDPAS_HOUSE_WIDTH
--- a/data/mapObjects/FuchsiaCity.asm
+++ /dev/null
@@ -1,52 +1,0 @@
-FuchsiaCity_Object:
- db $f ; border block
-
- db 9 ; warps
- warp 5, 13, 0, FUCHSIA_MART
- warp 11, 27, 0, FUCHSIA_BILLS_GRANDPAS_HOUSE
- warp 19, 27, 0, FUCHSIA_POKECENTER
- warp 27, 27, 0, WARDENS_HOUSE
- warp 18, 3, 0, SAFARI_ZONE_GATE
- warp 5, 27, 0, FUCHSIA_GYM
- warp 22, 13, 0, FUCHSIA_MEETING_ROOM
- warp 31, 27, 1, FUCHSIA_GOOD_ROD_HOUSE
- warp 31, 24, 0, FUCHSIA_GOOD_ROD_HOUSE
-
- db 14 ; signs
- sign 15, 23, 11 ; FuchsiaCityText11
- sign 25, 15, 12 ; FuchsiaCityText12
- sign 17, 5, 13 ; FuchsiaCityText13
- sign 6, 13, 14 ; MartSignText
- sign 20, 27, 15 ; PokeCenterSignText
- sign 27, 29, 16 ; FuchsiaCityText16
- sign 21, 15, 17 ; FuchsiaCityText17
- sign 5, 29, 18 ; FuchsiaCityText18
- sign 33, 7, 19 ; FuchsiaCityText19
- sign 27, 7, 20 ; FuchsiaCityText20
- sign 13, 7, 21 ; FuchsiaCityText21
- sign 31, 13, 22 ; FuchsiaCityText22
- sign 13, 15, 23 ; FuchsiaCityText23
- sign 7, 7, 24 ; FuchsiaCityText24
-
- db 10 ; objects
- object SPRITE_BUG_CATCHER, 10, 12, WALK, 2, 1 ; person
- object SPRITE_GAMBLER, 28, 17, WALK, 2, 2 ; person
- object SPRITE_FISHER2, 30, 14, STAY, DOWN, 3 ; person
- object SPRITE_BUG_CATCHER, 24, 8, STAY, UP, 4 ; person
- object SPRITE_CLEFAIRY, 31, 5, WALK, 0, 5 ; person
- object SPRITE_BALL, 25, 6, STAY, NONE, 6 ; person
- object SPRITE_SLOWBRO, 12, 6, WALK, 2, 7 ; person
- object SPRITE_SLOWBRO, 30, 12, WALK, 2, 8 ; person
- object SPRITE_SEEL, 8, 17, WALK, 0, 9 ; person
- object SPRITE_OMANYTE, 6, 5, STAY, NONE, 10 ; person
-
- ; warp-to
- warp_to 5, 13, FUCHSIA_CITY_WIDTH ; FUCHSIA_MART
- warp_to 11, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_BILLS_GRANDPAS_HOUSE
- warp_to 19, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_POKECENTER
- warp_to 27, 27, FUCHSIA_CITY_WIDTH ; WARDENS_HOUSE
- warp_to 18, 3, FUCHSIA_CITY_WIDTH ; SAFARI_ZONE_GATE
- warp_to 5, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_GYM
- warp_to 22, 13, FUCHSIA_CITY_WIDTH ; FUCHSIA_MEETING_ROOM
- warp_to 31, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_GOOD_ROD_HOUSE
- warp_to 31, 24, FUCHSIA_CITY_WIDTH ; FUCHSIA_GOOD_ROD_HOUSE
--- a/data/mapObjects/FuchsiaGoodRodHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-FuchsiaGoodRodHouse_Object:
- db $c ; border block
-
- db 3 ; warps
- warp 2, 0, 8, -1
- warp 2, 7, 7, -1
- warp 3, 7, 7, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FISHER, 5, 3, STAY, RIGHT, 1 ; person
-
- ; warp-to
- warp_to 2, 0, FUCHSIA_GOOD_ROD_HOUSE_WIDTH
- warp_to 2, 7, FUCHSIA_GOOD_ROD_HOUSE_WIDTH
- warp_to 3, 7, FUCHSIA_GOOD_ROD_HOUSE_WIDTH
--- a/data/mapObjects/FuchsiaGym.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-FuchsiaGym_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 17, 5, -1
- warp 5, 17, 5, -1
-
- db 0 ; signs
-
- db 8 ; objects
- object SPRITE_BLACKBELT, 4, 10, STAY, DOWN, 1, OPP_KOGA, 1
- object SPRITE_ROCKER, 8, 13, STAY, DOWN, 2, OPP_JUGGLER, 7
- object SPRITE_ROCKER, 7, 8, STAY, RIGHT, 3, OPP_JUGGLER, 3
- object SPRITE_ROCKER, 1, 12, STAY, DOWN, 4, OPP_JUGGLER, 8
- object SPRITE_ROCKER, 3, 5, STAY, UP, 5, OPP_TAMER, 1
- object SPRITE_ROCKER, 8, 2, STAY, DOWN, 6, OPP_TAMER, 2
- object SPRITE_ROCKER, 2, 7, STAY, LEFT, 7, OPP_JUGGLER, 4
- object SPRITE_GYM_HELPER, 7, 15, STAY, DOWN, 8 ; person
-
- ; warp-to
- warp_to 4, 17, FUCHSIA_GYM_WIDTH
- warp_to 5, 17, FUCHSIA_GYM_WIDTH
--- a/data/mapObjects/FuchsiaMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-FuchsiaMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 0, -1
- warp 4, 7, 0, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_FAT_BALD_GUY, 4, 2, STAY, NONE, 2 ; person
- object SPRITE_LASS, 6, 5, WALK, 1, 3 ; person
-
- ; warp-to
- warp_to 3, 7, FUCHSIA_MART_WIDTH
- warp_to 4, 7, FUCHSIA_MART_WIDTH
--- a/data/mapObjects/FuchsiaMeetingRoom.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-FuchsiaMeetingRoom_Object:
- db $17 ; border block
-
- db 2 ; warps
- warp 4, 7, 6, -1
- warp 5, 7, 6, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_WHITE_PLAYER, 4, 1, STAY, DOWN, 1 ; person
- object SPRITE_WHITE_PLAYER, 0, 2, STAY, UP, 2 ; person
- object SPRITE_WHITE_PLAYER, 10, 1, STAY, DOWN, 3 ; person
-
- ; warp-to
- warp_to 4, 7, FUCHSIA_MEETING_ROOM_WIDTH
- warp_to 5, 7, FUCHSIA_MEETING_ROOM_WIDTH
--- a/data/mapObjects/FuchsiaPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-FuchsiaPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 2, -1
- warp 4, 7, 2, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_ROCKER, 2, 3, STAY, NONE, 2 ; person
- object SPRITE_LASS, 6, 5, WALK, 2, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, FUCHSIA_POKECENTER_WIDTH
- warp_to 4, 7, FUCHSIA_POKECENTER_WIDTH
--- a/data/mapObjects/GameCorner.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-GameCorner_Object:
- db $f ; border block
-
- db 3 ; warps
- warp 15, 17, 7, -1
- warp 16, 17, 7, -1
- warp 17, 4, 1, ROCKET_HIDEOUT_B1F
-
- db 1 ; signs
- sign 9, 4, 12 ; CeladonGameCornerText12
-
- db 11 ; objects
- object SPRITE_FOULARD_WOMAN, 2, 6, STAY, DOWN, 1 ; person
- object SPRITE_MART_GUY, 5, 6, STAY, DOWN, 2 ; person
- object SPRITE_FAT_BALD_GUY, 2, 10, STAY, LEFT, 3 ; person
- object SPRITE_FOULARD_WOMAN, 2, 13, STAY, LEFT, 4 ; person
- object SPRITE_FISHER, 5, 11, STAY, RIGHT, 5 ; person
- object SPRITE_MOM_GEISHA, 8, 11, STAY, LEFT, 6 ; person
- object SPRITE_GYM_HELPER, 8, 14, STAY, LEFT, 7 ; person
- object SPRITE_GAMBLER, 11, 15, STAY, RIGHT, 8 ; person
- object SPRITE_MART_GUY, 14, 11, STAY, LEFT, 9 ; person
- object SPRITE_GENTLEMAN, 17, 13, STAY, RIGHT, 10 ; person
- object SPRITE_ROCKET, 9, 5, STAY, UP, 11, OPP_ROCKET, 7
-
- ; warp-to
- warp_to 15, 17, GAME_CORNER_WIDTH
- warp_to 16, 17, GAME_CORNER_WIDTH
- warp_to 17, 4, GAME_CORNER_WIDTH ; ROCKET_HIDEOUT_B1F
--- a/data/mapObjects/GameCornerPrizeRoom.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-GameCornerPrizeRoom_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 4, 7, 9, -1
- warp 5, 7, 9, -1
-
- db 3 ; signs
- sign 2, 2, 3 ; CeladonPrizeRoomText3
- sign 4, 2, 4 ; CeladonPrizeRoomText4
- sign 6, 2, 5 ; CeladonPrizeRoomText5
-
- db 2 ; objects
- object SPRITE_BALDING_GUY, 1, 4, STAY, NONE, 1 ; person
- object SPRITE_GAMBLER, 7, 3, WALK, 2, 2 ; person
-
- ; warp-to
- warp_to 4, 7, GAME_CORNER_PRIZE_ROOM_WIDTH
- warp_to 5, 7, GAME_CORNER_PRIZE_ROOM_WIDTH
--- a/data/mapObjects/HallOfFame.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-HallOfFame_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 7, 2, CHAMPIONS_ROOM
- warp 5, 7, 3, CHAMPIONS_ROOM
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_OAK, 5, 2, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 4, 7, HALL_OF_FAME_WIDTH ; CHAMPIONS_ROOM
- warp_to 5, 7, HALL_OF_FAME_WIDTH ; CHAMPIONS_ROOM
--- a/data/mapObjects/IndigoPlateau.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-IndigoPlateau_Object:
- db $e ; border block
-
- db 2 ; warps
- warp 9, 5, 0, INDIGO_PLATEAU_LOBBY
- warp 10, 5, 0, INDIGO_PLATEAU_LOBBY
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 9, 5, INDIGO_PLATEAU_WIDTH ; INDIGO_PLATEAU_LOBBY
- warp_to 10, 5, INDIGO_PLATEAU_WIDTH ; INDIGO_PLATEAU_LOBBY
--- a/data/mapObjects/IndigoPlateauLobby.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-IndigoPlateauLobby_Object:
- db $0 ; border block
-
- db 3 ; warps
- warp 7, 11, 0, -1
- warp 8, 11, 1, -1
- warp 8, 0, 0, LORELEIS_ROOM
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_NURSE, 7, 5, STAY, DOWN, 1 ; person
- object SPRITE_GYM_HELPER, 4, 9, STAY, RIGHT, 2 ; person
- object SPRITE_LASS, 5, 1, STAY, DOWN, 3 ; person
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 4 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 13, 6, STAY, DOWN, 5 ; person
-
- ; warp-to
- warp_to 7, 11, INDIGO_PLATEAU_LOBBY_WIDTH
- warp_to 8, 11, INDIGO_PLATEAU_LOBBY_WIDTH
- warp_to 8, 0, INDIGO_PLATEAU_LOBBY_WIDTH ; LORELEIS_ROOM
--- a/data/mapObjects/LancesRoom.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-LancesRoom_Object:
- db $3 ; border block
-
- db 3 ; warps
- warp 24, 16, 2, AGATHAS_ROOM
- warp 5, 0, 0, CHAMPIONS_ROOM
- warp 6, 0, 0, CHAMPIONS_ROOM
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_LANCE, 6, 1, STAY, DOWN, 1, OPP_LANCE, 1
-
- ; warp-to
- warp_to 24, 16, LANCES_ROOM_WIDTH ; AGATHAS_ROOM
- warp_to 5, 0, LANCES_ROOM_WIDTH ; CHAMPIONS_ROOM
- warp_to 6, 0, LANCES_ROOM_WIDTH ; CHAMPIONS_ROOM
--- a/data/mapObjects/LavenderCuboneHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-LavenderCuboneHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 4, -1
- warp 3, 7, 4, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_SLOWBRO, 3, 5, STAY, UP, 1 ; person
- object SPRITE_BRUNETTE_GIRL, 2, 4, STAY, RIGHT, 2 ; person
-
- ; warp-to
- warp_to 2, 7, LAVENDER_CUBONE_HOUSE_WIDTH
- warp_to 3, 7, LAVENDER_CUBONE_HOUSE_WIDTH
--- a/data/mapObjects/LavenderMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-LavenderMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 3, -1
- warp 4, 7, 3, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_BALDING_GUY, 3, 4, STAY, NONE, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 7, 2, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 3, 7, LAVENDER_MART_WIDTH
- warp_to 4, 7, LAVENDER_MART_WIDTH
--- a/data/mapObjects/LavenderPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-LavenderPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 0, -1
- warp 4, 7, 0, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_GENTLEMAN, 5, 3, STAY, NONE, 2 ; person
- object SPRITE_LITTLE_GIRL, 2, 6, WALK, 1, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, LAVENDER_POKECENTER_WIDTH
- warp_to 4, 7, LAVENDER_POKECENTER_WIDTH
--- a/data/mapObjects/LavenderTown.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-LavenderTown_Object:
- db $2c ; border block
-
- db 6 ; warps
- warp 3, 5, 0, LAVENDER_POKECENTER
- warp 14, 5, 0, POKEMON_TOWER_1F
- warp 7, 9, 0, MR_FUJIS_HOUSE
- warp 15, 13, 0, LAVENDER_MART
- warp 3, 13, 0, LAVENDER_CUBONE_HOUSE
- warp 7, 13, 0, NAME_RATERS_HOUSE
-
- db 6 ; signs
- sign 11, 9, 4 ; LavenderTownText4
- sign 9, 3, 5 ; LavenderTownText5
- sign 16, 13, 6 ; MartSignText
- sign 4, 5, 7 ; PokeCenterSignText
- sign 5, 9, 8 ; LavenderTownText8
- sign 17, 7, 9 ; LavenderTownText9
-
- db 3 ; objects
- object SPRITE_LITTLE_GIRL, 15, 9, WALK, 0, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 9, 10, STAY, NONE, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 8, 7, WALK, 2, 3 ; person
-
- ; warp-to
- warp_to 3, 5, LAVENDER_TOWN_WIDTH ; LAVENDER_POKECENTER
- warp_to 14, 5, LAVENDER_TOWN_WIDTH ; POKEMON_TOWER_1F
- warp_to 7, 9, LAVENDER_TOWN_WIDTH ; MR_FUJIS_HOUSE
- warp_to 15, 13, LAVENDER_TOWN_WIDTH ; LAVENDER_MART
- warp_to 3, 13, LAVENDER_TOWN_WIDTH ; LAVENDER_CUBONE_HOUSE
- warp_to 7, 13, LAVENDER_TOWN_WIDTH ; NAME_RATERS_HOUSE
--- a/data/mapObjects/LoreleisRoom.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-LoreleisRoom_Object:
- db $3 ; border block
-
- db 4 ; warps
- warp 4, 11, 2, INDIGO_PLATEAU_LOBBY
- warp 5, 11, 2, INDIGO_PLATEAU_LOBBY
- warp 4, 0, 0, BRUNOS_ROOM
- warp 5, 0, 1, BRUNOS_ROOM
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_LORELEI, 5, 2, STAY, DOWN, 1, OPP_LORELEI, 1
-
- ; warp-to
- warp_to 4, 11, LORELEIS_ROOM_WIDTH ; INDIGO_PLATEAU_LOBBY
- warp_to 5, 11, LORELEIS_ROOM_WIDTH ; INDIGO_PLATEAU_LOBBY
- warp_to 4, 0, LORELEIS_ROOM_WIDTH ; BRUNOS_ROOM
- warp_to 5, 0, LORELEIS_ROOM_WIDTH ; BRUNOS_ROOM
--- a/data/mapObjects/MrFujisHouse.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-MrFujisHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 2, -1
- warp 3, 7, 2, -1
-
- db 0 ; signs
-
- db 6 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 3, 5, STAY, NONE, 1 ; person
- object SPRITE_LITTLE_GIRL, 6, 3, STAY, DOWN, 2 ; person
- object SPRITE_SLOWBRO, 6, 4, STAY, UP, 3 ; person
- object SPRITE_SLOWBRO, 1, 3, STAY, NONE, 4 ; person
- object SPRITE_MR_FUJI, 3, 1, STAY, NONE, 5 ; person
- object SPRITE_BOOK_MAP_DEX, 3, 3, STAY, NONE, 6 ; person
-
- ; warp-to
- warp_to 2, 7, MR_FUJIS_HOUSE_WIDTH
- warp_to 3, 7, MR_FUJIS_HOUSE_WIDTH
--- a/data/mapObjects/MrPsychicsHouse.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-MrPsychicsHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 7, -1
- warp 3, 7, 7, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FISHER, 5, 3, STAY, LEFT, 1 ; person
-
- ; warp-to
- warp_to 2, 7, MR_PSYCHICS_HOUSE_WIDTH
- warp_to 3, 7, MR_PSYCHICS_HOUSE_WIDTH
--- a/data/mapObjects/MtMoon1F.asm
+++ /dev/null
@@ -1,34 +1,0 @@
-MtMoon1F_Object:
- db $3 ; border block
-
- db 5 ; warps
- warp 14, 35, 1, -1
- warp 15, 35, 1, -1
- warp 5, 5, 0, MT_MOON_B1F
- warp 17, 11, 2, MT_MOON_B1F
- warp 25, 15, 3, MT_MOON_B1F
-
- db 1 ; signs
- sign 15, 23, 14 ; MtMoon1Text14
-
- db 13 ; objects
- object SPRITE_HIKER, 5, 6, STAY, DOWN, 1, OPP_HIKER, 1
- object SPRITE_BUG_CATCHER, 12, 16, STAY, RIGHT, 2, OPP_YOUNGSTER, 3
- object SPRITE_LASS, 30, 4, STAY, DOWN, 3, OPP_LASS, 5
- object SPRITE_BLACK_HAIR_BOY_2, 24, 31, STAY, UP, 4, OPP_SUPER_NERD, 1
- object SPRITE_LASS, 16, 23, STAY, DOWN, 5, OPP_LASS, 6
- object SPRITE_BUG_CATCHER, 7, 22, STAY, DOWN, 6, OPP_BUG_CATCHER, 7
- object SPRITE_BUG_CATCHER, 30, 27, STAY, RIGHT, 7, OPP_BUG_CATCHER, 8
- object SPRITE_BALL, 2, 20, STAY, NONE, 8, POTION
- object SPRITE_BALL, 2, 2, STAY, NONE, 9, MOON_STONE
- object SPRITE_BALL, 35, 31, STAY, NONE, 10, RARE_CANDY
- object SPRITE_BALL, 36, 23, STAY, NONE, 11, ESCAPE_ROPE
- object SPRITE_BALL, 20, 33, STAY, NONE, 12, POTION
- object SPRITE_BALL, 5, 32, STAY, NONE, 13, TM_12
-
- ; warp-to
- warp_to 14, 35, MT_MOON_1F_WIDTH
- warp_to 15, 35, MT_MOON_1F_WIDTH
- warp_to 5, 5, MT_MOON_1F_WIDTH ; MT_MOON_B1F
- warp_to 17, 11, MT_MOON_1F_WIDTH ; MT_MOON_B1F
- warp_to 25, 15, MT_MOON_1F_WIDTH ; MT_MOON_B1F
--- a/data/mapObjects/MtMoonB1F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-MtMoonB1F_Object:
- db $3 ; border block
-
- db 8 ; warps
- warp 5, 5, 2, MT_MOON_1F
- warp 17, 11, 0, MT_MOON_B2F
- warp 25, 9, 3, MT_MOON_1F
- warp 25, 15, 4, MT_MOON_1F
- warp 21, 17, 1, MT_MOON_B2F
- warp 13, 27, 2, MT_MOON_B2F
- warp 23, 3, 3, MT_MOON_B2F
- warp 27, 3, 2, -1
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 5, 5, MT_MOON_B1F_WIDTH ; MT_MOON_1F
- warp_to 17, 11, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
- warp_to 25, 9, MT_MOON_B1F_WIDTH ; MT_MOON_1F
- warp_to 25, 15, MT_MOON_B1F_WIDTH ; MT_MOON_1F
- warp_to 21, 17, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
- warp_to 13, 27, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
- warp_to 23, 3, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
- warp_to 27, 3, MT_MOON_B1F_WIDTH
--- a/data/mapObjects/MtMoonB2F.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-MtMoonB2F_Object:
- db $3 ; border block
-
- db 4 ; warps
- warp 25, 9, 1, MT_MOON_B1F
- warp 21, 17, 4, MT_MOON_B1F
- warp 15, 27, 5, MT_MOON_B1F
- warp 5, 7, 6, MT_MOON_B1F
-
- db 0 ; signs
-
- db 9 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 12, 8, STAY, RIGHT, 1, OPP_SUPER_NERD, 2
- object SPRITE_ROCKET, 11, 16, STAY, DOWN, 2, OPP_ROCKET, 1
- object SPRITE_ROCKET, 15, 22, STAY, DOWN, 3, OPP_ROCKET, 2
- object SPRITE_ROCKET, 29, 11, STAY, UP, 4, OPP_ROCKET, 3
- object SPRITE_ROCKET, 29, 17, STAY, LEFT, 5, OPP_ROCKET, 4
- object SPRITE_OMANYTE, 12, 6, STAY, NONE, 6 ; person
- object SPRITE_OMANYTE, 13, 6, STAY, NONE, 7 ; person
- object SPRITE_BALL, 25, 21, STAY, NONE, 8, HP_UP
- object SPRITE_BALL, 29, 5, STAY, NONE, 9, TM_01
-
- ; warp-to
- warp_to 25, 9, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
- warp_to 21, 17, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
- warp_to 15, 27, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
- warp_to 5, 7, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
--- a/data/mapObjects/MtMoonPokecenter.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-MtMoonPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 0, -1
- warp 4, 7, 0, -1
-
- db 0 ; signs
-
- db 6 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_BUG_CATCHER, 4, 3, STAY, UP, 2 ; person
- object SPRITE_GENTLEMAN, 7, 3, STAY, UP, 3 ; person
- object SPRITE_FAT_BALD_GUY, 10, 6, WALK, 2, 4 ; person
- object SPRITE_CLIPBOARD, 7, 2, STAY, NONE, 5 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 6 ; person
-
- ; warp-to
- warp_to 3, 7, MT_MOON_POKECENTER_WIDTH
- warp_to 4, 7, MT_MOON_POKECENTER_WIDTH
--- a/data/mapObjects/Museum1F.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-Museum1F_Object:
- db $a ; border block
-
- db 5 ; warps
- warp 10, 7, 0, -1
- warp 11, 7, 0, -1
- warp 16, 7, 1, -1
- warp 17, 7, 1, -1
- warp 7, 7, 0, MUSEUM_2F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_OAK_AIDE, 12, 4, STAY, LEFT, 1 ; person
- object SPRITE_GAMBLER, 1, 4, STAY, NONE, 2 ; person
- object SPRITE_OAK_AIDE, 15, 2, STAY, DOWN, 3 ; person
- object SPRITE_OAK_AIDE, 17, 4, STAY, NONE, 4 ; person
- object SPRITE_OLD_AMBER, 16, 2, STAY, NONE, 5 ; person
-
- ; warp-to
- warp_to 10, 7, MUSEUM_1F_WIDTH
- warp_to 11, 7, MUSEUM_1F_WIDTH
- warp_to 16, 7, MUSEUM_1F_WIDTH
- warp_to 17, 7, MUSEUM_1F_WIDTH
- warp_to 7, 7, MUSEUM_1F_WIDTH ; MUSEUM_2F
--- a/data/mapObjects/Museum2F.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Museum2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 7, 4, MUSEUM_1F
-
- db 2 ; signs
- sign 11, 2, 6 ; Museum2FText6
- sign 2, 5, 7 ; Museum2FText7
-
- db 5 ; objects
- object SPRITE_BUG_CATCHER, 1, 7, WALK, 2, 1 ; person
- object SPRITE_OLD_PERSON, 0, 5, STAY, DOWN, 2 ; person
- object SPRITE_OAK_AIDE, 7, 5, STAY, DOWN, 3 ; person
- object SPRITE_BRUNETTE_GIRL, 11, 5, STAY, NONE, 4 ; person
- object SPRITE_HIKER, 12, 5, STAY, DOWN, 5 ; person
-
- ; warp-to
- warp_to 7, 7, MUSEUM_2F_WIDTH ; MUSEUM_1F
--- a/data/mapObjects/NameRatersHouse.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-NameRatersHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 5, -1
- warp 3, 7, 5, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_MR_MASTERBALL, 5, 3, STAY, LEFT, 1 ; person
-
- ; warp-to
- warp_to 2, 7, NAME_RATERS_HOUSE_WIDTH
- warp_to 3, 7, NAME_RATERS_HOUSE_WIDTH
--- a/data/mapObjects/OaksLab.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-OaksLab_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 11, 2, -1
- warp 5, 11, 2, -1
-
- db 0 ; signs
-
- db 11 ; objects
- object SPRITE_BLUE, 4, 3, STAY, NONE, 1, OPP_SONY1, 1
- object SPRITE_BALL, 6, 3, STAY, NONE, 2 ; person
- object SPRITE_BALL, 7, 3, STAY, NONE, 3 ; person
- object SPRITE_BALL, 8, 3, STAY, NONE, 4 ; person
- object SPRITE_OAK, 5, 2, STAY, DOWN, 5 ; person
- object SPRITE_BOOK_MAP_DEX, 2, 1, STAY, NONE, 6 ; person
- object SPRITE_BOOK_MAP_DEX, 3, 1, STAY, NONE, 7 ; person
- object SPRITE_OAK, 5, 10, STAY, UP, 8 ; person
- object SPRITE_GIRL, 1, 9, WALK, 1, 9 ; person
- object SPRITE_OAK_AIDE, 2, 10, STAY, NONE, 10 ; person
- object SPRITE_OAK_AIDE, 8, 10, STAY, NONE, 11 ; person
-
- ; warp-to
- warp_to 4, 11, OAKS_LAB_WIDTH
- warp_to 5, 11, OAKS_LAB_WIDTH
--- a/data/mapObjects/PalletTown.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-PalletTown_Object:
- db $b ; border block
-
- db 3 ; warps
- warp 5, 5, 0, REDS_HOUSE_1F
- warp 13, 5, 0, BLUES_HOUSE
- warp 12, 11, 1, OAKS_LAB
-
- db 4 ; signs
- sign 13, 13, 4 ; PalletTownText4
- sign 7, 9, 5 ; PalletTownText5
- sign 3, 5, 6 ; PalletTownText6
- sign 11, 5, 7 ; PalletTownText7
-
- db 3 ; objects
- object SPRITE_OAK, 8, 5, STAY, NONE, 1 ; person
- object SPRITE_GIRL, 3, 8, WALK, 0, 2 ; person
- object SPRITE_FISHER2, 11, 14, WALK, 0, 3 ; person
-
- ; warp-to
- warp_to 5, 5, PALLET_TOWN_WIDTH ; REDS_HOUSE_1F
- warp_to 13, 5, PALLET_TOWN_WIDTH ; BLUES_HOUSE
- warp_to 12, 11, PALLET_TOWN_WIDTH ; OAKS_LAB
--- a/data/mapObjects/PewterCity.asm
+++ /dev/null
@@ -1,36 +1,0 @@
-PewterCity_Object:
- db $a ; border block
-
- db 7 ; warps
- warp 14, 7, 0, MUSEUM_1F
- warp 19, 5, 2, MUSEUM_1F
- warp 16, 17, 0, PEWTER_GYM
- warp 29, 13, 0, PEWTER_NIDORAN_HOUSE
- warp 23, 17, 0, PEWTER_MART
- warp 7, 29, 0, PEWTER_SPEECH_HOUSE
- warp 13, 25, 0, PEWTER_POKECENTER
-
- db 7 ; signs
- sign 19, 29, 6 ; PewterCityText6
- sign 33, 19, 7 ; PewterCityText7
- sign 24, 17, 8 ; MartSignText
- sign 14, 25, 9 ; PokeCenterSignText
- sign 15, 9, 10 ; PewterCityText10
- sign 11, 17, 11 ; PewterCityText11
- sign 25, 23, 12 ; PewterCityText12
-
- db 5 ; objects
- object SPRITE_LASS, 8, 15, STAY, NONE, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 17, 25, STAY, NONE, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 27, 17, STAY, NONE, 3 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 26, 25, WALK, 2, 4 ; person
- object SPRITE_BUG_CATCHER, 35, 16, STAY, DOWN, 5 ; person
-
- ; warp-to
- warp_to 14, 7, PEWTER_CITY_WIDTH ; MUSEUM_1F
- warp_to 19, 5, PEWTER_CITY_WIDTH ; MUSEUM_1F
- warp_to 16, 17, PEWTER_CITY_WIDTH ; PEWTER_GYM
- warp_to 29, 13, PEWTER_CITY_WIDTH ; PEWTER_NIDORAN_HOUSE
- warp_to 23, 17, PEWTER_CITY_WIDTH ; PEWTER_MART
- warp_to 7, 29, PEWTER_CITY_WIDTH ; PEWTER_SPEECH_HOUSE
- warp_to 13, 25, PEWTER_CITY_WIDTH ; PEWTER_POKECENTER
--- a/data/mapObjects/PewterGym.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-PewterGym_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 13, 2, -1
- warp 5, 13, 2, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 4, 1, STAY, DOWN, 1, OPP_BROCK, 1
- object SPRITE_BLACK_HAIR_BOY_1, 3, 6, STAY, RIGHT, 2, OPP_JR_TRAINER_M, 1
- object SPRITE_GYM_HELPER, 7, 10, STAY, DOWN, 3 ; person
-
- ; warp-to
- warp_to 4, 13, PEWTER_GYM_WIDTH
- warp_to 5, 13, PEWTER_GYM_WIDTH
--- a/data/mapObjects/PewterMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-PewterMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 4, -1
- warp 4, 7, 4, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_BUG_CATCHER, 3, 3, WALK, 1, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 5, 5, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 3, 7, PEWTER_MART_WIDTH
- warp_to 4, 7, PEWTER_MART_WIDTH
--- a/data/mapObjects/PewterNidoranHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-PewterNidoranHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 3, -1
- warp 3, 7, 3, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_SLOWBRO, 4, 5, STAY, LEFT, 1 ; person
- object SPRITE_YOUNG_BOY, 3, 5, STAY, RIGHT, 2 ; person
- object SPRITE_FAT_BALD_GUY, 1, 2, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 2, 7, PEWTER_NIDORAN_HOUSE_WIDTH
- warp_to 3, 7, PEWTER_NIDORAN_HOUSE_WIDTH
--- a/data/mapObjects/PewterPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-PewterPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 6, -1
- warp 4, 7, 6, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_GENTLEMAN, 11, 7, STAY, LEFT, 2 ; person
- object SPRITE_CLEFAIRY, 1, 3, STAY, DOWN, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, PEWTER_POKECENTER_WIDTH
- warp_to 4, 7, PEWTER_POKECENTER_WIDTH
--- a/data/mapObjects/PewterSpeechHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-PewterSpeechHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 5, -1
- warp 3, 7, 5, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_GAMBLER, 2, 3, STAY, RIGHT, 1 ; person
- object SPRITE_BUG_CATCHER, 4, 5, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 2, 7, PEWTER_SPEECH_HOUSE_WIDTH
- warp_to 3, 7, PEWTER_SPEECH_HOUSE_WIDTH
--- a/data/mapObjects/PokemonFanClub.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-PokemonFanClub_Object:
- db $d ; border block
-
- db 2 ; warps
- warp 2, 7, 1, -1
- warp 3, 7, 1, -1
-
- db 2 ; signs
- sign 1, 0, 7 ; FanClubText7
- sign 6, 0, 8 ; FanClubText8
-
- db 6 ; objects
- object SPRITE_FISHER2, 6, 3, STAY, LEFT, 1 ; person
- object SPRITE_GIRL, 1, 3, STAY, RIGHT, 2 ; person
- object SPRITE_CLEFAIRY, 6, 4, STAY, LEFT, 3 ; person
- object SPRITE_SEEL, 1, 4, STAY, RIGHT, 4 ; person
- object SPRITE_GENTLEMAN, 3, 1, STAY, DOWN, 5 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 5, 1, STAY, DOWN, 6 ; person
-
- ; warp-to
- warp_to 2, 7, POKEMON_FAN_CLUB_WIDTH
- warp_to 3, 7, POKEMON_FAN_CLUB_WIDTH
--- a/data/mapObjects/PokemonMansion1F.asm
+++ /dev/null
@@ -1,29 +1,0 @@
-PokemonMansion1F_Object:
- db $2e ; border block
-
- db 8 ; warps
- warp 4, 27, 0, -1
- warp 5, 27, 0, -1
- warp 6, 27, 0, -1
- warp 7, 27, 0, -1
- warp 5, 10, 0, POKEMON_MANSION_2F
- warp 21, 23, 0, POKEMON_MANSION_B1F
- warp 26, 27, 0, -1
- warp 27, 27, 0, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_OAK_AIDE, 17, 17, STAY, LEFT, 1, OPP_SCIENTIST, 4
- object SPRITE_BALL, 14, 3, STAY, NONE, 2, ESCAPE_ROPE
- object SPRITE_BALL, 18, 21, STAY, NONE, 3, CARBOS
-
- ; warp-to
- warp_to 4, 27, POKEMON_MANSION_1F_WIDTH
- warp_to 5, 27, POKEMON_MANSION_1F_WIDTH
- warp_to 6, 27, POKEMON_MANSION_1F_WIDTH
- warp_to 7, 27, POKEMON_MANSION_1F_WIDTH
- warp_to 5, 10, POKEMON_MANSION_1F_WIDTH ; POKEMON_MANSION_2F
- warp_to 21, 23, POKEMON_MANSION_1F_WIDTH ; POKEMON_MANSION_B1F
- warp_to 26, 27, POKEMON_MANSION_1F_WIDTH
- warp_to 27, 27, POKEMON_MANSION_1F_WIDTH
--- a/data/mapObjects/PokemonMansion2F.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-PokemonMansion2F_Object:
- db $1 ; border block
-
- db 4 ; warps
- warp 5, 10, 4, POKEMON_MANSION_1F
- warp 7, 10, 0, POKEMON_MANSION_3F
- warp 25, 14, 2, POKEMON_MANSION_3F
- warp 6, 1, 1, POKEMON_MANSION_3F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 3, 17, WALK, 2, 1, OPP_BURGLAR, 7
- object SPRITE_BALL, 28, 7, STAY, NONE, 2, CALCIUM
- object SPRITE_BOOK_MAP_DEX, 18, 2, STAY, NONE, 3 ; person
- object SPRITE_BOOK_MAP_DEX, 3, 22, STAY, NONE, 4 ; person
-
- ; warp-to
- warp_to 5, 10, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_1F
- warp_to 7, 10, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_3F
- warp_to 25, 14, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_3F
- warp_to 6, 1, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_3F
--- a/data/mapObjects/PokemonMansion3F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-PokemonMansion3F_Object:
- db $1 ; border block
-
- db 3 ; warps
- warp 7, 10, 1, POKEMON_MANSION_2F
- warp 6, 1, 3, POKEMON_MANSION_2F
- warp 25, 14, 2, POKEMON_MANSION_2F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 5, 11, WALK, 2, 1, OPP_BURGLAR, 8
- object SPRITE_OAK_AIDE, 20, 11, STAY, LEFT, 2, OPP_SCIENTIST, 12
- object SPRITE_BALL, 1, 16, STAY, NONE, 3, MAX_POTION
- object SPRITE_BALL, 25, 5, STAY, NONE, 4, IRON
- object SPRITE_BOOK_MAP_DEX, 6, 12, STAY, NONE, 5 ; person
-
- ; warp-to
- warp_to 7, 10, POKEMON_MANSION_3F_WIDTH ; POKEMON_MANSION_2F
- warp_to 6, 1, POKEMON_MANSION_3F_WIDTH ; POKEMON_MANSION_2F
- warp_to 25, 14, POKEMON_MANSION_3F_WIDTH ; POKEMON_MANSION_2F
--- a/data/mapObjects/PokemonMansionB1F.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-PokemonMansionB1F_Object:
- db $1 ; border block
-
- db 1 ; warps
- warp 23, 22, 5, POKEMON_MANSION_1F
-
- db 0 ; signs
-
- db 8 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 16, 23, STAY, NONE, 1, OPP_BURGLAR, 9
- object SPRITE_OAK_AIDE, 27, 11, STAY, DOWN, 2, OPP_SCIENTIST, 13
- object SPRITE_BALL, 10, 2, STAY, NONE, 3, RARE_CANDY
- object SPRITE_BALL, 1, 22, STAY, NONE, 4, FULL_RESTORE
- object SPRITE_BALL, 19, 25, STAY, NONE, 5, TM_14
- object SPRITE_BALL, 5, 4, STAY, NONE, 6, TM_22
- object SPRITE_BOOK_MAP_DEX, 16, 20, STAY, NONE, 7 ; person
- object SPRITE_BALL, 5, 13, STAY, NONE, 8, SECRET_KEY
-
- ; warp-to
- warp_to 23, 22, POKEMON_MANSION_B1F_WIDTH ; POKEMON_MANSION_1F
--- a/data/mapObjects/PokemonTower1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-PokemonTower1F_Object:
- db $1 ; border block
-
- db 3 ; warps
- warp 10, 17, 1, -1
- warp 11, 17, 1, -1
- warp 18, 9, 1, POKEMON_TOWER_2F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_CABLE_CLUB_WOMAN, 15, 13, STAY, UP, 1 ; person
- object SPRITE_MOM_GEISHA, 6, 8, STAY, NONE, 2 ; person
- object SPRITE_BALDING_GUY, 8, 12, STAY, NONE, 3 ; person
- object SPRITE_GIRL, 13, 7, STAY, NONE, 4 ; person
- object SPRITE_MEDIUM, 17, 7, STAY, LEFT, 5 ; person
-
- ; warp-to
- warp_to 10, 17, POKEMON_TOWER_1F_WIDTH
- warp_to 11, 17, POKEMON_TOWER_1F_WIDTH
- warp_to 18, 9, POKEMON_TOWER_1F_WIDTH ; POKEMON_TOWER_2F
--- a/data/mapObjects/PokemonTower2F.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-PokemonTower2F_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 3, 9, 0, POKEMON_TOWER_3F
- warp 18, 9, 2, POKEMON_TOWER_1F
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BLUE, 14, 5, STAY, NONE, 1 ; person
- object SPRITE_MEDIUM, 3, 7, STAY, RIGHT, 2 ; person
-
- ; warp-to
- warp_to 3, 9, POKEMON_TOWER_2F_WIDTH ; POKEMON_TOWER_3F
- warp_to 18, 9, POKEMON_TOWER_2F_WIDTH ; POKEMON_TOWER_1F
--- a/data/mapObjects/PokemonTower3F.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-PokemonTower3F_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 3, 9, 0, POKEMON_TOWER_2F
- warp 18, 9, 1, POKEMON_TOWER_4F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_MEDIUM, 12, 3, STAY, LEFT, 1, OPP_CHANNELER, 5
- object SPRITE_MEDIUM, 9, 8, STAY, DOWN, 2, OPP_CHANNELER, 6
- object SPRITE_MEDIUM, 10, 13, STAY, DOWN, 3, OPP_CHANNELER, 8
- object SPRITE_BALL, 12, 1, STAY, NONE, 4, ESCAPE_ROPE
-
- ; warp-to
- warp_to 3, 9, POKEMON_TOWER_3F_WIDTH ; POKEMON_TOWER_2F
- warp_to 18, 9, POKEMON_TOWER_3F_WIDTH ; POKEMON_TOWER_4F
--- a/data/mapObjects/PokemonTower4F.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-PokemonTower4F_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 3, 9, 0, POKEMON_TOWER_5F
- warp 18, 9, 1, POKEMON_TOWER_3F
-
- db 0 ; signs
-
- db 6 ; objects
- object SPRITE_MEDIUM, 5, 10, STAY, RIGHT, 1, OPP_CHANNELER, 9
- object SPRITE_MEDIUM, 15, 7, STAY, DOWN, 2, OPP_CHANNELER, 10
- object SPRITE_MEDIUM, 14, 12, STAY, LEFT, 3, OPP_CHANNELER, 12
- object SPRITE_BALL, 12, 10, STAY, NONE, 4, ELIXER
- object SPRITE_BALL, 9, 10, STAY, NONE, 5, AWAKENING
- object SPRITE_BALL, 12, 16, STAY, NONE, 6, HP_UP
-
- ; warp-to
- warp_to 3, 9, POKEMON_TOWER_4F_WIDTH ; POKEMON_TOWER_5F
- warp_to 18, 9, POKEMON_TOWER_4F_WIDTH ; POKEMON_TOWER_3F
--- a/data/mapObjects/PokemonTower5F.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-PokemonTower5F_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 3, 9, 0, POKEMON_TOWER_4F
- warp 18, 9, 0, POKEMON_TOWER_6F
-
- db 0 ; signs
-
- db 6 ; objects
- object SPRITE_MEDIUM, 12, 8, STAY, NONE, 1 ; person
- object SPRITE_MEDIUM, 17, 7, STAY, LEFT, 2, OPP_CHANNELER, 14
- object SPRITE_MEDIUM, 14, 3, STAY, LEFT, 3, OPP_CHANNELER, 16
- object SPRITE_MEDIUM, 6, 10, STAY, RIGHT, 4, OPP_CHANNELER, 17
- object SPRITE_MEDIUM, 9, 16, STAY, RIGHT, 5, OPP_CHANNELER, 18
- object SPRITE_BALL, 6, 14, STAY, NONE, 6, NUGGET
-
- ; warp-to
- warp_to 3, 9, POKEMON_TOWER_5F_WIDTH ; POKEMON_TOWER_4F
- warp_to 18, 9, POKEMON_TOWER_5F_WIDTH ; POKEMON_TOWER_6F
--- a/data/mapObjects/PokemonTower6F.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-PokemonTower6F_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 18, 9, 1, POKEMON_TOWER_5F
- warp 9, 16, 0, POKEMON_TOWER_7F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_MEDIUM, 12, 10, STAY, RIGHT, 1, OPP_CHANNELER, 19
- object SPRITE_MEDIUM, 9, 5, STAY, DOWN, 2, OPP_CHANNELER, 20
- object SPRITE_MEDIUM, 16, 5, STAY, LEFT, 3, OPP_CHANNELER, 21
- object SPRITE_BALL, 6, 8, STAY, NONE, 4, RARE_CANDY
- object SPRITE_BALL, 14, 14, STAY, NONE, 5, X_ACCURACY
-
- ; warp-to
- warp_to 18, 9, POKEMON_TOWER_6F_WIDTH ; POKEMON_TOWER_5F
- warp_to 9, 16, POKEMON_TOWER_6F_WIDTH ; POKEMON_TOWER_7F
--- a/data/mapObjects/PokemonTower7F.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-PokemonTower7F_Object:
- db $1 ; border block
-
- db 1 ; warps
- warp 9, 16, 1, POKEMON_TOWER_6F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_ROCKET, 9, 11, STAY, RIGHT, 1, OPP_ROCKET, 19
- object SPRITE_ROCKET, 12, 9, STAY, LEFT, 2, OPP_ROCKET, 20
- object SPRITE_ROCKET, 9, 7, STAY, RIGHT, 3, OPP_ROCKET, 21
- object SPRITE_MR_FUJI, 10, 3, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 9, 16, POKEMON_TOWER_7F_WIDTH ; POKEMON_TOWER_6F
--- a/data/mapObjects/PowerPlant.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-PowerPlant_Object:
- db $2e ; border block
-
- db 3 ; warps
- warp 4, 35, 3, -1
- warp 5, 35, 3, -1
- warp 0, 11, 3, -1
-
- db 0 ; signs
-
- db 14 ; objects
- object SPRITE_BALL, 9, 20, STAY, NONE, 1, VOLTORB, 40
- object SPRITE_BALL, 32, 18, STAY, NONE, 2, VOLTORB, 40
- object SPRITE_BALL, 21, 25, STAY, NONE, 3, VOLTORB, 40
- object SPRITE_BALL, 25, 18, STAY, NONE, 4, ELECTRODE, 43
- object SPRITE_BALL, 23, 34, STAY, NONE, 5, VOLTORB, 40
- object SPRITE_BALL, 26, 28, STAY, NONE, 6, VOLTORB, 40
- object SPRITE_BALL, 21, 14, STAY, NONE, 7, ELECTRODE, 43
- object SPRITE_BALL, 37, 32, STAY, NONE, 8, VOLTORB, 40
- object SPRITE_BIRD, 4, 9, STAY, UP, 9, ZAPDOS, 50
- object SPRITE_BALL, 7, 25, STAY, NONE, 10, CARBOS
- object SPRITE_BALL, 28, 3, STAY, NONE, 11, HP_UP
- object SPRITE_BALL, 34, 3, STAY, NONE, 12, RARE_CANDY
- object SPRITE_BALL, 26, 32, STAY, NONE, 13, TM_25
- object SPRITE_BALL, 20, 32, STAY, NONE, 14, TM_33
-
- ; warp-to
- warp_to 4, 35, POWER_PLANT_WIDTH
- warp_to 5, 35, POWER_PLANT_WIDTH
- warp_to 0, 11, POWER_PLANT_WIDTH
--- a/data/mapObjects/RedsHouse1F.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-RedsHouse1F_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 2, 7, 0, -1 ; exit1
- warp 3, 7, 0, -1 ; exit2
- warp 7, 1, 0, REDS_HOUSE_2F ; staircase
-
- db 1 ; signs
- sign 3, 1, 2 ; TV
-
- db 1 ; objects
- object SPRITE_MOM, 5, 4, STAY, LEFT, 1 ; Mom
-
- ; warp-to
- warp_to 2, 7, REDS_HOUSE_1F_WIDTH
- warp_to 3, 7, REDS_HOUSE_1F_WIDTH
- warp_to 7, 1, REDS_HOUSE_1F_WIDTH
--- a/data/mapObjects/RedsHouse2F.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-RedsHouse2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 1, 2, REDS_HOUSE_1F
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 7, 1, REDS_HOUSE_2F_WIDTH
--- a/data/mapObjects/RockTunnel1F.asm
+++ /dev/null
@@ -1,34 +1,0 @@
-RockTunnel1F_Object:
- db $3 ; border block
-
- db 8 ; warps
- warp 15, 3, 1, -1
- warp 15, 0, 1, -1
- warp 15, 33, 2, -1
- warp 15, 35, 2, -1
- warp 37, 3, 0, ROCK_TUNNEL_B1F
- warp 5, 3, 1, ROCK_TUNNEL_B1F
- warp 17, 11, 2, ROCK_TUNNEL_B1F
- warp 37, 17, 3, ROCK_TUNNEL_B1F
-
- db 1 ; signs
- sign 11, 29, 8 ; RockTunnel1Text8
-
- db 7 ; objects
- object SPRITE_HIKER, 7, 5, STAY, DOWN, 1, OPP_HIKER, 12
- object SPRITE_HIKER, 5, 16, STAY, DOWN, 2, OPP_HIKER, 13
- object SPRITE_HIKER, 17, 15, STAY, LEFT, 3, OPP_HIKER, 14
- object SPRITE_BLACK_HAIR_BOY_2, 23, 8, STAY, LEFT, 4, OPP_POKEMANIAC, 7
- object SPRITE_LASS, 37, 21, STAY, LEFT, 5, OPP_JR_TRAINER_F, 17
- object SPRITE_LASS, 22, 24, STAY, DOWN, 6, OPP_JR_TRAINER_F, 18
- object SPRITE_LASS, 32, 24, STAY, RIGHT, 7, OPP_JR_TRAINER_F, 19
-
- ; warp-to
- warp_to 15, 3, ROCK_TUNNEL_1F_WIDTH
- warp_to 15, 0, ROCK_TUNNEL_1F_WIDTH
- warp_to 15, 33, ROCK_TUNNEL_1F_WIDTH
- warp_to 15, 35, ROCK_TUNNEL_1F_WIDTH
- warp_to 37, 3, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
- warp_to 5, 3, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
- warp_to 17, 11, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
- warp_to 37, 17, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
--- a/data/mapObjects/RockTunnelB1F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-RockTunnelB1F_Object:
- db $3 ; border block
-
- db 4 ; warps
- warp 33, 25, 4, ROCK_TUNNEL_1F
- warp 27, 3, 5, ROCK_TUNNEL_1F
- warp 23, 11, 6, ROCK_TUNNEL_1F
- warp 3, 3, 7, ROCK_TUNNEL_1F
-
- db 0 ; signs
-
- db 8 ; objects
- object SPRITE_LASS, 11, 13, STAY, DOWN, 1, OPP_JR_TRAINER_F, 9
- object SPRITE_HIKER, 6, 10, STAY, DOWN, 2, OPP_HIKER, 9
- object SPRITE_BLACK_HAIR_BOY_2, 3, 5, STAY, DOWN, 3, OPP_POKEMANIAC, 3
- object SPRITE_BLACK_HAIR_BOY_2, 20, 21, STAY, RIGHT, 4, OPP_POKEMANIAC, 4
- object SPRITE_HIKER, 30, 10, STAY, DOWN, 5, OPP_HIKER, 10
- object SPRITE_LASS, 14, 28, STAY, RIGHT, 6, OPP_JR_TRAINER_F, 10
- object SPRITE_HIKER, 33, 5, STAY, RIGHT, 7, OPP_HIKER, 11
- object SPRITE_BLACK_HAIR_BOY_2, 26, 30, STAY, DOWN, 8, OPP_POKEMANIAC, 5
-
- ; warp-to
- warp_to 33, 25, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
- warp_to 27, 3, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
- warp_to 23, 11, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
- warp_to 3, 3, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
--- a/data/mapObjects/RockTunnelPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-RockTunnelPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 0, -1
- warp 4, 7, 0, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_GENTLEMAN, 7, 3, WALK, 2, 2 ; person
- object SPRITE_FISHER2, 2, 5, STAY, NONE, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, ROCK_TUNNEL_POKECENTER_WIDTH
- warp_to 4, 7, ROCK_TUNNEL_POKECENTER_WIDTH
--- a/data/mapObjects/RocketHideoutB1F.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-RocketHideoutB1F_Object:
- db $2e ; border block
-
- db 5 ; warps
- warp 23, 2, 0, ROCKET_HIDEOUT_B2F
- warp 21, 2, 2, GAME_CORNER
- warp 24, 19, 0, ROCKET_HIDEOUT_ELEVATOR
- warp 21, 24, 3, ROCKET_HIDEOUT_B2F
- warp 25, 19, 1, ROCKET_HIDEOUT_ELEVATOR
-
- db 0 ; signs
-
- db 7 ; objects
- object SPRITE_ROCKET, 26, 8, STAY, LEFT, 1, OPP_ROCKET, 8
- object SPRITE_ROCKET, 12, 6, STAY, RIGHT, 2, OPP_ROCKET, 9
- object SPRITE_ROCKET, 18, 17, STAY, DOWN, 3, OPP_ROCKET, 10
- object SPRITE_ROCKET, 15, 25, STAY, RIGHT, 4, OPP_ROCKET, 11
- object SPRITE_ROCKET, 28, 18, STAY, LEFT, 5, OPP_ROCKET, 12
- object SPRITE_BALL, 11, 14, STAY, NONE, 6, ESCAPE_ROPE
- object SPRITE_BALL, 9, 17, STAY, NONE, 7, HYPER_POTION
-
- ; warp-to
- warp_to 23, 2, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_B2F
- warp_to 21, 2, ROCKET_HIDEOUT_B1F_WIDTH ; GAME_CORNER
- warp_to 24, 19, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
- warp_to 21, 24, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_B2F
- warp_to 25, 19, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
--- a/data/mapObjects/RocketHideoutB2F.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-RocketHideoutB2F_Object:
- db $2e ; border block
-
- db 5 ; warps
- warp 27, 8, 0, ROCKET_HIDEOUT_B1F
- warp 21, 8, 0, ROCKET_HIDEOUT_B3F
- warp 24, 19, 0, ROCKET_HIDEOUT_ELEVATOR
- warp 21, 22, 3, ROCKET_HIDEOUT_B1F
- warp 25, 19, 1, ROCKET_HIDEOUT_ELEVATOR
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_ROCKET, 20, 12, STAY, DOWN, 1, OPP_ROCKET, 13
- object SPRITE_BALL, 1, 11, STAY, NONE, 2, MOON_STONE
- object SPRITE_BALL, 16, 8, STAY, NONE, 3, NUGGET
- object SPRITE_BALL, 6, 12, STAY, NONE, 4, TM_07
- object SPRITE_BALL, 3, 21, STAY, NONE, 5, SUPER_POTION
-
- ; warp-to
- warp_to 27, 8, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_B1F
- warp_to 21, 8, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_B3F
- warp_to 24, 19, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
- warp_to 21, 22, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_B1F
- warp_to 25, 19, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
--- a/data/mapObjects/RocketHideoutB3F.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-RocketHideoutB3F_Object:
- db $2e ; border block
-
- db 2 ; warps
- warp 25, 6, 1, ROCKET_HIDEOUT_B2F
- warp 19, 18, 0, ROCKET_HIDEOUT_B4F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_ROCKET, 10, 22, STAY, RIGHT, 1, OPP_ROCKET, 14
- object SPRITE_ROCKET, 26, 12, STAY, UP, 2, OPP_ROCKET, 15
- object SPRITE_BALL, 26, 17, STAY, NONE, 3, TM_10
- object SPRITE_BALL, 20, 14, STAY, NONE, 4, RARE_CANDY
-
- ; warp-to
- warp_to 25, 6, ROCKET_HIDEOUT_B3F_WIDTH ; ROCKET_HIDEOUT_B2F
- warp_to 19, 18, ROCKET_HIDEOUT_B3F_WIDTH ; ROCKET_HIDEOUT_B4F
--- a/data/mapObjects/RocketHideoutB4F.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-RocketHideoutB4F_Object:
- db $2e ; border block
-
- db 3 ; warps
- warp 19, 10, 1, ROCKET_HIDEOUT_B3F
- warp 24, 15, 0, ROCKET_HIDEOUT_ELEVATOR
- warp 25, 15, 1, ROCKET_HIDEOUT_ELEVATOR
-
- db 0 ; signs
-
- db 9 ; objects
- object SPRITE_GIOVANNI, 25, 3, STAY, DOWN, 1, OPP_GIOVANNI, 1
- object SPRITE_ROCKET, 23, 12, STAY, DOWN, 2, OPP_ROCKET, 16
- object SPRITE_ROCKET, 26, 12, STAY, DOWN, 3, OPP_ROCKET, 17
- object SPRITE_ROCKET, 11, 2, STAY, DOWN, 4, OPP_ROCKET, 18
- object SPRITE_BALL, 10, 12, STAY, NONE, 5, HP_UP
- object SPRITE_BALL, 9, 4, STAY, NONE, 6, TM_02
- object SPRITE_BALL, 12, 20, STAY, NONE, 7, IRON
- object SPRITE_BALL, 25, 2, STAY, NONE, 8, SILPH_SCOPE
- object SPRITE_BALL, 10, 2, STAY, NONE, 9, LIFT_KEY
-
- ; warp-to
- warp_to 19, 10, ROCKET_HIDEOUT_B4F_WIDTH ; ROCKET_HIDEOUT_B3F
- warp_to 24, 15, ROCKET_HIDEOUT_B4F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
- warp_to 25, 15, ROCKET_HIDEOUT_B4F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
--- a/data/mapObjects/RocketHideoutElevator.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-RocketHideoutElevator_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 2, 1, 2, ROCKET_HIDEOUT_B1F
- warp 3, 1, 4, ROCKET_HIDEOUT_B1F
-
- db 1 ; signs
- sign 1, 1, 1 ; RocketHideoutElevatorText1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 2, 1, ROCKET_HIDEOUT_ELEVATOR_WIDTH ; ROCKET_HIDEOUT_B1F
- warp_to 3, 1, ROCKET_HIDEOUT_ELEVATOR_WIDTH ; ROCKET_HIDEOUT_B1F
--- a/data/mapObjects/Route1.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-Route1_Object:
- db $b ; border block
-
- db 0 ; warps
-
- db 1 ; signs
- sign 9, 27, 3 ; Route1Text3
-
- db 2 ; objects
- object SPRITE_BUG_CATCHER, 5, 24, WALK, 1, 1 ; person
- object SPRITE_BUG_CATCHER, 15, 13, WALK, 2, 2 ; person
-
- ; warp-to (unused)
- warp_to 2, 7, 4
--- a/data/mapObjects/Route10.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-Route10_Object:
- db $2c ; border block
-
- db 4 ; warps
- warp 11, 19, 0, ROCK_TUNNEL_POKECENTER
- warp 8, 17, 0, ROCK_TUNNEL_1F
- warp 8, 53, 2, ROCK_TUNNEL_1F
- warp 6, 39, 0, POWER_PLANT
-
- db 4 ; signs
- sign 7, 19, 7 ; Route10Text7
- sign 12, 19, 8 ; PokeCenterSignText
- sign 9, 55, 9 ; Route10Text9
- sign 5, 41, 10 ; Route10Text10
-
- db 6 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 10, 44, STAY, LEFT, 1, OPP_POKEMANIAC, 1
- object SPRITE_HIKER, 3, 57, STAY, UP, 2, OPP_HIKER, 7
- object SPRITE_BLACK_HAIR_BOY_2, 14, 64, STAY, LEFT, 3, OPP_POKEMANIAC, 2
- object SPRITE_LASS, 7, 25, STAY, LEFT, 4, OPP_JR_TRAINER_F, 7
- object SPRITE_HIKER, 3, 61, STAY, DOWN, 5, OPP_HIKER, 8
- object SPRITE_LASS, 7, 54, STAY, DOWN, 6, OPP_JR_TRAINER_F, 8
-
- ; warp-to
- warp_to 11, 19, ROUTE_10_WIDTH ; ROCK_TUNNEL_POKECENTER
- warp_to 8, 17, ROUTE_10_WIDTH ; ROCK_TUNNEL_1F
- warp_to 8, 53, ROUTE_10_WIDTH ; ROCK_TUNNEL_1F
- warp_to 6, 39, ROUTE_10_WIDTH ; POWER_PLANT
--- a/data/mapObjects/Route11.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-Route11_Object:
- db $f ; border block
-
- db 5 ; warps
- warp 49, 8, 0, ROUTE_11_GATE_1F
- warp 49, 9, 1, ROUTE_11_GATE_1F
- warp 58, 8, 2, ROUTE_11_GATE_1F
- warp 58, 9, 3, ROUTE_11_GATE_1F
- warp 4, 5, 0, DIGLETTS_CAVE_ROUTE_11
-
- db 1 ; signs
- sign 1, 5, 11 ; Route11Text11
-
- db 10 ; objects
- object SPRITE_GAMBLER, 10, 14, STAY, DOWN, 1, OPP_GAMBLER, 1
- object SPRITE_GAMBLER, 26, 9, STAY, DOWN, 2, OPP_GAMBLER, 2
- object SPRITE_BUG_CATCHER, 13, 5, STAY, LEFT, 3, OPP_YOUNGSTER, 9
- object SPRITE_BLACK_HAIR_BOY_2, 36, 11, STAY, DOWN, 4, OPP_ENGINEER, 2
- object SPRITE_BUG_CATCHER, 22, 4, STAY, UP, 5, OPP_YOUNGSTER, 10
- object SPRITE_GAMBLER, 45, 7, STAY, DOWN, 6, OPP_GAMBLER, 3
- object SPRITE_GAMBLER, 33, 3, STAY, UP, 7, OPP_GAMBLER, 4
- object SPRITE_BUG_CATCHER, 43, 5, STAY, RIGHT, 8, OPP_YOUNGSTER, 11
- object SPRITE_BLACK_HAIR_BOY_2, 45, 16, STAY, LEFT, 9, OPP_ENGINEER, 3
- object SPRITE_BUG_CATCHER, 22, 12, STAY, UP, 10, OPP_YOUNGSTER, 12
-
- ; warp-to
- warp_to 49, 8, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
- warp_to 49, 9, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
- warp_to 58, 8, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
- warp_to 58, 9, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
- warp_to 4, 5, ROUTE_11_WIDTH ; DIGLETTS_CAVE_ROUTE_11
--- a/data/mapObjects/Route11Gate1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route11Gate1F_Object:
- db $a ; border block
-
- db 5 ; warps
- warp 0, 4, 0, -1
- warp 0, 5, 1, -1
- warp 7, 4, 2, -1
- warp 7, 5, 3, -1
- warp 6, 8, 0, ROUTE_11_GATE_2F
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 4, 1, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 0, 4, ROUTE_11_GATE_1F_WIDTH
- warp_to 0, 5, ROUTE_11_GATE_1F_WIDTH
- warp_to 7, 4, ROUTE_11_GATE_1F_WIDTH
- warp_to 7, 5, ROUTE_11_GATE_1F_WIDTH
- warp_to 6, 8, ROUTE_11_GATE_1F_WIDTH ; ROUTE_11_GATE_2F
--- a/data/mapObjects/Route11Gate2F.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-Route11Gate2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 7, 4, ROUTE_11_GATE_1F
-
- db 2 ; signs
- sign 1, 2, 3 ; Route11GateUpstairsText3
- sign 6, 2, 4 ; Route11GateUpstairsText4
-
- db 2 ; objects
- object SPRITE_BUG_CATCHER, 4, 2, WALK, 2, 1 ; person
- object SPRITE_OAK_AIDE, 2, 6, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 7, 7, ROUTE_11_GATE_2F_WIDTH ; ROUTE_11_GATE_1F
--- a/data/mapObjects/Route12.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-Route12_Object:
- db $43 ; border block
-
- db 4 ; warps
- warp 10, 15, 0, ROUTE_12_GATE_1F
- warp 11, 15, 1, ROUTE_12_GATE_1F
- warp 10, 21, 2, ROUTE_12_GATE_1F
- warp 11, 77, 0, ROUTE_12_SUPER_ROD_HOUSE
-
- db 2 ; signs
- sign 13, 13, 11 ; Route12Text11
- sign 11, 63, 12 ; Route12Text12
-
- db 10 ; objects
- object SPRITE_SNORLAX, 10, 62, STAY, DOWN, 1 ; person
- object SPRITE_FISHER2, 14, 31, STAY, LEFT, 2, OPP_FISHER, 3
- object SPRITE_FISHER2, 5, 39, STAY, UP, 3, OPP_FISHER, 4
- object SPRITE_BLACK_HAIR_BOY_1, 11, 92, STAY, LEFT, 4, OPP_JR_TRAINER_M, 9
- object SPRITE_BLACK_HAIR_BOY_2, 14, 76, STAY, UP, 5, OPP_ROCKER, 2
- object SPRITE_FISHER2, 12, 40, STAY, LEFT, 6, OPP_FISHER, 5
- object SPRITE_FISHER2, 9, 52, STAY, RIGHT, 7, OPP_FISHER, 6
- object SPRITE_FISHER2, 6, 87, STAY, DOWN, 8, OPP_FISHER, 11
- object SPRITE_BALL, 14, 35, STAY, NONE, 9, TM_16
- object SPRITE_BALL, 5, 89, STAY, NONE, 10, IRON
-
- ; warp-to
- warp_to 10, 15, ROUTE_12_WIDTH ; ROUTE_12_GATE_1F
- warp_to 11, 15, ROUTE_12_WIDTH ; ROUTE_12_GATE_1F
- warp_to 10, 21, ROUTE_12_WIDTH ; ROUTE_12_GATE_1F
- warp_to 11, 77, ROUTE_12_WIDTH ; ROUTE_12_SUPER_ROD_HOUSE
--- a/data/mapObjects/Route12Gate1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route12Gate1F_Object:
- db $a ; border block
-
- db 5 ; warps
- warp 4, 0, 0, -1
- warp 5, 0, 1, -1
- warp 4, 7, 2, -1
- warp 5, 7, 2, -1
- warp 8, 6, 0, ROUTE_12_GATE_2F
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 1, 3, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 4, 0, ROUTE_12_GATE_1F_WIDTH
- warp_to 5, 0, ROUTE_12_GATE_1F_WIDTH
- warp_to 4, 7, ROUTE_12_GATE_1F_WIDTH
- warp_to 5, 7, ROUTE_12_GATE_1F_WIDTH
- warp_to 8, 6, ROUTE_12_GATE_1F_WIDTH ; ROUTE_12_GATE_2F
--- a/data/mapObjects/Route12Gate2F.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-Route12Gate2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 7, 4, ROUTE_12_GATE_1F
-
- db 2 ; signs
- sign 1, 2, 2 ; Route12GateUpstairsText2
- sign 6, 2, 3 ; Route12GateUpstairsText3
-
- db 1 ; objects
- object SPRITE_BRUNETTE_GIRL, 3, 4, WALK, 1, 1 ; person
-
- ; warp-to
- warp_to 7, 7, ROUTE_12_GATE_2F_WIDTH ; ROUTE_12_GATE_1F
--- a/data/mapObjects/Route12SuperRodHouse.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-Route12SuperRodHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 3, -1
- warp 3, 7, 3, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FISHER, 2, 4, STAY, RIGHT, 1 ; person
-
- ; warp-to
- warp_to 2, 7, ROUTE_12_SUPER_ROD_HOUSE_WIDTH
- warp_to 3, 7, ROUTE_12_SUPER_ROD_HOUSE_WIDTH
--- a/data/mapObjects/Route13.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route13_Object:
- db $43 ; border block
-
- db 0 ; warps
-
- db 3 ; signs
- sign 15, 13, 11 ; Route13Text11
- sign 33, 5, 12 ; Route13Text12
- sign 31, 11, 13 ; Route13Text13
-
- db 10 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 49, 10, STAY, RIGHT, 1, OPP_BIRD_KEEPER, 1
- object SPRITE_LASS, 48, 10, STAY, DOWN, 2, OPP_JR_TRAINER_F, 12
- object SPRITE_LASS, 27, 9, STAY, DOWN, 3, OPP_JR_TRAINER_F, 13
- object SPRITE_LASS, 23, 10, STAY, LEFT, 4, OPP_JR_TRAINER_F, 14
- object SPRITE_LASS, 50, 5, STAY, DOWN, 5, OPP_JR_TRAINER_F, 15
- object SPRITE_BLACK_HAIR_BOY_1, 12, 4, STAY, RIGHT, 6, OPP_BIRD_KEEPER, 2
- object SPRITE_FOULARD_WOMAN, 33, 6, STAY, DOWN, 7, OPP_BEAUTY, 4
- object SPRITE_FOULARD_WOMAN, 32, 6, STAY, DOWN, 8, OPP_BEAUTY, 5
- object SPRITE_BIKER, 10, 7, STAY, UP, 9, OPP_BIKER, 1
- object SPRITE_BLACK_HAIR_BOY_1, 7, 13, STAY, UP, 10, OPP_BIRD_KEEPER, 3
--- a/data/mapObjects/Route14.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route14_Object:
- db $43 ; border block
-
- db 0 ; warps
-
- db 1 ; signs
- sign 17, 13, 11 ; Route14Text11
-
- db 10 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 4, 4, STAY, DOWN, 1, OPP_BIRD_KEEPER, 14
- object SPRITE_BLACK_HAIR_BOY_1, 15, 6, STAY, DOWN, 2, OPP_BIRD_KEEPER, 15
- object SPRITE_BLACK_HAIR_BOY_1, 12, 11, STAY, DOWN, 3, OPP_BIRD_KEEPER, 16
- object SPRITE_BLACK_HAIR_BOY_1, 14, 15, STAY, UP, 4, OPP_BIRD_KEEPER, 17
- object SPRITE_BLACK_HAIR_BOY_1, 15, 31, STAY, LEFT, 5, OPP_BIRD_KEEPER, 4
- object SPRITE_BLACK_HAIR_BOY_1, 6, 49, STAY, UP, 6, OPP_BIRD_KEEPER, 5
- object SPRITE_BIKER, 5, 39, STAY, DOWN, 7, OPP_BIKER, 13
- object SPRITE_BIKER, 4, 30, STAY, RIGHT, 8, OPP_BIKER, 14
- object SPRITE_BIKER, 15, 30, STAY, LEFT, 9, OPP_BIKER, 15
- object SPRITE_BIKER, 4, 31, STAY, RIGHT, 10, OPP_BIKER, 2
--- a/data/mapObjects/Route15.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-Route15_Object:
- db $43 ; border block
-
- db 4 ; warps
- warp 7, 8, 0, ROUTE_15_GATE_1F
- warp 7, 9, 1, ROUTE_15_GATE_1F
- warp 14, 8, 2, ROUTE_15_GATE_1F
- warp 14, 9, 3, ROUTE_15_GATE_1F
-
- db 1 ; signs
- sign 39, 9, 12 ; Route15Text12
-
- db 11 ; objects
- object SPRITE_LASS, 41, 11, STAY, DOWN, 1, OPP_JR_TRAINER_F, 20
- object SPRITE_LASS, 53, 10, STAY, LEFT, 2, OPP_JR_TRAINER_F, 21
- object SPRITE_BLACK_HAIR_BOY_1, 31, 13, STAY, UP, 3, OPP_BIRD_KEEPER, 6
- object SPRITE_BLACK_HAIR_BOY_1, 35, 13, STAY, UP, 4, OPP_BIRD_KEEPER, 7
- object SPRITE_FOULARD_WOMAN, 53, 11, STAY, DOWN, 5, OPP_BEAUTY, 9
- object SPRITE_FOULARD_WOMAN, 41, 10, STAY, RIGHT, 6, OPP_BEAUTY, 10
- object SPRITE_BIKER, 48, 10, STAY, DOWN, 7, OPP_BIKER, 3
- object SPRITE_BIKER, 46, 10, STAY, DOWN, 8, OPP_BIKER, 4
- object SPRITE_LASS, 37, 5, STAY, RIGHT, 9, OPP_JR_TRAINER_F, 22
- object SPRITE_LASS, 18, 13, STAY, UP, 10, OPP_JR_TRAINER_F, 23
- object SPRITE_BALL, 18, 5, STAY, NONE, 11, TM_20
-
- ; warp-to
- warp_to 7, 8, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
- warp_to 7, 9, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
- warp_to 14, 8, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
- warp_to 14, 9, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
--- a/data/mapObjects/Route15Gate1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route15Gate1F_Object:
- db $a ; border block
-
- db 5 ; warps
- warp 0, 4, 0, -1
- warp 0, 5, 1, -1
- warp 7, 4, 2, -1
- warp 7, 5, 3, -1
- warp 6, 8, 0, ROUTE_15_GATE_2F
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 4, 1, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 0, 4, ROUTE_15_GATE_1F_WIDTH
- warp_to 0, 5, ROUTE_15_GATE_1F_WIDTH
- warp_to 7, 4, ROUTE_15_GATE_1F_WIDTH
- warp_to 7, 5, ROUTE_15_GATE_1F_WIDTH
- warp_to 6, 8, ROUTE_15_GATE_1F_WIDTH ; ROUTE_15_GATE_2F
--- a/data/mapObjects/Route15Gate2F.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-Route15Gate2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 7, 4, ROUTE_15_GATE_1F
-
- db 1 ; signs
- sign 6, 2, 2 ; Route15GateUpstairsText2
-
- db 1 ; objects
- object SPRITE_OAK_AIDE, 4, 2, STAY, DOWN, 1
-
- ; warp-to
- warp_to 7, 7, ROUTE_15_GATE_2F_WIDTH ; ROUTE_15_GATE_1F
--- a/data/mapObjects/Route16.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-Route16_Object:
- db $f ; border block
-
- db 9 ; warps
- warp 17, 10, 0, ROUTE_16_GATE_1F
- warp 17, 11, 1, ROUTE_16_GATE_1F
- warp 24, 10, 2, ROUTE_16_GATE_1F
- warp 24, 11, 3, ROUTE_16_GATE_1F
- warp 17, 4, 4, ROUTE_16_GATE_1F
- warp 17, 5, 5, ROUTE_16_GATE_1F
- warp 24, 4, 6, ROUTE_16_GATE_1F
- warp 24, 5, 7, ROUTE_16_GATE_1F
- warp 7, 5, 0, ROUTE_16_FLY_HOUSE
-
- db 2 ; signs
- sign 27, 11, 8 ; Route16Text8
- sign 5, 17, 9 ; Route16Text9
-
- db 7 ; objects
- object SPRITE_BIKER, 17, 12, STAY, LEFT, 1, OPP_BIKER, 5
- object SPRITE_BIKER, 14, 13, STAY, RIGHT, 2, OPP_CUE_BALL, 1
- object SPRITE_BIKER, 11, 12, STAY, UP, 3, OPP_CUE_BALL, 2
- object SPRITE_BIKER, 9, 11, STAY, LEFT, 4, OPP_BIKER, 6
- object SPRITE_BIKER, 6, 10, STAY, RIGHT, 5, OPP_CUE_BALL, 3
- object SPRITE_BIKER, 3, 12, STAY, RIGHT, 6, OPP_BIKER, 7
- object SPRITE_SNORLAX, 26, 10, STAY, DOWN, 7 ; person
-
- ; warp-to
- warp_to 17, 10, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 17, 11, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 24, 10, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 24, 11, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 17, 4, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 17, 5, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 24, 4, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 24, 5, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
- warp_to 7, 5, ROUTE_16_WIDTH ; ROUTE_16_FLY_HOUSE
--- a/data/mapObjects/Route16FlyHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-Route16FlyHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 8, -1
- warp 3, 7, 8, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BRUNETTE_GIRL, 2, 3, STAY, RIGHT, 1 ; person
- object SPRITE_BIRD, 6, 4, WALK, 0, 2 ; person
-
- ; warp-to
- warp_to 2, 7, ROUTE_16_FLY_HOUSE_WIDTH
- warp_to 3, 7, ROUTE_16_FLY_HOUSE_WIDTH
--- a/data/mapObjects/Route16Gate1F.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-Route16Gate1F_Object:
- db $a ; border block
-
- db 9 ; warps
- warp 0, 8, 0, -1
- warp 0, 9, 1, -1
- warp 7, 8, 2, -1
- warp 7, 9, 2, -1
- warp 0, 2, 4, -1
- warp 0, 3, 5, -1
- warp 7, 2, 6, -1
- warp 7, 3, 7, -1
- warp 6, 12, 0, ROUTE_16_GATE_2F
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_GUARD, 4, 5, STAY, DOWN, 1 ; person
- object SPRITE_GAMBLER, 4, 3, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 0, 8, ROUTE_16_GATE_1F_WIDTH
- warp_to 0, 9, ROUTE_16_GATE_1F_WIDTH
- warp_to 7, 8, ROUTE_16_GATE_1F_WIDTH
- warp_to 7, 9, ROUTE_16_GATE_1F_WIDTH
- warp_to 0, 2, ROUTE_16_GATE_1F_WIDTH
- warp_to 0, 3, ROUTE_16_GATE_1F_WIDTH
- warp_to 7, 2, ROUTE_16_GATE_1F_WIDTH
- warp_to 7, 3, ROUTE_16_GATE_1F_WIDTH
- warp_to 6, 12, ROUTE_16_GATE_1F_WIDTH ; ROUTE_16_GATE_2F
--- a/data/mapObjects/Route16Gate2F.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-Route16Gate2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 7, 8, ROUTE_16_GATE_1F
-
- db 2 ; signs
- sign 1, 2, 3 ; Route16GateUpstairsText3
- sign 6, 2, 4 ; Route16GateUpstairsText4
-
- db 2 ; objects
- object SPRITE_YOUNG_BOY, 4, 2, STAY, NONE, 1 ; person
- object SPRITE_LITTLE_GIRL, 2, 5, WALK, 2, 2 ; person
-
- ; warp-to
- warp_to 7, 7, ROUTE_16_GATE_2F_WIDTH ; ROUTE_16_GATE_1F
--- a/data/mapObjects/Route17.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-Route17_Object:
- db $43 ; border block
-
- db 0 ; warps
-
- db 6 ; signs
- sign 9, 51, 11 ; Route17Text11
- sign 9, 63, 12 ; Route17Text12
- sign 9, 75, 13 ; Route17Text13
- sign 9, 87, 14 ; Route17Text14
- sign 9, 111, 15 ; Route17Text15
- sign 9, 141, 16 ; Route17Text16
-
- db 10 ; objects
- object SPRITE_BIKER, 12, 19, STAY, LEFT, 1, OPP_CUE_BALL, 4
- object SPRITE_BIKER, 11, 16, STAY, RIGHT, 2, OPP_CUE_BALL, 5
- object SPRITE_BIKER, 4, 18, STAY, UP, 3, OPP_BIKER, 8
- object SPRITE_BIKER, 7, 32, STAY, LEFT, 4, OPP_BIKER, 9
- object SPRITE_BIKER, 14, 34, STAY, RIGHT, 5, OPP_BIKER, 10
- object SPRITE_BIKER, 17, 58, STAY, LEFT, 6, OPP_CUE_BALL, 6
- object SPRITE_BIKER, 2, 68, STAY, RIGHT, 7, OPP_CUE_BALL, 7
- object SPRITE_BIKER, 14, 98, STAY, RIGHT, 8, OPP_CUE_BALL, 8
- object SPRITE_BIKER, 5, 98, STAY, LEFT, 9, OPP_BIKER, 11
- object SPRITE_BIKER, 10, 118, STAY, DOWN, 10, OPP_BIKER, 12
--- a/data/mapObjects/Route18.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-Route18_Object:
- db $43 ; border block
-
- db 4 ; warps
- warp 33, 8, 0, ROUTE_18_GATE_1F
- warp 33, 9, 1, ROUTE_18_GATE_1F
- warp 40, 8, 2, ROUTE_18_GATE_1F
- warp 40, 9, 3, ROUTE_18_GATE_1F
-
- db 2 ; signs
- sign 43, 7, 4 ; Route18Text4
- sign 33, 5, 5 ; Route18Text5
-
- db 3 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 36, 11, STAY, RIGHT, 1, OPP_BIRD_KEEPER, 8
- object SPRITE_BLACK_HAIR_BOY_1, 40, 15, STAY, LEFT, 2, OPP_BIRD_KEEPER, 9
- object SPRITE_BLACK_HAIR_BOY_1, 42, 13, STAY, LEFT, 3, OPP_BIRD_KEEPER, 10
-
- ; warp-to
- warp_to 33, 8, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
- warp_to 33, 9, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
- warp_to 40, 8, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
- warp_to 40, 9, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
--- a/data/mapObjects/Route18Gate1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route18Gate1F_Object:
- db $a ; border block
-
- db 5 ; warps
- warp 0, 4, 0, -1
- warp 0, 5, 1, -1
- warp 7, 4, 2, -1
- warp 7, 5, 3, -1
- warp 6, 8, 0, ROUTE_18_GATE_2F
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 4, 1, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 0, 4, ROUTE_18_GATE_1F_WIDTH
- warp_to 0, 5, ROUTE_18_GATE_1F_WIDTH
- warp_to 7, 4, ROUTE_18_GATE_1F_WIDTH
- warp_to 7, 5, ROUTE_18_GATE_1F_WIDTH
- warp_to 6, 8, ROUTE_18_GATE_1F_WIDTH ; ROUTE_18_GATE_2F
--- a/data/mapObjects/Route18Gate2F.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-Route18Gate2F_Object:
- db $a ; border block
-
- db 1 ; warps
- warp 7, 7, 4, ROUTE_18_GATE_1F
-
- db 2 ; signs
- sign 1, 2, 2 ; Route18GateUpstairsText2
- sign 6, 2, 3 ; Route18GateUpstairsText3
-
- db 1 ; objects
- object SPRITE_BUG_CATCHER, 4, 2, WALK, 2, 1 ; person
-
- ; warp-to
- warp_to 7, 7, ROUTE_18_GATE_2F_WIDTH ; ROUTE_18_GATE_1F
--- a/data/mapObjects/Route19.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route19_Object:
- db $43 ; border block
-
- db 0 ; warps
-
- db 1 ; signs
- sign 11, 9, 11 ; Route19Text11
-
- db 10 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 8, 7, STAY, LEFT, 1, OPP_SWIMMER, 2
- object SPRITE_BLACK_HAIR_BOY_1, 13, 7, STAY, LEFT, 2, OPP_SWIMMER, 3
- object SPRITE_SWIMMER, 13, 25, STAY, LEFT, 3, OPP_SWIMMER, 4
- object SPRITE_SWIMMER, 4, 27, STAY, RIGHT, 4, OPP_SWIMMER, 5
- object SPRITE_SWIMMER, 16, 31, STAY, UP, 5, OPP_SWIMMER, 6
- object SPRITE_SWIMMER, 9, 11, STAY, DOWN, 6, OPP_SWIMMER, 7
- object SPRITE_SWIMMER, 8, 43, STAY, LEFT, 7, OPP_BEAUTY, 12
- object SPRITE_SWIMMER, 11, 43, STAY, RIGHT, 8, OPP_BEAUTY, 13
- object SPRITE_SWIMMER, 9, 42, STAY, UP, 9, OPP_SWIMMER, 8
- object SPRITE_SWIMMER, 10, 44, STAY, DOWN, 10, OPP_BEAUTY, 14
-
- ; warp-to
--- a/data/mapObjects/Route2.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-Route2_Object:
- db $f ; border block
-
- db 6 ; warps
- warp 12, 9, 0, DIGLETTS_CAVE_ROUTE_2
- warp 3, 11, 1, VIRIDIAN_FOREST_NORTH_GATE
- warp 15, 19, 0, ROUTE_2_TRADE_HOUSE
- warp 16, 35, 1, ROUTE_2_GATE
- warp 15, 39, 2, ROUTE_2_GATE
- warp 3, 43, 2, VIRIDIAN_FOREST_SOUTH_GATE
-
- db 2 ; signs
- sign 5, 65, 3 ; Route2Text3
- sign 11, 11, 4 ; Route2Text4
-
- db 2 ; objects
- object SPRITE_BALL, 13, 54, STAY, NONE, 1, MOON_STONE
- object SPRITE_BALL, 13, 45, STAY, NONE, 2, HP_UP
-
- ; warp-to
- warp_to 12, 9, ROUTE_2_WIDTH ; DIGLETTS_CAVE_ROUTE_2
- warp_to 3, 11, ROUTE_2_WIDTH ; VIRIDIAN_FOREST_NORTH_GATE
- warp_to 15, 19, ROUTE_2_WIDTH ; ROUTE_2_TRADE_HOUSE
- warp_to 16, 35, ROUTE_2_WIDTH ; ROUTE_2_GATE
- warp_to 15, 39, ROUTE_2_WIDTH ; ROUTE_2_GATE
- warp_to 3, 43, ROUTE_2_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
-
- ; unused
- warp_to 2, 7, 4
- db $12, $c7, $9, $7
- warp_to 2, 7, 4
- warp_to 2, 7, 4
- warp_to 2, 7, 4
--- a/data/mapObjects/Route20.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-Route20_Object:
- db $43 ; border block
-
- db 2 ; warps
- warp 48, 5, 0, SEAFOAM_ISLANDS_1F
- warp 58, 9, 2, SEAFOAM_ISLANDS_1F
-
- db 2 ; signs
- sign 51, 7, 11 ; Route20Text11
- sign 57, 11, 12 ; Route20Text12
-
- db 10 ; objects
- object SPRITE_SWIMMER, 87, 8, STAY, UP, 1, OPP_SWIMMER, 9
- object SPRITE_SWIMMER, 68, 11, STAY, UP, 2, OPP_BEAUTY, 15
- object SPRITE_SWIMMER, 45, 10, STAY, DOWN, 3, OPP_BEAUTY, 6
- object SPRITE_SWIMMER, 55, 14, STAY, RIGHT, 4, OPP_JR_TRAINER_F, 24
- object SPRITE_SWIMMER, 38, 13, STAY, DOWN, 5, OPP_SWIMMER, 10
- object SPRITE_SWIMMER, 87, 13, STAY, UP, 6, OPP_SWIMMER, 11
- object SPRITE_BLACK_HAIR_BOY_1, 34, 9, STAY, UP, 7, OPP_BIRD_KEEPER, 11
- object SPRITE_SWIMMER, 25, 7, STAY, UP, 8, OPP_BEAUTY, 7
- object SPRITE_SWIMMER, 24, 12, STAY, DOWN, 9, OPP_JR_TRAINER_F, 16
- object SPRITE_SWIMMER, 15, 8, STAY, UP, 10, OPP_BEAUTY, 8
-
- ; warp-to
- warp_to 48, 5, ROUTE_20_WIDTH ; SEAFOAM_ISLANDS_1F
- warp_to 58, 9, ROUTE_20_WIDTH ; SEAFOAM_ISLANDS_1F
--- a/data/mapObjects/Route21.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-Route21_Object:
- db $43 ; border block
-
- db 0 ; warps
-
- db 0 ; signs
-
- db 9 ; objects
- object SPRITE_FISHER2, 4, 24, STAY, LEFT, 1, OPP_FISHER, 7
- object SPRITE_FISHER2, 6, 25, STAY, DOWN, 2, OPP_FISHER, 9
- object SPRITE_SWIMMER, 10, 31, STAY, UP, 3, OPP_SWIMMER, 12
- object SPRITE_SWIMMER, 12, 30, STAY, RIGHT, 4, OPP_CUE_BALL, 9
- object SPRITE_SWIMMER, 16, 63, STAY, DOWN, 5, OPP_SWIMMER, 13
- object SPRITE_SWIMMER, 5, 71, STAY, RIGHT, 6, OPP_SWIMMER, 14
- object SPRITE_SWIMMER, 15, 71, STAY, LEFT, 7, OPP_SWIMMER, 15
- object SPRITE_FISHER2, 14, 56, STAY, LEFT, 8, OPP_FISHER, 8
- object SPRITE_FISHER2, 17, 57, STAY, RIGHT, 9, OPP_FISHER, 10
--- a/data/mapObjects/Route22.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-Route22_Object:
- db $2c ; border block
-
- db 1 ; warps
- warp 8, 5, 0, ROUTE_22_GATE
-
- db 1 ; signs
- sign 7, 11, 3 ; Route22FrontGateText
-
- db 2 ; objects
- object SPRITE_BLUE, 25, 5, STAY, NONE, 1 ; person
- object SPRITE_BLUE, 25, 5, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 8, 5, ROUTE_22_WIDTH ; ROUTE_22_GATE
--- a/data/mapObjects/Route22Gate.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route22Gate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 4, 7, 0, -1
- warp 5, 7, 0, -1
- warp 4, 0, 0, -1
- warp 5, 0, 1, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 6, 2, STAY, LEFT, 1 ; person
-
- ; warp-to
- warp_to 4, 7, ROUTE_22_GATE_WIDTH
- warp_to 5, 7, ROUTE_22_GATE_WIDTH
- warp_to 4, 0, ROUTE_22_GATE_WIDTH
- warp_to 5, 0, ROUTE_22_GATE_WIDTH
--- a/data/mapObjects/Route23.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-Route23_Object:
- db $f ; border block
-
- db 4 ; warps
- warp 7, 139, 2, ROUTE_22_GATE
- warp 8, 139, 3, ROUTE_22_GATE
- warp 4, 31, 0, VICTORY_ROAD_1F
- warp 14, 31, 1, VICTORY_ROAD_2F
-
- db 1 ; signs
- sign 3, 33, 8 ; Route23Text8
-
- db 7 ; objects
- object SPRITE_GUARD, 4, 35, STAY, DOWN, 1 ; person
- object SPRITE_GUARD, 10, 56, STAY, DOWN, 2 ; person
- object SPRITE_SWIMMER, 8, 85, STAY, DOWN, 3 ; person
- object SPRITE_SWIMMER, 11, 96, STAY, DOWN, 4 ; person
- object SPRITE_GUARD, 12, 105, STAY, DOWN, 5 ; person
- object SPRITE_GUARD, 8, 119, STAY, DOWN, 6 ; person
- object SPRITE_GUARD, 8, 136, STAY, DOWN, 7 ; person
-
- ; warp-to
- warp_to 7, 139, ROUTE_23_WIDTH ; ROUTE_22_GATE
- warp_to 8, 139, ROUTE_23_WIDTH ; ROUTE_22_GATE
- warp_to 4, 31, ROUTE_23_WIDTH ; VICTORY_ROAD_1F
- warp_to 14, 31, ROUTE_23_WIDTH ; VICTORY_ROAD_2F
--- a/data/mapObjects/Route24.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-Route24_Object:
- db $2c ; border block
-
- db 0 ; warps
-
- db 0 ; signs
-
- db 8 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 11, 15, STAY, LEFT, 1, OPP_ROCKET, 6
- object SPRITE_BLACK_HAIR_BOY_1, 5, 20, STAY, UP, 2, OPP_JR_TRAINER_M, 2
- object SPRITE_BLACK_HAIR_BOY_1, 11, 19, STAY, LEFT, 3, OPP_JR_TRAINER_M, 3
- object SPRITE_LASS, 10, 22, STAY, RIGHT, 4, OPP_LASS, 7
- object SPRITE_BUG_CATCHER, 11, 25, STAY, LEFT, 5, OPP_YOUNGSTER, 4
- object SPRITE_LASS, 10, 28, STAY, RIGHT, 6, OPP_LASS, 8
- object SPRITE_BUG_CATCHER, 11, 31, STAY, LEFT, 7, OPP_BUG_CATCHER, 9
- object SPRITE_BALL, 10, 5, STAY, NONE, 8, TM_45
--- a/data/mapObjects/Route25.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-Route25_Object:
- db $2c ; border block
-
- db 1 ; warps
- warp 45, 3, 0, BILLS_HOUSE
-
- db 1 ; signs
- sign 43, 3, 11 ; Route25Text11
-
- db 10 ; objects
- object SPRITE_BUG_CATCHER, 14, 2, STAY, DOWN, 1, OPP_YOUNGSTER, 5
- object SPRITE_BUG_CATCHER, 18, 5, STAY, UP, 2, OPP_YOUNGSTER, 6
- object SPRITE_BLACK_HAIR_BOY_1, 24, 4, STAY, DOWN, 3, OPP_JR_TRAINER_M, 2
- object SPRITE_LASS, 18, 8, STAY, RIGHT, 4, OPP_LASS, 9
- object SPRITE_BUG_CATCHER, 32, 3, STAY, LEFT, 5, OPP_YOUNGSTER, 7
- object SPRITE_LASS, 37, 4, STAY, DOWN, 6, OPP_LASS, 10
- object SPRITE_HIKER, 8, 4, STAY, RIGHT, 7, OPP_HIKER, 2
- object SPRITE_HIKER, 23, 9, STAY, UP, 8, OPP_HIKER, 3
- object SPRITE_HIKER, 13, 7, STAY, RIGHT, 9, OPP_HIKER, 4
- object SPRITE_BALL, 22, 2, STAY, NONE, 10, TM_19
-
- ; warp-to
- warp_to 45, 3, ROUTE_25_WIDTH ; BILLS_HOUSE
--- a/data/mapObjects/Route2Gate.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-Route2Gate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 4, 0, 3, -1
- warp 5, 0, 3, -1
- warp 4, 7, 4, -1
- warp 5, 7, 4, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_OAK_AIDE, 1, 4, STAY, LEFT, 1 ; person
- object SPRITE_BUG_CATCHER, 5, 4, WALK, 2, 2 ; person
-
- ; warp-to
- warp_to 4, 0, ROUTE_2_GATE_WIDTH
- warp_to 5, 0, ROUTE_2_GATE_WIDTH
- warp_to 4, 7, ROUTE_2_GATE_WIDTH
- warp_to 5, 7, ROUTE_2_GATE_WIDTH
--- a/data/mapObjects/Route2TradeHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-Route2TradeHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 2, -1
- warp 3, 7, 2, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_OAK_AIDE, 2, 4, STAY, RIGHT, 1 ; person
- object SPRITE_GAMEBOY_KID_COPY, 4, 1, STAY, DOWN, 2 ; person
-
- ; warp-to
- warp_to 2, 7, ROUTE_2_TRADE_HOUSE_WIDTH
- warp_to 3, 7, ROUTE_2_TRADE_HOUSE_WIDTH
--- a/data/mapObjects/Route3.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-Route3_Object:
- db $2c ; border block
-
- db 0 ; warps
-
- db 1 ; signs
- sign 59, 9, 10 ; Route3Text10
-
- db 9 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 57, 11, STAY, NONE, 1 ; person
- object SPRITE_BUG_CATCHER, 10, 6, STAY, RIGHT, 2, OPP_BUG_CATCHER, 4
- object SPRITE_BUG_CATCHER, 14, 4, STAY, DOWN, 3, OPP_YOUNGSTER, 1
- object SPRITE_LASS, 16, 9, STAY, LEFT, 4, OPP_LASS, 1
- object SPRITE_BUG_CATCHER, 19, 5, STAY, DOWN, 5, OPP_BUG_CATCHER, 5
- object SPRITE_LASS, 23, 4, STAY, LEFT, 6, OPP_LASS, 2
- object SPRITE_BUG_CATCHER, 22, 9, STAY, LEFT, 7, OPP_YOUNGSTER, 2
- object SPRITE_BUG_CATCHER, 24, 6, STAY, RIGHT, 8, OPP_BUG_CATCHER, 6
- object SPRITE_LASS, 33, 10, STAY, UP, 9, OPP_LASS, 3
--- a/data/mapObjects/Route4.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-Route4_Object:
- db $2c ; border block
-
- db 3 ; warps
- warp 11, 5, 0, MT_MOON_POKECENTER
- warp 18, 5, 0, MT_MOON_1F
- warp 24, 5, 7, MT_MOON_B1F
-
- db 3 ; signs
- sign 12, 5, 4 ; PokeCenterSignText
- sign 17, 7, 5 ; Route4Text5
- sign 27, 7, 6 ; Route4Text6
-
- db 3 ; objects
- object SPRITE_LASS, 9, 8, WALK, 0, 1 ; person
- object SPRITE_LASS, 63, 3, STAY, RIGHT, 2, OPP_LASS, 4
- object SPRITE_BALL, 57, 3, STAY, NONE, 3, TM_04
-
- ; warp-to
- warp_to 11, 5, ROUTE_4_WIDTH ; MT_MOON_POKECENTER
- warp_to 18, 5, ROUTE_4_WIDTH ; MT_MOON_1F
- warp_to 24, 5, ROUTE_4_WIDTH ; MT_MOON_B1F
--- a/data/mapObjects/Route5.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route5_Object:
- db $a ; border block
-
- db 5 ; warps
- warp 10, 29, 3, ROUTE_5_GATE
- warp 9, 29, 2, ROUTE_5_GATE
- warp 10, 33, 0, ROUTE_5_GATE
- warp 17, 27, 0, UNDERGROUND_PATH_ROUTE_5
- warp 10, 21, 0, DAYCARE
-
- db 1 ; signs
- sign 17, 29, 1 ; Route5Text1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 10, 29, ROUTE_5_WIDTH ; ROUTE_5_GATE
- warp_to 9, 29, ROUTE_5_WIDTH ; ROUTE_5_GATE
- warp_to 10, 33, ROUTE_5_WIDTH ; ROUTE_5_GATE
- warp_to 17, 27, ROUTE_5_WIDTH ; UNDERGROUND_PATH_ROUTE_5
- warp_to 10, 21, ROUTE_5_WIDTH ; DAYCARE
--- a/data/mapObjects/Route5Gate.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route5Gate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 3, 5, 2, -1
- warp 4, 5, 2, -1
- warp 3, 0, 1, -1
- warp 4, 0, 0, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 1, 3, STAY, RIGHT, 1 ; person
-
- ; warp-to
- warp_to 3, 5, ROUTE_5_GATE_WIDTH
- warp_to 4, 5, ROUTE_5_GATE_WIDTH
- warp_to 3, 0, ROUTE_5_GATE_WIDTH
- warp_to 4, 0, ROUTE_5_GATE_WIDTH
--- a/data/mapObjects/Route6.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-Route6_Object:
- db $f ; border block
-
- db 4 ; warps
- warp 9, 1, 2, ROUTE_6_GATE
- warp 10, 1, 2, ROUTE_6_GATE
- warp 10, 7, 0, ROUTE_6_GATE
- warp 17, 13, 0, UNDERGROUND_PATH_ROUTE_6
-
- db 1 ; signs
- sign 19, 15, 7 ; Route6Text7
-
- db 6 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 10, 21, STAY, RIGHT, 1, OPP_JR_TRAINER_M, 4
- object SPRITE_LASS, 11, 21, STAY, LEFT, 2, OPP_JR_TRAINER_F, 2
- object SPRITE_BUG_CATCHER, 0, 15, STAY, RIGHT, 3, OPP_BUG_CATCHER, 10
- object SPRITE_BLACK_HAIR_BOY_1, 11, 31, STAY, LEFT, 4, OPP_JR_TRAINER_M, 5
- object SPRITE_LASS, 11, 30, STAY, LEFT, 5, OPP_JR_TRAINER_F, 3
- object SPRITE_BUG_CATCHER, 19, 26, STAY, LEFT, 6, OPP_BUG_CATCHER, 11
-
- ; warp-to
- warp_to 9, 1, ROUTE_6_WIDTH ; ROUTE_6_GATE
- warp_to 10, 1, ROUTE_6_WIDTH ; ROUTE_6_GATE
- warp_to 10, 7, ROUTE_6_WIDTH ; ROUTE_6_GATE
- warp_to 17, 13, ROUTE_6_WIDTH ; UNDERGROUND_PATH_ROUTE_6
--- a/data/mapObjects/Route6Gate.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route6Gate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 3, 5, 2, -1
- warp 4, 5, 2, -1
- warp 3, 0, 1, -1
- warp 4, 0, 1, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 6, 2, STAY, LEFT, 1 ; person
-
- ; warp-to
- warp_to 3, 5, ROUTE_6_GATE_WIDTH
- warp_to 4, 5, ROUTE_6_GATE_WIDTH
- warp_to 3, 0, ROUTE_6_GATE_WIDTH
- warp_to 4, 0, ROUTE_6_GATE_WIDTH
--- a/data/mapObjects/Route7.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-Route7_Object:
- db $f ; border block
-
- db 5 ; warps
- warp 18, 9, 2, ROUTE_7_GATE
- warp 18, 10, 3, ROUTE_7_GATE
- warp 11, 9, 0, ROUTE_7_GATE
- warp 11, 10, 1, ROUTE_7_GATE
- warp 5, 13, 0, UNDERGROUND_PATH_ROUTE_7
-
- db 1 ; signs
- sign 3, 13, 1 ; Route7Text1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 18, 9, ROUTE_7_WIDTH ; ROUTE_7_GATE
- warp_to 18, 10, ROUTE_7_WIDTH ; ROUTE_7_GATE
- warp_to 11, 9, ROUTE_7_WIDTH ; ROUTE_7_GATE
- warp_to 11, 10, ROUTE_7_WIDTH ; ROUTE_7_GATE
- warp_to 5, 13, ROUTE_7_WIDTH ; UNDERGROUND_PATH_ROUTE_7
--- a/data/mapObjects/Route7Gate.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route7Gate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 0, 3, 3, -1
- warp 0, 4, 3, -1
- warp 5, 3, 0, -1
- warp 5, 4, 1, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 3, 1, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 0, 3, ROUTE_7_GATE_WIDTH
- warp_to 0, 4, ROUTE_7_GATE_WIDTH
- warp_to 5, 3, ROUTE_7_GATE_WIDTH
- warp_to 5, 4, ROUTE_7_GATE_WIDTH
--- a/data/mapObjects/Route8.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-Route8_Object:
- db $2c ; border block
-
- db 5 ; warps
- warp 1, 9, 0, ROUTE_8_GATE
- warp 1, 10, 1, ROUTE_8_GATE
- warp 8, 9, 2, ROUTE_8_GATE
- warp 8, 10, 3, ROUTE_8_GATE
- warp 13, 3, 0, UNDERGROUND_PATH_ROUTE_8
-
- db 1 ; signs
- sign 17, 3, 10 ; Route8Text10
-
- db 9 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 8, 5, STAY, RIGHT, 1, OPP_SUPER_NERD, 3
- object SPRITE_GAMBLER, 13, 9, STAY, UP, 2, OPP_GAMBLER, 5
- object SPRITE_BLACK_HAIR_BOY_2, 42, 6, STAY, UP, 3, OPP_SUPER_NERD, 4
- object SPRITE_LASS, 26, 3, STAY, LEFT, 4, OPP_LASS, 13
- object SPRITE_BLACK_HAIR_BOY_2, 26, 4, STAY, RIGHT, 5, OPP_SUPER_NERD, 5
- object SPRITE_LASS, 26, 5, STAY, LEFT, 6, OPP_LASS, 14
- object SPRITE_LASS, 26, 6, STAY, RIGHT, 7, OPP_LASS, 15
- object SPRITE_GAMBLER, 46, 13, STAY, DOWN, 8, OPP_GAMBLER, 7
- object SPRITE_LASS, 51, 12, STAY, LEFT, 9, OPP_LASS, 16
-
- ; warp-to
- warp_to 1, 9, ROUTE_8_WIDTH ; ROUTE_8_GATE
- warp_to 1, 10, ROUTE_8_WIDTH ; ROUTE_8_GATE
- warp_to 8, 9, ROUTE_8_WIDTH ; ROUTE_8_GATE
- warp_to 8, 10, ROUTE_8_WIDTH ; ROUTE_8_GATE
- warp_to 13, 3, ROUTE_8_WIDTH ; UNDERGROUND_PATH_ROUTE_8
--- a/data/mapObjects/Route8Gate.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route8Gate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 0, 3, 0, -1
- warp 0, 4, 1, -1
- warp 5, 3, 2, -1
- warp 5, 4, 3, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GUARD, 2, 1, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 0, 3, ROUTE_8_GATE_WIDTH
- warp_to 0, 4, ROUTE_8_GATE_WIDTH
- warp_to 5, 3, ROUTE_8_GATE_WIDTH
- warp_to 5, 4, ROUTE_8_GATE_WIDTH
--- a/data/mapObjects/Route9.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-Route9_Object:
- db $2c ; border block
-
- db 0 ; warps
-
- db 1 ; signs
- sign 25, 7, 11 ; Route9Text11
-
- db 10 ; objects
- object SPRITE_LASS, 13, 10, STAY, LEFT, 1, OPP_JR_TRAINER_F, 5
- object SPRITE_BLACK_HAIR_BOY_1, 24, 7, STAY, LEFT, 2, OPP_JR_TRAINER_M, 7
- object SPRITE_BLACK_HAIR_BOY_1, 31, 7, STAY, RIGHT, 3, OPP_JR_TRAINER_M, 8
- object SPRITE_LASS, 48, 8, STAY, RIGHT, 4, OPP_JR_TRAINER_F, 6
- object SPRITE_HIKER, 16, 15, STAY, LEFT, 5, OPP_HIKER, 11
- object SPRITE_HIKER, 43, 3, STAY, LEFT, 6, OPP_HIKER, 6
- object SPRITE_BUG_CATCHER, 22, 2, STAY, DOWN, 7, OPP_BUG_CATCHER, 13
- object SPRITE_HIKER, 45, 15, STAY, RIGHT, 8, OPP_HIKER, 5
- object SPRITE_BUG_CATCHER, 40, 8, STAY, RIGHT, 9, OPP_BUG_CATCHER, 14
- object SPRITE_BALL, 10, 15, STAY, NONE, 10, TM_30
--- a/data/mapObjects/SSAnne1F.asm
+++ /dev/null
@@ -1,34 +1,0 @@
-SSAnne1F_Object:
- db $c ; border block
-
- db 11 ; warps
- warp 26, 0, 1, VERMILION_DOCK
- warp 27, 0, 1, VERMILION_DOCK
- warp 31, 8, 0, SS_ANNE_1F_ROOMS
- warp 23, 8, 1, SS_ANNE_1F_ROOMS
- warp 19, 8, 2, SS_ANNE_1F_ROOMS
- warp 15, 8, 3, SS_ANNE_1F_ROOMS
- warp 11, 8, 4, SS_ANNE_1F_ROOMS
- warp 7, 8, 5, SS_ANNE_1F_ROOMS
- warp 2, 6, 6, SS_ANNE_2F
- warp 37, 15, 5, SS_ANNE_B1F
- warp 3, 16, 0, SS_ANNE_KITCHEN
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_WAITER, 12, 6, WALK, 2, 1 ; person
- object SPRITE_SAILOR, 27, 5, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 26, 0, SS_ANNE_1F_WIDTH ; VERMILION_DOCK
- warp_to 27, 0, SS_ANNE_1F_WIDTH ; VERMILION_DOCK
- warp_to 31, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
- warp_to 23, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
- warp_to 19, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
- warp_to 15, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
- warp_to 11, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
- warp_to 7, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
- warp_to 2, 6, SS_ANNE_1F_WIDTH ; SS_ANNE_2F
- warp_to 37, 15, SS_ANNE_1F_WIDTH ; SS_ANNE_B1F
- warp_to 3, 16, SS_ANNE_1F_WIDTH ; SS_ANNE_KITCHEN
--- a/data/mapObjects/SSAnne1FRooms.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-SSAnne1FRooms_Object:
- db $c ; border block
-
- db 6 ; warps
- warp 0, 0, 2, SS_ANNE_1F
- warp 10, 0, 3, SS_ANNE_1F
- warp 20, 0, 4, SS_ANNE_1F
- warp 0, 10, 5, SS_ANNE_1F
- warp 10, 10, 6, SS_ANNE_1F
- warp 20, 10, 7, SS_ANNE_1F
-
- db 0 ; signs
-
- db 11 ; objects
- object SPRITE_GENTLEMAN, 2, 3, STAY, LEFT, 1, OPP_GENTLEMAN, 1
- object SPRITE_GENTLEMAN, 11, 4, STAY, UP, 2, OPP_GENTLEMAN, 2
- object SPRITE_BUG_CATCHER, 11, 14, STAY, UP, 3, OPP_YOUNGSTER, 8
- object SPRITE_LASS, 13, 11, STAY, LEFT, 4, OPP_LASS, 11
- object SPRITE_GIRL, 22, 3, WALK, 1, 5 ; person
- object SPRITE_FAT_BALD_GUY, 0, 14, STAY, NONE, 6 ; person
- object SPRITE_LITTLE_GIRL, 2, 11, STAY, DOWN, 7 ; person
- object SPRITE_CLEFAIRY, 3, 11, STAY, DOWN, 8 ; person
- object SPRITE_GIRL, 10, 13, STAY, RIGHT, 9 ; person
- object SPRITE_BALL, 12, 15, STAY, NONE, 10, TM_08
- object SPRITE_GENTLEMAN, 21, 13, WALK, 2, 11 ; person
-
- ; warp-to
- warp_to 0, 0, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
- warp_to 10, 0, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
- warp_to 20, 0, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
- warp_to 0, 10, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
- warp_to 10, 10, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
- warp_to 20, 10, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
--- a/data/mapObjects/SSAnne2F.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-SSAnne2F_Object:
- db $c ; border block
-
- db 9 ; warps
- warp 9, 11, 0, SS_ANNE_2F_ROOMS
- warp 13, 11, 2, SS_ANNE_2F_ROOMS
- warp 17, 11, 4, SS_ANNE_2F_ROOMS
- warp 21, 11, 6, SS_ANNE_2F_ROOMS
- warp 25, 11, 8, SS_ANNE_2F_ROOMS
- warp 29, 11, 10, SS_ANNE_2F_ROOMS
- warp 2, 4, 8, SS_ANNE_1F
- warp 2, 12, 1, SS_ANNE_3F
- warp 36, 4, 0, SS_ANNE_CAPTAINS_ROOM
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_WAITER, 3, 7, WALK, 1, 1 ; person
- object SPRITE_BLUE, 36, 4, STAY, DOWN, 2, OPP_SONY1, 1
-
- ; warp-to
- warp_to 9, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
- warp_to 13, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
- warp_to 17, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
- warp_to 21, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
- warp_to 25, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
- warp_to 29, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
- warp_to 2, 4, SS_ANNE_2F_WIDTH ; SS_ANNE_1F
- warp_to 2, 12, SS_ANNE_2F_WIDTH ; SS_ANNE_3F
- warp_to 36, 4, SS_ANNE_2F_WIDTH ; SS_ANNE_CAPTAINS_ROOM
--- a/data/mapObjects/SSAnne2FRooms.asm
+++ /dev/null
@@ -1,47 +1,0 @@
-SSAnne2FRooms_Object:
- db $c ; border block
-
- db 12 ; warps
- warp 2, 5, 0, SS_ANNE_2F
- warp 3, 5, 0, SS_ANNE_2F
- warp 12, 5, 1, SS_ANNE_2F
- warp 13, 5, 1, SS_ANNE_2F
- warp 22, 5, 2, SS_ANNE_2F
- warp 23, 5, 2, SS_ANNE_2F
- warp 2, 15, 3, SS_ANNE_2F
- warp 3, 15, 3, SS_ANNE_2F
- warp 12, 15, 4, SS_ANNE_2F
- warp 13, 15, 4, SS_ANNE_2F
- warp 22, 15, 5, SS_ANNE_2F
- warp 23, 15, 5, SS_ANNE_2F
-
- db 0 ; signs
-
- db 13 ; objects
- object SPRITE_GENTLEMAN, 10, 2, STAY, RIGHT, 1, OPP_GENTLEMAN, 3
- object SPRITE_FISHER2, 13, 4, STAY, LEFT, 2, OPP_FISHER, 1
- object SPRITE_GENTLEMAN, 0, 14, STAY, RIGHT, 3, OPP_GENTLEMAN, 5
- object SPRITE_LASS, 2, 11, STAY, DOWN, 4, OPP_LASS, 12
- object SPRITE_GENTLEMAN, 1, 2, STAY, DOWN, 5 ; person
- object SPRITE_BALL, 12, 1, STAY, NONE, 6, MAX_ETHER
- object SPRITE_GENTLEMAN, 21, 2, STAY, DOWN, 7 ; person
- object SPRITE_OLD_PERSON, 22, 1, STAY, DOWN, 8 ; person
- object SPRITE_BALL, 0, 12, STAY, NONE, 9, RARE_CANDY
- object SPRITE_GENTLEMAN, 12, 12, STAY, DOWN, 10 ; person
- object SPRITE_YOUNG_BOY, 11, 14, STAY, NONE, 11 ; person
- object SPRITE_BRUNETTE_GIRL, 22, 12, STAY, LEFT, 12 ; person
- object SPRITE_FOULARD_WOMAN, 20, 12, STAY, RIGHT, 13 ; person
-
- ; warp-to
- warp_to 2, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 3, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 12, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 13, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 22, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 23, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 2, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 3, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 12, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 13, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 22, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
- warp_to 23, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
--- a/data/mapObjects/SSAnne3F.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-SSAnne3F_Object:
- db $c ; border block
-
- db 2 ; warps
- warp 0, 3, 0, SS_ANNE_BOW
- warp 19, 3, 7, SS_ANNE_2F
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_SAILOR, 9, 3, WALK, 2, 1 ; person
-
- ; warp-to
- warp_to 0, 3, SS_ANNE_3F_WIDTH ; SS_ANNE_BOW
- warp_to 19, 3, SS_ANNE_3F_WIDTH ; SS_ANNE_2F
--- a/data/mapObjects/SSAnneB1F.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-SSAnneB1F_Object:
- db $c ; border block
-
- db 6 ; warps
- warp 23, 3, 8, SS_ANNE_B1F_ROOMS
- warp 19, 3, 6, SS_ANNE_B1F_ROOMS
- warp 15, 3, 4, SS_ANNE_B1F_ROOMS
- warp 11, 3, 2, SS_ANNE_B1F_ROOMS
- warp 7, 3, 0, SS_ANNE_B1F_ROOMS
- warp 27, 5, 9, SS_ANNE_1F
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 23, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
- warp_to 19, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
- warp_to 15, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
- warp_to 11, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
- warp_to 7, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
- warp_to 27, 5, SS_ANNE_B1F_WIDTH ; SS_ANNE_1F
--- a/data/mapObjects/SSAnneB1FRooms.asm
+++ /dev/null
@@ -1,41 +1,0 @@
-SSAnneB1FRooms_Object:
- db $c ; border block
-
- db 10 ; warps
- warp 2, 5, 4, SS_ANNE_B1F
- warp 3, 5, 4, SS_ANNE_B1F
- warp 12, 5, 3, SS_ANNE_B1F
- warp 13, 5, 3, SS_ANNE_B1F
- warp 22, 5, 2, SS_ANNE_B1F
- warp 23, 5, 2, SS_ANNE_B1F
- warp 2, 15, 1, SS_ANNE_B1F
- warp 3, 15, 1, SS_ANNE_B1F
- warp 12, 15, 0, SS_ANNE_B1F
- warp 13, 15, 0, SS_ANNE_B1F
-
- db 0 ; signs
-
- db 11 ; objects
- object SPRITE_SAILOR, 0, 13, STAY, DOWN, 1, OPP_SAILOR, 3
- object SPRITE_SAILOR, 2, 11, STAY, DOWN, 2, OPP_SAILOR, 4
- object SPRITE_SAILOR, 12, 3, STAY, LEFT, 3, OPP_SAILOR, 5
- object SPRITE_SAILOR, 22, 2, STAY, DOWN, 4, OPP_SAILOR, 6
- object SPRITE_SAILOR, 0, 2, STAY, RIGHT, 5, OPP_SAILOR, 7
- object SPRITE_FISHER2, 0, 4, STAY, RIGHT, 6, OPP_FISHER, 2
- object SPRITE_BLACK_HAIR_BOY_2, 10, 13, STAY, RIGHT, 7 ; person
- object SPRITE_SLOWBRO, 11, 12, STAY, NONE, 8 ; person
- object SPRITE_BALL, 20, 2, STAY, NONE, 9, ETHER
- object SPRITE_BALL, 10, 2, STAY, NONE, 10, TM_44
- object SPRITE_BALL, 12, 11, STAY, NONE, 11, MAX_POTION
-
- ; warp-to
- warp_to 2, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 3, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 12, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 13, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 22, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 23, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 2, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 3, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 12, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
- warp_to 13, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
--- a/data/mapObjects/SSAnneBow.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-SSAnneBow_Object:
- db $23 ; border block
-
- db 2 ; warps
- warp 13, 6, 0, SS_ANNE_3F
- warp 13, 7, 0, SS_ANNE_3F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 5, 2, STAY, UP, 1 ; person
- object SPRITE_SAILOR, 4, 9, STAY, NONE, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 7, 11, STAY, NONE, 3 ; person
- object SPRITE_SAILOR, 4, 4, STAY, DOWN, 4, OPP_SAILOR, 1
- object SPRITE_SAILOR, 10, 8, STAY, UP, 5, OPP_SAILOR, 2
-
- ; warp-to
- warp_to 13, 6, SS_ANNE_BOW_WIDTH ; SS_ANNE_3F
- warp_to 13, 7, SS_ANNE_BOW_WIDTH ; SS_ANNE_3F
--- a/data/mapObjects/SSAnneCaptainsRoom.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-SSAnneCaptainsRoom_Object:
- db $c ; border block
-
- db 1 ; warps
- warp 0, 7, 8, SS_ANNE_2F
-
- db 2 ; signs
- sign 4, 1, 2 ; SSAnne7Text2
- sign 1, 2, 3 ; SSAnne7Text3
-
- db 1 ; objects
- object SPRITE_SS_CAPTAIN, 4, 2, STAY, UP, 1 ; person
-
- ; warp-to
- warp_to 0, 7, SS_ANNE_CAPTAINS_ROOM_WIDTH ; SS_ANNE_2F
--- a/data/mapObjects/SSAnneKitchen.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-SSAnneKitchen_Object:
- db $c ; border block
-
- db 1 ; warps
- warp 6, 0, 10, SS_ANNE_1F
-
- db 0 ; signs
-
- db 7 ; objects
- object SPRITE_COOK, 1, 8, WALK, 1, 1 ; person
- object SPRITE_COOK, 5, 8, WALK, 1, 2 ; person
- object SPRITE_COOK, 9, 7, WALK, 1, 3 ; person
- object SPRITE_COOK, 13, 6, STAY, NONE, 4 ; person
- object SPRITE_COOK, 13, 8, STAY, NONE, 5 ; person
- object SPRITE_COOK, 13, 10, STAY, NONE, 6 ; person
- object SPRITE_COOK, 11, 13, STAY, UP, 7 ; person
-
- ; warp-to
- warp_to 6, 0, SS_ANNE_KITCHEN_WIDTH ; SS_ANNE_1F
--- a/data/mapObjects/SafariZoneCenter.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-SafariZoneCenter_Object:
- db $0 ; border block
-
- db 9 ; warps
- warp 14, 25, 2, SAFARI_ZONE_GATE
- warp 15, 25, 3, SAFARI_ZONE_GATE
- warp 0, 10, 4, SAFARI_ZONE_WEST
- warp 0, 11, 5, SAFARI_ZONE_WEST
- warp 14, 0, 4, SAFARI_ZONE_NORTH
- warp 15, 0, 5, SAFARI_ZONE_NORTH
- warp 29, 10, 2, SAFARI_ZONE_EAST
- warp 29, 11, 3, SAFARI_ZONE_EAST
- warp 17, 19, 0, SAFARI_ZONE_CENTER_REST_HOUSE
-
- db 2 ; signs
- sign 18, 20, 2 ; SafariZoneCenterText2
- sign 14, 22, 3 ; SafariZoneCenterText3
-
- db 1 ; objects
- object SPRITE_BALL, 14, 10, STAY, NONE, 1, NUGGET
-
- ; warp-to
- warp_to 14, 25, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_GATE
- warp_to 15, 25, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_GATE
- warp_to 0, 10, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_WEST
- warp_to 0, 11, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_WEST
- warp_to 14, 0, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 15, 0, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 29, 10, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_EAST
- warp_to 29, 11, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_EAST
- warp_to 17, 19, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_CENTER_REST_HOUSE
--- a/data/mapObjects/SafariZoneCenterRestHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-SafariZoneCenterRestHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 8, SAFARI_ZONE_CENTER
- warp 3, 7, 8, SAFARI_ZONE_CENTER
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_GIRL, 3, 2, STAY, DOWN, 1 ; person
- object SPRITE_OAK_AIDE, 1, 4, WALK, 1, 2 ; person
-
- ; warp-to
- warp_to 2, 7, SAFARI_ZONE_CENTER_REST_HOUSE_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 3, 7, SAFARI_ZONE_CENTER_REST_HOUSE_WIDTH ; SAFARI_ZONE_CENTER
--- a/data/mapObjects/SafariZoneEast.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-SafariZoneEast_Object:
- db $0 ; border block
-
- db 5 ; warps
- warp 0, 4, 6, SAFARI_ZONE_NORTH
- warp 0, 5, 7, SAFARI_ZONE_NORTH
- warp 0, 22, 6, SAFARI_ZONE_CENTER
- warp 0, 23, 6, SAFARI_ZONE_CENTER
- warp 25, 9, 0, SAFARI_ZONE_EAST_REST_HOUSE
-
- db 3 ; signs
- sign 26, 10, 5 ; SafariZoneEastText5
- sign 6, 4, 6 ; SafariZoneEastText6
- sign 5, 23, 7 ; SafariZoneEastText7
-
- db 4 ; objects
- object SPRITE_BALL, 21, 10, STAY, NONE, 1, FULL_RESTORE
- object SPRITE_BALL, 3, 7, STAY, NONE, 2, MAX_POTION
- object SPRITE_BALL, 20, 13, STAY, NONE, 3, CARBOS
- object SPRITE_BALL, 15, 12, STAY, NONE, 4, TM_37
-
- ; warp-to
- warp_to 0, 4, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 0, 5, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 0, 22, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 0, 23, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 25, 9, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_EAST_REST_HOUSE
--- a/data/mapObjects/SafariZoneEastRestHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-SafariZoneEastRestHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 4, SAFARI_ZONE_EAST
- warp 3, 7, 4, SAFARI_ZONE_EAST
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_OAK_AIDE, 1, 3, WALK, 1, 1 ; person
- object SPRITE_ROCKER, 4, 2, STAY, NONE, 2 ; person
- object SPRITE_LAPRAS_GIVER, 5, 2, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 2, 7, SAFARI_ZONE_EAST_REST_HOUSE_WIDTH ; SAFARI_ZONE_EAST
- warp_to 3, 7, SAFARI_ZONE_EAST_REST_HOUSE_WIDTH ; SAFARI_ZONE_EAST
--- a/data/mapObjects/SafariZoneGate.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-SafariZoneGate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 3, 5, 4, -1
- warp 4, 5, 4, -1
- warp 3, 0, 0, SAFARI_ZONE_CENTER
- warp 4, 0, 1, SAFARI_ZONE_CENTER
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_WHITE_PLAYER, 6, 2, STAY, LEFT, 1 ; person
- object SPRITE_WHITE_PLAYER, 1, 4, STAY, RIGHT, 2 ; person
-
- ; warp-to
- warp_to 3, 5, SAFARI_ZONE_GATE_WIDTH
- warp_to 4, 5, SAFARI_ZONE_GATE_WIDTH
- warp_to 3, 0, SAFARI_ZONE_GATE_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 4, 0, SAFARI_ZONE_GATE_WIDTH ; SAFARI_ZONE_CENTER
--- a/data/mapObjects/SafariZoneNorth.asm
+++ /dev/null
@@ -1,35 +1,0 @@
-SafariZoneNorth_Object:
- db $0 ; border block
-
- db 9 ; warps
- warp 2, 35, 0, SAFARI_ZONE_WEST
- warp 3, 35, 1, SAFARI_ZONE_WEST
- warp 8, 35, 2, SAFARI_ZONE_WEST
- warp 9, 35, 3, SAFARI_ZONE_WEST
- warp 20, 35, 4, SAFARI_ZONE_CENTER
- warp 21, 35, 5, SAFARI_ZONE_CENTER
- warp 39, 30, 0, SAFARI_ZONE_EAST
- warp 39, 31, 1, SAFARI_ZONE_EAST
- warp 35, 3, 0, SAFARI_ZONE_NORTH_REST_HOUSE
-
- db 5 ; signs
- sign 36, 4, 3 ; SafariZoneNorthText3
- sign 4, 25, 4 ; SafariZoneNorthText4
- sign 13, 31, 5 ; SafariZoneNorthText5
- sign 19, 33, 6 ; SafariZoneNorthText6
- sign 26, 28, 7 ; SafariZoneNorthText7
-
- db 2 ; objects
- object SPRITE_BALL, 25, 1, STAY, NONE, 1, PROTEIN
- object SPRITE_BALL, 19, 7, STAY, NONE, 2, TM_40
-
- ; warp-to
- warp_to 2, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
- warp_to 3, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
- warp_to 8, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
- warp_to 9, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
- warp_to 20, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 21, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 39, 30, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_EAST
- warp_to 39, 31, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_EAST
- warp_to 35, 3, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_NORTH_REST_HOUSE
--- a/data/mapObjects/SafariZoneNorthRestHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-SafariZoneNorthRestHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 8, SAFARI_ZONE_NORTH
- warp 3, 7, 8, SAFARI_ZONE_NORTH
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_OAK_AIDE, 6, 3, WALK, 2, 1 ; person
- object SPRITE_WHITE_PLAYER, 3, 4, STAY, NONE, 2 ; person
- object SPRITE_GENTLEMAN, 1, 5, WALK, 1, 3 ; person
-
- ; warp-to
- warp_to 2, 7, SAFARI_ZONE_NORTH_REST_HOUSE_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 3, 7, SAFARI_ZONE_NORTH_REST_HOUSE_WIDTH ; SAFARI_ZONE_NORTH
--- a/data/mapObjects/SafariZoneSecretHouse.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-SafariZoneSecretHouse_Object:
- db $17 ; border block
-
- db 2 ; warps
- warp 2, 7, 6, SAFARI_ZONE_WEST
- warp 3, 7, 6, SAFARI_ZONE_WEST
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FISHER, 3, 3, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 2, 7, SAFARI_ZONE_SECRET_HOUSE_WIDTH ; SAFARI_ZONE_WEST
- warp_to 3, 7, SAFARI_ZONE_SECRET_HOUSE_WIDTH ; SAFARI_ZONE_WEST
--- a/data/mapObjects/SafariZoneWest.asm
+++ /dev/null
@@ -1,34 +1,0 @@
-SafariZoneWest_Object:
- db $0 ; border block
-
- db 8 ; warps
- warp 20, 0, 0, SAFARI_ZONE_NORTH
- warp 21, 0, 1, SAFARI_ZONE_NORTH
- warp 26, 0, 2, SAFARI_ZONE_NORTH
- warp 27, 0, 3, SAFARI_ZONE_NORTH
- warp 29, 22, 2, SAFARI_ZONE_CENTER
- warp 29, 23, 3, SAFARI_ZONE_CENTER
- warp 3, 3, 0, SAFARI_ZONE_SECRET_HOUSE
- warp 11, 11, 0, SAFARI_ZONE_WEST_REST_HOUSE
-
- db 4 ; signs
- sign 12, 12, 5 ; SafariZoneWestText5
- sign 17, 3, 6 ; SafariZoneWestText6
- sign 26, 4, 7 ; SafariZoneWestText7
- sign 24, 22, 8 ; SafariZoneWestText8
-
- db 4 ; objects
- object SPRITE_BALL, 8, 20, STAY, NONE, 1, MAX_POTION
- object SPRITE_BALL, 9, 7, STAY, NONE, 2, TM_32
- object SPRITE_BALL, 18, 18, STAY, NONE, 3, MAX_REVIVE
- object SPRITE_BALL, 19, 7, STAY, NONE, 4, GOLD_TEETH
-
- ; warp-to
- warp_to 20, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 21, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 26, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 27, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
- warp_to 29, 22, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 29, 23, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_CENTER
- warp_to 3, 3, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_SECRET_HOUSE
- warp_to 11, 11, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_WEST_REST_HOUSE
--- a/data/mapObjects/SafariZoneWestRestHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-SafariZoneWestRestHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 7, SAFARI_ZONE_WEST
- warp 3, 7, 7, SAFARI_ZONE_WEST
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_OAK_AIDE, 4, 4, WALK, 0, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 0, 2, STAY, RIGHT, 2 ; person
- object SPRITE_ERIKA, 6, 2, STAY, DOWN, 3 ; person
-
- ; warp-to
- warp_to 2, 7, SAFARI_ZONE_WEST_REST_HOUSE_WIDTH ; SAFARI_ZONE_WEST
- warp_to 3, 7, SAFARI_ZONE_WEST_REST_HOUSE_WIDTH ; SAFARI_ZONE_WEST
--- a/data/mapObjects/SaffronCity.asm
+++ /dev/null
@@ -1,51 +1,0 @@
-SaffronCity_Object:
- db $f ; border block
-
- db 8 ; warps
- warp 7, 5, 0, COPYCATS_HOUSE_1F
- warp 26, 3, 0, FIGHTING_DOJO
- warp 34, 3, 0, SAFFRON_GYM
- warp 13, 11, 0, SAFFRON_PIDGEY_HOUSE
- warp 25, 11, 0, SAFFRON_MART
- warp 18, 21, 0, SILPH_CO_1F
- warp 9, 29, 0, SAFFRON_POKECENTER
- warp 29, 29, 0, MR_PSYCHICS_HOUSE
-
- db 10 ; signs
- sign 17, 5, 16 ; SaffronCityText16
- sign 27, 5, 17 ; SaffronCityText17
- sign 35, 5, 18 ; SaffronCityText18
- sign 26, 11, 19 ; MartSignText
- sign 39, 19, 20 ; SaffronCityText20
- sign 5, 21, 21 ; SaffronCityText21
- sign 15, 21, 22 ; SaffronCityText22
- sign 10, 29, 23 ; PokeCenterSignText
- sign 27, 29, 24 ; SaffronCityText24
- sign 1, 19, 25 ; SaffronCityText25
-
- db 15 ; objects
- object SPRITE_ROCKET, 7, 6, STAY, NONE, 1 ; person
- object SPRITE_ROCKET, 20, 8, WALK, 2, 2 ; person
- object SPRITE_ROCKET, 34, 4, STAY, NONE, 3 ; person
- object SPRITE_ROCKET, 13, 12, STAY, NONE, 4 ; person
- object SPRITE_ROCKET, 11, 25, WALK, 2, 5 ; person
- object SPRITE_ROCKET, 32, 13, WALK, 2, 6 ; person
- object SPRITE_ROCKET, 18, 30, WALK, 2, 7 ; person
- object SPRITE_OAK_AIDE, 8, 14, WALK, 0, 8 ; person
- object SPRITE_LAPRAS_GIVER, 23, 23, STAY, NONE, 9 ; person
- object SPRITE_ERIKA, 17, 30, WALK, 2, 10 ; person
- object SPRITE_GENTLEMAN, 30, 12, STAY, DOWN, 11 ; person
- object SPRITE_BIRD, 31, 12, STAY, DOWN, 12 ; person
- object SPRITE_ROCKER, 18, 8, STAY, UP, 13 ; person
- object SPRITE_ROCKET, 18, 22, STAY, DOWN, 14 ; person
- object SPRITE_ROCKET, 19, 22, STAY, DOWN, 15 ; person
-
- ; warp-to
- warp_to 7, 5, SAFFRON_CITY_WIDTH ; COPYCATS_HOUSE_1F
- warp_to 26, 3, SAFFRON_CITY_WIDTH ; FIGHTING_DOJO
- warp_to 34, 3, SAFFRON_CITY_WIDTH ; SAFFRON_GYM
- warp_to 13, 11, SAFFRON_CITY_WIDTH ; SAFFRON_PIDGEY_HOUSE
- warp_to 25, 11, SAFFRON_CITY_WIDTH ; SAFFRON_MART
- warp_to 18, 21, SAFFRON_CITY_WIDTH ; SILPH_CO_1F
- warp_to 9, 29, SAFFRON_CITY_WIDTH ; SAFFRON_POKECENTER
- warp_to 29, 29, SAFFRON_CITY_WIDTH ; MR_PSYCHICS_HOUSE
--- a/data/mapObjects/SaffronGym.asm
+++ /dev/null
@@ -1,83 +1,0 @@
-SaffronGym_Object:
- db $2e ; border block
-
- db 32 ; warps
- warp 8, 17, 2, -1
- warp 9, 17, 2, -1
- warp 1, 3, 22, SAFFRON_GYM
- warp 5, 3, 15, SAFFRON_GYM
- warp 1, 5, 18, SAFFRON_GYM
- warp 5, 5, 8, SAFFRON_GYM
- warp 1, 9, 27, SAFFRON_GYM
- warp 5, 9, 16, SAFFRON_GYM
- warp 1, 11, 5, SAFFRON_GYM
- warp 5, 11, 13, SAFFRON_GYM
- warp 1, 15, 23, SAFFRON_GYM
- warp 5, 15, 30, SAFFRON_GYM
- warp 1, 17, 17, SAFFRON_GYM
- warp 5, 17, 9, SAFFRON_GYM
- warp 9, 3, 26, SAFFRON_GYM
- warp 11, 3, 3, SAFFRON_GYM
- warp 9, 5, 7, SAFFRON_GYM
- warp 11, 5, 12, SAFFRON_GYM
- warp 11, 11, 4, SAFFRON_GYM
- warp 11, 15, 31, SAFFRON_GYM
- warp 15, 3, 24, SAFFRON_GYM
- warp 19, 3, 28, SAFFRON_GYM
- warp 15, 5, 2, SAFFRON_GYM
- warp 19, 5, 10, SAFFRON_GYM
- warp 15, 9, 20, SAFFRON_GYM
- warp 19, 9, 29, SAFFRON_GYM
- warp 15, 11, 14, SAFFRON_GYM
- warp 19, 11, 6, SAFFRON_GYM
- warp 15, 15, 21, SAFFRON_GYM
- warp 19, 15, 25, SAFFRON_GYM
- warp 15, 17, 11, SAFFRON_GYM
- warp 19, 17, 19, SAFFRON_GYM
-
- db 0 ; signs
-
- db 9 ; objects
- object SPRITE_GIRL, 9, 8, STAY, DOWN, 1, OPP_SABRINA, 1
- object SPRITE_MEDIUM, 10, 1, STAY, DOWN, 2, OPP_CHANNELER, 22
- object SPRITE_BUG_CATCHER, 17, 1, STAY, DOWN, 3, OPP_PSYCHIC_TR, 1
- object SPRITE_MEDIUM, 3, 7, STAY, DOWN, 4, OPP_CHANNELER, 23
- object SPRITE_BUG_CATCHER, 17, 7, STAY, DOWN, 5, OPP_PSYCHIC_TR, 2
- object SPRITE_MEDIUM, 3, 13, STAY, DOWN, 6, OPP_CHANNELER, 24
- object SPRITE_BUG_CATCHER, 17, 13, STAY, DOWN, 7, OPP_PSYCHIC_TR, 3
- object SPRITE_BUG_CATCHER, 3, 1, STAY, DOWN, 8, OPP_PSYCHIC_TR, 4
- object SPRITE_GYM_HELPER, 10, 15, STAY, DOWN, 9 ; person
-
- ; warp-to
- warp_to 8, 17, SAFFRON_GYM_WIDTH
- warp_to 9, 17, SAFFRON_GYM_WIDTH
- warp_to 1, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 5, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 1, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 5, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 1, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 5, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 1, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 5, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 1, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 5, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 1, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 5, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 9, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 11, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 9, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 11, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 11, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 11, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 15, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 19, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 15, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 19, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 15, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 19, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 15, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 19, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 15, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 19, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 15, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
- warp_to 19, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
--- a/data/mapObjects/SaffronMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-SaffronMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 4, -1
- warp 4, 7, 4, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_2, 4, 2, STAY, NONE, 2 ; person
- object SPRITE_LASS, 6, 5, WALK, 0, 3 ; person
-
- ; warp-to
- warp_to 3, 7, SAFFRON_MART_WIDTH
- warp_to 4, 7, SAFFRON_MART_WIDTH
--- a/data/mapObjects/SaffronPidgeyHouse.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-SaffronPidgeyHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 3, -1
- warp 3, 7, 3, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_BRUNETTE_GIRL, 2, 3, STAY, RIGHT, 1 ; person
- object SPRITE_BIRD, 0, 4, WALK, 1, 2 ; person
- object SPRITE_BUG_CATCHER, 4, 1, STAY, DOWN, 3 ; person
- object SPRITE_PAPER_SHEET, 3, 3, STAY, NONE, 4 ; person
-
- ; warp-to
- warp_to 2, 7, SAFFRON_PIDGEY_HOUSE_WIDTH
- warp_to 3, 7, SAFFRON_PIDGEY_HOUSE_WIDTH
--- a/data/mapObjects/SaffronPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-SaffronPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 6, -1
- warp 4, 7, 6, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_FOULARD_WOMAN, 5, 5, STAY, NONE, 2 ; person
- object SPRITE_GENTLEMAN, 8, 3, STAY, DOWN, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, SAFFRON_POKECENTER_WIDTH
- warp_to 4, 7, SAFFRON_POKECENTER_WIDTH
--- a/data/mapObjects/SeafoamIslands1F.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-SeafoamIslands1F_Object:
- db $7d ; border block
-
- db 7 ; warps
- warp 4, 17, 0, -1
- warp 5, 17, 0, -1
- warp 26, 17, 1, -1
- warp 27, 17, 1, -1
- warp 7, 5, 1, SEAFOAM_ISLANDS_B1F
- warp 25, 3, 6, SEAFOAM_ISLANDS_B1F
- warp 23, 15, 4, SEAFOAM_ISLANDS_B1F
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BOULDER, 18, 10, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
- object SPRITE_BOULDER, 26, 7, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
-
- ; warp-to
- warp_to 4, 17, SEAFOAM_ISLANDS_1F_WIDTH
- warp_to 5, 17, SEAFOAM_ISLANDS_1F_WIDTH
- warp_to 26, 17, SEAFOAM_ISLANDS_1F_WIDTH
- warp_to 27, 17, SEAFOAM_ISLANDS_1F_WIDTH
- warp_to 7, 5, SEAFOAM_ISLANDS_1F_WIDTH ; SEAFOAM_ISLANDS_B1F
- warp_to 25, 3, SEAFOAM_ISLANDS_1F_WIDTH ; SEAFOAM_ISLANDS_B1F
- warp_to 23, 15, SEAFOAM_ISLANDS_1F_WIDTH ; SEAFOAM_ISLANDS_B1F
-
- ; holes
- warp_to 17, 6, SEAFOAM_ISLANDS_1F_WIDTH
- warp_to 24, 6, SEAFOAM_ISLANDS_1F_WIDTH
--- a/data/mapObjects/SeafoamIslandsB1F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-SeafoamIslandsB1F_Object:
- db $7d ; border block
-
- db 7 ; warps
- warp 4, 2, 0, SEAFOAM_ISLANDS_B2F
- warp 7, 5, 4, SEAFOAM_ISLANDS_1F
- warp 13, 7, 2, SEAFOAM_ISLANDS_B2F
- warp 19, 15, 3, SEAFOAM_ISLANDS_B2F
- warp 23, 15, 6, SEAFOAM_ISLANDS_1F
- warp 25, 11, 5, SEAFOAM_ISLANDS_B2F
- warp 25, 3, 5, SEAFOAM_ISLANDS_1F
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BOULDER, 17, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
- object SPRITE_BOULDER, 22, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
-
- ; warp-to
- warp_to 4, 2, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 7, 5, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_1F
- warp_to 13, 7, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 19, 15, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 23, 15, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_1F
- warp_to 25, 11, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 25, 3, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_1F
--- a/data/mapObjects/SeafoamIslandsB2F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-SeafoamIslandsB2F_Object:
- db $7d ; border block
-
- db 7 ; warps
- warp 5, 3, 0, SEAFOAM_ISLANDS_B1F
- warp 5, 13, 0, SEAFOAM_ISLANDS_B3F
- warp 13, 7, 2, SEAFOAM_ISLANDS_B1F
- warp 19, 15, 3, SEAFOAM_ISLANDS_B1F
- warp 25, 3, 3, SEAFOAM_ISLANDS_B3F
- warp 25, 11, 5, SEAFOAM_ISLANDS_B1F
- warp 25, 14, 4, SEAFOAM_ISLANDS_B3F
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BOULDER, 18, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
- object SPRITE_BOULDER, 23, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
-
- ; warp-to
- warp_to 5, 3, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
- warp_to 5, 13, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B3F
- warp_to 13, 7, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
- warp_to 19, 15, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
- warp_to 25, 3, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B3F
- warp_to 25, 11, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
- warp_to 25, 14, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B3F
--- a/data/mapObjects/SeafoamIslandsB3F.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-SeafoamIslandsB3F_Object:
- db $7d ; border block
-
- db 7 ; warps
- warp 5, 12, 1, SEAFOAM_ISLANDS_B2F
- warp 8, 6, 2, SEAFOAM_ISLANDS_B4F
- warp 25, 4, 3, SEAFOAM_ISLANDS_B4F
- warp 25, 3, 4, SEAFOAM_ISLANDS_B2F
- warp 25, 14, 6, SEAFOAM_ISLANDS_B2F
- warp 20, 17, 0, SEAFOAM_ISLANDS_B4F
- warp 21, 17, 1, SEAFOAM_ISLANDS_B4F
-
- db 0 ; signs
-
- db 6 ; objects
- object SPRITE_BOULDER, 5, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
- object SPRITE_BOULDER, 3, 15, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
- object SPRITE_BOULDER, 8, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 3 ; person
- object SPRITE_BOULDER, 9, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 4 ; person
- object SPRITE_BOULDER, 18, 6, STAY, NONE, 5 ; person
- object SPRITE_BOULDER, 19, 6, STAY, NONE, 6 ; person
-
- ; warp-to
- warp_to 5, 12, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 8, 6, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
- warp_to 25, 4, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
- warp_to 25, 3, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 25, 14, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B2F
- warp_to 20, 17, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
- warp_to 21, 17, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
--- a/data/mapObjects/SeafoamIslandsB4F.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-SeafoamIslandsB4F_Object:
- db $7d ; border block
-
- db 4 ; warps
- warp 20, 17, 5, SEAFOAM_ISLANDS_B3F
- warp 21, 17, 6, SEAFOAM_ISLANDS_B3F
- warp 11, 7, 1, SEAFOAM_ISLANDS_B3F
- warp 25, 4, 2, SEAFOAM_ISLANDS_B3F
-
- db 2 ; signs
- sign 9, 15, 4 ; SeafoamIslands5Text4
- sign 23, 1, 5 ; SeafoamIslands5Text5
-
- db 3 ; objects
- object SPRITE_BOULDER, 4, 15, STAY, NONE, 1 ; person
- object SPRITE_BOULDER, 5, 15, STAY, NONE, 2 ; person
- object SPRITE_BIRD, 6, 1, STAY, DOWN, 3, ARTICUNO, 50
-
- ; warp-to
- warp_to 20, 17, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
- warp_to 21, 17, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
- warp_to 11, 7, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
- warp_to 25, 4, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
--- a/data/mapObjects/SilphCo10F.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-SilphCo10F_Object:
- db $2e ; border block
-
- db 6 ; warps
- warp 8, 0, 0, SILPH_CO_9F
- warp 10, 0, 0, SILPH_CO_11F
- warp 12, 0, 0, SILPH_CO_ELEVATOR
- warp 9, 11, 3, SILPH_CO_4F
- warp 13, 15, 5, SILPH_CO_4F
- warp 13, 7, 6, SILPH_CO_4F
-
- db 0 ; signs
-
- db 6 ; objects
- object SPRITE_ROCKET, 1, 9, STAY, RIGHT, 1, OPP_ROCKET, 39
- object SPRITE_OAK_AIDE, 10, 2, STAY, LEFT, 2, OPP_SCIENTIST, 11
- object SPRITE_ERIKA, 9, 15, WALK, 0, 3 ; person
- object SPRITE_BALL, 2, 12, STAY, NONE, 4, TM_26
- object SPRITE_BALL, 4, 14, STAY, NONE, 5, RARE_CANDY
- object SPRITE_BALL, 5, 11, STAY, NONE, 6, CARBOS
-
- ; warp-to
- warp_to 8, 0, SILPH_CO_10F_WIDTH ; SILPH_CO_9F
- warp_to 10, 0, SILPH_CO_10F_WIDTH ; SILPH_CO_11F
- warp_to 12, 0, SILPH_CO_10F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 9, 11, SILPH_CO_10F_WIDTH ; SILPH_CO_4F
- warp_to 13, 15, SILPH_CO_10F_WIDTH ; SILPH_CO_4F
- warp_to 13, 7, SILPH_CO_10F_WIDTH ; SILPH_CO_4F
--- a/data/mapObjects/SilphCo11F.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-SilphCo11F_Object:
- db $d ; border block
-
- db 4 ; warps
- warp 9, 0, 1, SILPH_CO_10F
- warp 13, 0, 0, SILPH_CO_ELEVATOR
- warp 5, 5, 9, -1
- warp 3, 2, 3, SILPH_CO_7F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_MR_MASTERBALL, 7, 5, STAY, DOWN, 1 ; person
- object SPRITE_FOULARD_WOMAN, 10, 5, STAY, DOWN, 2 ; person
- object SPRITE_GIOVANNI, 6, 9, STAY, DOWN, 3, OPP_GIOVANNI, 2
- object SPRITE_ROCKET, 3, 16, STAY, UP, 4, OPP_ROCKET, 41
- object SPRITE_ROCKET, 15, 9, STAY, UP, 5, OPP_ROCKET, 40
-
- ; warp-to
- warp_to 9, 0, SILPH_CO_11F_WIDTH ; SILPH_CO_10F
- warp_to 13, 0, SILPH_CO_11F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 5, 5, SILPH_CO_11F_WIDTH
- warp_to 3, 2, SILPH_CO_11F_WIDTH ; SILPH_CO_7F
--- a/data/mapObjects/SilphCo1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-SilphCo1F_Object:
- db $2e ; border block
-
- db 5 ; warps
- warp 10, 17, 5, -1
- warp 11, 17, 5, -1
- warp 26, 0, 0, SILPH_CO_2F
- warp 20, 0, 0, SILPH_CO_ELEVATOR
- warp 16, 10, 6, SILPH_CO_3F
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_CABLE_CLUB_WOMAN, 4, 2, STAY, DOWN, 1 ; person
-
- ; warp-to
- warp_to 10, 17, SILPH_CO_1F_WIDTH
- warp_to 11, 17, SILPH_CO_1F_WIDTH
- warp_to 26, 0, SILPH_CO_1F_WIDTH ; SILPH_CO_2F
- warp_to 20, 0, SILPH_CO_1F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 16, 10, SILPH_CO_1F_WIDTH ; SILPH_CO_3F
--- a/data/mapObjects/SilphCo2F.asm
+++ /dev/null
@@ -1,29 +1,0 @@
-SilphCo2F_Object:
- db $2e ; border block
-
- db 7 ; warps
- warp 24, 0, 2, SILPH_CO_1F
- warp 26, 0, 0, SILPH_CO_3F
- warp 20, 0, 0, SILPH_CO_ELEVATOR
- warp 3, 3, 6, SILPH_CO_3F
- warp 13, 3, 4, SILPH_CO_8F
- warp 27, 15, 5, SILPH_CO_8F
- warp 9, 15, 4, SILPH_CO_6F
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_ERIKA, 10, 1, STAY, UP, 1 ; person
- object SPRITE_OAK_AIDE, 5, 12, STAY, DOWN, 2, OPP_SCIENTIST, 2
- object SPRITE_OAK_AIDE, 24, 13, STAY, LEFT, 3, OPP_SCIENTIST, 3
- object SPRITE_ROCKET, 16, 11, STAY, UP, 4, OPP_ROCKET, 23
- object SPRITE_ROCKET, 24, 7, STAY, UP, 5, OPP_ROCKET, 24
-
- ; warp-to
- warp_to 24, 0, SILPH_CO_2F_WIDTH ; SILPH_CO_1F
- warp_to 26, 0, SILPH_CO_2F_WIDTH ; SILPH_CO_3F
- warp_to 20, 0, SILPH_CO_2F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 3, 3, SILPH_CO_2F_WIDTH ; SILPH_CO_3F
- warp_to 13, 3, SILPH_CO_2F_WIDTH ; SILPH_CO_8F
- warp_to 27, 15, SILPH_CO_2F_WIDTH ; SILPH_CO_8F
- warp_to 9, 15, SILPH_CO_2F_WIDTH ; SILPH_CO_6F
--- a/data/mapObjects/SilphCo3F.asm
+++ /dev/null
@@ -1,34 +1,0 @@
-SilphCo3F_Object:
- db $2e ; border block
-
- db 10 ; warps
- warp 26, 0, 1, SILPH_CO_2F
- warp 24, 0, 0, SILPH_CO_4F
- warp 20, 0, 0, SILPH_CO_ELEVATOR
- warp 23, 11, 9, SILPH_CO_3F
- warp 3, 3, 5, SILPH_CO_5F
- warp 3, 15, 6, SILPH_CO_5F
- warp 27, 3, 3, SILPH_CO_2F
- warp 3, 11, 3, SILPH_CO_9F
- warp 11, 11, 4, SILPH_CO_7F
- warp 27, 15, 3, SILPH_CO_3F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_LAPRAS_GIVER, 24, 8, STAY, NONE, 1 ; person
- object SPRITE_ROCKET, 20, 7, STAY, LEFT, 2, OPP_ROCKET, 25
- object SPRITE_OAK_AIDE, 7, 9, STAY, DOWN, 3, OPP_SCIENTIST, 4
- object SPRITE_BALL, 8, 5, STAY, NONE, 4, HYPER_POTION
-
- ; warp-to
- warp_to 26, 0, SILPH_CO_3F_WIDTH ; SILPH_CO_2F
- warp_to 24, 0, SILPH_CO_3F_WIDTH ; SILPH_CO_4F
- warp_to 20, 0, SILPH_CO_3F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 23, 11, SILPH_CO_3F_WIDTH ; SILPH_CO_3F
- warp_to 3, 3, SILPH_CO_3F_WIDTH ; SILPH_CO_5F
- warp_to 3, 15, SILPH_CO_3F_WIDTH ; SILPH_CO_5F
- warp_to 27, 3, SILPH_CO_3F_WIDTH ; SILPH_CO_2F
- warp_to 3, 11, SILPH_CO_3F_WIDTH ; SILPH_CO_9F
- warp_to 11, 11, SILPH_CO_3F_WIDTH ; SILPH_CO_7F
- warp_to 27, 15, SILPH_CO_3F_WIDTH ; SILPH_CO_3F
--- a/data/mapObjects/SilphCo4F.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-SilphCo4F_Object:
- db $2e ; border block
-
- db 7 ; warps
- warp 24, 0, 1, SILPH_CO_3F
- warp 26, 0, 1, SILPH_CO_5F
- warp 20, 0, 0, SILPH_CO_ELEVATOR
- warp 11, 7, 3, SILPH_CO_10F
- warp 17, 3, 3, SILPH_CO_6F
- warp 3, 15, 4, SILPH_CO_10F
- warp 17, 11, 5, SILPH_CO_10F
-
- db 0 ; signs
-
- db 7 ; objects
- object SPRITE_LAPRAS_GIVER, 6, 2, STAY, NONE, 1 ; person
- object SPRITE_ROCKET, 9, 14, STAY, RIGHT, 2, OPP_ROCKET, 26
- object SPRITE_OAK_AIDE, 14, 6, STAY, LEFT, 3, OPP_SCIENTIST, 5
- object SPRITE_ROCKET, 26, 10, STAY, UP, 4, OPP_ROCKET, 27
- object SPRITE_BALL, 3, 9, STAY, NONE, 5, FULL_HEAL
- object SPRITE_BALL, 4, 7, STAY, NONE, 6, MAX_REVIVE
- object SPRITE_BALL, 5, 8, STAY, NONE, 7, ESCAPE_ROPE
-
- ; warp-to
- warp_to 24, 0, SILPH_CO_4F_WIDTH ; SILPH_CO_3F
- warp_to 26, 0, SILPH_CO_4F_WIDTH ; SILPH_CO_5F
- warp_to 20, 0, SILPH_CO_4F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 11, 7, SILPH_CO_4F_WIDTH ; SILPH_CO_10F
- warp_to 17, 3, SILPH_CO_4F_WIDTH ; SILPH_CO_6F
- warp_to 3, 15, SILPH_CO_4F_WIDTH ; SILPH_CO_10F
- warp_to 17, 11, SILPH_CO_4F_WIDTH ; SILPH_CO_10F
--- a/data/mapObjects/SilphCo5F.asm
+++ /dev/null
@@ -1,35 +1,0 @@
-SilphCo5F_Object:
- db $2e ; border block
-
- db 7 ; warps
- warp 24, 0, 1, SILPH_CO_6F
- warp 26, 0, 1, SILPH_CO_4F
- warp 20, 0, 0, SILPH_CO_ELEVATOR
- warp 27, 3, 5, SILPH_CO_7F
- warp 9, 15, 4, SILPH_CO_9F
- warp 11, 5, 4, SILPH_CO_3F
- warp 3, 15, 5, SILPH_CO_3F
-
- db 0 ; signs
-
- db 11 ; objects
- object SPRITE_LAPRAS_GIVER, 13, 9, STAY, NONE, 1 ; person
- object SPRITE_ROCKET, 8, 16, STAY, RIGHT, 2, OPP_ROCKET, 28
- object SPRITE_OAK_AIDE, 8, 3, STAY, RIGHT, 3, OPP_SCIENTIST, 6
- object SPRITE_ROCKER, 18, 10, STAY, UP, 4, OPP_JUGGLER, 1
- object SPRITE_ROCKET, 28, 4, STAY, UP, 5, OPP_ROCKET, 29
- object SPRITE_BALL, 2, 13, STAY, NONE, 6, TM_09
- object SPRITE_BALL, 4, 6, STAY, NONE, 7, PROTEIN
- object SPRITE_BALL, 21, 16, STAY, NONE, 8, CARD_KEY
- object SPRITE_CLIPBOARD, 22, 12, STAY, NONE, 9 ; person
- object SPRITE_CLIPBOARD, 25, 10, STAY, NONE, 10 ; person
- object SPRITE_CLIPBOARD, 24, 6, STAY, NONE, 11 ; person
-
- ; warp-to
- warp_to 24, 0, SILPH_CO_5F_WIDTH ; SILPH_CO_6F
- warp_to 26, 0, SILPH_CO_5F_WIDTH ; SILPH_CO_4F
- warp_to 20, 0, SILPH_CO_5F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 27, 3, SILPH_CO_5F_WIDTH ; SILPH_CO_7F
- warp_to 9, 15, SILPH_CO_5F_WIDTH ; SILPH_CO_9F
- warp_to 11, 5, SILPH_CO_5F_WIDTH ; SILPH_CO_3F
- warp_to 3, 15, SILPH_CO_5F_WIDTH ; SILPH_CO_3F
--- a/data/mapObjects/SilphCo6F.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-SilphCo6F_Object:
- db $2e ; border block
-
- db 5 ; warps
- warp 16, 0, 1, SILPH_CO_7F
- warp 14, 0, 0, SILPH_CO_5F
- warp 18, 0, 0, SILPH_CO_ELEVATOR
- warp 3, 3, 4, SILPH_CO_4F
- warp 23, 3, 6, SILPH_CO_2F
-
- db 0 ; signs
-
- db 10 ; objects
- object SPRITE_LAPRAS_GIVER, 10, 6, STAY, NONE, 1 ; person
- object SPRITE_LAPRAS_GIVER, 20, 6, STAY, NONE, 2 ; person
- object SPRITE_ERIKA, 21, 6, STAY, DOWN, 3 ; person
- object SPRITE_ERIKA, 11, 10, STAY, RIGHT, 4 ; person
- object SPRITE_LAPRAS_GIVER, 18, 13, STAY, UP, 5 ; person
- object SPRITE_ROCKET, 17, 3, STAY, RIGHT, 6, OPP_ROCKET, 30
- object SPRITE_OAK_AIDE, 7, 8, STAY, DOWN, 7, OPP_SCIENTIST, 7
- object SPRITE_ROCKET, 14, 15, STAY, LEFT, 8, OPP_ROCKET, 31
- object SPRITE_BALL, 3, 12, STAY, NONE, 9, HP_UP
- object SPRITE_BALL, 2, 15, STAY, NONE, 10, X_ACCURACY
-
- ; warp-to
- warp_to 16, 0, SILPH_CO_6F_WIDTH ; SILPH_CO_7F
- warp_to 14, 0, SILPH_CO_6F_WIDTH ; SILPH_CO_5F
- warp_to 18, 0, SILPH_CO_6F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 3, 3, SILPH_CO_6F_WIDTH ; SILPH_CO_4F
- warp_to 23, 3, SILPH_CO_6F_WIDTH ; SILPH_CO_2F
--- a/data/mapObjects/SilphCo7F.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-SilphCo7F_Object:
- db $2e ; border block
-
- db 6 ; warps
- warp 16, 0, 1, SILPH_CO_8F
- warp 22, 0, 0, SILPH_CO_6F
- warp 18, 0, 0, SILPH_CO_ELEVATOR
- warp 5, 7, 3, SILPH_CO_11F
- warp 5, 3, 8, SILPH_CO_3F
- warp 21, 15, 3, SILPH_CO_5F
-
- db 0 ; signs
-
- db 11 ; objects
- object SPRITE_LAPRAS_GIVER, 1, 5, STAY, NONE, 1 ; person
- object SPRITE_LAPRAS_GIVER, 13, 13, STAY, UP, 2 ; person
- object SPRITE_LAPRAS_GIVER, 7, 10, STAY, NONE, 3 ; person
- object SPRITE_ERIKA, 10, 8, STAY, NONE, 4 ; person
- object SPRITE_ROCKET, 13, 1, STAY, DOWN, 5, OPP_ROCKET, 32
- object SPRITE_OAK_AIDE, 2, 13, STAY, DOWN, 6, OPP_SCIENTIST, 8
- object SPRITE_ROCKET, 20, 2, STAY, LEFT, 7, OPP_ROCKET, 33
- object SPRITE_ROCKET, 19, 14, STAY, RIGHT, 8, OPP_ROCKET, 34
- object SPRITE_BLUE, 3, 7, STAY, UP, 9 ; person
- object SPRITE_BALL, 1, 9, STAY, NONE, 10, CALCIUM
- object SPRITE_BALL, 24, 11, STAY, NONE, 11, TM_03
-
- ; warp-to
- warp_to 16, 0, SILPH_CO_7F_WIDTH ; SILPH_CO_8F
- warp_to 22, 0, SILPH_CO_7F_WIDTH ; SILPH_CO_6F
- warp_to 18, 0, SILPH_CO_7F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 5, 7, SILPH_CO_7F_WIDTH ; SILPH_CO_11F
- warp_to 5, 3, SILPH_CO_7F_WIDTH ; SILPH_CO_3F
- warp_to 21, 15, SILPH_CO_7F_WIDTH ; SILPH_CO_5F
--- a/data/mapObjects/SilphCo8F.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-SilphCo8F_Object:
- db $2e ; border block
-
- db 7 ; warps
- warp 16, 0, 1, SILPH_CO_9F
- warp 14, 0, 0, SILPH_CO_7F
- warp 18, 0, 0, SILPH_CO_ELEVATOR
- warp 3, 11, 6, SILPH_CO_8F
- warp 3, 15, 4, SILPH_CO_2F
- warp 11, 5, 5, SILPH_CO_2F
- warp 11, 9, 3, SILPH_CO_8F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_LAPRAS_GIVER, 4, 2, STAY, NONE, 1 ; person
- object SPRITE_ROCKET, 19, 2, STAY, LEFT, 2, OPP_ROCKET, 35
- object SPRITE_OAK_AIDE, 10, 2, STAY, DOWN, 3, OPP_SCIENTIST, 9
- object SPRITE_ROCKET, 12, 15, STAY, RIGHT, 4, OPP_ROCKET, 36
-
- ; warp-to
- warp_to 16, 0, SILPH_CO_8F_WIDTH ; SILPH_CO_9F
- warp_to 14, 0, SILPH_CO_8F_WIDTH ; SILPH_CO_7F
- warp_to 18, 0, SILPH_CO_8F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 3, 11, SILPH_CO_8F_WIDTH ; SILPH_CO_8F
- warp_to 3, 15, SILPH_CO_8F_WIDTH ; SILPH_CO_2F
- warp_to 11, 5, SILPH_CO_8F_WIDTH ; SILPH_CO_2F
- warp_to 11, 9, SILPH_CO_8F_WIDTH ; SILPH_CO_8F_WIDTH
--- a/data/mapObjects/SilphCo9F.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-SilphCo9F_Object:
- db $2e ; border block
-
- db 5 ; warps
- warp 14, 0, 0, SILPH_CO_10F
- warp 16, 0, 0, SILPH_CO_8F
- warp 18, 0, 0, SILPH_CO_ELEVATOR
- warp 9, 3, 7, SILPH_CO_3F
- warp 17, 15, 4, SILPH_CO_5F
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 14, STAY, DOWN, 1 ; person
- object SPRITE_ROCKET, 2, 4, STAY, UP, 2, OPP_ROCKET, 37
- object SPRITE_OAK_AIDE, 21, 13, STAY, DOWN, 3, OPP_SCIENTIST, 10
- object SPRITE_ROCKET, 13, 16, STAY, UP, 4, OPP_ROCKET, 38
-
- ; warp-to
- warp_to 14, 0, SILPH_CO_9F_WIDTH ; SILPH_CO_10F
- warp_to 16, 0, SILPH_CO_9F_WIDTH ; SILPH_CO_8F
- warp_to 18, 0, SILPH_CO_9F_WIDTH ; SILPH_CO_ELEVATOR
- warp_to 9, 3, SILPH_CO_9F_WIDTH ; SILPH_CO_3F
- warp_to 17, 15, SILPH_CO_9F_WIDTH ; SILPH_CO_5F
--- a/data/mapObjects/SilphCoElevator.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-SilphCoElevator_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 1, 3, 0, 237
- warp 2, 3, 0, 237
-
- db 1 ; signs
- sign 3, 0, 1 ; SilphCoElevatorText1
-
- db 0 ; objects
-
- ; warp-to
- warp_to 1, 3, SILPH_CO_ELEVATOR_WIDTH
- warp_to 2, 3, SILPH_CO_ELEVATOR_WIDTH
--- a/data/mapObjects/TradeCenter.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-TradeCenter_Object:
- db $e ; border block
-
- db 0 ; warps
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_RED, 2, 2, STAY, 0, 1 ; person
--- a/data/mapObjects/UndergroundPathNorthSouth.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-UndergroundPathNorthSouth_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 5, 4, 2, UNDERGROUND_PATH_ROUTE_5
- warp 2, 41, 2, UNDERGROUND_PATH_ROUTE_6
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 5, 4, UNDERGROUND_PATH_NORTH_SOUTH_WIDTH ; UNDERGROUND_PATH_ROUTE_5
- warp_to 2, 41, UNDERGROUND_PATH_NORTH_SOUTH_WIDTH ; UNDERGROUND_PATH_ROUTE_6
--- a/data/mapObjects/UndergroundPathRoute5.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-UndergroundPathRoute5_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 3, 7, 3, -1
- warp 4, 7, 3, -1
- warp 4, 4, 0, UNDERGROUND_PATH_NORTH_SOUTH
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_LITTLE_GIRL, 2, 3, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 3, 7, UNDERGROUND_PATH_ROUTE_5_WIDTH
- warp_to 4, 7, UNDERGROUND_PATH_ROUTE_5_WIDTH
- warp_to 4, 4, UNDERGROUND_PATH_ROUTE_5_WIDTH ; UNDERGROUND_PATH_NORTH_SOUTH
--- a/data/mapObjects/UndergroundPathRoute6.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-UndergroundPathRoute6_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 3, 7, 3, -1
- warp 4, 7, 3, -1
- warp 4, 4, 1, UNDERGROUND_PATH_NORTH_SOUTH
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GIRL, 2, 3, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 3, 7, UNDERGROUND_PATH_ROUTE_6_WIDTH
- warp_to 4, 7, UNDERGROUND_PATH_ROUTE_6_WIDTH
- warp_to 4, 4, UNDERGROUND_PATH_ROUTE_6_WIDTH ; UNDERGROUND_PATH_NORTH_SOUTH
--- a/data/mapObjects/UndergroundPathRoute7.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-UndergroundPathRoute7_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 3, 7, 4, -1
- warp 4, 7, 4, -1
- warp 4, 4, 0, UNDERGROUND_PATH_WEST_EAST
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FAT_BALD_GUY, 2, 4, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 3, 7, UNDERGROUND_PATH_ROUTE_7_WIDTH
- warp_to 4, 7, UNDERGROUND_PATH_ROUTE_7_WIDTH
- warp_to 4, 4, UNDERGROUND_PATH_ROUTE_7_WIDTH ; UNDERGROUND_PATH_WEST_EAST
--- a/data/mapObjects/UndergroundPathRoute7Copy.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-UndergroundPathRoute7Copy_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 3, 7, 5, -1
- warp 4, 7, 5, -1
- warp 4, 4, 0, UNDERGROUND_PATH_WEST_EAST
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_GIRL, 3, 2, STAY, NONE, 1 ; person
- object SPRITE_FAT_BALD_GUY, 2, 4, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 3, 7, UNDERGROUND_PATH_ROUTE_7_COPY_WIDTH
- warp_to 4, 7, UNDERGROUND_PATH_ROUTE_7_COPY_WIDTH
- warp_to 4, 4, UNDERGROUND_PATH_ROUTE_7_COPY_WIDTH ; UNDERGROUND_PATH_WEST_EAST
--- a/data/mapObjects/UndergroundPathRoute8.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-UndergroundPathRoute8_Object:
- db $a ; border block
-
- db 3 ; warps
- warp 3, 7, 4, -1
- warp 4, 7, 4, -1
- warp 4, 4, 1, UNDERGROUND_PATH_WEST_EAST
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_GIRL, 3, 4, STAY, NONE, 1 ; person
-
- ; warp-to
- warp_to 3, 7, UNDERGROUND_PATH_ROUTE_8_WIDTH
- warp_to 4, 7, UNDERGROUND_PATH_ROUTE_8_WIDTH
- warp_to 4, 4, UNDERGROUND_PATH_ROUTE_8_WIDTH ; UNDERGROUND_PATH_WEST_EAST
--- a/data/mapObjects/UndergroundPathWestEast.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-UndergroundPathWestEast_Object:
- db $1 ; border block
-
- db 2 ; warps
- warp 2, 5, 2, UNDERGROUND_PATH_ROUTE_7
- warp 47, 2, 2, UNDERGROUND_PATH_ROUTE_8
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 2, 5, UNDERGROUND_PATH_WEST_EAST_WIDTH ; UNDERGROUND_PATH_ROUTE_7
- warp_to 47, 2, UNDERGROUND_PATH_WEST_EAST_WIDTH ; UNDERGROUND_PATH_ROUTE_8
--- a/data/mapObjects/VermilionCity.asm
+++ /dev/null
@@ -1,41 +1,0 @@
-VermilionCity_Object:
- db $43 ; border block
-
- db 9 ; warps
- warp 11, 3, 0, VERMILION_POKECENTER
- warp 9, 13, 0, POKEMON_FAN_CLUB
- warp 23, 13, 0, VERMILION_MART
- warp 12, 19, 0, VERMILION_GYM
- warp 23, 19, 0, VERMILION_PIDGEY_HOUSE
- warp 18, 31, 0, VERMILION_DOCK
- warp 19, 31, 0, VERMILION_DOCK
- warp 15, 13, 0, VERMILION_TRADE_HOUSE
- warp 7, 3, 0, VERMILION_OLD_ROD_HOUSE
-
- db 7 ; signs
- sign 27, 3, 7 ; VermilionCityText7
- sign 37, 13, 8 ; VermilionCityText8
- sign 24, 13, 9 ; MartSignText
- sign 12, 3, 10 ; PokeCenterSignText
- sign 7, 13, 11 ; VermilionCityText11
- sign 7, 19, 12 ; VermilionCityText12
- sign 29, 15, 13 ; VermilionCityText13
-
- db 6 ; objects
- object SPRITE_FOULARD_WOMAN, 19, 7, WALK, 2, 1 ; person
- object SPRITE_GAMBLER, 14, 6, STAY, NONE, 2 ; person
- object SPRITE_SAILOR, 19, 30, STAY, UP, 3 ; person
- object SPRITE_GAMBLER, 30, 7, STAY, NONE, 4 ; person
- object SPRITE_SLOWBRO, 29, 9, WALK, 1, 5 ; person
- object SPRITE_SAILOR, 25, 27, WALK, 2, 6 ; person
-
- ; warp-to
- warp_to 11, 3, VERMILION_CITY_WIDTH ; VERMILION_POKECENTER
- warp_to 9, 13, VERMILION_CITY_WIDTH ; POKEMON_FAN_CLUB
- warp_to 23, 13, VERMILION_CITY_WIDTH ; VERMILION_MART
- warp_to 12, 19, VERMILION_CITY_WIDTH ; VERMILION_GYM
- warp_to 23, 19, VERMILION_CITY_WIDTH ; VERMILION_PIDGEY_HOUSE
- warp_to 18, 31, VERMILION_CITY_WIDTH ; VERMILION_DOCK
- warp_to 19, 31, VERMILION_CITY_WIDTH ; VERMILION_DOCK
- warp_to 15, 13, VERMILION_CITY_WIDTH ; VERMILION_TRADE_HOUSE
- warp_to 7, 3, VERMILION_CITY_WIDTH ; VERMILION_OLD_ROD_HOUSE
--- a/data/mapObjects/VermilionDock.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-VermilionDock_Object:
- db $f ; border block
-
- db 2 ; warps
- warp 14, 0, 5, -1
- warp 14, 2, 1, SS_ANNE_1F
-
- db 0 ; signs
-
- db 0 ; objects
-
- ; warp-to
- warp_to 14, 0, VERMILION_DOCK_WIDTH
- warp_to 14, 2, VERMILION_DOCK_WIDTH ; SS_ANNE_1F
--- a/data/mapObjects/VermilionGym.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-VermilionGym_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 4, 17, 3, -1
- warp 5, 17, 3, -1
-
- db 0 ; signs
-
- db 5 ; objects
- object SPRITE_ROCKER, 5, 1, STAY, DOWN, 1, OPP_LT_SURGE, 1
- object SPRITE_GENTLEMAN, 9, 6, STAY, LEFT, 2, OPP_GENTLEMAN, 3
- object SPRITE_BLACK_HAIR_BOY_2, 3, 8, STAY, LEFT, 3, OPP_ROCKER, 1
- object SPRITE_SAILOR, 0, 10, STAY, RIGHT, 4, OPP_SAILOR, 8
- object SPRITE_GYM_HELPER, 4, 14, STAY, DOWN, 5 ; person
-
- ; warp-to
- warp_to 4, 17, VERMILION_GYM_WIDTH
- warp_to 5, 17, VERMILION_GYM_WIDTH
--- a/data/mapObjects/VermilionMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-VermilionMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 2, -1
- warp 4, 7, 2, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 5, 6, STAY, NONE, 2 ; person
- object SPRITE_LASS, 3, 3, WALK, 2, 3 ; person
-
- ; warp-to
- warp_to 3, 7, VERMILION_MART_WIDTH
- warp_to 4, 7, VERMILION_MART_WIDTH
--- a/data/mapObjects/VermilionOldRodHouse.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-VermilionOldRodHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 8, -1
- warp 3, 7, 8, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_FISHER, 2, 4, STAY, RIGHT, 1 ; person
-
- ; warp-to
- warp_to 2, 7, VERMILION_OLD_ROD_HOUSE_WIDTH
- warp_to 3, 7, VERMILION_OLD_ROD_HOUSE_WIDTH
--- a/data/mapObjects/VermilionPidgeyHouse.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-VermilionPidgeyHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 4, -1
- warp 3, 7, 4, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_BUG_CATCHER, 5, 3, STAY, LEFT, 1 ; person
- object SPRITE_BIRD, 3, 5, WALK, 2, 2 ; person
- object SPRITE_PAPER_SHEET, 4, 3, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 2, 7, VERMILION_PIDGEY_HOUSE_WIDTH
- warp_to 3, 7, VERMILION_PIDGEY_HOUSE_WIDTH
--- a/data/mapObjects/VermilionPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-VermilionPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 0, -1
- warp 4, 7, 0, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_FISHER, 10, 5, STAY, NONE, 2 ; person
- object SPRITE_SAILOR, 5, 4, STAY, NONE, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, VERMILION_POKECENTER_WIDTH
- warp_to 4, 7, VERMILION_POKECENTER_WIDTH
--- a/data/mapObjects/VermilionTradeHouse.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-VermilionTradeHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 7, -1
- warp 3, 7, 7, -1
-
- db 0 ; signs
-
- db 1 ; objects
- object SPRITE_LITTLE_GIRL, 3, 5, STAY, UP, 1 ; person
-
- ; warp-to
- warp_to 2, 7, VERMILION_TRADE_HOUSE_WIDTH
- warp_to 3, 7, VERMILION_TRADE_HOUSE_WIDTH
--- a/data/mapObjects/VictoryRoad1F.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-VictoryRoad1F_Object:
- db $7d ; border block
-
- db 3 ; warps
- warp 8, 17, 2, -1
- warp 9, 17, 2, -1
- warp 1, 1, 0, VICTORY_ROAD_2F
-
- db 0 ; signs
-
- db 7 ; objects
- object SPRITE_LASS, 7, 5, STAY, RIGHT, 1, OPP_COOLTRAINER_F, 5
- object SPRITE_BLACK_HAIR_BOY_1, 3, 2, STAY, DOWN, 2, OPP_COOLTRAINER_M, 5
- object SPRITE_BALL, 11, 0, STAY, NONE, 3, TM_43
- object SPRITE_BALL, 9, 2, STAY, NONE, 4, RARE_CANDY
- object SPRITE_BOULDER, 5, 15, STAY, BOULDER_MOVEMENT_BYTE_2, 5 ; person
- object SPRITE_BOULDER, 14, 2, STAY, BOULDER_MOVEMENT_BYTE_2, 6 ; person
- object SPRITE_BOULDER, 2, 10, STAY, BOULDER_MOVEMENT_BYTE_2, 7 ; person
-
- ; warp-to
- warp_to 8, 17, VICTORY_ROAD_1F_WIDTH
- warp_to 9, 17, VICTORY_ROAD_1F_WIDTH
- warp_to 1, 1, VICTORY_ROAD_1F_WIDTH ; VICTORY_ROAD_2F
--- a/data/mapObjects/VictoryRoad2F.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-VictoryRoad2F_Object:
- db $7d ; border block
-
- db 7 ; warps
- warp 0, 8, 2, VICTORY_ROAD_1F
- warp 29, 7, 3, -1
- warp 29, 8, 3, -1
- warp 23, 7, 0, VICTORY_ROAD_3F
- warp 25, 14, 2, VICTORY_ROAD_3F
- warp 27, 7, 1, VICTORY_ROAD_3F
- warp 1, 1, 3, VICTORY_ROAD_3F
-
- db 0 ; signs
-
- db 13 ; objects
- object SPRITE_HIKER, 12, 9, STAY, LEFT, 1, OPP_BLACKBELT, 9
- object SPRITE_BLACK_HAIR_BOY_2, 21, 13, STAY, LEFT, 2, OPP_JUGGLER, 2
- object SPRITE_BLACK_HAIR_BOY_1, 19, 8, STAY, DOWN, 3, OPP_TAMER, 5
- object SPRITE_BLACK_HAIR_BOY_2, 4, 2, STAY, DOWN, 4, OPP_POKEMANIAC, 6
- object SPRITE_BLACK_HAIR_BOY_2, 26, 3, STAY, LEFT, 5, OPP_JUGGLER, 5
- object SPRITE_BIRD, 11, 5, STAY, UP, 6, MOLTRES, 50
- object SPRITE_BALL, 27, 5, STAY, NONE, 7, TM_17
- object SPRITE_BALL, 18, 9, STAY, NONE, 8, FULL_HEAL
- object SPRITE_BALL, 9, 11, STAY, NONE, 9, TM_05
- object SPRITE_BALL, 11, 0, STAY, NONE, 10, GUARD_SPEC
- object SPRITE_BOULDER, 4, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 11 ; person
- object SPRITE_BOULDER, 5, 5, STAY, BOULDER_MOVEMENT_BYTE_2, 12 ; person
- object SPRITE_BOULDER, 23, 16, STAY, BOULDER_MOVEMENT_BYTE_2, 13 ; person
-
- ; warp-to
- warp_to 0, 8, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_1F
- warp_to 29, 7, VICTORY_ROAD_2F_WIDTH
- warp_to 29, 8, VICTORY_ROAD_2F_WIDTH
- warp_to 23, 7, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
- warp_to 25, 14, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
- warp_to 27, 7, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
- warp_to 1, 1, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
--- a/data/mapObjects/VictoryRoad3F.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-VictoryRoad3F_Object:
- db $7d ; border block
-
- db 4 ; warps
- warp 23, 7, 3, VICTORY_ROAD_2F
- warp 26, 8, 5, VICTORY_ROAD_2F
- warp 27, 15, 4, VICTORY_ROAD_2F
- warp 2, 0, 6, VICTORY_ROAD_2F
-
- db 0 ; signs
-
- db 10 ; objects
- object SPRITE_BLACK_HAIR_BOY_1, 28, 5, STAY, LEFT, 1, OPP_COOLTRAINER_M, 2
- object SPRITE_LASS, 7, 13, STAY, RIGHT, 2, OPP_COOLTRAINER_F, 2
- object SPRITE_BLACK_HAIR_BOY_1, 6, 14, STAY, LEFT, 3, OPP_COOLTRAINER_M, 3
- object SPRITE_LASS, 13, 3, STAY, RIGHT, 4, OPP_COOLTRAINER_F, 3
- object SPRITE_BALL, 26, 5, STAY, NONE, 5, MAX_REVIVE
- object SPRITE_BALL, 7, 7, STAY, NONE, 6, TM_47
- object SPRITE_BOULDER, 22, 3, STAY, BOULDER_MOVEMENT_BYTE_2, 7 ; person
- object SPRITE_BOULDER, 13, 12, STAY, BOULDER_MOVEMENT_BYTE_2, 8 ; person
- object SPRITE_BOULDER, 24, 10, STAY, BOULDER_MOVEMENT_BYTE_2, 9 ; person
- object SPRITE_BOULDER, 22, 15, STAY, BOULDER_MOVEMENT_BYTE_2, 10 ; person
-
- ; warp-to
- warp_to 23, 7, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
- warp_to 26, 8, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
- warp_to 27, 15, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
- warp_to 2, 0, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
--- a/data/mapObjects/ViridianCity.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-ViridianCity_Object:
- db $f ; border block
-
- db 5 ; warps
- warp 23, 25, 0, VIRIDIAN_POKECENTER
- warp 29, 19, 0, VIRIDIAN_MART
- warp 21, 15, 0, VIRIDIAN_SCHOOL_HOUSE
- warp 21, 9, 0, VIRIDIAN_NICKNAME_HOUSE
- warp 32, 7, 0, VIRIDIAN_GYM
-
- db 6 ; signs
- sign 17, 17, 8 ; ViridianCityText8
- sign 19, 1, 9 ; ViridianCityText9
- sign 21, 29, 10 ; ViridianCityText10
- sign 30, 19, 11 ; MartSignText
- sign 24, 25, 12 ; PokeCenterSignText
- sign 27, 7, 13 ; ViridianCityText13
-
- db 7 ; objects
- object SPRITE_BUG_CATCHER, 13, 20, WALK, 0, 1 ; person
- object SPRITE_GAMBLER, 30, 8, STAY, NONE, 2 ; person
- object SPRITE_BUG_CATCHER, 30, 25, WALK, 0, 3 ; person
- object SPRITE_GIRL, 17, 9, STAY, RIGHT, 4 ; person
- object SPRITE_LYING_OLD_MAN, 18, 9, STAY, NONE, 5 ; person
- object SPRITE_FISHER2, 6, 23, STAY, DOWN, 6 ; person
- object SPRITE_GAMBLER, 17, 5, WALK, 2, 7 ; person
-
- ; warp-to
- warp_to 23, 25, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_POKECENTER
- warp_to 29, 19, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_MART
- warp_to 21, 15, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_SCHOOL_HOUSE
- warp_to 21, 9, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_NICKNAME_HOUSE
- warp_to 32, 7, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_GYM
--- a/data/mapObjects/ViridianForest.asm
+++ /dev/null
@@ -1,36 +1,0 @@
-ViridianForest_Object:
- db $3 ; border block
-
- db 6 ; warps
- warp 1, 0, 2, VIRIDIAN_FOREST_NORTH_GATE
- warp 2, 0, 3, VIRIDIAN_FOREST_NORTH_GATE
- warp 15, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
- warp 16, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
- warp 17, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
- warp 18, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
-
- db 6 ; signs
- sign 24, 40, 9 ; ViridianForestText9
- sign 16, 32, 10 ; ViridianForestText10
- sign 26, 17, 11 ; ViridianForestText11
- sign 4, 24, 12 ; ViridianForestText12
- sign 18, 45, 13 ; ViridianForestText13
- sign 2, 1, 14 ; ViridianForestText14
-
- db 8 ; objects
- object SPRITE_BUG_CATCHER, 16, 43, STAY, NONE, 1 ; person
- object SPRITE_BUG_CATCHER, 30, 33, STAY, LEFT, 2, OPP_BUG_CATCHER, 1
- object SPRITE_BUG_CATCHER, 30, 19, STAY, LEFT, 3, OPP_BUG_CATCHER, 2
- object SPRITE_BUG_CATCHER, 2, 18, STAY, LEFT, 4, OPP_BUG_CATCHER, 3
- object SPRITE_BALL, 25, 11, STAY, NONE, 5, ANTIDOTE
- object SPRITE_BALL, 12, 29, STAY, NONE, 6, POTION
- object SPRITE_BALL, 1, 31, STAY, NONE, 7, POKE_BALL
- object SPRITE_BUG_CATCHER, 27, 40, STAY, NONE, 8 ; person
-
- ; warp-to
- warp_to 1, 0, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_NORTH_GATE
- warp_to 2, 0, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_NORTH_GATE
- warp_to 15, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
- warp_to 16, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
- warp_to 17, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
- warp_to 18, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
--- a/data/mapObjects/ViridianForestNorthGate.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-ViridianForestNorthGate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 4, 0, 1, -1
- warp 5, 0, 1, -1
- warp 4, 7, 0, VIRIDIAN_FOREST
- warp 5, 7, 0, VIRIDIAN_FOREST
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BLACK_HAIR_BOY_2, 3, 2, STAY, NONE, 1 ; person
- object SPRITE_OLD_PERSON, 2, 5, STAY, NONE, 2 ; person
-
- ; warp-to
- warp_to 4, 0, VIRIDIAN_FOREST_NORTH_GATE_WIDTH
- warp_to 5, 0, VIRIDIAN_FOREST_NORTH_GATE_WIDTH
- warp_to 4, 7, VIRIDIAN_FOREST_NORTH_GATE_WIDTH ; VIRIDIAN_FOREST
- warp_to 5, 7, VIRIDIAN_FOREST_NORTH_GATE_WIDTH ; VIRIDIAN_FOREST
--- a/data/mapObjects/ViridianForestSouthGate.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-ViridianForestSouthGate_Object:
- db $a ; border block
-
- db 4 ; warps
- warp 4, 0, 3, VIRIDIAN_FOREST
- warp 5, 0, 4, VIRIDIAN_FOREST
- warp 4, 7, 5, -1
- warp 5, 7, 5, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_GIRL, 8, 4, STAY, LEFT, 1 ; person
- object SPRITE_LITTLE_GIRL, 2, 4, WALK, 1, 2 ; person
-
- ; warp-to
- warp_to 4, 0, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH ; VIRIDIAN_FOREST
- warp_to 5, 0, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH ; VIRIDIAN_FOREST
- warp_to 4, 7, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH
- warp_to 5, 7, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH
--- a/data/mapObjects/ViridianGym.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-ViridianGym_Object:
- db $3 ; border block
-
- db 2 ; warps
- warp 16, 17, 4, -1
- warp 17, 17, 4, -1
-
- db 0 ; signs
-
- db 11 ; objects
- object SPRITE_GIOVANNI, 2, 1, STAY, DOWN, 1, OPP_GIOVANNI, 3
- object SPRITE_BLACK_HAIR_BOY_1, 12, 7, STAY, DOWN, 2, OPP_COOLTRAINER_M, 9
- object SPRITE_HIKER, 11, 11, STAY, UP, 3, OPP_BLACKBELT, 6
- object SPRITE_ROCKER, 10, 7, STAY, DOWN, 4, OPP_TAMER, 3
- object SPRITE_HIKER, 3, 7, STAY, LEFT, 5, OPP_BLACKBELT, 7
- object SPRITE_BLACK_HAIR_BOY_1, 13, 5, STAY, RIGHT, 6, OPP_COOLTRAINER_M, 10
- object SPRITE_HIKER, 10, 1, STAY, DOWN, 7, OPP_BLACKBELT, 8
- object SPRITE_ROCKER, 2, 16, STAY, RIGHT, 8, OPP_TAMER, 4
- object SPRITE_BLACK_HAIR_BOY_1, 6, 5, STAY, DOWN, 9, OPP_COOLTRAINER_M, 1
- object SPRITE_GYM_HELPER, 16, 15, STAY, DOWN, 10 ; person
- object SPRITE_BALL, 16, 9, STAY, NONE, 11, REVIVE
-
- ; warp-to
- warp_to 16, 17, VIRIDIAN_GYM_WIDTH
- warp_to 17, 17, VIRIDIAN_GYM_WIDTH
--- a/data/mapObjects/ViridianMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-ViridianMart_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 1, -1
- warp 4, 7, 1, -1
-
- db 0 ; signs
-
- db 3 ; objects
- object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
- object SPRITE_BUG_CATCHER, 5, 5, WALK, 1, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 3, 3, STAY, NONE, 3 ; person
-
- ; warp-to
- warp_to 3, 7, VIRIDIAN_MART_WIDTH
- warp_to 4, 7, VIRIDIAN_MART_WIDTH
--- a/data/mapObjects/ViridianNicknameHouse.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-ViridianNicknameHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 3, -1
- warp 3, 7, 3, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_BALDING_GUY, 5, 3, STAY, NONE, 1 ; person
- object SPRITE_LITTLE_GIRL, 1, 4, WALK, 1, 2 ; person
- object SPRITE_BIRD, 5, 5, WALK, 2, 3 ; person
- object SPRITE_CLIPBOARD, 4, 0, STAY, NONE, 4 ; person
-
- ; warp-to
- warp_to 2, 7, VIRIDIAN_NICKNAME_HOUSE_WIDTH
- warp_to 3, 7, VIRIDIAN_NICKNAME_HOUSE_WIDTH
--- a/data/mapObjects/ViridianPokecenter.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-ViridianPokecenter_Object:
- db $0 ; border block
-
- db 2 ; warps
- warp 3, 7, 0, -1
- warp 4, 7, 0, -1
-
- db 0 ; signs
-
- db 4 ; objects
- object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
- object SPRITE_GENTLEMAN, 10, 5, WALK, 1, 2 ; person
- object SPRITE_BLACK_HAIR_BOY_1, 4, 3, STAY, NONE, 3 ; person
- object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
-
- ; warp-to
- warp_to 3, 7, VIRIDIAN_POKECENTER_WIDTH
- warp_to 4, 7, VIRIDIAN_POKECENTER_WIDTH
--- a/data/mapObjects/ViridianSchoolHouse.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-ViridianSchoolHouse_Object:
- db $a ; border block
-
- db 2 ; warps
- warp 2, 7, 2, -1
- warp 3, 7, 2, -1
-
- db 0 ; signs
-
- db 2 ; objects
- object SPRITE_BRUNETTE_GIRL, 3, 5, STAY, UP, 1 ; person
- object SPRITE_LASS, 4, 1, STAY, DOWN, 2 ; person
-
- ; warp-to
- warp_to 2, 7, VIRIDIAN_SCHOOL_HOUSE_WIDTH
- warp_to 3, 7, VIRIDIAN_SCHOOL_HOUSE_WIDTH
--- a/data/mapObjects/WardensHouse.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-WardensHouse_Object:
- db $17 ; border block
-
- db 2 ; warps
- warp 4, 7, 3, -1
- warp 5, 7, 3, -1
-
- db 2 ; signs
- sign 4, 3, 4 ; FuchsiaHouse2Text4
- sign 5, 3, 5 ; FuchsiaHouse2Text5
-
- db 3 ; objects
- object SPRITE_WARDEN, 2, 3, STAY, NONE, 1 ; person
- object SPRITE_BALL, 8, 3, STAY, NONE, 2, RARE_CANDY
- object SPRITE_BOULDER, 8, 4, STAY, BOULDER_MOVEMENT_BYTE_2, 3 ; person
-
- ; warp-to
- warp_to 4, 7, WARDENS_HOUSE_WIDTH
- warp_to 5, 7, WARDENS_HOUSE_WIDTH
--- a/data/map_header_banks.asm
+++ /dev/null
@@ -1,250 +1,0 @@
-; see also MapHeaderPointers
-MapHeaderBanks::
- db BANK(PalletTown_h)
- db BANK(ViridianCity_h)
- db BANK(PewterCity_h)
- db BANK(CeruleanCity_h)
- db BANK(LavenderTown_h)
- db BANK(VermilionCity_h)
- db BANK(CeladonCity_h)
- db BANK(FuchsiaCity_h)
- db BANK(CinnabarIsland_h)
- db BANK(IndigoPlateau_h)
- db BANK(SaffronCity_h)
- db $01 ; UNUSED_MAP_0B
- db BANK(Route1_h)
- db BANK(Route2_h)
- db BANK(Route3_h)
- db BANK(Route4_h)
- db BANK(Route5_h)
- db BANK(Route6_h)
- db BANK(Route7_h)
- db BANK(Route8_h)
- db BANK(Route9_h)
- db BANK(Route10_h)
- db BANK(Route11_h)
- db BANK(Route12_h)
- db BANK(Route13_h)
- db BANK(Route14_h)
- db BANK(Route15_h)
- db BANK(Route16_h)
- db BANK(Route17_h)
- db BANK(Route18_h)
- db BANK(Route19_h)
- db BANK(Route20_h)
- db BANK(Route21_h)
- db BANK(Route22_h)
- db BANK(Route23_h)
- db BANK(Route24_h)
- db BANK(Route25_h)
- db BANK(RedsHouse1F_h)
- db BANK(RedsHouse2F_h)
- db BANK(BluesHouse_h)
- db BANK(OaksLab_h)
- db BANK(ViridianPokecenter_h)
- db BANK(ViridianMart_h)
- db BANK(ViridianSchoolHouse_h)
- db BANK(ViridianNicknameHouse_h)
- db BANK(ViridianGym_h)
- db BANK(DiglettsCaveRoute2_h)
- db BANK(ViridianForestNorthGate_h)
- db BANK(Route2TradeHouse_h)
- db BANK(Route2Gate_h)
- db BANK(ViridianForestSouthGate_h)
- db BANK(ViridianForest_h)
- db BANK(Museum1F_h)
- db BANK(Museum2F_h)
- db BANK(PewterGym_h)
- db BANK(PewterNidoranHouse_h)
- db BANK(PewterMart_h)
- db BANK(PewterSpeechHouse_h)
- db BANK(PewterPokecenter_h)
- db BANK(MtMoon1F_h)
- db BANK(MtMoonB1F_h)
- db BANK(MtMoonB2F_h)
- db BANK(CeruleanTrashedHouse_h)
- db BANK(CeruleanTradeHouse_h)
- db BANK(CeruleanPokecenter_h)
- db BANK(CeruleanGym_h)
- db BANK(BikeShop_h)
- db BANK(CeruleanMart_h)
- db BANK(MtMoonPokecenter_h)
- db BANK(CeruleanTrashedHouse_h)
- db BANK(Route5Gate_h)
- db BANK(UndergroundPathRoute5_h)
- db BANK(Daycare_h)
- db BANK(Route6Gate_h)
- db BANK(UndergroundPathRoute6_h)
- db BANK(UndergroundPathRoute6_h) ; UNDERGROUND_PATH_ROUTE_6_COPY
- db BANK(Route7Gate_h)
- db BANK(UndergroundPathRoute7_h)
- db BANK(UndergroundPathRoute7Copy_h)
- db BANK(Route8Gate_h)
- db BANK(UndergroundPathRoute8_h)
- db BANK(RockTunnelPokecenter_h)
- db BANK(RockTunnel1F_h)
- db BANK(PowerPlant_h)
- db BANK(Route11Gate1F_h)
- db BANK(DiglettsCaveRoute11_h)
- db BANK(Route11Gate2F_h)
- db BANK(Route12Gate1F_h)
- db BANK(BillsHouse_h)
- db BANK(VermilionPokecenter_h)
- db BANK(PokemonFanClub_h)
- db BANK(VermilionMart_h)
- db BANK(VermilionGym_h)
- db BANK(VermilionPidgeyHouse_h)
- db BANK(VermilionDock_h)
- db BANK(SSAnne1F_h)
- db BANK(SSAnne2F_h)
- db BANK(SSAnne3F_h)
- db BANK(SSAnneB1F_h)
- db BANK(SSAnneBow_h)
- db BANK(SSAnneKitchen_h)
- db BANK(SSAnneCaptainsRoom_h)
- db BANK(SSAnne1FRooms_h)
- db BANK(SSAnne2FRooms_h)
- db BANK(SSAnneB1FRooms_h)
- db $1D ; UNUSED_MAP_69
- db $1D ; UNUSED_MAP_6A
- db $1D ; UNUSED_MAP_6B
- db BANK(VictoryRoad1F_h)
- db $1D ; UNUSED_MAP_6D
- db $1D ; UNUSED_MAP_6E
- db $1D ; UNUSED_MAP_6F
- db $1D ; UNUSED_MAP_70
- db BANK(LancesRoom_h)
- db $1D ; UNUSED_MAP_72
- db $1D ; UNUSED_MAP_73
- db $1D ; UNUSED_MAP_74
- db $1D ; UNUSED_MAP_75
- db BANK(HallOfFame_h)
- db BANK(UndergroundPathNorthSouth_h)
- db BANK(ChampionsRoom_h)
- db BANK(UndergroundPathWestEast_h)
- db BANK(CeladonMart1F_h)
- db BANK(CeladonMart2F_h)
- db BANK(CeladonMart3F_h)
- db BANK(CeladonMart4F_h)
- db BANK(CeladonMartRoof_h)
- db BANK(CeladonMartElevator_h)
- db BANK(CeladonMansion1F_h)
- db BANK(CeladonMansion2F_h)
- db BANK(CeladonMansion3F_h)
- db BANK(CeladonMansionRoof_h)
- db BANK(CeladonMansionRoofHouse_h)
- db BANK(CeladonPokecenter_h)
- db BANK(CeladonGym_h)
- db BANK(GameCorner_h)
- db BANK(CeladonMart5F_h)
- db BANK(GameCornerPrizeRoom_h)
- db BANK(CeladonDiner_h)
- db BANK(CeladonChiefHouse_h)
- db BANK(CeladonHotel_h)
- db BANK(LavenderPokecenter_h)
- db BANK(PokemonTower1F_h)
- db BANK(PokemonTower2F_h)
- db BANK(PokemonTower3F_h)
- db BANK(PokemonTower4F_h)
- db BANK(PokemonTower5F_h)
- db BANK(PokemonTower6F_h)
- db BANK(PokemonTower7F_h)
- db BANK(MrFujisHouse_h)
- db BANK(LavenderMart_h)
- db BANK(LavenderCuboneHouse_h)
- db BANK(FuchsiaMart_h)
- db BANK(FuchsiaBillsGrandpasHouse_h)
- db BANK(FuchsiaPokecenter_h)
- db BANK(WardensHouse_h)
- db BANK(SafariZoneGate_h)
- db BANK(FuchsiaGym_h)
- db BANK(FuchsiaMeetingRoom_h)
- db BANK(SeafoamIslandsB1F_h)
- db BANK(SeafoamIslandsB2F_h)
- db BANK(SeafoamIslandsB3F_h)
- db BANK(SeafoamIslandsB4F_h)
- db BANK(VermilionOldRodHouse_h)
- db BANK(FuchsiaGoodRodHouse_h)
- db BANK(PokemonMansion1F_h)
- db BANK(CinnabarGym_h)
- db BANK(CinnabarLab_h)
- db BANK(CinnabarLabTradeRoom_h)
- db BANK(CinnabarLabMetronomeRoom_h)
- db BANK(CinnabarLabFossilRoom_h)
- db BANK(CinnabarPokecenter_h)
- db BANK(CinnabarMart_h)
- db BANK(CinnabarMart_h)
- db BANK(IndigoPlateauLobby_h)
- db BANK(CopycatsHouse1F_h)
- db BANK(CopycatsHouse2F_h)
- db BANK(FightingDojo_h)
- db BANK(SaffronGym_h)
- db BANK(SaffronPidgeyHouse_h)
- db BANK(SaffronMart_h)
- db BANK(SilphCo1F_h)
- db BANK(SaffronPokecenter_h)
- db BANK(MrPsychicsHouse_h)
- db BANK(Route15Gate1F_h)
- db BANK(Route15Gate2F_h)
- db BANK(Route16Gate1F_h)
- db BANK(Route16Gate2F_h)
- db BANK(Route16FlyHouse_h)
- db BANK(Route12SuperRodHouse_h)
- db BANK(Route18Gate1F_h)
- db BANK(Route18Gate2F_h)
- db BANK(SeafoamIslands1F_h)
- db BANK(Route22Gate_h)
- db BANK(VictoryRoad2F_h)
- db BANK(Route12Gate2F_h)
- db BANK(VermilionTradeHouse_h)
- db BANK(DiglettsCave_h)
- db BANK(VictoryRoad3F_h)
- db BANK(RocketHideoutB1F_h)
- db BANK(RocketHideoutB2F_h)
- db BANK(RocketHideoutB3F_h)
- db BANK(RocketHideoutB4F_h)
- db BANK(RocketHideoutElevator_h)
- db $01 ; UNUSED_MAP_CC
- db $01 ; UNUSED_MAP_CD
- db $01 ; UNUSED_MAP_CE
- db BANK(SilphCo2F_h)
- db BANK(SilphCo3F_h)
- db BANK(SilphCo4F_h)
- db BANK(SilphCo5F_h)
- db BANK(SilphCo6F_h)
- db BANK(SilphCo7F_h)
- db BANK(SilphCo8F_h)
- db BANK(PokemonMansion2F_h)
- db BANK(PokemonMansion3F_h)
- db BANK(PokemonMansionB1F_h)
- db BANK(SafariZoneEast_h)
- db BANK(SafariZoneNorth_h)
- db BANK(SafariZoneWest_h)
- db BANK(SafariZoneCenter_h)
- db BANK(SafariZoneCenterRestHouse_h)
- db BANK(SafariZoneSecretHouse_h)
- db BANK(SafariZoneWestRestHouse_h)
- db BANK(SafariZoneEastRestHouse_h)
- db BANK(SafariZoneNorthRestHouse_h)
- db BANK(CeruleanCave2F_h)
- db BANK(CeruleanCaveB1F_h)
- db BANK(CeruleanCave1F_h)
- db BANK(NameRatersHouse_h)
- db BANK(CeruleanBadgeHouse_h)
- db $01 ; UNUSED_MAP_E7
- db BANK(RockTunnelB1F_h)
- db BANK(SilphCo9F_h)
- db BANK(SilphCo10F_h)
- db BANK(SilphCo11F_h)
- db BANK(SilphCoElevator_h)
- db $11 ; UNUSED_MAP_ED
- db $11 ; UNUSED_MAP_EE
- db BANK(TradeCenter_h)
- db BANK(Colosseum_h)
- db $11 ; UNUSED_MAP_F1
- db $11 ; UNUSED_MAP_F2
- db $11 ; UNUSED_MAP_F3
- db $11 ; UNUSED_MAP_F4
- db BANK(LoreleisRoom_h)
- db BANK(BrunosRoom_h)
- db BANK(AgathasRoom_h)
--- a/data/map_header_pointers.asm
+++ /dev/null
@@ -1,250 +1,0 @@
-; see also MapHeaderBanks
-MapHeaderPointers::
- dw PalletTown_h
- dw ViridianCity_h
- dw PewterCity_h
- dw CeruleanCity_h
- dw LavenderTown_h
- dw VermilionCity_h
- dw CeladonCity_h
- dw FuchsiaCity_h
- dw CinnabarIsland_h
- dw IndigoPlateau_h
- dw SaffronCity_h
- dw SaffronCity_h ; UNUSED_MAP_0B
- dw Route1_h
- dw Route2_h
- dw Route3_h
- dw Route4_h
- dw Route5_h
- dw Route6_h
- dw Route7_h
- dw Route8_h
- dw Route9_h
- dw Route10_h
- dw Route11_h
- dw Route12_h
- dw Route13_h
- dw Route14_h
- dw Route15_h
- dw Route16_h
- dw Route17_h
- dw Route18_h
- dw Route19_h
- dw Route20_h
- dw Route21_h
- dw Route22_h
- dw Route23_h
- dw Route24_h
- dw Route25_h
- dw RedsHouse1F_h
- dw RedsHouse2F_h
- dw BluesHouse_h
- dw OaksLab_h
- dw ViridianPokecenter_h
- dw ViridianMart_h
- dw ViridianSchoolHouse_h
- dw ViridianNicknameHouse_h
- dw ViridianGym_h
- dw DiglettsCaveRoute2_h
- dw ViridianForestNorthGate_h
- dw Route2TradeHouse_h
- dw Route2Gate_h
- dw ViridianForestSouthGate_h
- dw ViridianForest_h
- dw Museum1F_h
- dw Museum2F_h
- dw PewterGym_h
- dw PewterNidoranHouse_h
- dw PewterMart_h
- dw PewterSpeechHouse_h
- dw PewterPokecenter_h
- dw MtMoon1F_h
- dw MtMoonB1F_h
- dw MtMoonB2F_h
- dw CeruleanTrashedHouse_h
- dw CeruleanTradeHouse_h
- dw CeruleanPokecenter_h
- dw CeruleanGym_h
- dw BikeShop_h
- dw CeruleanMart_h
- dw MtMoonPokecenter_h
- dw CeruleanTrashedHouse_h ; CERULEAN_TRASHED_HOUSE_COPY
- dw Route5Gate_h
- dw UndergroundPathRoute5_h
- dw Daycare_h
- dw Route6Gate_h
- dw UndergroundPathRoute6_h
- dw UndergroundPathRoute6_h ; UNDERGROUND_PATH_ROUTE_6_COPY
- dw Route7Gate_h
- dw UndergroundPathRoute7_h
- dw UndergroundPathRoute7Copy_h
- dw Route8Gate_h
- dw UndergroundPathRoute8_h
- dw RockTunnelPokecenter_h
- dw RockTunnel1F_h
- dw PowerPlant_h
- dw Route11Gate1F_h
- dw DiglettsCaveRoute11_h
- dw Route11Gate2F_h
- dw Route12Gate1F_h
- dw BillsHouse_h
- dw VermilionPokecenter_h
- dw PokemonFanClub_h
- dw VermilionMart_h
- dw VermilionGym_h
- dw VermilionPidgeyHouse_h
- dw VermilionDock_h
- dw SSAnne1F_h
- dw SSAnne2F_h
- dw SSAnne3F_h
- dw SSAnneB1F_h
- dw SSAnneBow_h
- dw SSAnneKitchen_h
- dw SSAnneCaptainsRoom_h
- dw SSAnne1FRooms_h
- dw SSAnne2FRooms_h
- dw SSAnneB1FRooms_h
- dw LancesRoom_h ; UNUSED_MAP_69
- dw LancesRoom_h ; UNUSED_MAP_6A
- dw LancesRoom_h ; UNUSED_MAP_6B
- dw VictoryRoad1F_h
- dw LancesRoom_h ; UNUSED_MAP_6D
- dw LancesRoom_h ; UNUSED_MAP_6E
- dw LancesRoom_h ; UNUSED_MAP_6F
- dw LancesRoom_h ; UNUSED_MAP_70
- dw LancesRoom_h
- dw LancesRoom_h ; UNUSED_MAP_72
- dw LancesRoom_h ; UNUSED_MAP_73
- dw LancesRoom_h ; UNUSED_MAP_74
- dw LancesRoom_h ; UNUSED_MAP_75
- dw HallOfFame_h
- dw UndergroundPathNorthSouth_h
- dw ChampionsRoom_h
- dw UndergroundPathWestEast_h
- dw CeladonMart1F_h
- dw CeladonMart2F_h
- dw CeladonMart3F_h
- dw CeladonMart4F_h
- dw CeladonMartRoof_h
- dw CeladonMartElevator_h
- dw CeladonMansion1F_h
- dw CeladonMansion2F_h
- dw CeladonMansion3F_h
- dw CeladonMansionRoof_h
- dw CeladonMansionRoofHouse_h
- dw CeladonPokecenter_h
- dw CeladonGym_h
- dw GameCorner_h
- dw CeladonMart5F_h
- dw GameCornerPrizeRoom_h
- dw CeladonDiner_h
- dw CeladonChiefHouse_h
- dw CeladonHotel_h
- dw LavenderPokecenter_h
- dw PokemonTower1F_h
- dw PokemonTower2F_h
- dw PokemonTower3F_h
- dw PokemonTower4F_h
- dw PokemonTower5F_h
- dw PokemonTower6F_h
- dw PokemonTower7F_h
- dw MrFujisHouse_h
- dw LavenderMart_h
- dw LavenderCuboneHouse_h
- dw FuchsiaMart_h
- dw FuchsiaBillsGrandpasHouse_h
- dw FuchsiaPokecenter_h
- dw WardensHouse_h
- dw SafariZoneGate_h
- dw FuchsiaGym_h
- dw FuchsiaMeetingRoom_h
- dw SeafoamIslandsB1F_h
- dw SeafoamIslandsB2F_h
- dw SeafoamIslandsB3F_h
- dw SeafoamIslandsB4F_h
- dw VermilionOldRodHouse_h
- dw FuchsiaGoodRodHouse_h
- dw PokemonMansion1F_h
- dw CinnabarGym_h
- dw CinnabarLab_h
- dw CinnabarLabTradeRoom_h
- dw CinnabarLabMetronomeRoom_h
- dw CinnabarLabFossilRoom_h
- dw CinnabarPokecenter_h
- dw CinnabarMart_h
- dw CinnabarMart_h ; CINNABAR_MART_COPY
- dw IndigoPlateauLobby_h
- dw CopycatsHouse1F_h
- dw CopycatsHouse2F_h
- dw FightingDojo_h
- dw SaffronGym_h
- dw SaffronPidgeyHouse_h
- dw SaffronMart_h
- dw SilphCo1F_h
- dw SaffronPokecenter_h
- dw MrPsychicsHouse_h
- dw Route15Gate1F_h
- dw Route15Gate2F_h
- dw Route16Gate1F_h
- dw Route16Gate2F_h
- dw Route16FlyHouse_h
- dw Route12SuperRodHouse_h
- dw Route18Gate1F_h
- dw Route18Gate2F_h
- dw SeafoamIslands1F_h
- dw Route22Gate_h
- dw VictoryRoad2F_h
- dw Route12Gate2F_h
- dw VermilionTradeHouse_h
- dw DiglettsCave_h
- dw VictoryRoad3F_h
- dw RocketHideoutB1F_h
- dw RocketHideoutB2F_h
- dw RocketHideoutB3F_h
- dw RocketHideoutB4F_h
- dw RocketHideoutElevator_h
- dw RocketHideoutElevator_h ; UNUSED_MAP_CC
- dw RocketHideoutElevator_h ; UNUSED_MAP_CD
- dw RocketHideoutElevator_h ; UNUSED_MAP_CE
- dw SilphCo2F_h
- dw SilphCo3F_h
- dw SilphCo4F_h
- dw SilphCo5F_h
- dw SilphCo6F_h
- dw SilphCo7F_h
- dw SilphCo8F_h
- dw PokemonMansion2F_h
- dw PokemonMansion3F_h
- dw PokemonMansionB1F_h
- dw SafariZoneEast_h
- dw SafariZoneNorth_h
- dw SafariZoneWest_h
- dw SafariZoneCenter_h
- dw SafariZoneCenterRestHouse_h
- dw SafariZoneSecretHouse_h
- dw SafariZoneWestRestHouse_h
- dw SafariZoneEastRestHouse_h
- dw SafariZoneNorthRestHouse_h
- dw CeruleanCave2F_h
- dw CeruleanCaveB1F_h
- dw CeruleanCave1F_h
- dw NameRatersHouse_h
- dw CeruleanBadgeHouse_h
- dw Route16Gate1F_h ; UNUSED_MAP_E7
- dw RockTunnelB1F_h
- dw SilphCo9F_h
- dw SilphCo10F_h
- dw SilphCo11F_h
- dw SilphCoElevator_h
- dw SilphCo2F_h ; UNUSED_MAP_ED
- dw SilphCo2F_h ; UNUSED_MAP_EE
- dw TradeCenter_h
- dw Colosseum_h
- dw SilphCo2F_h ; UNUSED_MAP_F1
- dw SilphCo2F_h ; UNUSED_MAP_F2
- dw SilphCo2F_h ; UNUSED_MAP_F3
- dw SilphCo2F_h ; UNUSED_MAP_F4
- dw LoreleisRoom_h
- dw BrunosRoom_h
- dw AgathasRoom_h ;247
--- a/data/map_songs.asm
+++ /dev/null
@@ -1,249 +1,0 @@
-MapSongBanks::
- db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; PALLET_TOWN
- db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_CITY
- db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_CITY
- db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_CITY
- db MUSIC_LAVENDER, BANK(Music_Lavender) ; LAVENDER_TOWN
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_CITY
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_CITY
- db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_CITY
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_ISLAND
- db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU
- db MUSIC_CITIES1, BANK(Music_Cities1) ; SAFFRON_CITY
- db MUSIC_CITIES1, BANK(Music_Cities1) ; UNUSED_MAP_0B
- db MUSIC_ROUTES1, BANK(Music_Routes1) ; ROUTE_1
- db MUSIC_ROUTES1, BANK(Music_Routes1) ; ROUTE_2
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_3
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_4
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_5
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_6
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_7
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_8
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_9
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_10
- db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_11
- db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_12
- db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_13
- db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_14
- db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_15
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_16
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_17
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_18
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_19
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_20
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_21
- db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_22
- db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; ROUTE_23
- db MUSIC_ROUTES2, BANK(Music_Routes2) ; ROUTE_24
- db MUSIC_ROUTES2, BANK(Music_Routes2) ; ROUTE_25
- db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; REDS_HOUSE_1F
- db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; REDS_HOUSE_2F
- db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; BLUES_HOUSE
- db MUSIC_OAKS_LAB, BANK(Music_OaksLab) ; OAKS_LAB
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VIRIDIAN_POKECENTER
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VIRIDIAN_MART
- db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_SCHOOL_HOUSE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_NICKNAME_HOUSE
- db MUSIC_GYM, BANK(Music_Gym) ; VIRIDIAN_GYM
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DIGLETTS_CAVE_ROUTE_2
- db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_FOREST_NORTH_GATE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_2_TRADE_HOUSE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_2_GATE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_FOREST_SOUTH_GATE
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; VIRIDIAN_FOREST
- db MUSIC_CITIES1, BANK(Music_Cities1) ; MUSEUM_1F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; MUSEUM_2F
- db MUSIC_GYM, BANK(Music_Gym) ; PEWTER_GYM
- db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_NIDORAN_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; PEWTER_MART
- db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_SPEECH_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; PEWTER_POKECENTER
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MT_MOON_1F
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MT_MOON_B1F
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MT_MOON_B2F
- db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_TRASHED_HOUSE
- db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_TRADE_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CERULEAN_POKECENTER
- db MUSIC_GYM, BANK(Music_Gym) ; CERULEAN_GYM
- db MUSIC_CITIES2, BANK(Music_Cities2) ; BIKE_SHOP
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CERULEAN_MART
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; MT_MOON_POKECENTER
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; CERULEAN_TRASHED_HOUSE_COPY
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_5_GATE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_5
- db MUSIC_CITIES1, BANK(Music_Cities1) ; DAYCARE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_6_GATE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_6
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; UNDERGROUND_PATH_ROUTE_6_COPY
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_7_GATE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_7
- db MUSIC_CELADON, BANK(Music_Celadon) ; UNDERGROUND_PATH_ROUTE_7_COPY
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_8_GATE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_8
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; ROCK_TUNNEL_POKECENTER
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; ROCK_TUNNEL_1F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; POWER_PLANT
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; ROUTE_11_GATE_1F
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DIGLETTS_CAVE_ROUTE_11
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; ROUTE_11_GATE_2F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_12_GATE_1F
- db MUSIC_CITIES2, BANK(Music_Cities2) ; BILLS_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VERMILION_POKECENTER
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; POKEMON_FAN_CLUB
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VERMILION_MART
- db MUSIC_GYM, BANK(Music_Gym) ; VERMILION_GYM
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_PIDGEY_HOUSE
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; VERMILION_DOCK
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_1F
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_2F
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_3F
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_B1F
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_BOW
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_KITCHEN
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_CAPTAINS_ROOM
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_1F_ROOMS
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_2F_ROOMS
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_B1F_ROOMS
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; UNUSED_MAP_69
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; UNUSED_MAP_6A
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_6B
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VICTORY_ROAD_1F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; UNUSED_MAP_6D
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_6E
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_6F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_70
- db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; LANCES_ROOM
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_72
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_73
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_74
- db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_75
- db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; HALL_OF_FAME
- db MUSIC_ROUTES1, BANK(Music_Routes1) ; UNDERGROUND_PATH_NORTH_SOUTH
- db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; CHAMPIONS_ROOM
- db MUSIC_ROUTES1, BANK(Music_Routes1) ; UNDERGROUND_PATH_WEST_EAST
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_1F
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_2F
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_3F
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_4F
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_ROOF
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_ELEVATOR
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_1F
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_2F
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_3F
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_ROOF
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_ROOF_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_POKECENTER
- db MUSIC_GYM, BANK(Music_Gym) ; CELADON_GYM
- db MUSIC_GAME_CORNER, BANK(Music_GameCorner) ; GAME_CORNER
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_5F
- db MUSIC_CELADON, BANK(Music_Celadon) ; GAME_CORNER_PRIZE_ROOM
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_DINER
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_CHIEF_HOUSE
- db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_HOTEL
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; LAVENDER_POKECENTER
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_1F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_2F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_3F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_4F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_5F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_6F
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_7F
- db MUSIC_LAVENDER, BANK(Music_Lavender) ; MR_FUJIS_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; LAVENDER_MART
- db MUSIC_LAVENDER, BANK(Music_Lavender) ; LAVENDER_CUBONE_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; FUCHSIA_MART
- db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_BILLS_GRANDPAS_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; FUCHSIA_POKECENTER
- db MUSIC_CITIES2, BANK(Music_Cities2) ; WARDENS_HOUSE
- db MUSIC_CITIES2, BANK(Music_Cities2) ; SAFARI_ZONE_GATE
- db MUSIC_GYM, BANK(Music_Gym) ; FUCHSIA_GYM
- db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_MEETING_ROOM
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B1F
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B2F
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B3F
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B4F
- db MUSIC_CITIES2, BANK(Music_Cities2) ; VERMILION_OLD_ROD_HOUSE
- db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_GOOD_ROD_HOUSE
- db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_1F
- db MUSIC_GYM, BANK(Music_Gym) ; CINNABAR_GYM
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB_TRADE_ROOM
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB_METRONOME_ROOM
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB_FOSSIL_ROOM
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CINNABAR_POKECENTER
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CINNABAR_MART
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_MART_COPY
- db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU_LOBBY
- db MUSIC_CITIES1, BANK(Music_Cities1) ; COPYCATS_HOUSE_1F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; COPYCATS_HOUSE_2F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; FIGHTING_DOJO
- db MUSIC_GYM, BANK(Music_Gym) ; SAFFRON_GYM
- db MUSIC_CITIES1, BANK(Music_Cities1) ; SAFFRON_PIDGEY_HOUSE
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; SAFFRON_MART
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_1F
- db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; SAFFRON_POKECENTER
- db MUSIC_CITIES1, BANK(Music_Cities1) ; MR_PSYCHICS_HOUSE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_15_GATE_1F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_15_GATE_2F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_16_GATE_1F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_16_GATE_2F
- db MUSIC_CELADON, BANK(Music_Celadon) ; ROUTE_16_FLY_HOUSE
- db MUSIC_CELADON, BANK(Music_Celadon) ; ROUTE_12_SUPER_ROD_HOUSE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_18_GATE_1F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_18_GATE_2F
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_1F
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; ROUTE_22_GATE
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VICTORY_ROAD_2F
- db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_12_GATE_2F
- db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_TRADE_HOUSE
- db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DIGLETTS_CAVE
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VICTORY_ROAD_3F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B1F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B2F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B3F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B4F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_ELEVATOR
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_CC
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_CD
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_CE
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_2F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_3F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_4F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_5F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_6F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_7F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_8F
- db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_2F
- db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_3F
- db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_B1F
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_EAST
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_NORTH
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_WEST
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_CENTER
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_CENTER_REST_HOUSE
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_SECRET_HOUSE
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_WEST_REST_HOUSE
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_EAST_REST_HOUSE
- db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_NORTH_REST_HOUSE
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; CERULEAN_CAVE_2F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; CERULEAN_CAVE_B1F
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; CERULEAN_CAVE_1F
- db MUSIC_CITIES2, BANK(Music_Cities2) ; NAME_RATERS_HOUSE
- db MUSIC_CITIES1, BANK(Music_Cities1) ; CERULEAN_BADGE_HOUSE
- db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; UNUSED_MAP_E7
- db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; ROCK_TUNNEL_B1F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_9F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_10F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_11F
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_ELEVATOR
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_ED
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_EE
- db MUSIC_CELADON, BANK(Music_Celadon) ; TRADE_CENTER
- db MUSIC_CELADON, BANK(Music_Celadon) ; COLOSSEUM
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F1
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F2
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F3
- db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F4
- db MUSIC_GYM, BANK(Music_Gym) ; LORELEIS_ROOM
- db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; BRUNOS_ROOM
- db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; AGATHAS_ROOM
--- /dev/null
+++ b/data/maps/dungeon_maps.asm
@@ -1,0 +1,29 @@
+; GetBattleTransitionID_IsDungeonMap checks if wCurMap
+; is equal to one of these maps
+DungeonMaps1:
+ db VIRIDIAN_FOREST
+ db ROCK_TUNNEL_1F
+ db SEAFOAM_ISLANDS_1F
+ db ROCK_TUNNEL_B1F
+ db $FF
+
+; GetBattleTransitionID_IsDungeonMap checks if wCurMap
+; is in between or equal to each pair of maps
+DungeonMaps2:
+ ; all MT_MOON maps
+ db MT_MOON_1F
+ db MT_MOON_B2F
+
+ ; all SS_ANNE maps, VICTORY_ROAD_1F, LANCES_ROOM, and HALL_OF_FAME
+ db SS_ANNE_1F
+ db HALL_OF_FAME
+
+ ; all POKEMON_TOWER maps and Lavender Town buildings
+ db LAVENDER_POKECENTER
+ db LAVENDER_CUBONE_HOUSE
+
+ ; SILPH_CO_[2-8]F, POKEMON_MANSION[2F-B1F], SAFARI_ZONE, and
+ ; CERULEAN_CAVE maps, except for SILPH_CO_1F
+ db SILPH_CO_2F
+ db CERULEAN_CAVE_1F
+ db $FF
--- /dev/null
+++ b/data/maps/force_bike_surf.asm
@@ -1,0 +1,11 @@
+ForcedBikeOrSurfMaps:
+; map id, y, x
+ db ROUTE_16,$0A,$11
+ db ROUTE_16,$0B,$11
+ db ROUTE_18,$08,$21
+ db ROUTE_18,$09,$21
+ db SEAFOAM_ISLANDS_B3F,$07,$12
+ db SEAFOAM_ISLANDS_B3F,$07,$13
+ db SEAFOAM_ISLANDS_B4F,$0E,$04
+ db SEAFOAM_ISLANDS_B4F,$0E,$05
+ db $FF ;end
--- /dev/null
+++ b/data/maps/headers/AgathasRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header AgathasRoom, AGATHAS_ROOM, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/BikeShop.asm
@@ -1,0 +1,3 @@
+
+ map_header BikeShop, BIKE_SHOP, CLUB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/BillsHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header BillsHouse, BILLS_HOUSE, INTERIOR, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/BluesHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header BluesHouse, BLUES_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/BrunosRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header BrunosRoom, BRUNOS_ROOM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonChiefHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonChiefHouse, CELADON_CHIEF_HOUSE, MANSION, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonCity.asm
@@ -1,0 +1,5 @@
+
+ map_header CeladonCity, CELADON_CITY, OVERWORLD, WEST | EAST
+ connection west, Route16, ROUTE_16, 4
+ connection east, Route7, ROUTE_7, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonDiner.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonDiner, CELADON_DINER, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonGym.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonGym, CELADON_GYM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonHotel.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonHotel, CELADON_HOTEL, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMansion1F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMansion1F, CELADON_MANSION_1F, MANSION, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMansion2F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMansion2F, CELADON_MANSION_2F, MANSION, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMansion3F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMansion3F, CELADON_MANSION_3F, MANSION, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMansionRoof.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMansionRoof, CELADON_MANSION_ROOF, MANSION, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMansionRoofHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMansionRoofHouse, CELADON_MANSION_ROOF_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMart1F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMart1F, CELADON_MART_1F, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMart2F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMart2F, CELADON_MART_2F, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMart3F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMart3F, CELADON_MART_3F, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMart4F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMart4F, CELADON_MART_4F, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMart5F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMart5F, CELADON_MART_5F, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMartElevator.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMartElevator, CELADON_MART_ELEVATOR, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonMartRoof.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonMartRoof, CELADON_MART_ROOF, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeladonPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header CeladonPokecenter, CELADON_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanBadgeHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanBadgeHouse, CERULEAN_BADGE_HOUSE, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanCave1F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanCave1F, CERULEAN_CAVE_1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanCave2F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanCave2F, CERULEAN_CAVE_2F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanCaveB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanCaveB1F, CERULEAN_CAVE_B1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanCity.asm
@@ -1,0 +1,7 @@
+
+ map_header CeruleanCity, CERULEAN_CITY, OVERWORLD, NORTH | SOUTH | WEST | EAST
+ connection north, Route24, ROUTE_24, 5
+ connection south, Route5, ROUTE_5, 5
+ connection west, Route4, ROUTE_4, 4
+ connection east, Route9, ROUTE_9, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanGym.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanGym, CERULEAN_GYM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanMart.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanMart, CERULEAN_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanPokecenter, CERULEAN_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanTradeHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanTradeHouse, CERULEAN_TRADE_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CeruleanTrashedHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header CeruleanTrashedHouse, CERULEAN_TRASHED_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ChampionsRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header ChampionsRoom, CHAMPIONS_ROOM, GYM, $0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarGym.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarGym, CINNABAR_GYM, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarIsland.asm
@@ -1,0 +1,5 @@
+
+ map_header CinnabarIsland, CINNABAR_ISLAND, OVERWORLD, NORTH | EAST
+ connection north, Route21, ROUTE_21, 0
+ connection east, Route20, ROUTE_20, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarLab.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarLab, CINNABAR_LAB, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarLabFossilRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarLabFossilRoom, CINNABAR_LAB_FOSSIL_ROOM, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarLabMetronomeRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarLabMetronomeRoom, CINNABAR_LAB_METRONOME_ROOM, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarLabTradeRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarLabTradeRoom, CINNABAR_LAB_TRADE_ROOM, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarMart.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarMart, CINNABAR_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CinnabarPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header CinnabarPokecenter, CINNABAR_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Colosseum.asm
@@ -1,0 +1,3 @@
+
+ map_header Colosseum, COLOSSEUM, CLUB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CopycatsHouse1F.asm
@@ -1,0 +1,3 @@
+
+ map_header CopycatsHouse1F, COPYCATS_HOUSE_1F, REDS_HOUSE_1, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/CopycatsHouse2F.asm
@@ -1,0 +1,3 @@
+
+ map_header CopycatsHouse2F, COPYCATS_HOUSE_2F, REDS_HOUSE_2, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Daycare.asm
@@ -1,0 +1,3 @@
+
+ map_header Daycare, DAYCARE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/DiglettsCave.asm
@@ -1,0 +1,3 @@
+
+ map_header DiglettsCave, DIGLETTS_CAVE, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/DiglettsCaveRoute11.asm
@@ -1,0 +1,3 @@
+
+ map_header DiglettsCaveRoute11, DIGLETTS_CAVE_ROUTE_11, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/DiglettsCaveRoute2.asm
@@ -1,0 +1,3 @@
+
+ map_header DiglettsCaveRoute2, DIGLETTS_CAVE_ROUTE_2, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FightingDojo.asm
@@ -1,0 +1,3 @@
+
+ map_header FightingDojo, FIGHTING_DOJO, DOJO, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaBillsGrandpasHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header FuchsiaBillsGrandpasHouse, FUCHSIA_BILLS_GRANDPAS_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaCity.asm
@@ -1,0 +1,6 @@
+
+ map_header FuchsiaCity, FUCHSIA_CITY, OVERWORLD, SOUTH | WEST | EAST
+ connection south, Route19, ROUTE_19, 5
+ connection west, Route18, ROUTE_18, 4
+ connection east, Route15, ROUTE_15, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaGoodRodHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header FuchsiaGoodRodHouse, FUCHSIA_GOOD_ROD_HOUSE, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaGym.asm
@@ -1,0 +1,3 @@
+
+ map_header FuchsiaGym, FUCHSIA_GYM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaMart.asm
@@ -1,0 +1,3 @@
+
+ map_header FuchsiaMart, FUCHSIA_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaMeetingRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header FuchsiaMeetingRoom, FUCHSIA_MEETING_ROOM, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/FuchsiaPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header FuchsiaPokecenter, FUCHSIA_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/GameCorner.asm
@@ -1,0 +1,3 @@
+
+ map_header GameCorner, GAME_CORNER, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/GameCornerPrizeRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header GameCornerPrizeRoom, GAME_CORNER_PRIZE_ROOM, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/HallOfFame.asm
@@ -1,0 +1,3 @@
+
+ map_header HallOfFame, HALL_OF_FAME, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/IndigoPlateau.asm
@@ -1,0 +1,4 @@
+
+ map_header IndigoPlateau, INDIGO_PLATEAU, PLATEAU, SOUTH
+ connection south, Route23, ROUTE_23, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/IndigoPlateauLobby.asm
@@ -1,0 +1,3 @@
+
+ map_header IndigoPlateauLobby, INDIGO_PLATEAU_LOBBY, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/LancesRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header LancesRoom, LANCES_ROOM, DOJO, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/LavenderCuboneHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header LavenderCuboneHouse, LAVENDER_CUBONE_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/LavenderMart.asm
@@ -1,0 +1,3 @@
+
+ map_header LavenderMart, LAVENDER_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/LavenderPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header LavenderPokecenter, LAVENDER_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/LavenderTown.asm
@@ -1,0 +1,6 @@
+
+ map_header LavenderTown, LAVENDER_TOWN, OVERWORLD, NORTH | SOUTH | WEST
+ connection north, Route10, ROUTE_10, 0
+ connection south, Route12, ROUTE_12, 0
+ connection west, Route8, ROUTE_8, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/LoreleisRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header LoreleisRoom, LORELEIS_ROOM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/MrFujisHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header MrFujisHouse, MR_FUJIS_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/MrPsychicsHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header MrPsychicsHouse, MR_PSYCHICS_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/MtMoon1F.asm
@@ -1,0 +1,3 @@
+
+ map_header MtMoon1F, MT_MOON_1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/MtMoonB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header MtMoonB1F, MT_MOON_B1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/MtMoonB2F.asm
@@ -1,0 +1,3 @@
+
+ map_header MtMoonB2F, MT_MOON_B2F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/MtMoonPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header MtMoonPokecenter, MT_MOON_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Museum1F.asm
@@ -1,0 +1,3 @@
+
+ map_header Museum1F, MUSEUM_1F, MUSEUM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Museum2F.asm
@@ -1,0 +1,3 @@
+
+ map_header Museum2F, MUSEUM_2F, MUSEUM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/NameRatersHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header NameRatersHouse, NAME_RATERS_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/OaksLab.asm
@@ -1,0 +1,3 @@
+
+ map_header OaksLab, OAKS_LAB, DOJO, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PalletTown.asm
@@ -1,0 +1,5 @@
+
+ map_header PalletTown, PALLET_TOWN, OVERWORLD, NORTH | SOUTH
+ connection north, Route1, ROUTE_1, 0
+ connection south, Route21, ROUTE_21, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PewterCity.asm
@@ -1,0 +1,5 @@
+
+ map_header PewterCity, PEWTER_CITY, OVERWORLD, SOUTH | EAST
+ connection south, Route2, ROUTE_2, 5
+ connection east, Route3, ROUTE_3, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PewterGym.asm
@@ -1,0 +1,3 @@
+
+ map_header PewterGym, PEWTER_GYM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PewterMart.asm
@@ -1,0 +1,3 @@
+
+ map_header PewterMart, PEWTER_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PewterNidoranHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header PewterNidoranHouse, PEWTER_NIDORAN_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PewterPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header PewterPokecenter, PEWTER_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PewterSpeechHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header PewterSpeechHouse, PEWTER_SPEECH_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonFanClub.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonFanClub, POKEMON_FAN_CLUB, INTERIOR, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonMansion1F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonMansion1F, POKEMON_MANSION_1F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonMansion2F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonMansion2F, POKEMON_MANSION_2F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonMansion3F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonMansion3F, POKEMON_MANSION_3F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonMansionB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonMansionB1F, POKEMON_MANSION_B1F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower1F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower1F, POKEMON_TOWER_1F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower2F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower2F, POKEMON_TOWER_2F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower3F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower3F, POKEMON_TOWER_3F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower4F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower4F, POKEMON_TOWER_4F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower5F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower5F, POKEMON_TOWER_5F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower6F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower6F, POKEMON_TOWER_6F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PokemonTower7F.asm
@@ -1,0 +1,3 @@
+
+ map_header PokemonTower7F, POKEMON_TOWER_7F, CEMETERY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/PowerPlant.asm
@@ -1,0 +1,3 @@
+
+ map_header PowerPlant, POWER_PLANT, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RedsHouse1F.asm
@@ -1,0 +1,3 @@
+
+ map_header RedsHouse1F, REDS_HOUSE_1F, REDS_HOUSE_1, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RedsHouse2F.asm
@@ -1,0 +1,3 @@
+
+ map_header RedsHouse2F, REDS_HOUSE_2F, REDS_HOUSE_2, $00
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RockTunnel1F.asm
@@ -1,0 +1,3 @@
+
+ map_header RockTunnel1F, ROCK_TUNNEL_1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RockTunnelB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header RockTunnelB1F, ROCK_TUNNEL_B1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RockTunnelPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header RockTunnelPokecenter, ROCK_TUNNEL_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RocketHideoutB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header RocketHideoutB1F, ROCKET_HIDEOUT_B1F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RocketHideoutB2F.asm
@@ -1,0 +1,3 @@
+
+ map_header RocketHideoutB2F, ROCKET_HIDEOUT_B2F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RocketHideoutB3F.asm
@@ -1,0 +1,3 @@
+
+ map_header RocketHideoutB3F, ROCKET_HIDEOUT_B3F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RocketHideoutB4F.asm
@@ -1,0 +1,3 @@
+
+ map_header RocketHideoutB4F, ROCKET_HIDEOUT_B4F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/RocketHideoutElevator.asm
@@ -1,0 +1,3 @@
+
+ map_header RocketHideoutElevator, ROCKET_HIDEOUT_ELEVATOR, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route1.asm
@@ -1,0 +1,5 @@
+
+ map_header Route1, ROUTE_1, OVERWORLD, NORTH | SOUTH
+ connection north, ViridianCity, VIRIDIAN_CITY, -5
+ connection south, PalletTown, PALLET_TOWN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route10.asm
@@ -1,0 +1,5 @@
+
+ map_header Route10, ROUTE_10, OVERWORLD, SOUTH | WEST
+ connection south, LavenderTown, LAVENDER_TOWN, 0
+ connection west, Route9, ROUTE_9, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route11.asm
@@ -1,0 +1,5 @@
+
+ map_header Route11, ROUTE_11, OVERWORLD, WEST | EAST
+ connection west, VermilionCity, VERMILION_CITY, -4
+ connection east, Route12, ROUTE_12, -27
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route11Gate1F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route11Gate1F, ROUTE_11_GATE_1F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route11Gate2F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route11Gate2F, ROUTE_11_GATE_2F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route12.asm
@@ -1,0 +1,6 @@
+
+ map_header Route12, ROUTE_12, OVERWORLD, NORTH | SOUTH | WEST
+ connection north, LavenderTown, LAVENDER_TOWN, 0
+ connection south, Route13, ROUTE_13, -20
+ connection west, Route11, ROUTE_11, 27
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route12Gate1F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route12Gate1F, ROUTE_12_GATE_1F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route12Gate2F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route12Gate2F, ROUTE_12_GATE_2F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route12SuperRodHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header Route12SuperRodHouse, ROUTE_12_SUPER_ROD_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route13.asm
@@ -1,0 +1,5 @@
+
+ map_header Route13, ROUTE_13, OVERWORLD, NORTH | WEST
+ connection north, Route12, ROUTE_12, 20
+ connection west, Route14, ROUTE_14, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route14.asm
@@ -1,0 +1,5 @@
+
+ map_header Route14, ROUTE_14, OVERWORLD, WEST | EAST
+ connection west, Route15, ROUTE_15, 18
+ connection east, Route13, ROUTE_13, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route15.asm
@@ -1,0 +1,5 @@
+
+ map_header Route15, ROUTE_15, OVERWORLD, WEST | EAST
+ connection west, FuchsiaCity, FUCHSIA_CITY, -4
+ connection east, Route14, ROUTE_14, -18
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route15Gate1F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route15Gate1F, ROUTE_15_GATE_1F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route15Gate2F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route15Gate2F, ROUTE_15_GATE_2F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route16.asm
@@ -1,0 +1,5 @@
+
+ map_header Route16, ROUTE_16, OVERWORLD, SOUTH | EAST
+ connection south, Route17, ROUTE_17, 0
+ connection east, CeladonCity, CELADON_CITY, -4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route16FlyHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header Route16FlyHouse, ROUTE_16_FLY_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route16Gate1F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route16Gate1F, ROUTE_16_GATE_1F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route16Gate2F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route16Gate2F, ROUTE_16_GATE_2F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route17.asm
@@ -1,0 +1,5 @@
+
+ map_header Route17, ROUTE_17, OVERWORLD, NORTH | SOUTH
+ connection north, Route16, ROUTE_16, 0
+ connection south, Route18, ROUTE_18, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route18.asm
@@ -1,0 +1,5 @@
+
+ map_header Route18, ROUTE_18, OVERWORLD, NORTH | EAST
+ connection north, Route17, ROUTE_17, 0
+ connection east, FuchsiaCity, FUCHSIA_CITY, -4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route18Gate1F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route18Gate1F, ROUTE_18_GATE_1F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route18Gate2F.asm
@@ -1,0 +1,3 @@
+
+ map_header Route18Gate2F, ROUTE_18_GATE_2F, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route19.asm
@@ -1,0 +1,5 @@
+
+ map_header Route19, ROUTE_19, OVERWORLD, NORTH | WEST
+ connection north, FuchsiaCity, FUCHSIA_CITY, -5
+ connection west, Route20, ROUTE_20, 18
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route2.asm
@@ -1,0 +1,5 @@
+
+ map_header Route2, ROUTE_2, OVERWORLD, NORTH | SOUTH
+ connection north, PewterCity, PEWTER_CITY, -5
+ connection south, ViridianCity, VIRIDIAN_CITY, -5
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route20.asm
@@ -1,0 +1,5 @@
+
+ map_header Route20, ROUTE_20, OVERWORLD, WEST | EAST
+ connection west, CinnabarIsland, CINNABAR_ISLAND, 0
+ connection east, Route19, ROUTE_19, -18
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route21.asm
@@ -1,0 +1,5 @@
+
+ map_header Route21, ROUTE_21, OVERWORLD, NORTH | SOUTH
+ connection north, PalletTown, PALLET_TOWN, 0
+ connection south, CinnabarIsland, CINNABAR_ISLAND, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route22.asm
@@ -1,0 +1,5 @@
+
+ map_header Route22, ROUTE_22, OVERWORLD, NORTH | EAST
+ connection north, Route23, ROUTE_23, 0
+ connection east, ViridianCity, VIRIDIAN_CITY, -4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route22Gate.asm
@@ -1,0 +1,3 @@
+
+ map_header Route22Gate, ROUTE_22_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route23.asm
@@ -1,0 +1,5 @@
+
+ map_header Route23, ROUTE_23, PLATEAU, NORTH | SOUTH
+ connection north, IndigoPlateau, INDIGO_PLATEAU, 0
+ connection south, Route22, ROUTE_22, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route24.asm
@@ -1,0 +1,5 @@
+
+ map_header Route24, ROUTE_24, OVERWORLD, SOUTH | EAST
+ connection south, CeruleanCity, CERULEAN_CITY, -5
+ connection east, Route25, ROUTE_25, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route25.asm
@@ -1,0 +1,4 @@
+
+ map_header Route25, ROUTE_25, OVERWORLD, WEST
+ connection west, Route24, ROUTE_24, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route2Gate.asm
@@ -1,0 +1,3 @@
+
+ map_header Route2Gate, ROUTE_2_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route2TradeHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header Route2TradeHouse, ROUTE_2_TRADE_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route3.asm
@@ -1,0 +1,5 @@
+
+ map_header Route3, ROUTE_3, OVERWORLD, NORTH | WEST
+ connection north, Route4, ROUTE_4, 25
+ connection west, PewterCity, PEWTER_CITY, -4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route4.asm
@@ -1,0 +1,5 @@
+
+ map_header Route4, ROUTE_4, OVERWORLD, SOUTH | EAST
+ connection south, Route3, ROUTE_3, -25
+ connection east, CeruleanCity, CERULEAN_CITY, -4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route5.asm
@@ -1,0 +1,5 @@
+
+ map_header Route5, ROUTE_5, OVERWORLD, NORTH | SOUTH
+ connection north, CeruleanCity, CERULEAN_CITY, -5
+ connection south, SaffronCity, SAFFRON_CITY, -5
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route5Gate.asm
@@ -1,0 +1,3 @@
+
+ map_header Route5Gate, ROUTE_5_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route6.asm
@@ -1,0 +1,5 @@
+
+ map_header Route6, ROUTE_6, OVERWORLD, NORTH | SOUTH
+ connection north, SaffronCity, SAFFRON_CITY, -5
+ connection south, VermilionCity, VERMILION_CITY, -5
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route6Gate.asm
@@ -1,0 +1,3 @@
+
+ map_header Route6Gate, ROUTE_6_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route7.asm
@@ -1,0 +1,5 @@
+
+ map_header Route7, ROUTE_7, OVERWORLD, WEST | EAST
+ connection west, CeladonCity, CELADON_CITY, -4
+ connection east, SaffronCity, SAFFRON_CITY, -4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route7Gate.asm
@@ -1,0 +1,3 @@
+
+ map_header Route7Gate, ROUTE_7_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route8.asm
@@ -1,0 +1,5 @@
+
+ map_header Route8, ROUTE_8, OVERWORLD, WEST | EAST
+ connection west, SaffronCity, SAFFRON_CITY, -4
+ connection east, LavenderTown, LAVENDER_TOWN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route8Gate.asm
@@ -1,0 +1,3 @@
+
+ map_header Route8Gate, ROUTE_8_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/Route9.asm
@@ -1,0 +1,5 @@
+
+ map_header Route9, ROUTE_9, OVERWORLD, WEST | EAST
+ connection west, CeruleanCity, CERULEAN_CITY, -4
+ connection east, Route10, ROUTE_10, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnne1F.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnne1F, SS_ANNE_1F, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnne1FRooms.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnne1FRooms, SS_ANNE_1F_ROOMS, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnne2F.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnne2F, SS_ANNE_2F, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnne2FRooms.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnne2FRooms, SS_ANNE_2F_ROOMS, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnne3F.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnne3F, SS_ANNE_3F, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnneB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnneB1F, SS_ANNE_B1F, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnneB1FRooms.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnneB1FRooms, SS_ANNE_B1F_ROOMS, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnneBow.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnneBow, SS_ANNE_BOW, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnneCaptainsRoom.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnneCaptainsRoom, SS_ANNE_CAPTAINS_ROOM, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SSAnneKitchen.asm
@@ -1,0 +1,3 @@
+
+ map_header SSAnneKitchen, SS_ANNE_KITCHEN, SHIP, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneCenter.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneCenter, SAFARI_ZONE_CENTER, FOREST, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneCenterRestHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneCenterRestHouse, SAFARI_ZONE_CENTER_REST_HOUSE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneEast.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneEast, SAFARI_ZONE_EAST, FOREST, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneEastRestHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneEastRestHouse, SAFARI_ZONE_EAST_REST_HOUSE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneGate.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneGate, SAFARI_ZONE_GATE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneNorth.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneNorth, SAFARI_ZONE_NORTH, FOREST, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneNorthRestHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneNorthRestHouse, SAFARI_ZONE_NORTH_REST_HOUSE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneSecretHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneSecretHouse, SAFARI_ZONE_SECRET_HOUSE, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneWest.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneWest, SAFARI_ZONE_WEST, FOREST, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SafariZoneWestRestHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header SafariZoneWestRestHouse, SAFARI_ZONE_WEST_REST_HOUSE, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SaffronCity.asm
@@ -1,0 +1,7 @@
+
+ map_header SaffronCity, SAFFRON_CITY, OVERWORLD, NORTH | SOUTH | WEST | EAST
+ connection north, Route5, ROUTE_5, 5
+ connection south, Route6, ROUTE_6, 5
+ connection west, Route7, ROUTE_7, 4
+ connection east, Route8, ROUTE_8, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SaffronGym.asm
@@ -1,0 +1,3 @@
+
+ map_header SaffronGym, SAFFRON_GYM, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SaffronMart.asm
@@ -1,0 +1,3 @@
+
+ map_header SaffronMart, SAFFRON_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SaffronPidgeyHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header SaffronPidgeyHouse, SAFFRON_PIDGEY_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SaffronPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header SaffronPokecenter, SAFFRON_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SeafoamIslands1F.asm
@@ -1,0 +1,3 @@
+
+ map_header SeafoamIslands1F, SEAFOAM_ISLANDS_1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SeafoamIslandsB1F.asm
@@ -1,0 +1,3 @@
+
+ map_header SeafoamIslandsB1F, SEAFOAM_ISLANDS_B1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SeafoamIslandsB2F.asm
@@ -1,0 +1,3 @@
+
+ map_header SeafoamIslandsB2F, SEAFOAM_ISLANDS_B2F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SeafoamIslandsB3F.asm
@@ -1,0 +1,3 @@
+
+ map_header SeafoamIslandsB3F, SEAFOAM_ISLANDS_B3F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SeafoamIslandsB4F.asm
@@ -1,0 +1,3 @@
+
+ map_header SeafoamIslandsB4F, SEAFOAM_ISLANDS_B4F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo10F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo10F, SILPH_CO_10F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo11F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo11F, SILPH_CO_11F, INTERIOR, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo1F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo1F, SILPH_CO_1F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo2F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo2F, SILPH_CO_2F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo3F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo3F, SILPH_CO_3F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo4F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo4F, SILPH_CO_4F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo5F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo5F, SILPH_CO_5F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo6F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo6F, SILPH_CO_6F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo7F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo7F, SILPH_CO_7F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo8F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo8F, SILPH_CO_8F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCo9F.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCo9F, SILPH_CO_9F, FACILITY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/SilphCoElevator.asm
@@ -1,0 +1,3 @@
+
+ map_header SilphCoElevator, SILPH_CO_ELEVATOR, LOBBY, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/TradeCenter.asm
@@ -1,0 +1,3 @@
+
+ map_header TradeCenter, TRADE_CENTER, CLUB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathNorthSouth.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathNorthSouth, UNDERGROUND_PATH_NORTH_SOUTH, UNDERGROUND, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathRoute5.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathRoute5, UNDERGROUND_PATH_ROUTE_5, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathRoute6.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathRoute6, UNDERGROUND_PATH_ROUTE_6, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathRoute7.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathRoute7, UNDERGROUND_PATH_ROUTE_7, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathRoute7Copy.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathRoute7Copy, UNDERGROUND_PATH_ROUTE_7, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathRoute8.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathRoute8, UNDERGROUND_PATH_ROUTE_8, GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/UndergroundPathWestEast.asm
@@ -1,0 +1,3 @@
+
+ map_header UndergroundPathWestEast, UNDERGROUND_PATH_WEST_EAST, UNDERGROUND, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionCity.asm
@@ -1,0 +1,5 @@
+
+ map_header VermilionCity, VERMILION_CITY, OVERWORLD, NORTH | EAST
+ connection north, Route6, ROUTE_6, 5
+ connection east, Route11, ROUTE_11, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionDock.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionDock, VERMILION_DOCK, SHIP_PORT, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionGym.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionGym, VERMILION_GYM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionMart.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionMart, VERMILION_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionOldRodHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionOldRodHouse, VERMILION_OLD_ROD_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionPidgeyHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionPidgeyHouse, VERMILION_PIDGEY_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionPokecenter, VERMILION_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VermilionTradeHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header VermilionTradeHouse, VERMILION_TRADE_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VictoryRoad1F.asm
@@ -1,0 +1,3 @@
+
+ map_header VictoryRoad1F, VICTORY_ROAD_1F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VictoryRoad2F.asm
@@ -1,0 +1,3 @@
+
+ map_header VictoryRoad2F, VICTORY_ROAD_2F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/VictoryRoad3F.asm
@@ -1,0 +1,3 @@
+
+ map_header VictoryRoad3F, VICTORY_ROAD_3F, CAVERN, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianCity.asm
@@ -1,0 +1,6 @@
+
+ map_header ViridianCity, VIRIDIAN_CITY, OVERWORLD, NORTH | SOUTH | WEST
+ connection north, Route2, ROUTE_2, 5
+ connection south, Route1, ROUTE_1, 5
+ connection west, Route22, ROUTE_22, 4
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianForest.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianForest, VIRIDIAN_FOREST, FOREST, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianForestNorthGate.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianForestNorthGate, VIRIDIAN_FOREST_NORTH_GATE, FOREST_GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianForestSouthGate.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianForestSouthGate, VIRIDIAN_FOREST_SOUTH_GATE, FOREST_GATE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianGym.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianGym, VIRIDIAN_GYM, GYM, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianMart.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianMart, VIRIDIAN_MART, MART, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianNicknameHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianNicknameHouse, VIRIDIAN_NICKNAME_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianPokecenter.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianPokecenter, VIRIDIAN_POKECENTER, POKECENTER, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/ViridianSchoolHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header ViridianSchoolHouse, VIRIDIAN_SCHOOL_HOUSE, HOUSE, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/headers/WardensHouse.asm
@@ -1,0 +1,3 @@
+
+ map_header WardensHouse, WARDENS_HOUSE, LAB, 0
+ end_map_header
--- /dev/null
+++ b/data/maps/hide_show_data.asm
@@ -1,0 +1,577 @@
+; data for default hidden/shown
+; objects for each map ($00-$F8)
+
+; Table of 2-Byte pointers, one pointer per map,
+; goes up to Map_F7, ends with -1.
+; points to table listing all missable object in the area
+MapHSPointers:
+ dw MapHS00
+ dw MapHS01
+ dw MapHS02
+ dw MapHS03
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS0A
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS0D
+ dw MapHSXX
+ dw MapHS0F
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS14
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS17
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS1A
+ dw MapHS1B
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS21
+ dw MapHSXX
+ dw MapHS23
+ dw MapHS24
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS27
+ dw MapHS28
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS2D
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS33
+ dw MapHS34
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS3B
+ dw MapHSXX
+ dw MapHS3D
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS53
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS58
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS60
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS66
+ dw MapHS67
+ dw MapHS68
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS6C
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS78
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS84
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS87
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS8F
+ dw MapHS90
+ dw MapHS91
+ dw MapHS92
+ dw MapHS93
+ dw MapHS94
+ dw MapHS95
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS9B
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHS9F
+ dw MapHSA0
+ dw MapHSA1
+ dw MapHSA2
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSA5
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSB1
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSB5
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSC0
+ dw MapHSXX
+ dw MapHSC2
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSC6
+ dw MapHSC7
+ dw MapHSC8
+ dw MapHSC9
+ dw MapHSCA
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSCF
+ dw MapHSD0
+ dw MapHSD1
+ dw MapHSD2
+ dw MapHSD3
+ dw MapHSD4
+ dw MapHSD5
+ dw MapHSD6
+ dw MapHSD7
+ dw MapHSD8
+ dw MapHSD9
+ dw MapHSDA
+ dw MapHSDB
+ dw MapHSDC
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSE2
+ dw MapHSE3
+ dw MapHSE4
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSE9
+ dw MapHSEA
+ dw MapHSEB
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSF4
+ dw MapHSXX
+ dw MapHSXX
+ dw MapHSXX
+ dw -1 ; end
+
+; Structure:
+; 3 bytes per object
+; [Map_ID][Object_ID][H/S]
+;
+; Program stops reading when either:
+; a) Map_ID = $FF
+; b) Map_ID ≠ currentMapID
+;
+; This Data is loaded into RAM at wd5ce-$D5F?. (wMissableObjectList)
+
+; These constants come from the bytes for Predef functions:
+Hide equ $11
+Show equ $15
+
+MapHSXX:
+ db $FF,$FF,$FF
+MapHS00:
+ db PALLET_TOWN,$01,Hide
+MapHS01:
+ db VIRIDIAN_CITY,$05,Show
+ db VIRIDIAN_CITY,$07,Hide
+MapHS02:
+ db PEWTER_CITY,$03,Show
+ db PEWTER_CITY,$05,Show
+MapHS03:
+ db CERULEAN_CITY,$01,Hide
+ db CERULEAN_CITY,$02,Show
+ db CERULEAN_CITY,$06,Hide
+ db CERULEAN_CITY,$0A,Show
+ db CERULEAN_CITY,$0B,Show
+MapHS0A:
+ db SAFFRON_CITY,$01,Show
+ db SAFFRON_CITY,$02,Show
+ db SAFFRON_CITY,$03,Show
+ db SAFFRON_CITY,$04,Show
+ db SAFFRON_CITY,$05,Show
+ db SAFFRON_CITY,$06,Show
+ db SAFFRON_CITY,$07,Show
+ db SAFFRON_CITY,$08,Hide
+ db SAFFRON_CITY,$09,Hide
+ db SAFFRON_CITY,$0A,Hide
+ db SAFFRON_CITY,$0B,Hide
+ db SAFFRON_CITY,$0C,Hide
+ db SAFFRON_CITY,$0D,Hide
+ db SAFFRON_CITY,$0E,Show
+ db SAFFRON_CITY,$0F,Hide
+MapHS0D:
+ db ROUTE_2,$01,Show
+ db ROUTE_2,$02,Show
+MapHS0F:
+ db ROUTE_4,$03,Show
+MapHS14:
+ db ROUTE_9,$0A,Show
+MapHS17:
+ db ROUTE_12,$01,Show
+ db ROUTE_12,$09,Show
+ db ROUTE_12,$0A,Show
+MapHS1A:
+ db ROUTE_15,$0B,Show
+MapHS1B:
+ db ROUTE_16,$07,Show
+MapHS21:
+ db ROUTE_22,$01,Hide
+ db ROUTE_22,$02,Hide
+MapHS23:
+ db ROUTE_24,$01,Show
+ db ROUTE_24,$08,Show
+MapHS24:
+ db ROUTE_25,$0A,Show
+MapHS27:
+ db BLUES_HOUSE,$01,Show
+ db BLUES_HOUSE,$02,Hide
+ db BLUES_HOUSE,$03,Show
+MapHS28:
+ db OAKS_LAB,$01,Show
+ db OAKS_LAB,$02,Show
+ db OAKS_LAB,$03,Show
+ db OAKS_LAB,$04,Show
+ db OAKS_LAB,$05,Hide
+ db OAKS_LAB,$06,Show
+ db OAKS_LAB,$07,Show
+ db OAKS_LAB,$08,Hide
+MapHS2D:
+ db VIRIDIAN_GYM,$01,Show
+ db VIRIDIAN_GYM,$0B,Show
+MapHS34:
+ db MUSEUM_1F,$05,Show
+MapHSE4:
+ db CERULEAN_CAVE_1F,$01,Show
+ db CERULEAN_CAVE_1F,$02,Show
+ db CERULEAN_CAVE_1F,$03,Show
+MapHS8F:
+ db POKEMON_TOWER_2F,$01,Show
+MapHS90:
+ db POKEMON_TOWER_3F,$04,Show
+MapHS91:
+ db POKEMON_TOWER_4F,$04,Show
+ db POKEMON_TOWER_4F,$05,Show
+ db POKEMON_TOWER_4F,$06,Show
+MapHS92:
+ db POKEMON_TOWER_5F,$06,Show
+MapHS93:
+ db POKEMON_TOWER_6F,$04,Show
+ db POKEMON_TOWER_6F,$05,Show
+MapHS94:
+ db POKEMON_TOWER_7F,$01,Show
+ db POKEMON_TOWER_7F,$02,Show
+ db POKEMON_TOWER_7F,$03,Show
+ db POKEMON_TOWER_7F,$04,Show
+MapHS95:
+ db MR_FUJIS_HOUSE,$05,Hide
+MapHS84:
+ db CELADON_MANSION_ROOF_HOUSE,$02,Show
+MapHS87:
+ db GAME_CORNER,$0B,Show
+MapHS9B:
+ db WARDENS_HOUSE,$02,Show
+MapHSA5:
+ db POKEMON_MANSION_1F,$02,Show
+ db POKEMON_MANSION_1F,$03,Show
+MapHSB1:
+ db FIGHTING_DOJO,$06,Show
+ db FIGHTING_DOJO,$07,Show
+MapHSB5:
+ db SILPH_CO_1F,$01,Hide
+MapHS53:
+ db POWER_PLANT,$01,Show
+ db POWER_PLANT,$02,Show
+ db POWER_PLANT,$03,Show
+ db POWER_PLANT,$04,Show
+ db POWER_PLANT,$05,Show
+ db POWER_PLANT,$06,Show
+ db POWER_PLANT,$07,Show
+ db POWER_PLANT,$08,Show
+ db POWER_PLANT,$09,Show
+ db POWER_PLANT,$0A,Show
+ db POWER_PLANT,$0B,Show
+ db POWER_PLANT,$0C,Show
+ db POWER_PLANT,$0D,Show
+ db POWER_PLANT,$0E,Show
+MapHSC2:
+ db VICTORY_ROAD_2F,$06,Show
+ db VICTORY_ROAD_2F,$07,Show
+ db VICTORY_ROAD_2F,$08,Show
+ db VICTORY_ROAD_2F,$09,Show
+ db VICTORY_ROAD_2F,$0A,Show
+ db VICTORY_ROAD_2F,$0D,Show
+MapHS58:
+ db BILLS_HOUSE,$01,Show
+ db BILLS_HOUSE,$02,Hide
+ db BILLS_HOUSE,$03,Hide
+MapHS33:
+ db VIRIDIAN_FOREST,$05,Show
+ db VIRIDIAN_FOREST,$06,Show
+ db VIRIDIAN_FOREST,$07,Show
+MapHS3B:
+ db MT_MOON_1F,$08,Show
+ db MT_MOON_1F,$09,Show
+ db MT_MOON_1F,$0A,Show
+ db MT_MOON_1F,$0B,Show
+ db MT_MOON_1F,$0C,Show
+ db MT_MOON_1F,$0D,Show
+MapHS3D:
+ db MT_MOON_B2F,$06,Show
+ db MT_MOON_B2F,$07,Show
+ db MT_MOON_B2F,$08,Show
+ db MT_MOON_B2F,$09,Show
+MapHS60:
+ db SS_ANNE_2F,$02,Hide
+MapHS66:
+ db SS_ANNE_1F_ROOMS,$0A,Show
+MapHS67:
+ db SS_ANNE_2F_ROOMS,$06,Show
+ db SS_ANNE_2F_ROOMS,$09,Show
+MapHS68:
+ db SS_ANNE_B1F_ROOMS,$09,Show
+ db SS_ANNE_B1F_ROOMS,$0A,Show
+ db SS_ANNE_B1F_ROOMS,$0B,Show
+MapHSC6:
+ db VICTORY_ROAD_3F,$05,Show
+ db VICTORY_ROAD_3F,$06,Show
+ db VICTORY_ROAD_3F,$0A,Show
+MapHSC7:
+ db ROCKET_HIDEOUT_B1F,$06,Show
+ db ROCKET_HIDEOUT_B1F,$07,Show
+MapHSC8:
+ db ROCKET_HIDEOUT_B2F,$02,Show
+ db ROCKET_HIDEOUT_B2F,$03,Show
+ db ROCKET_HIDEOUT_B2F,$04,Show
+ db ROCKET_HIDEOUT_B2F,$05,Show
+MapHSC9:
+ db ROCKET_HIDEOUT_B3F,$03,Show
+ db ROCKET_HIDEOUT_B3F,$04,Show
+MapHSCA:
+ db ROCKET_HIDEOUT_B4F,$01,Show
+ db ROCKET_HIDEOUT_B4F,$05,Show
+ db ROCKET_HIDEOUT_B4F,$06,Show
+ db ROCKET_HIDEOUT_B4F,$07,Show
+ db ROCKET_HIDEOUT_B4F,$08,Hide
+ db ROCKET_HIDEOUT_B4F,$09,Hide
+MapHSCF:
+ db SILPH_CO_2F,$01,Show
+ db SILPH_CO_2F,$02,Show
+ db SILPH_CO_2F,$03,Show
+ db SILPH_CO_2F,$04,Show
+ db SILPH_CO_2F,$05,Show
+MapHSD0:
+ db SILPH_CO_3F,$02,Show
+ db SILPH_CO_3F,$03,Show
+ db SILPH_CO_3F,$04,Show
+MapHSD1:
+ db SILPH_CO_4F,$02,Show
+ db SILPH_CO_4F,$03,Show
+ db SILPH_CO_4F,$04,Show
+ db SILPH_CO_4F,$05,Show
+ db SILPH_CO_4F,$06,Show
+ db SILPH_CO_4F,$07,Show
+MapHSD2:
+ db SILPH_CO_5F,$02,Show
+ db SILPH_CO_5F,$03,Show
+ db SILPH_CO_5F,$04,Show
+ db SILPH_CO_5F,$05,Show
+ db SILPH_CO_5F,$06,Show
+ db SILPH_CO_5F,$07,Show
+ db SILPH_CO_5F,$08,Show
+MapHSD3:
+ db SILPH_CO_6F,$06,Show
+ db SILPH_CO_6F,$07,Show
+ db SILPH_CO_6F,$08,Show
+ db SILPH_CO_6F,$09,Show
+ db SILPH_CO_6F,$0A,Show
+MapHSD4:
+ db SILPH_CO_7F,$05,Show
+ db SILPH_CO_7F,$06,Show
+ db SILPH_CO_7F,$07,Show
+ db SILPH_CO_7F,$08,Show
+ db SILPH_CO_7F,$09,Show
+ db SILPH_CO_7F,$0A,Show
+ db SILPH_CO_7F,$0B,Show
+ db SILPH_CO_7F,$0C,Show
+MapHSD5:
+ db SILPH_CO_8F,$02,Show
+ db SILPH_CO_8F,$03,Show
+ db SILPH_CO_8F,$04,Show
+MapHSE9:
+ db SILPH_CO_9F,$02,Show
+ db SILPH_CO_9F,$03,Show
+ db SILPH_CO_9F,$04,Show
+MapHSEA:
+ db SILPH_CO_10F,$01,Show
+ db SILPH_CO_10F,$02,Show
+ db SILPH_CO_10F,$03,Show
+ db SILPH_CO_10F,$04,Show
+ db SILPH_CO_10F,$05,Show
+ db SILPH_CO_10F,$06,Show
+MapHSEB:
+ db SILPH_CO_11F,$03,Show
+ db SILPH_CO_11F,$04,Show
+ db SILPH_CO_11F,$05,Show
+MapHSF4:
+ db UNUSED_MAP_F4,$02,Show
+MapHSD6:
+ db POKEMON_MANSION_2F,$02,Show
+MapHSD7:
+ db POKEMON_MANSION_3F,$03,Show
+ db POKEMON_MANSION_3F,$04,Show
+MapHSD8:
+ db POKEMON_MANSION_B1F,$03,Show
+ db POKEMON_MANSION_B1F,$04,Show
+ db POKEMON_MANSION_B1F,$05,Show
+ db POKEMON_MANSION_B1F,$06,Show
+ db POKEMON_MANSION_B1F,$08,Show
+MapHSD9:
+ db SAFARI_ZONE_EAST,$01,Show
+ db SAFARI_ZONE_EAST,$02,Show
+ db SAFARI_ZONE_EAST,$03,Show
+ db SAFARI_ZONE_EAST,$04,Show
+MapHSDA:
+ db SAFARI_ZONE_NORTH,$01,Show
+ db SAFARI_ZONE_NORTH,$02,Show
+MapHSDB:
+ db SAFARI_ZONE_WEST,$01,Show
+ db SAFARI_ZONE_WEST,$02,Show
+ db SAFARI_ZONE_WEST,$03,Show
+ db SAFARI_ZONE_WEST,$04,Show
+MapHSDC:
+ db SAFARI_ZONE_CENTER,$01,Show
+MapHSE2:
+ db CERULEAN_CAVE_2F,$01,Show
+ db CERULEAN_CAVE_2F,$02,Show
+ db CERULEAN_CAVE_2F,$03,Show
+MapHSE3:
+ db CERULEAN_CAVE_B1F,$01,Show
+ db CERULEAN_CAVE_B1F,$02,Show
+ db CERULEAN_CAVE_B1F,$03,Show
+MapHS6C:
+ db VICTORY_ROAD_1F,$03,Show
+ db VICTORY_ROAD_1F,$04,Show
+MapHS78:
+ db CHAMPIONS_ROOM,$02,Hide
+MapHSC0:
+ db SEAFOAM_ISLANDS_1F,$01,Show
+ db SEAFOAM_ISLANDS_1F,$02,Show
+MapHS9F:
+ db SEAFOAM_ISLANDS_B1F,$01,Hide
+ db SEAFOAM_ISLANDS_B1F,$02,Hide
+MapHSA0:
+ db SEAFOAM_ISLANDS_B2F,$01,Hide
+ db SEAFOAM_ISLANDS_B2F,$02,Hide
+MapHSA1:
+ db SEAFOAM_ISLANDS_B3F,$02,Show
+ db SEAFOAM_ISLANDS_B3F,$03,Show
+ db SEAFOAM_ISLANDS_B3F,$05,Hide
+ db SEAFOAM_ISLANDS_B3F,$06,Hide
+MapHSA2:
+ db SEAFOAM_ISLANDS_B4F,$01,Hide
+ db SEAFOAM_ISLANDS_B4F,$02,Hide
+ db SEAFOAM_ISLANDS_B4F,$03,Show
+
+ db $FF,$01,Show
--- /dev/null
+++ b/data/maps/map_header_banks.asm
@@ -1,0 +1,250 @@
+; see also MapHeaderPointers
+MapHeaderBanks::
+ db BANK(PalletTown_h)
+ db BANK(ViridianCity_h)
+ db BANK(PewterCity_h)
+ db BANK(CeruleanCity_h)
+ db BANK(LavenderTown_h)
+ db BANK(VermilionCity_h)
+ db BANK(CeladonCity_h)
+ db BANK(FuchsiaCity_h)
+ db BANK(CinnabarIsland_h)
+ db BANK(IndigoPlateau_h)
+ db BANK(SaffronCity_h)
+ db $01 ; UNUSED_MAP_0B
+ db BANK(Route1_h)
+ db BANK(Route2_h)
+ db BANK(Route3_h)
+ db BANK(Route4_h)
+ db BANK(Route5_h)
+ db BANK(Route6_h)
+ db BANK(Route7_h)
+ db BANK(Route8_h)
+ db BANK(Route9_h)
+ db BANK(Route10_h)
+ db BANK(Route11_h)
+ db BANK(Route12_h)
+ db BANK(Route13_h)
+ db BANK(Route14_h)
+ db BANK(Route15_h)
+ db BANK(Route16_h)
+ db BANK(Route17_h)
+ db BANK(Route18_h)
+ db BANK(Route19_h)
+ db BANK(Route20_h)
+ db BANK(Route21_h)
+ db BANK(Route22_h)
+ db BANK(Route23_h)
+ db BANK(Route24_h)
+ db BANK(Route25_h)
+ db BANK(RedsHouse1F_h)
+ db BANK(RedsHouse2F_h)
+ db BANK(BluesHouse_h)
+ db BANK(OaksLab_h)
+ db BANK(ViridianPokecenter_h)
+ db BANK(ViridianMart_h)
+ db BANK(ViridianSchoolHouse_h)
+ db BANK(ViridianNicknameHouse_h)
+ db BANK(ViridianGym_h)
+ db BANK(DiglettsCaveRoute2_h)
+ db BANK(ViridianForestNorthGate_h)
+ db BANK(Route2TradeHouse_h)
+ db BANK(Route2Gate_h)
+ db BANK(ViridianForestSouthGate_h)
+ db BANK(ViridianForest_h)
+ db BANK(Museum1F_h)
+ db BANK(Museum2F_h)
+ db BANK(PewterGym_h)
+ db BANK(PewterNidoranHouse_h)
+ db BANK(PewterMart_h)
+ db BANK(PewterSpeechHouse_h)
+ db BANK(PewterPokecenter_h)
+ db BANK(MtMoon1F_h)
+ db BANK(MtMoonB1F_h)
+ db BANK(MtMoonB2F_h)
+ db BANK(CeruleanTrashedHouse_h)
+ db BANK(CeruleanTradeHouse_h)
+ db BANK(CeruleanPokecenter_h)
+ db BANK(CeruleanGym_h)
+ db BANK(BikeShop_h)
+ db BANK(CeruleanMart_h)
+ db BANK(MtMoonPokecenter_h)
+ db BANK(CeruleanTrashedHouse_h)
+ db BANK(Route5Gate_h)
+ db BANK(UndergroundPathRoute5_h)
+ db BANK(Daycare_h)
+ db BANK(Route6Gate_h)
+ db BANK(UndergroundPathRoute6_h)
+ db BANK(UndergroundPathRoute6_h) ; UNDERGROUND_PATH_ROUTE_6_COPY
+ db BANK(Route7Gate_h)
+ db BANK(UndergroundPathRoute7_h)
+ db BANK(UndergroundPathRoute7Copy_h)
+ db BANK(Route8Gate_h)
+ db BANK(UndergroundPathRoute8_h)
+ db BANK(RockTunnelPokecenter_h)
+ db BANK(RockTunnel1F_h)
+ db BANK(PowerPlant_h)
+ db BANK(Route11Gate1F_h)
+ db BANK(DiglettsCaveRoute11_h)
+ db BANK(Route11Gate2F_h)
+ db BANK(Route12Gate1F_h)
+ db BANK(BillsHouse_h)
+ db BANK(VermilionPokecenter_h)
+ db BANK(PokemonFanClub_h)
+ db BANK(VermilionMart_h)
+ db BANK(VermilionGym_h)
+ db BANK(VermilionPidgeyHouse_h)
+ db BANK(VermilionDock_h)
+ db BANK(SSAnne1F_h)
+ db BANK(SSAnne2F_h)
+ db BANK(SSAnne3F_h)
+ db BANK(SSAnneB1F_h)
+ db BANK(SSAnneBow_h)
+ db BANK(SSAnneKitchen_h)
+ db BANK(SSAnneCaptainsRoom_h)
+ db BANK(SSAnne1FRooms_h)
+ db BANK(SSAnne2FRooms_h)
+ db BANK(SSAnneB1FRooms_h)
+ db $1D ; UNUSED_MAP_69
+ db $1D ; UNUSED_MAP_6A
+ db $1D ; UNUSED_MAP_6B
+ db BANK(VictoryRoad1F_h)
+ db $1D ; UNUSED_MAP_6D
+ db $1D ; UNUSED_MAP_6E
+ db $1D ; UNUSED_MAP_6F
+ db $1D ; UNUSED_MAP_70
+ db BANK(LancesRoom_h)
+ db $1D ; UNUSED_MAP_72
+ db $1D ; UNUSED_MAP_73
+ db $1D ; UNUSED_MAP_74
+ db $1D ; UNUSED_MAP_75
+ db BANK(HallOfFame_h)
+ db BANK(UndergroundPathNorthSouth_h)
+ db BANK(ChampionsRoom_h)
+ db BANK(UndergroundPathWestEast_h)
+ db BANK(CeladonMart1F_h)
+ db BANK(CeladonMart2F_h)
+ db BANK(CeladonMart3F_h)
+ db BANK(CeladonMart4F_h)
+ db BANK(CeladonMartRoof_h)
+ db BANK(CeladonMartElevator_h)
+ db BANK(CeladonMansion1F_h)
+ db BANK(CeladonMansion2F_h)
+ db BANK(CeladonMansion3F_h)
+ db BANK(CeladonMansionRoof_h)
+ db BANK(CeladonMansionRoofHouse_h)
+ db BANK(CeladonPokecenter_h)
+ db BANK(CeladonGym_h)
+ db BANK(GameCorner_h)
+ db BANK(CeladonMart5F_h)
+ db BANK(GameCornerPrizeRoom_h)
+ db BANK(CeladonDiner_h)
+ db BANK(CeladonChiefHouse_h)
+ db BANK(CeladonHotel_h)
+ db BANK(LavenderPokecenter_h)
+ db BANK(PokemonTower1F_h)
+ db BANK(PokemonTower2F_h)
+ db BANK(PokemonTower3F_h)
+ db BANK(PokemonTower4F_h)
+ db BANK(PokemonTower5F_h)
+ db BANK(PokemonTower6F_h)
+ db BANK(PokemonTower7F_h)
+ db BANK(MrFujisHouse_h)
+ db BANK(LavenderMart_h)
+ db BANK(LavenderCuboneHouse_h)
+ db BANK(FuchsiaMart_h)
+ db BANK(FuchsiaBillsGrandpasHouse_h)
+ db BANK(FuchsiaPokecenter_h)
+ db BANK(WardensHouse_h)
+ db BANK(SafariZoneGate_h)
+ db BANK(FuchsiaGym_h)
+ db BANK(FuchsiaMeetingRoom_h)
+ db BANK(SeafoamIslandsB1F_h)
+ db BANK(SeafoamIslandsB2F_h)
+ db BANK(SeafoamIslandsB3F_h)
+ db BANK(SeafoamIslandsB4F_h)
+ db BANK(VermilionOldRodHouse_h)
+ db BANK(FuchsiaGoodRodHouse_h)
+ db BANK(PokemonMansion1F_h)
+ db BANK(CinnabarGym_h)
+ db BANK(CinnabarLab_h)
+ db BANK(CinnabarLabTradeRoom_h)
+ db BANK(CinnabarLabMetronomeRoom_h)
+ db BANK(CinnabarLabFossilRoom_h)
+ db BANK(CinnabarPokecenter_h)
+ db BANK(CinnabarMart_h)
+ db BANK(CinnabarMart_h)
+ db BANK(IndigoPlateauLobby_h)
+ db BANK(CopycatsHouse1F_h)
+ db BANK(CopycatsHouse2F_h)
+ db BANK(FightingDojo_h)
+ db BANK(SaffronGym_h)
+ db BANK(SaffronPidgeyHouse_h)
+ db BANK(SaffronMart_h)
+ db BANK(SilphCo1F_h)
+ db BANK(SaffronPokecenter_h)
+ db BANK(MrPsychicsHouse_h)
+ db BANK(Route15Gate1F_h)
+ db BANK(Route15Gate2F_h)
+ db BANK(Route16Gate1F_h)
+ db BANK(Route16Gate2F_h)
+ db BANK(Route16FlyHouse_h)
+ db BANK(Route12SuperRodHouse_h)
+ db BANK(Route18Gate1F_h)
+ db BANK(Route18Gate2F_h)
+ db BANK(SeafoamIslands1F_h)
+ db BANK(Route22Gate_h)
+ db BANK(VictoryRoad2F_h)
+ db BANK(Route12Gate2F_h)
+ db BANK(VermilionTradeHouse_h)
+ db BANK(DiglettsCave_h)
+ db BANK(VictoryRoad3F_h)
+ db BANK(RocketHideoutB1F_h)
+ db BANK(RocketHideoutB2F_h)
+ db BANK(RocketHideoutB3F_h)
+ db BANK(RocketHideoutB4F_h)
+ db BANK(RocketHideoutElevator_h)
+ db $01 ; UNUSED_MAP_CC
+ db $01 ; UNUSED_MAP_CD
+ db $01 ; UNUSED_MAP_CE
+ db BANK(SilphCo2F_h)
+ db BANK(SilphCo3F_h)
+ db BANK(SilphCo4F_h)
+ db BANK(SilphCo5F_h)
+ db BANK(SilphCo6F_h)
+ db BANK(SilphCo7F_h)
+ db BANK(SilphCo8F_h)
+ db BANK(PokemonMansion2F_h)
+ db BANK(PokemonMansion3F_h)
+ db BANK(PokemonMansionB1F_h)
+ db BANK(SafariZoneEast_h)
+ db BANK(SafariZoneNorth_h)
+ db BANK(SafariZoneWest_h)
+ db BANK(SafariZoneCenter_h)
+ db BANK(SafariZoneCenterRestHouse_h)
+ db BANK(SafariZoneSecretHouse_h)
+ db BANK(SafariZoneWestRestHouse_h)
+ db BANK(SafariZoneEastRestHouse_h)
+ db BANK(SafariZoneNorthRestHouse_h)
+ db BANK(CeruleanCave2F_h)
+ db BANK(CeruleanCaveB1F_h)
+ db BANK(CeruleanCave1F_h)
+ db BANK(NameRatersHouse_h)
+ db BANK(CeruleanBadgeHouse_h)
+ db $01 ; UNUSED_MAP_E7
+ db BANK(RockTunnelB1F_h)
+ db BANK(SilphCo9F_h)
+ db BANK(SilphCo10F_h)
+ db BANK(SilphCo11F_h)
+ db BANK(SilphCoElevator_h)
+ db $11 ; UNUSED_MAP_ED
+ db $11 ; UNUSED_MAP_EE
+ db BANK(TradeCenter_h)
+ db BANK(Colosseum_h)
+ db $11 ; UNUSED_MAP_F1
+ db $11 ; UNUSED_MAP_F2
+ db $11 ; UNUSED_MAP_F3
+ db $11 ; UNUSED_MAP_F4
+ db BANK(LoreleisRoom_h)
+ db BANK(BrunosRoom_h)
+ db BANK(AgathasRoom_h)
--- /dev/null
+++ b/data/maps/map_header_pointers.asm
@@ -1,0 +1,250 @@
+; see also MapHeaderBanks
+MapHeaderPointers::
+ dw PalletTown_h
+ dw ViridianCity_h
+ dw PewterCity_h
+ dw CeruleanCity_h
+ dw LavenderTown_h
+ dw VermilionCity_h
+ dw CeladonCity_h
+ dw FuchsiaCity_h
+ dw CinnabarIsland_h
+ dw IndigoPlateau_h
+ dw SaffronCity_h
+ dw SaffronCity_h ; UNUSED_MAP_0B
+ dw Route1_h
+ dw Route2_h
+ dw Route3_h
+ dw Route4_h
+ dw Route5_h
+ dw Route6_h
+ dw Route7_h
+ dw Route8_h
+ dw Route9_h
+ dw Route10_h
+ dw Route11_h
+ dw Route12_h
+ dw Route13_h
+ dw Route14_h
+ dw Route15_h
+ dw Route16_h
+ dw Route17_h
+ dw Route18_h
+ dw Route19_h
+ dw Route20_h
+ dw Route21_h
+ dw Route22_h
+ dw Route23_h
+ dw Route24_h
+ dw Route25_h
+ dw RedsHouse1F_h
+ dw RedsHouse2F_h
+ dw BluesHouse_h
+ dw OaksLab_h
+ dw ViridianPokecenter_h
+ dw ViridianMart_h
+ dw ViridianSchoolHouse_h
+ dw ViridianNicknameHouse_h
+ dw ViridianGym_h
+ dw DiglettsCaveRoute2_h
+ dw ViridianForestNorthGate_h
+ dw Route2TradeHouse_h
+ dw Route2Gate_h
+ dw ViridianForestSouthGate_h
+ dw ViridianForest_h
+ dw Museum1F_h
+ dw Museum2F_h
+ dw PewterGym_h
+ dw PewterNidoranHouse_h
+ dw PewterMart_h
+ dw PewterSpeechHouse_h
+ dw PewterPokecenter_h
+ dw MtMoon1F_h
+ dw MtMoonB1F_h
+ dw MtMoonB2F_h
+ dw CeruleanTrashedHouse_h
+ dw CeruleanTradeHouse_h
+ dw CeruleanPokecenter_h
+ dw CeruleanGym_h
+ dw BikeShop_h
+ dw CeruleanMart_h
+ dw MtMoonPokecenter_h
+ dw CeruleanTrashedHouse_h ; CERULEAN_TRASHED_HOUSE_COPY
+ dw Route5Gate_h
+ dw UndergroundPathRoute5_h
+ dw Daycare_h
+ dw Route6Gate_h
+ dw UndergroundPathRoute6_h
+ dw UndergroundPathRoute6_h ; UNDERGROUND_PATH_ROUTE_6_COPY
+ dw Route7Gate_h
+ dw UndergroundPathRoute7_h
+ dw UndergroundPathRoute7Copy_h
+ dw Route8Gate_h
+ dw UndergroundPathRoute8_h
+ dw RockTunnelPokecenter_h
+ dw RockTunnel1F_h
+ dw PowerPlant_h
+ dw Route11Gate1F_h
+ dw DiglettsCaveRoute11_h
+ dw Route11Gate2F_h
+ dw Route12Gate1F_h
+ dw BillsHouse_h
+ dw VermilionPokecenter_h
+ dw PokemonFanClub_h
+ dw VermilionMart_h
+ dw VermilionGym_h
+ dw VermilionPidgeyHouse_h
+ dw VermilionDock_h
+ dw SSAnne1F_h
+ dw SSAnne2F_h
+ dw SSAnne3F_h
+ dw SSAnneB1F_h
+ dw SSAnneBow_h
+ dw SSAnneKitchen_h
+ dw SSAnneCaptainsRoom_h
+ dw SSAnne1FRooms_h
+ dw SSAnne2FRooms_h
+ dw SSAnneB1FRooms_h
+ dw LancesRoom_h ; UNUSED_MAP_69
+ dw LancesRoom_h ; UNUSED_MAP_6A
+ dw LancesRoom_h ; UNUSED_MAP_6B
+ dw VictoryRoad1F_h
+ dw LancesRoom_h ; UNUSED_MAP_6D
+ dw LancesRoom_h ; UNUSED_MAP_6E
+ dw LancesRoom_h ; UNUSED_MAP_6F
+ dw LancesRoom_h ; UNUSED_MAP_70
+ dw LancesRoom_h
+ dw LancesRoom_h ; UNUSED_MAP_72
+ dw LancesRoom_h ; UNUSED_MAP_73
+ dw LancesRoom_h ; UNUSED_MAP_74
+ dw LancesRoom_h ; UNUSED_MAP_75
+ dw HallOfFame_h
+ dw UndergroundPathNorthSouth_h
+ dw ChampionsRoom_h
+ dw UndergroundPathWestEast_h
+ dw CeladonMart1F_h
+ dw CeladonMart2F_h
+ dw CeladonMart3F_h
+ dw CeladonMart4F_h
+ dw CeladonMartRoof_h
+ dw CeladonMartElevator_h
+ dw CeladonMansion1F_h
+ dw CeladonMansion2F_h
+ dw CeladonMansion3F_h
+ dw CeladonMansionRoof_h
+ dw CeladonMansionRoofHouse_h
+ dw CeladonPokecenter_h
+ dw CeladonGym_h
+ dw GameCorner_h
+ dw CeladonMart5F_h
+ dw GameCornerPrizeRoom_h
+ dw CeladonDiner_h
+ dw CeladonChiefHouse_h
+ dw CeladonHotel_h
+ dw LavenderPokecenter_h
+ dw PokemonTower1F_h
+ dw PokemonTower2F_h
+ dw PokemonTower3F_h
+ dw PokemonTower4F_h
+ dw PokemonTower5F_h
+ dw PokemonTower6F_h
+ dw PokemonTower7F_h
+ dw MrFujisHouse_h
+ dw LavenderMart_h
+ dw LavenderCuboneHouse_h
+ dw FuchsiaMart_h
+ dw FuchsiaBillsGrandpasHouse_h
+ dw FuchsiaPokecenter_h
+ dw WardensHouse_h
+ dw SafariZoneGate_h
+ dw FuchsiaGym_h
+ dw FuchsiaMeetingRoom_h
+ dw SeafoamIslandsB1F_h
+ dw SeafoamIslandsB2F_h
+ dw SeafoamIslandsB3F_h
+ dw SeafoamIslandsB4F_h
+ dw VermilionOldRodHouse_h
+ dw FuchsiaGoodRodHouse_h
+ dw PokemonMansion1F_h
+ dw CinnabarGym_h
+ dw CinnabarLab_h
+ dw CinnabarLabTradeRoom_h
+ dw CinnabarLabMetronomeRoom_h
+ dw CinnabarLabFossilRoom_h
+ dw CinnabarPokecenter_h
+ dw CinnabarMart_h
+ dw CinnabarMart_h ; CINNABAR_MART_COPY
+ dw IndigoPlateauLobby_h
+ dw CopycatsHouse1F_h
+ dw CopycatsHouse2F_h
+ dw FightingDojo_h
+ dw SaffronGym_h
+ dw SaffronPidgeyHouse_h
+ dw SaffronMart_h
+ dw SilphCo1F_h
+ dw SaffronPokecenter_h
+ dw MrPsychicsHouse_h
+ dw Route15Gate1F_h
+ dw Route15Gate2F_h
+ dw Route16Gate1F_h
+ dw Route16Gate2F_h
+ dw Route16FlyHouse_h
+ dw Route12SuperRodHouse_h
+ dw Route18Gate1F_h
+ dw Route18Gate2F_h
+ dw SeafoamIslands1F_h
+ dw Route22Gate_h
+ dw VictoryRoad2F_h
+ dw Route12Gate2F_h
+ dw VermilionTradeHouse_h
+ dw DiglettsCave_h
+ dw VictoryRoad3F_h
+ dw RocketHideoutB1F_h
+ dw RocketHideoutB2F_h
+ dw RocketHideoutB3F_h
+ dw RocketHideoutB4F_h
+ dw RocketHideoutElevator_h
+ dw RocketHideoutElevator_h ; UNUSED_MAP_CC
+ dw RocketHideoutElevator_h ; UNUSED_MAP_CD
+ dw RocketHideoutElevator_h ; UNUSED_MAP_CE
+ dw SilphCo2F_h
+ dw SilphCo3F_h
+ dw SilphCo4F_h
+ dw SilphCo5F_h
+ dw SilphCo6F_h
+ dw SilphCo7F_h
+ dw SilphCo8F_h
+ dw PokemonMansion2F_h
+ dw PokemonMansion3F_h
+ dw PokemonMansionB1F_h
+ dw SafariZoneEast_h
+ dw SafariZoneNorth_h
+ dw SafariZoneWest_h
+ dw SafariZoneCenter_h
+ dw SafariZoneCenterRestHouse_h
+ dw SafariZoneSecretHouse_h
+ dw SafariZoneWestRestHouse_h
+ dw SafariZoneEastRestHouse_h
+ dw SafariZoneNorthRestHouse_h
+ dw CeruleanCave2F_h
+ dw CeruleanCaveB1F_h
+ dw CeruleanCave1F_h
+ dw NameRatersHouse_h
+ dw CeruleanBadgeHouse_h
+ dw Route16Gate1F_h ; UNUSED_MAP_E7
+ dw RockTunnelB1F_h
+ dw SilphCo9F_h
+ dw SilphCo10F_h
+ dw SilphCo11F_h
+ dw SilphCoElevator_h
+ dw SilphCo2F_h ; UNUSED_MAP_ED
+ dw SilphCo2F_h ; UNUSED_MAP_EE
+ dw TradeCenter_h
+ dw Colosseum_h
+ dw SilphCo2F_h ; UNUSED_MAP_F1
+ dw SilphCo2F_h ; UNUSED_MAP_F2
+ dw SilphCo2F_h ; UNUSED_MAP_F3
+ dw SilphCo2F_h ; UNUSED_MAP_F4
+ dw LoreleisRoom_h
+ dw BrunosRoom_h
+ dw AgathasRoom_h ;247
--- /dev/null
+++ b/data/maps/names.asm
@@ -1,0 +1,107 @@
+MapNames:
+PalletTownName:
+ db "PALLET TOWN@"
+ViridianCityName:
+ db "VIRIDIAN CITY@"
+PewterCityName:
+ db "PEWTER CITY@"
+CeruleanCityName:
+ db "CERULEAN CITY@"
+LavenderTownName:
+ db "LAVENDER TOWN@"
+VermilionCityName:
+ db "VERMILION CITY@"
+CeladonCityName:
+ db "CELADON CITY@"
+FuchsiaCityName:
+ db "FUCHSIA CITY@"
+CinnabarIslandName:
+ db "CINNABAR ISLAND@"
+IndigoPlateauName:
+ db "INDIGO PLATEAU@"
+SaffronCityName:
+ db "SAFFRON CITY@"
+Route1Name:
+ db "ROUTE 1@"
+Route2Name:
+ db "ROUTE 2@"
+Route3Name:
+ db "ROUTE 3@"
+Route4Name:
+ db "ROUTE 4@"
+Route5Name:
+ db "ROUTE 5@"
+Route6Name:
+ db "ROUTE 6@"
+Route7Name:
+ db "ROUTE 7@"
+Route8Name:
+ db "ROUTE 8@"
+Route9Name:
+ db "ROUTE 9@"
+Route10Name:
+ db "ROUTE 10@"
+Route11Name:
+ db "ROUTE 11@"
+Route12Name:
+ db "ROUTE 12@"
+Route13Name:
+ db "ROUTE 13@"
+Route14Name:
+ db "ROUTE 14@"
+Route15Name:
+ db "ROUTE 15@"
+Route16Name:
+ db "ROUTE 16@"
+Route17Name:
+ db "ROUTE 17@"
+Route18Name:
+ db "ROUTE 18@"
+Route19Name:
+ db "SEA ROUTE 19@"
+Route20Name:
+ db "SEA ROUTE 20@"
+Route21Name:
+ db "SEA ROUTE 21@"
+Route22Name:
+ db "ROUTE 22@"
+Route23Name:
+ db "ROUTE 23@"
+Route24Name:
+ db "ROUTE 24@"
+Route25Name:
+ db "ROUTE 25@"
+ViridianForestName:
+ db "VIRIDIAN FOREST@"
+MountMoonName:
+ db "MT.MOON@"
+RockTunnelName:
+ db "ROCK TUNNEL@"
+SeaCottageName:
+ db "SEA COTTAGE@"
+SSAnneName:
+ db "S.S.ANNE@"
+PokemonLeagueName:
+ db "#MON LEAGUE@"
+UndergroundPathName:
+ db "UNDERGROUND PATH@"
+PokemonTowerName:
+ db "#MON TOWER@"
+SeafoamIslandsName:
+ db "SEAFOAM ISLANDS@"
+VictoryRoadName:
+ db "VICTORY ROAD@"
+DiglettsCaveName:
+ db "DIGLETT's CAVE@"
+RocketHQName:
+ db "ROCKET HQ@"
+SilphCoName:
+ db "SILPH CO.@"
+PokemonMansionName:
+ db "<pkmn> MANSION@"
+SafariZoneName:
+ db "SAFARI ZONE@"
+CeruleanCaveName:
+ db "CERULEAN CAVE@"
+PowerPlantName:
+ db "POWER PLANT@"
--- /dev/null
+++ b/data/maps/objects/AgathasRoom.asm
@@ -1,0 +1,19 @@
+AgathasRoom_Object:
+ db $0 ; border block
+
+ db 4 ; warps
+ warp 4, 11, 2, BRUNOS_ROOM
+ warp 5, 11, 3, BRUNOS_ROOM
+ warp 4, 0, 0, LANCES_ROOM
+ warp 5, 0, 0, LANCES_ROOM
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_AGATHA, 5, 2, STAY, DOWN, 1, OPP_AGATHA, 1
+
+ ; warp-to
+ warp_to 4, 11, AGATHAS_ROOM_WIDTH ; BRUNOS_ROOM
+ warp_to 5, 11, AGATHAS_ROOM_WIDTH ; BRUNOS_ROOM
+ warp_to 4, 0, AGATHAS_ROOM_WIDTH ; LANCES_ROOM
+ warp_to 5, 0, AGATHAS_ROOM_WIDTH ; LANCES_ROOM
--- /dev/null
+++ b/data/maps/objects/BikeShop.asm
@@ -1,0 +1,17 @@
+BikeShop_Object:
+ db $e ; border block
+
+ db 2 ; warps
+ warp 2, 7, 4, -1
+ warp 3, 7, 4, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_BIKE_SHOP_GUY, 6, 2, STAY, NONE, 1 ; person
+ object SPRITE_MOM_GEISHA, 5, 6, WALK, 1, 2 ; person
+ object SPRITE_BUG_CATCHER, 1, 3, STAY, UP, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, BIKE_SHOP_WIDTH
+ warp_to 3, 7, BIKE_SHOP_WIDTH
--- /dev/null
+++ b/data/maps/objects/BillsHouse.asm
@@ -1,0 +1,17 @@
+BillsHouse_Object:
+ db $d ; border block
+
+ db 2 ; warps
+ warp 2, 7, 0, -1
+ warp 3, 7, 0, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_SLOWBRO, 6, 5, STAY, NONE, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 4, 4, STAY, NONE, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 6, 5, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, BILLS_HOUSE_WIDTH
+ warp_to 3, 7, BILLS_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/BluesHouse.asm
@@ -1,0 +1,17 @@
+BluesHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 1, -1
+ warp 3, 7, 1, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_DAISY, 2, 3, STAY, RIGHT, 1 ; Daisy, sitting by map
+ object SPRITE_DAISY, 6, 4, WALK, 1, 2, 0 ; Daisy, walking around
+ object SPRITE_BOOK_MAP_DEX, 3, 3, STAY, NONE, 3, 0 ; map on table
+
+ ; warp-to
+ warp_to 2, 7, BLUES_HOUSE_WIDTH
+ warp_to 3, 7, BLUES_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/BrunosRoom.asm
@@ -1,0 +1,19 @@
+BrunosRoom_Object:
+ db $3 ; border block
+
+ db 4 ; warps
+ warp 4, 11, 2, LORELEIS_ROOM
+ warp 5, 11, 3, LORELEIS_ROOM
+ warp 4, 0, 0, AGATHAS_ROOM
+ warp 5, 0, 1, AGATHAS_ROOM
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_BRUNO, 5, 2, STAY, DOWN, 1, OPP_BRUNO, 1
+
+ ; warp-to
+ warp_to 4, 11, BRUNOS_ROOM_WIDTH ; LORELEIS_ROOM
+ warp_to 5, 11, BRUNOS_ROOM_WIDTH ; LORELEIS_ROOM
+ warp_to 4, 0, BRUNOS_ROOM_WIDTH ; AGATHAS_ROOM
+ warp_to 5, 0, BRUNOS_ROOM_WIDTH ; AGATHAS_ROOM
--- /dev/null
+++ b/data/maps/objects/CeladonChiefHouse.asm
@@ -1,0 +1,17 @@
+CeladonChiefHouse_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 2, 7, 11, -1
+ warp 3, 7, 11, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_OLD_PERSON, 4, 2, STAY, DOWN, 1 ; person
+ object SPRITE_ROCKET, 1, 4, WALK, 0, 2 ; person
+ object SPRITE_SAILOR, 5, 6, STAY, LEFT, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, CELADON_CHIEF_HOUSE_WIDTH
+ warp_to 3, 7, CELADON_CHIEF_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeladonCity.asm
@@ -1,0 +1,54 @@
+CeladonCity_Object:
+ db $f ; border block
+
+ db 13 ; warps
+ warp 8, 13, 0, CELADON_MART_1F
+ warp 10, 13, 2, CELADON_MART_1F
+ warp 24, 9, 0, CELADON_MANSION_1F
+ warp 24, 3, 2, CELADON_MANSION_1F
+ warp 25, 3, 2, CELADON_MANSION_1F
+ warp 41, 9, 0, CELADON_POKECENTER
+ warp 12, 27, 0, CELADON_GYM
+ warp 28, 19, 0, GAME_CORNER
+ warp 39, 19, 0, CELADON_MART_5F ; beta warp! no longer used
+ warp 33, 19, 0, GAME_CORNER_PRIZE_ROOM
+ warp 31, 27, 0, CELADON_DINER
+ warp 35, 27, 0, CELADON_CHIEF_HOUSE
+ warp 43, 27, 0, CELADON_HOTEL
+
+ db 9 ; signs
+ sign 27, 15, 10 ; CeladonCityText10
+ sign 19, 15, 11 ; CeladonCityText11
+ sign 42, 9, 12 ; PokeCenterSignText
+ sign 13, 29, 13 ; CeladonCityText13
+ sign 21, 9, 14 ; CeladonCityText14
+ sign 12, 13, 15 ; CeladonCityText15
+ sign 39, 21, 16 ; CeladonCityText16
+ sign 33, 21, 17 ; CeladonCityText17
+ sign 27, 21, 18 ; CeladonCityText18
+
+ db 9 ; objects
+ object SPRITE_LITTLE_GIRL, 8, 17, WALK, 0, 1 ; person
+ object SPRITE_OLD_PERSON, 11, 28, STAY, UP, 2 ; person
+ object SPRITE_GIRL, 14, 19, WALK, 1, 3 ; person
+ object SPRITE_OLD_PERSON, 25, 22, STAY, DOWN, 4 ; person
+ object SPRITE_OLD_PERSON, 22, 16, STAY, DOWN, 5 ; person
+ object SPRITE_FISHER2, 32, 12, STAY, LEFT, 6 ; person
+ object SPRITE_SLOWBRO, 30, 12, STAY, RIGHT, 7 ; person
+ object SPRITE_ROCKET, 32, 29, WALK, 2, 8 ; person
+ object SPRITE_ROCKET, 42, 14, WALK, 2, 9 ; person
+
+ ; warp-to
+ warp_to 8, 13, CELADON_CITY_WIDTH ; CELADON_MART_1F
+ warp_to 10, 13, CELADON_CITY_WIDTH ; CELADON_MART_1F
+ warp_to 24, 9, CELADON_CITY_WIDTH ; CELADON_MANSION_1F
+ warp_to 24, 3, CELADON_CITY_WIDTH ; CELADON_MANSION_1F
+ warp_to 25, 3, CELADON_CITY_WIDTH ; CELADON_MANSION_1F
+ warp_to 41, 9, CELADON_CITY_WIDTH ; CELADON_POKECENTER
+ warp_to 12, 27, CELADON_CITY_WIDTH ; CELADON_GYM
+ warp_to 28, 19, CELADON_CITY_WIDTH ; GAME_CORNER
+ warp_to 39, 19, CELADON_CITY_WIDTH ; CELADON_MART_5F
+ warp_to 33, 19, CELADON_CITY_WIDTH ; GAME_CORNER_PRIZE_ROOM
+ warp_to 31, 27, CELADON_CITY_WIDTH ; CELADON_DINER
+ warp_to 35, 27, CELADON_CITY_WIDTH ; CELADON_CHIEF_HOUSE
+ warp_to 43, 27, CELADON_CITY_WIDTH ; CELADON_HOTEL
--- /dev/null
+++ b/data/maps/objects/CeladonDiner.asm
@@ -1,0 +1,19 @@
+CeladonDiner_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 3, 7, 10, -1
+ warp 4, 7, 10, -1
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_COOK, 8, 5, WALK, 2, 1 ; person
+ object SPRITE_MOM_GEISHA, 7, 2, STAY, NONE, 2 ; person
+ object SPRITE_FAT_BALD_GUY, 1, 4, STAY, DOWN, 3 ; person
+ object SPRITE_FISHER2, 5, 3, STAY, RIGHT, 4 ; person
+ object SPRITE_GYM_HELPER, 0, 1, STAY, DOWN, 5 ; person
+
+ ; warp-to
+ warp_to 3, 7, CELADON_DINER_WIDTH
+ warp_to 4, 7, CELADON_DINER_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeladonGym.asm
@@ -1,0 +1,22 @@
+CeladonGym_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 17, 6, -1
+ warp 5, 17, 6, -1
+
+ db 0 ; signs
+
+ db 8 ; objects
+ object SPRITE_ERIKA, 4, 3, STAY, DOWN, 1, OPP_ERIKA, 1
+ object SPRITE_LASS, 2, 11, STAY, RIGHT, 2, OPP_LASS, 17
+ object SPRITE_FOULARD_WOMAN, 7, 10, STAY, LEFT, 3, OPP_BEAUTY, 1
+ object SPRITE_LASS, 9, 5, STAY, DOWN, 4, OPP_JR_TRAINER_F, 11
+ object SPRITE_FOULARD_WOMAN, 1, 5, STAY, DOWN, 5, OPP_BEAUTY, 2
+ object SPRITE_LASS, 6, 3, STAY, DOWN, 6, OPP_LASS, 18
+ object SPRITE_FOULARD_WOMAN, 3, 3, STAY, DOWN, 7, OPP_BEAUTY, 3
+ object SPRITE_LASS, 5, 3, STAY, DOWN, 8, OPP_COOLTRAINER_F, 1
+
+ ; warp-to
+ warp_to 4, 17, CELADON_GYM_WIDTH
+ warp_to 5, 17, CELADON_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeladonHotel.asm
@@ -1,0 +1,17 @@
+CeladonHotel_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 12, -1
+ warp 4, 7, 12, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_OLD_MEDIUM_WOMAN, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_FOULARD_WOMAN, 2, 4, STAY, NONE, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 8, 4, WALK, 2, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, CELADON_HOTEL_WIDTH
+ warp_to 4, 7, CELADON_HOTEL_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeladonMansion1F.asm
@@ -1,0 +1,25 @@
+CeladonMansion1F_Object:
+ db $f ; border block
+
+ db 5 ; warps
+ warp 4, 11, 2, -1
+ warp 5, 11, 2, -1
+ warp 4, 0, 4, -1
+ warp 7, 1, 1, CELADON_MANSION_2F
+ warp 2, 1, 2, CELADON_MANSION_2F
+
+ db 1 ; signs
+ sign 4, 9, 5 ; CeladonMansion1Text5
+
+ db 4 ; objects
+ object SPRITE_SLOWBRO, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_OLD_MEDIUM_WOMAN, 1, 5, STAY, DOWN, 2 ; person
+ object SPRITE_CLEFAIRY, 1, 8, WALK, 2, 3 ; person
+ object SPRITE_SLOWBRO, 4, 4, WALK, 1, 4 ; person
+
+ ; warp-to
+ warp_to 4, 11, CELADON_MANSION_1F_WIDTH
+ warp_to 5, 11, CELADON_MANSION_1F_WIDTH
+ warp_to 4, 0, CELADON_MANSION_1F_WIDTH
+ warp_to 7, 1, CELADON_MANSION_1F_WIDTH ; CELADON_MANSION_2F
+ warp_to 2, 1, CELADON_MANSION_1F_WIDTH ; CELADON_MANSION_2F
--- /dev/null
+++ b/data/maps/objects/CeladonMansion2F.asm
@@ -1,0 +1,19 @@
+CeladonMansion2F_Object:
+ db $f ; border block
+
+ db 4 ; warps
+ warp 6, 1, 0, CELADON_MANSION_3F
+ warp 7, 1, 3, CELADON_MANSION_1F
+ warp 2, 1, 4, CELADON_MANSION_1F
+ warp 4, 1, 3, CELADON_MANSION_3F
+
+ db 1 ; signs
+ sign 4, 9, 1 ; CeladonMansion2Text1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 6, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_3F
+ warp_to 7, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_1F
+ warp_to 2, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_1F
+ warp_to 4, 1, CELADON_MANSION_2F_WIDTH ; CELADON_MANSION_3F
--- /dev/null
+++ b/data/maps/objects/CeladonMansion3F.asm
@@ -1,0 +1,26 @@
+CeladonMansion3F_Object:
+ db $f ; border block
+
+ db 4 ; warps
+ warp 6, 1, 0, CELADON_MANSION_2F
+ warp 7, 1, 0, CELADON_MANSION_ROOF
+ warp 2, 1, 1, CELADON_MANSION_ROOF
+ warp 4, 1, 3, CELADON_MANSION_2F
+
+ db 4 ; signs
+ sign 1, 3, 5 ; CeladonMansion3Text5
+ sign 4, 3, 6 ; CeladonMansion3Text6
+ sign 1, 6, 7 ; CeladonMansion3Text7
+ sign 4, 9, 8 ; CeladonMansion3Text8
+
+ db 4 ; objects
+ object SPRITE_BIKE_SHOP_GUY, 0, 4, STAY, UP, 1 ; person
+ object SPRITE_MART_GUY, 3, 4, STAY, UP, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 0, 7, STAY, UP, 3 ; person
+ object SPRITE_LAPRAS_GIVER, 2, 3, STAY, NONE, 4 ; person
+
+ ; warp-to
+ warp_to 6, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_2F
+ warp_to 7, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_ROOF
+ warp_to 2, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_ROOF
+ warp_to 4, 1, CELADON_MANSION_3F_WIDTH ; CELADON_MANSION_2F
--- /dev/null
+++ b/data/maps/objects/CeladonMansionRoof.asm
@@ -1,0 +1,17 @@
+CeladonMansionRoof_Object:
+ db $9 ; border block
+
+ db 3 ; warps
+ warp 6, 1, 1, CELADON_MANSION_3F
+ warp 2, 1, 2, CELADON_MANSION_3F
+ warp 2, 7, 0, CELADON_MANSION_ROOF_HOUSE
+
+ db 1 ; signs
+ sign 3, 7, 1 ; CeladonMansion4Text1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 6, 1, CELADON_MANSION_ROOF_WIDTH ; CELADON_MANSION_3F
+ warp_to 2, 1, CELADON_MANSION_ROOF_WIDTH ; CELADON_MANSION_3F
+ warp_to 2, 7, CELADON_MANSION_ROOF_WIDTH ; CELADON_MANSION_ROOF_HOUSE
--- /dev/null
+++ b/data/maps/objects/CeladonMansionRoofHouse.asm
@@ -1,0 +1,16 @@
+CeladonMansionRoofHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 2, CELADON_MANSION_ROOF
+ warp 3, 7, 2, CELADON_MANSION_ROOF
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_HIKER, 2, 2, STAY, DOWN, 1 ; person
+ object SPRITE_BALL, 4, 3, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, CELADON_MANSION_ROOF_HOUSE_WIDTH ; CELADON_MANSION_ROOF
+ warp_to 3, 7, CELADON_MANSION_ROOF_HOUSE_WIDTH ; CELADON_MANSION_ROOF
--- /dev/null
+++ b/data/maps/objects/CeladonMart1F.asm
@@ -1,0 +1,25 @@
+CeladonMart1F_Object:
+ db $f ; border block
+
+ db 6 ; warps
+ warp 2, 7, 0, -1
+ warp 3, 7, 0, -1
+ warp 16, 7, 1, -1
+ warp 17, 7, 1, -1
+ warp 12, 1, 0, CELADON_MART_2F
+ warp 1, 1, 0, CELADON_MART_ELEVATOR
+
+ db 2 ; signs
+ sign 11, 4, 2 ; CeladonMart1Text2
+ sign 14, 1, 3 ; CeladonMart1Text3
+
+ db 1 ; objects
+ object SPRITE_CABLE_CLUB_WOMAN, 8, 3, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, CELADON_MART_1F_WIDTH
+ warp_to 3, 7, CELADON_MART_1F_WIDTH
+ warp_to 16, 7, CELADON_MART_1F_WIDTH
+ warp_to 17, 7, CELADON_MART_1F_WIDTH
+ warp_to 12, 1, CELADON_MART_1F_WIDTH ; CELADON_MART_2F
+ warp_to 1, 1, CELADON_MART_1F_WIDTH ; CELADON_MART_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/CeladonMart2F.asm
@@ -1,0 +1,21 @@
+CeladonMart2F_Object:
+ db $f ; border block
+
+ db 3 ; warps
+ warp 12, 1, 4, CELADON_MART_1F
+ warp 16, 1, 1, CELADON_MART_3F
+ warp 1, 1, 0, CELADON_MART_ELEVATOR
+
+ db 1 ; signs
+ sign 14, 1, 5 ; CeladonMart2Text5
+
+ db 4 ; objects
+ object SPRITE_MART_GUY, 5, 3, STAY, DOWN, 1 ; person
+ object SPRITE_MART_GUY, 6, 3, STAY, DOWN, 2 ; person
+ object SPRITE_FAT_BALD_GUY, 19, 5, STAY, NONE, 3 ; person
+ object SPRITE_GIRL, 14, 4, WALK, 1, 4 ; person
+
+ ; warp-to
+ warp_to 12, 1, CELADON_MART_2F_WIDTH ; CELADON_MART_1F
+ warp_to 16, 1, CELADON_MART_2F_WIDTH ; CELADON_MART_3F
+ warp_to 1, 1, CELADON_MART_2F_WIDTH ; CELADON_MART_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/CeladonMart3F.asm
@@ -1,0 +1,33 @@
+CeladonMart3F_Object:
+ db $f ; border block
+
+ db 3 ; warps
+ warp 12, 1, 0, CELADON_MART_4F
+ warp 16, 1, 1, CELADON_MART_2F
+ warp 1, 1, 0, CELADON_MART_ELEVATOR
+
+ db 12 ; signs
+ sign 2, 4, 6 ; CeladonMart3Text6
+ sign 3, 4, 7 ; CeladonMart3Text7
+ sign 5, 4, 8 ; CeladonMart3Text8
+ sign 6, 4, 9 ; CeladonMart3Text9
+ sign 2, 6, 10 ; CeladonMart3Text10
+ sign 3, 6, 11 ; CeladonMart3Text11
+ sign 5, 6, 12 ; CeladonMart3Text12
+ sign 6, 6, 13 ; CeladonMart3Text13
+ sign 14, 1, 14 ; CeladonMart3Text14
+ sign 4, 1, 15 ; CeladonMart3Text15
+ sign 6, 1, 16 ; CeladonMart3Text16
+ sign 10, 1, 17 ; CeladonMart3Text17
+
+ db 5 ; objects
+ object SPRITE_MART_GUY, 16, 5, STAY, NONE, 1 ; person
+ object SPRITE_GAMEBOY_KID_COPY, 11, 6, STAY, RIGHT, 2 ; person
+ object SPRITE_GAMEBOY_KID_COPY, 7, 2, STAY, DOWN, 3 ; person
+ object SPRITE_GAMEBOY_KID_COPY, 8, 2, STAY, DOWN, 4 ; person
+ object SPRITE_YOUNG_BOY, 2, 5, STAY, UP, 5 ; person
+
+ ; warp-to
+ warp_to 12, 1, CELADON_MART_3F_WIDTH ; CELADON_MART_4F
+ warp_to 16, 1, CELADON_MART_3F_WIDTH ; CELADON_MART_2F
+ warp_to 1, 1, CELADON_MART_3F_WIDTH ; CELADON_MART_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/CeladonMart4F.asm
@@ -1,0 +1,20 @@
+CeladonMart4F_Object:
+ db $f ; border block
+
+ db 3 ; warps
+ warp 12, 1, 0, CELADON_MART_3F
+ warp 16, 1, 1, CELADON_MART_5F
+ warp 1, 1, 0, CELADON_MART_ELEVATOR
+
+ db 1 ; signs
+ sign 14, 1, 4 ; CeladonMart4Text4
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 5, 7, STAY, NONE, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 15, 5, WALK, 2, 2 ; person
+ object SPRITE_BUG_CATCHER, 5, 2, WALK, 2, 3 ; person
+
+ ; warp-to
+ warp_to 12, 1, CELADON_MART_4F_WIDTH ; CELADON_MART_3F
+ warp_to 16, 1, CELADON_MART_4F_WIDTH ; CELADON_MART_5F
+ warp_to 1, 1, CELADON_MART_4F_WIDTH ; CELADON_MART_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/CeladonMart5F.asm
@@ -1,0 +1,21 @@
+CeladonMart5F_Object:
+ db $f ; border block
+
+ db 3 ; warps
+ warp 12, 1, 0, CELADON_MART_ROOF
+ warp 16, 1, 1, CELADON_MART_4F
+ warp 1, 1, 0, CELADON_MART_ELEVATOR
+
+ db 1 ; signs
+ sign 14, 1, 5 ; CeladonMart5Text5
+
+ db 4 ; objects
+ object SPRITE_GENTLEMAN, 14, 5, WALK, 1, 1 ; person
+ object SPRITE_SAILOR, 2, 6, STAY, NONE, 2 ; person
+ object SPRITE_MART_GUY, 5, 3, STAY, DOWN, 3 ; person
+ object SPRITE_MART_GUY, 6, 3, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 12, 1, CELADON_MART_5F_WIDTH ; CELADON_MART_ROOF
+ warp_to 16, 1, CELADON_MART_5F_WIDTH ; CELADON_MART_4F
+ warp_to 1, 1, CELADON_MART_5F_WIDTH ; CELADON_MART_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/CeladonMartElevator.asm
@@ -1,0 +1,15 @@
+CeladonMartElevator_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 1, 3, 5, CELADON_MART_1F
+ warp 2, 3, 5, CELADON_MART_1F
+
+ db 1 ; signs
+ sign 3, 0, 1 ; CeladonMartElevatorText1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 1, 3, CELADON_MART_ELEVATOR_WIDTH ; CELADON_MART_1F
+ warp_to 2, 3, CELADON_MART_ELEVATOR_WIDTH ; CELADON_MART_1F
--- /dev/null
+++ b/data/maps/objects/CeladonMartRoof.asm
@@ -1,0 +1,18 @@
+CeladonMartRoof_Object:
+ db $42 ; border block
+
+ db 1 ; warps
+ warp 15, 2, 0, CELADON_MART_5F
+
+ db 4 ; signs
+ sign 10, 1, 3 ; CeladonMartRoofText3
+ sign 11, 1, 4 ; CeladonMartRoofText4
+ sign 12, 2, 5 ; CeladonMartRoofText5
+ sign 13, 2, 6 ; CeladonMartRoofText6
+
+ db 2 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 10, 4, STAY, LEFT, 1 ; person
+ object SPRITE_LITTLE_GIRL, 5, 5, WALK, 0, 2 ; person
+
+ ; warp-to
+ warp_to 15, 2, CELADON_MART_ROOF_WIDTH ; CELADON_MART_5F
--- /dev/null
+++ b/data/maps/objects/CeladonPokecenter.asm
@@ -1,0 +1,18 @@
+CeladonPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 5, -1
+ warp 4, 7, 5, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_GENTLEMAN, 7, 3, WALK, 2, 2 ; person
+ object SPRITE_FOULARD_WOMAN, 10, 5, WALK, 0, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, CELADON_POKECENTER_WIDTH
+ warp_to 4, 7, CELADON_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeruleanBadgeHouse.asm
@@ -1,0 +1,17 @@
+CeruleanBadgeHouse_Object:
+ db $c ; border block
+
+ db 3 ; warps
+ warp 2, 0, 9, -1
+ warp 2, 7, 8, -1
+ warp 3, 7, 8, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FAT_BALD_GUY, 5, 3, STAY, RIGHT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 0, CERULEAN_BADGE_HOUSE_WIDTH
+ warp_to 2, 7, CERULEAN_BADGE_HOUSE_WIDTH
+ warp_to 3, 7, CERULEAN_BADGE_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeruleanCave1F.asm
@@ -1,0 +1,31 @@
+CeruleanCave1F_Object:
+ db $7d ; border block
+
+ db 9 ; warps
+ warp 24, 17, 6, -1
+ warp 25, 17, 6, -1
+ warp 27, 1, 0, CERULEAN_CAVE_2F
+ warp 23, 7, 1, CERULEAN_CAVE_2F
+ warp 18, 9, 2, CERULEAN_CAVE_2F
+ warp 7, 1, 3, CERULEAN_CAVE_2F
+ warp 1, 3, 4, CERULEAN_CAVE_2F
+ warp 3, 11, 5, CERULEAN_CAVE_2F
+ warp 0, 6, 0, CERULEAN_CAVE_B1F
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_BALL, 7, 13, STAY, NONE, 1, FULL_RESTORE
+ object SPRITE_BALL, 19, 3, STAY, NONE, 2, MAX_ELIXER
+ object SPRITE_BALL, 5, 0, STAY, NONE, 3, NUGGET
+
+ ; warp-to
+ warp_to 24, 17, CERULEAN_CAVE_1F_WIDTH
+ warp_to 25, 17, CERULEAN_CAVE_1F_WIDTH
+ warp_to 27, 1, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
+ warp_to 23, 7, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
+ warp_to 18, 9, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
+ warp_to 7, 1, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
+ warp_to 1, 3, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
+ warp_to 3, 11, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_2F
+ warp_to 0, 6, CERULEAN_CAVE_1F_WIDTH ; CERULEAN_CAVE_B1F
--- /dev/null
+++ b/data/maps/objects/CeruleanCave2F.asm
@@ -1,0 +1,25 @@
+CeruleanCave2F_Object:
+ db $7d ; border block
+
+ db 6 ; warps
+ warp 29, 1, 2, CERULEAN_CAVE_1F
+ warp 22, 6, 3, CERULEAN_CAVE_1F
+ warp 19, 7, 4, CERULEAN_CAVE_1F
+ warp 9, 1, 5, CERULEAN_CAVE_1F
+ warp 1, 3, 6, CERULEAN_CAVE_1F
+ warp 3, 11, 7, CERULEAN_CAVE_1F
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_BALL, 29, 9, STAY, NONE, 1, PP_UP
+ object SPRITE_BALL, 4, 15, STAY, NONE, 2, ULTRA_BALL
+ object SPRITE_BALL, 13, 6, STAY, NONE, 3, FULL_RESTORE
+
+ ; warp-to
+ warp_to 29, 1, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
+ warp_to 22, 6, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
+ warp_to 19, 7, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
+ warp_to 9, 1, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
+ warp_to 1, 3, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
+ warp_to 3, 11, CERULEAN_CAVE_2F_WIDTH ; CERULEAN_CAVE_1F
--- /dev/null
+++ b/data/maps/objects/CeruleanCaveB1F.asm
@@ -1,0 +1,15 @@
+CeruleanCaveB1F_Object:
+ db $7d ; border block
+
+ db 1 ; warps
+ warp 3, 6, 8, CERULEAN_CAVE_1F
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_SLOWBRO, 27, 13, STAY, DOWN, 1, MEWTWO, 70
+ object SPRITE_BALL, 16, 9, STAY, NONE, 2, ULTRA_BALL
+ object SPRITE_BALL, 18, 1, STAY, NONE, 3, MAX_REVIVE
+
+ ; warp-to
+ warp_to 3, 6, CERULEAN_CAVE_B1F_WIDTH ; CERULEAN_CAVE_1F
--- /dev/null
+++ b/data/maps/objects/CeruleanCity.asm
@@ -1,0 +1,47 @@
+CeruleanCity_Object:
+ db $f ; border block
+
+ db 10 ; warps
+ warp 27, 11, 0, CERULEAN_TRASHED_HOUSE
+ warp 13, 15, 0, CERULEAN_TRADE_HOUSE
+ warp 19, 17, 0, CERULEAN_POKECENTER
+ warp 30, 19, 0, CERULEAN_GYM
+ warp 13, 25, 0, BIKE_SHOP
+ warp 25, 25, 0, CERULEAN_MART
+ warp 4, 11, 0, CERULEAN_CAVE_1F
+ warp 27, 9, 2, CERULEAN_TRASHED_HOUSE
+ warp 9, 11, 1, CERULEAN_BADGE_HOUSE
+ warp 9, 9, 0, CERULEAN_BADGE_HOUSE
+
+ db 6 ; signs
+ sign 23, 19, 12 ; CeruleanCityText12
+ sign 17, 29, 13 ; CeruleanCityText13
+ sign 26, 25, 14 ; MartSignText
+ sign 20, 17, 15 ; PokeCenterSignText
+ sign 11, 25, 16 ; CeruleanCityText16
+ sign 27, 21, 17 ; CeruleanCityText17
+
+ db 11 ; objects
+ object SPRITE_BLUE, 20, 2, STAY, DOWN, 1 ; person
+ object SPRITE_ROCKET, 30, 8, STAY, NONE, 2, OPP_ROCKET, 5
+ object SPRITE_BLACK_HAIR_BOY_1, 31, 20, STAY, DOWN, 3 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 15, 18, WALK, 1, 4 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 9, 21, WALK, 2, 5 ; person
+ object SPRITE_GUARD, 28, 12, STAY, DOWN, 6 ; person
+ object SPRITE_LASS, 29, 26, STAY, LEFT, 7 ; person
+ object SPRITE_SLOWBRO, 28, 26, STAY, DOWN, 8 ; person
+ object SPRITE_LASS, 9, 27, WALK, 2, 9 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 4, 12, STAY, DOWN, 10 ; person
+ object SPRITE_GUARD, 27, 12, STAY, DOWN, 11 ; person
+
+ ; warp-to
+ warp_to 27, 11, CERULEAN_CITY_WIDTH ; CERULEAN_TRASHED_HOUSE
+ warp_to 13, 15, CERULEAN_CITY_WIDTH ; CERULEAN_TRADE_HOUSE
+ warp_to 19, 17, CERULEAN_CITY_WIDTH ; CERULEAN_POKECENTER
+ warp_to 30, 19, CERULEAN_CITY_WIDTH ; CERULEAN_GYM
+ warp_to 13, 25, CERULEAN_CITY_WIDTH ; BIKE_SHOP
+ warp_to 25, 25, CERULEAN_CITY_WIDTH ; CERULEAN_MART
+ warp_to 4, 11, CERULEAN_CITY_WIDTH ; CERULEAN_CAVE_1F
+ warp_to 27, 9, CERULEAN_CITY_WIDTH ; CERULEAN_TRASHED_HOUSE
+ warp_to 9, 11, CERULEAN_CITY_WIDTH ; CERULEAN_BADGE_HOUSE
+ warp_to 9, 9, CERULEAN_CITY_WIDTH ; CERULEAN_BADGE_HOUSE
--- /dev/null
+++ b/data/maps/objects/CeruleanGym.asm
@@ -1,0 +1,18 @@
+CeruleanGym_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 13, 3, -1
+ warp 5, 13, 3, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_BRUNETTE_GIRL, 4, 2, STAY, DOWN, 1, OPP_MISTY, 1
+ object SPRITE_LASS, 2, 3, STAY, RIGHT, 2, OPP_JR_TRAINER_F, 1
+ object SPRITE_SWIMMER, 8, 7, STAY, LEFT, 3, OPP_SWIMMER, 1
+ object SPRITE_GYM_HELPER, 7, 10, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 4, 13, CERULEAN_GYM_WIDTH
+ warp_to 5, 13, CERULEAN_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeruleanMart.asm
@@ -1,0 +1,17 @@
+CeruleanMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 5, -1
+ warp 4, 7, 5, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 3, 4, WALK, 1, 2 ; person
+ object SPRITE_LASS, 6, 2, WALK, 2, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, CERULEAN_MART_WIDTH
+ warp_to 4, 7, CERULEAN_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeruleanPokecenter.asm
@@ -1,0 +1,18 @@
+CeruleanPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 2, -1
+ warp 4, 7, 2, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 10, 5, WALK, 0, 2 ; person
+ object SPRITE_GENTLEMAN, 4, 3, STAY, DOWN, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, CERULEAN_POKECENTER_WIDTH
+ warp_to 4, 7, CERULEAN_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeruleanTradeHouse.asm
@@ -1,0 +1,16 @@
+CeruleanTradeHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 1, -1
+ warp 3, 7, 1, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_OLD_MEDIUM_WOMAN, 5, 4, STAY, LEFT, 1 ; person
+ object SPRITE_GAMBLER, 1, 2, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, CERULEAN_TRADE_HOUSE_WIDTH
+ warp_to 3, 7, CERULEAN_TRADE_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/CeruleanTrashedHouse.asm
@@ -1,0 +1,19 @@
+CeruleanTrashedHouse_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 2, 7, 0, -1
+ warp 3, 7, 0, -1
+ warp 3, 0, 7, -1
+
+ db 1 ; signs
+ sign 3, 0, 3 ; CeruleanHouseTrashedText3
+
+ db 2 ; objects
+ object SPRITE_FISHER, 2, 1, STAY, DOWN, 1 ; person
+ object SPRITE_GIRL, 5, 6, WALK, 2, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, CERULEAN_TRASHED_HOUSE_WIDTH
+ warp_to 3, 7, CERULEAN_TRASHED_HOUSE_WIDTH
+ warp_to 3, 0, CERULEAN_TRASHED_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/ChampionsRoom.asm
@@ -1,0 +1,20 @@
+ChampionsRoom_Object:
+ db $3 ; border block
+
+ db 4 ; warps
+ warp 3, 7, 1, LANCES_ROOM
+ warp 4, 7, 2, LANCES_ROOM
+ warp 3, 0, 0, HALL_OF_FAME
+ warp 4, 0, 0, HALL_OF_FAME
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BLUE, 4, 2, STAY, DOWN, 1 ; person
+ object SPRITE_OAK, 3, 7, STAY, UP, 2 ; person
+
+ ; warp-to
+ warp_to 3, 7, CHAMPIONS_ROOM_WIDTH ; LANCES_ROOM
+ warp_to 4, 7, CHAMPIONS_ROOM_WIDTH ; LANCES_ROOM
+ warp_to 3, 0, CHAMPIONS_ROOM_WIDTH ; HALL_OF_FAME
+ warp_to 4, 0, CHAMPIONS_ROOM_WIDTH ; HALL_OF_FAME
--- /dev/null
+++ b/data/maps/objects/CinnabarGym.asm
@@ -1,0 +1,23 @@
+CinnabarGym_Object:
+ db $2e ; border block
+
+ db 2 ; warps
+ warp 16, 17, 1, -1
+ warp 17, 17, 1, -1
+
+ db 0 ; signs
+
+ db 9 ; objects
+ object SPRITE_FAT_BALD_GUY, 3, 3, STAY, DOWN, 1, OPP_BLAINE, 1
+ object SPRITE_BLACK_HAIR_BOY_2, 17, 2, STAY, DOWN, 2, OPP_SUPER_NERD, 9
+ object SPRITE_BLACK_HAIR_BOY_2, 17, 8, STAY, DOWN, 3, OPP_BURGLAR, 4
+ object SPRITE_BLACK_HAIR_BOY_2, 11, 4, STAY, DOWN, 4, OPP_SUPER_NERD, 10
+ object SPRITE_BLACK_HAIR_BOY_2, 11, 8, STAY, DOWN, 5, OPP_BURGLAR, 5
+ object SPRITE_BLACK_HAIR_BOY_2, 11, 14, STAY, DOWN, 6, OPP_SUPER_NERD, 11
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 14, STAY, DOWN, 7, OPP_BURGLAR, 6
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 8, STAY, DOWN, 8, OPP_SUPER_NERD, 12
+ object SPRITE_GYM_HELPER, 16, 13, STAY, DOWN, 9 ; person
+
+ ; warp-to
+ warp_to 16, 17, CINNABAR_GYM_WIDTH
+ warp_to 17, 17, CINNABAR_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/CinnabarIsland.asm
@@ -1,0 +1,27 @@
+CinnabarIsland_Object:
+ db $43 ; border block
+
+ db 5 ; warps
+ warp 6, 3, 1, POKEMON_MANSION_1F
+ warp 18, 3, 0, CINNABAR_GYM
+ warp 6, 9, 0, CINNABAR_LAB
+ warp 11, 11, 0, CINNABAR_POKECENTER
+ warp 15, 11, 0, CINNABAR_MART
+
+ db 5 ; signs
+ sign 9, 5, 3 ; CinnabarIslandText3
+ sign 16, 11, 4 ; MartSignText
+ sign 12, 11, 5 ; PokeCenterSignText
+ sign 9, 11, 6 ; CinnabarIslandText6
+ sign 13, 3, 7 ; CinnabarIslandText7
+
+ db 2 ; objects
+ object SPRITE_GIRL, 12, 5, WALK, 2, 1 ; person
+ object SPRITE_GAMBLER, 14, 6, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 6, 3, CINNABAR_ISLAND_WIDTH ; POKEMON_MANSION_1F
+ warp_to 18, 3, CINNABAR_ISLAND_WIDTH ; CINNABAR_GYM
+ warp_to 6, 9, CINNABAR_ISLAND_WIDTH ; CINNABAR_LAB
+ warp_to 11, 11, CINNABAR_ISLAND_WIDTH ; CINNABAR_POKECENTER
+ warp_to 15, 11, CINNABAR_ISLAND_WIDTH ; CINNABAR_MART
--- /dev/null
+++ b/data/maps/objects/CinnabarLab.asm
@@ -1,0 +1,25 @@
+CinnabarLab_Object:
+ db $17 ; border block
+
+ db 5 ; warps
+ warp 2, 7, 2, -1
+ warp 3, 7, 2, -1
+ warp 8, 4, 0, CINNABAR_LAB_TRADE_ROOM
+ warp 12, 4, 0, CINNABAR_LAB_METRONOME_ROOM
+ warp 16, 4, 0, CINNABAR_LAB_FOSSIL_ROOM
+
+ db 4 ; signs
+ sign 3, 2, 2 ; Lab1Text2
+ sign 9, 4, 3 ; Lab1Text3
+ sign 13, 4, 4 ; Lab1Text4
+ sign 17, 4, 5 ; Lab1Text5
+
+ db 1 ; objects
+ object SPRITE_FISHER, 1, 3, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, CINNABAR_LAB_WIDTH
+ warp_to 3, 7, CINNABAR_LAB_WIDTH
+ warp_to 8, 4, CINNABAR_LAB_WIDTH ; CINNABAR_LAB_TRADE_ROOM
+ warp_to 12, 4, CINNABAR_LAB_WIDTH ; CINNABAR_LAB_METRONOME_ROOM
+ warp_to 16, 4, CINNABAR_LAB_WIDTH ; CINNABAR_LAB_FOSSIL_ROOM
--- /dev/null
+++ b/data/maps/objects/CinnabarLabFossilRoom.asm
@@ -1,0 +1,16 @@
+CinnabarLabFossilRoom_Object:
+ db $17 ; border block
+
+ db 2 ; warps
+ warp 2, 7, 4, CINNABAR_LAB
+ warp 3, 7, 4, CINNABAR_LAB
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_OAK_AIDE, 5, 2, WALK, 2, 1 ; person
+ object SPRITE_OAK_AIDE, 7, 6, STAY, UP, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, CINNABAR_LAB_FOSSIL_ROOM_WIDTH ; CINNABAR_LAB
+ warp_to 3, 7, CINNABAR_LAB_FOSSIL_ROOM_WIDTH ; CINNABAR_LAB
--- /dev/null
+++ b/data/maps/objects/CinnabarLabMetronomeRoom.asm
@@ -1,0 +1,19 @@
+CinnabarLabMetronomeRoom_Object:
+ db $17 ; border block
+
+ db 2 ; warps
+ warp 2, 7, 3, CINNABAR_LAB
+ warp 3, 7, 3, CINNABAR_LAB
+
+ db 3 ; signs
+ sign 0, 4, 3 ; Lab3Text3
+ sign 1, 4, 4 ; Lab3Text4
+ sign 2, 1, 5 ; Lab3Text5
+
+ db 2 ; objects
+ object SPRITE_OAK_AIDE, 7, 2, STAY, DOWN, 1 ; person
+ object SPRITE_OAK_AIDE, 2, 3, WALK, 2, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, CINNABAR_LAB_METRONOME_ROOM_WIDTH ; CINNABAR_LAB
+ warp_to 3, 7, CINNABAR_LAB_METRONOME_ROOM_WIDTH ; CINNABAR_LAB
--- /dev/null
+++ b/data/maps/objects/CinnabarLabTradeRoom.asm
@@ -1,0 +1,17 @@
+CinnabarLabTradeRoom_Object:
+ db $17 ; border block
+
+ db 2 ; warps
+ warp 2, 7, 2, CINNABAR_LAB
+ warp 3, 7, 2, CINNABAR_LAB
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 2, STAY, DOWN, 1 ; person
+ object SPRITE_OLD_PERSON, 1, 4, STAY, NONE, 2 ; person
+ object SPRITE_FOULARD_WOMAN, 5, 5, STAY, UP, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, CINNABAR_LAB_TRADE_ROOM_WIDTH ; CINNABAR_LAB
+ warp_to 3, 7, CINNABAR_LAB_TRADE_ROOM_WIDTH ; CINNABAR_LAB
--- /dev/null
+++ b/data/maps/objects/CinnabarMart.asm
@@ -1,0 +1,17 @@
+CinnabarMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 4, -1
+ warp 4, 7, 4, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_ERIKA, 6, 2, STAY, NONE, 2 ; person
+ object SPRITE_OAK_AIDE, 3, 4, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, CINNABAR_MART_WIDTH
+ warp_to 4, 7, CINNABAR_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/CinnabarPokecenter.asm
@@ -1,0 +1,18 @@
+CinnabarPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 3, -1
+ warp 4, 7, 3, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_LASS, 9, 4, WALK, 0, 2 ; person
+ object SPRITE_GENTLEMAN, 2, 6, STAY, NONE, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, CINNABAR_POKECENTER_WIDTH
+ warp_to 4, 7, CINNABAR_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/Colosseum.asm
@@ -1,0 +1,9 @@
+Colosseum_Object:
+ db $e ; border block
+
+ db 0 ; warps
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_RED, 2, 2, STAY, 0, 1 ; person
--- /dev/null
+++ b/data/maps/objects/CopycatsHouse1F.asm
@@ -1,0 +1,19 @@
+CopycatsHouse1F_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 2, 7, 0, -1
+ warp 3, 7, 0, -1
+ warp 7, 1, 0, COPYCATS_HOUSE_2F
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MOM_GEISHA, 2, 2, STAY, DOWN, 1 ; person
+ object SPRITE_FAT_BALD_GUY, 5, 4, STAY, LEFT, 2 ; person
+ object SPRITE_CLEFAIRY, 1, 4, WALK, 1, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, COPYCATS_HOUSE_1F_WIDTH
+ warp_to 3, 7, COPYCATS_HOUSE_1F_WIDTH
+ warp_to 7, 1, COPYCATS_HOUSE_1F_WIDTH ; COPYCATS_HOUSE_2F
--- /dev/null
+++ b/data/maps/objects/CopycatsHouse2F.asm
@@ -1,0 +1,19 @@
+CopycatsHouse2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 1, 2, COPYCATS_HOUSE_1F
+
+ db 2 ; signs
+ sign 3, 5, 6 ; CopycatsHouse2FText6
+ sign 0, 1, 7 ; CopycatsHouse2FText7
+
+ db 5 ; objects
+ object SPRITE_BRUNETTE_GIRL, 4, 3, WALK, 0, 1 ; person
+ object SPRITE_BIRD, 4, 6, WALK, 2, 2 ; person
+ object SPRITE_SLOWBRO, 5, 1, STAY, DOWN, 3 ; person
+ object SPRITE_BIRD, 2, 0, STAY, DOWN, 4 ; person
+ object SPRITE_CLEFAIRY, 1, 6, STAY, RIGHT, 5 ; person
+
+ ; warp-to
+ warp_to 7, 1, COPYCATS_HOUSE_2F_WIDTH ; COPYCATS_HOUSE_1F
--- /dev/null
+++ b/data/maps/objects/Daycare.asm
@@ -1,0 +1,15 @@
+Daycare_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 4, -1
+ warp 3, 7, 4, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GENTLEMAN, 2, 3, STAY, RIGHT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, DAYCARE_WIDTH
+ warp_to 3, 7, DAYCARE_WIDTH
--- /dev/null
+++ b/data/maps/objects/DiglettsCave.asm
@@ -1,0 +1,14 @@
+DiglettsCave_Object:
+ db $19 ; border block
+
+ db 2 ; warps
+ warp 5, 5, 2, DIGLETTS_CAVE_ROUTE_2
+ warp 37, 31, 2, DIGLETTS_CAVE_ROUTE_11
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 5, 5, DIGLETTS_CAVE_WIDTH ; DIGLETTS_CAVE_ROUTE_2
+ warp_to 37, 31, DIGLETTS_CAVE_WIDTH ; DIGLETTS_CAVE_ROUTE_11
--- /dev/null
+++ b/data/maps/objects/DiglettsCaveRoute11.asm
@@ -1,0 +1,17 @@
+DiglettsCaveRoute11_Object:
+ db $7d ; border block
+
+ db 3 ; warps
+ warp 2, 7, 4, -1
+ warp 3, 7, 4, -1
+ warp 4, 4, 1, DIGLETTS_CAVE
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GAMBLER, 2, 3, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, DIGLETTS_CAVE_ROUTE_11_WIDTH
+ warp_to 3, 7, DIGLETTS_CAVE_ROUTE_11_WIDTH
+ warp_to 4, 4, DIGLETTS_CAVE_ROUTE_11_WIDTH ; DIGLETTS_CAVE
--- /dev/null
+++ b/data/maps/objects/DiglettsCaveRoute2.asm
@@ -1,0 +1,17 @@
+DiglettsCaveRoute2_Object:
+ db $7d ; border block
+
+ db 3 ; warps
+ warp 2, 7, 0, -1
+ warp 3, 7, 0, -1
+ warp 4, 4, 0, DIGLETTS_CAVE
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FISHER, 3, 3, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, DIGLETTS_CAVE_ROUTE_2_WIDTH
+ warp_to 3, 7, DIGLETTS_CAVE_ROUTE_2_WIDTH
+ warp_to 4, 4, DIGLETTS_CAVE_ROUTE_2_WIDTH ; DIGLETTS_CAVE
--- /dev/null
+++ b/data/maps/objects/FightingDojo.asm
@@ -1,0 +1,21 @@
+FightingDojo_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 11, 1, -1
+ warp 5, 11, 1, -1
+
+ db 0 ; signs
+
+ db 7 ; objects
+ object SPRITE_HIKER, 5, 3, STAY, DOWN, 1, OPP_BLACKBELT, 1
+ object SPRITE_HIKER, 3, 4, STAY, RIGHT, 2, OPP_BLACKBELT, 2
+ object SPRITE_HIKER, 3, 6, STAY, RIGHT, 3, OPP_BLACKBELT, 3
+ object SPRITE_HIKER, 5, 5, STAY, LEFT, 4, OPP_BLACKBELT, 4
+ object SPRITE_HIKER, 5, 7, STAY, LEFT, 5, OPP_BLACKBELT, 5
+ object SPRITE_BALL, 4, 1, STAY, NONE, 6 ; person
+ object SPRITE_BALL, 5, 1, STAY, NONE, 7 ; person
+
+ ; warp-to
+ warp_to 4, 11, FIGHTING_DOJO_WIDTH
+ warp_to 5, 11, FIGHTING_DOJO_WIDTH
--- /dev/null
+++ b/data/maps/objects/FuchsiaBillsGrandpasHouse.asm
@@ -1,0 +1,17 @@
+FuchsiaBillsGrandpasHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 1, -1
+ warp 3, 7, 1, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MOM_GEISHA, 2, 3, STAY, RIGHT, 1 ; person
+ object SPRITE_GAMBLER, 7, 2, STAY, UP, 2 ; person
+ object SPRITE_BUG_CATCHER, 5, 5, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, FUCHSIA_BILLS_GRANDPAS_HOUSE_WIDTH
+ warp_to 3, 7, FUCHSIA_BILLS_GRANDPAS_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/FuchsiaCity.asm
@@ -1,0 +1,52 @@
+FuchsiaCity_Object:
+ db $f ; border block
+
+ db 9 ; warps
+ warp 5, 13, 0, FUCHSIA_MART
+ warp 11, 27, 0, FUCHSIA_BILLS_GRANDPAS_HOUSE
+ warp 19, 27, 0, FUCHSIA_POKECENTER
+ warp 27, 27, 0, WARDENS_HOUSE
+ warp 18, 3, 0, SAFARI_ZONE_GATE
+ warp 5, 27, 0, FUCHSIA_GYM
+ warp 22, 13, 0, FUCHSIA_MEETING_ROOM
+ warp 31, 27, 1, FUCHSIA_GOOD_ROD_HOUSE
+ warp 31, 24, 0, FUCHSIA_GOOD_ROD_HOUSE
+
+ db 14 ; signs
+ sign 15, 23, 11 ; FuchsiaCityText11
+ sign 25, 15, 12 ; FuchsiaCityText12
+ sign 17, 5, 13 ; FuchsiaCityText13
+ sign 6, 13, 14 ; MartSignText
+ sign 20, 27, 15 ; PokeCenterSignText
+ sign 27, 29, 16 ; FuchsiaCityText16
+ sign 21, 15, 17 ; FuchsiaCityText17
+ sign 5, 29, 18 ; FuchsiaCityText18
+ sign 33, 7, 19 ; FuchsiaCityText19
+ sign 27, 7, 20 ; FuchsiaCityText20
+ sign 13, 7, 21 ; FuchsiaCityText21
+ sign 31, 13, 22 ; FuchsiaCityText22
+ sign 13, 15, 23 ; FuchsiaCityText23
+ sign 7, 7, 24 ; FuchsiaCityText24
+
+ db 10 ; objects
+ object SPRITE_BUG_CATCHER, 10, 12, WALK, 2, 1 ; person
+ object SPRITE_GAMBLER, 28, 17, WALK, 2, 2 ; person
+ object SPRITE_FISHER2, 30, 14, STAY, DOWN, 3 ; person
+ object SPRITE_BUG_CATCHER, 24, 8, STAY, UP, 4 ; person
+ object SPRITE_CLEFAIRY, 31, 5, WALK, 0, 5 ; person
+ object SPRITE_BALL, 25, 6, STAY, NONE, 6 ; person
+ object SPRITE_SLOWBRO, 12, 6, WALK, 2, 7 ; person
+ object SPRITE_SLOWBRO, 30, 12, WALK, 2, 8 ; person
+ object SPRITE_SEEL, 8, 17, WALK, 0, 9 ; person
+ object SPRITE_OMANYTE, 6, 5, STAY, NONE, 10 ; person
+
+ ; warp-to
+ warp_to 5, 13, FUCHSIA_CITY_WIDTH ; FUCHSIA_MART
+ warp_to 11, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_BILLS_GRANDPAS_HOUSE
+ warp_to 19, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_POKECENTER
+ warp_to 27, 27, FUCHSIA_CITY_WIDTH ; WARDENS_HOUSE
+ warp_to 18, 3, FUCHSIA_CITY_WIDTH ; SAFARI_ZONE_GATE
+ warp_to 5, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_GYM
+ warp_to 22, 13, FUCHSIA_CITY_WIDTH ; FUCHSIA_MEETING_ROOM
+ warp_to 31, 27, FUCHSIA_CITY_WIDTH ; FUCHSIA_GOOD_ROD_HOUSE
+ warp_to 31, 24, FUCHSIA_CITY_WIDTH ; FUCHSIA_GOOD_ROD_HOUSE
--- /dev/null
+++ b/data/maps/objects/FuchsiaGoodRodHouse.asm
@@ -1,0 +1,17 @@
+FuchsiaGoodRodHouse_Object:
+ db $c ; border block
+
+ db 3 ; warps
+ warp 2, 0, 8, -1
+ warp 2, 7, 7, -1
+ warp 3, 7, 7, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FISHER, 5, 3, STAY, RIGHT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 0, FUCHSIA_GOOD_ROD_HOUSE_WIDTH
+ warp_to 2, 7, FUCHSIA_GOOD_ROD_HOUSE_WIDTH
+ warp_to 3, 7, FUCHSIA_GOOD_ROD_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/FuchsiaGym.asm
@@ -1,0 +1,22 @@
+FuchsiaGym_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 17, 5, -1
+ warp 5, 17, 5, -1
+
+ db 0 ; signs
+
+ db 8 ; objects
+ object SPRITE_BLACKBELT, 4, 10, STAY, DOWN, 1, OPP_KOGA, 1
+ object SPRITE_ROCKER, 8, 13, STAY, DOWN, 2, OPP_JUGGLER, 7
+ object SPRITE_ROCKER, 7, 8, STAY, RIGHT, 3, OPP_JUGGLER, 3
+ object SPRITE_ROCKER, 1, 12, STAY, DOWN, 4, OPP_JUGGLER, 8
+ object SPRITE_ROCKER, 3, 5, STAY, UP, 5, OPP_TAMER, 1
+ object SPRITE_ROCKER, 8, 2, STAY, DOWN, 6, OPP_TAMER, 2
+ object SPRITE_ROCKER, 2, 7, STAY, LEFT, 7, OPP_JUGGLER, 4
+ object SPRITE_GYM_HELPER, 7, 15, STAY, DOWN, 8 ; person
+
+ ; warp-to
+ warp_to 4, 17, FUCHSIA_GYM_WIDTH
+ warp_to 5, 17, FUCHSIA_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/FuchsiaMart.asm
@@ -1,0 +1,17 @@
+FuchsiaMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 0, -1
+ warp 4, 7, 0, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_FAT_BALD_GUY, 4, 2, STAY, NONE, 2 ; person
+ object SPRITE_LASS, 6, 5, WALK, 1, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, FUCHSIA_MART_WIDTH
+ warp_to 4, 7, FUCHSIA_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/FuchsiaMeetingRoom.asm
@@ -1,0 +1,17 @@
+FuchsiaMeetingRoom_Object:
+ db $17 ; border block
+
+ db 2 ; warps
+ warp 4, 7, 6, -1
+ warp 5, 7, 6, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_WHITE_PLAYER, 4, 1, STAY, DOWN, 1 ; person
+ object SPRITE_WHITE_PLAYER, 0, 2, STAY, UP, 2 ; person
+ object SPRITE_WHITE_PLAYER, 10, 1, STAY, DOWN, 3 ; person
+
+ ; warp-to
+ warp_to 4, 7, FUCHSIA_MEETING_ROOM_WIDTH
+ warp_to 5, 7, FUCHSIA_MEETING_ROOM_WIDTH
--- /dev/null
+++ b/data/maps/objects/FuchsiaPokecenter.asm
@@ -1,0 +1,18 @@
+FuchsiaPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 2, -1
+ warp 4, 7, 2, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_ROCKER, 2, 3, STAY, NONE, 2 ; person
+ object SPRITE_LASS, 6, 5, WALK, 2, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, FUCHSIA_POKECENTER_WIDTH
+ warp_to 4, 7, FUCHSIA_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/GameCorner.asm
@@ -1,0 +1,28 @@
+GameCorner_Object:
+ db $f ; border block
+
+ db 3 ; warps
+ warp 15, 17, 7, -1
+ warp 16, 17, 7, -1
+ warp 17, 4, 1, ROCKET_HIDEOUT_B1F
+
+ db 1 ; signs
+ sign 9, 4, 12 ; CeladonGameCornerText12
+
+ db 11 ; objects
+ object SPRITE_FOULARD_WOMAN, 2, 6, STAY, DOWN, 1 ; person
+ object SPRITE_MART_GUY, 5, 6, STAY, DOWN, 2 ; person
+ object SPRITE_FAT_BALD_GUY, 2, 10, STAY, LEFT, 3 ; person
+ object SPRITE_FOULARD_WOMAN, 2, 13, STAY, LEFT, 4 ; person
+ object SPRITE_FISHER, 5, 11, STAY, RIGHT, 5 ; person
+ object SPRITE_MOM_GEISHA, 8, 11, STAY, LEFT, 6 ; person
+ object SPRITE_GYM_HELPER, 8, 14, STAY, LEFT, 7 ; person
+ object SPRITE_GAMBLER, 11, 15, STAY, RIGHT, 8 ; person
+ object SPRITE_MART_GUY, 14, 11, STAY, LEFT, 9 ; person
+ object SPRITE_GENTLEMAN, 17, 13, STAY, RIGHT, 10 ; person
+ object SPRITE_ROCKET, 9, 5, STAY, UP, 11, OPP_ROCKET, 7
+
+ ; warp-to
+ warp_to 15, 17, GAME_CORNER_WIDTH
+ warp_to 16, 17, GAME_CORNER_WIDTH
+ warp_to 17, 4, GAME_CORNER_WIDTH ; ROCKET_HIDEOUT_B1F
--- /dev/null
+++ b/data/maps/objects/GameCornerPrizeRoom.asm
@@ -1,0 +1,19 @@
+GameCornerPrizeRoom_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 4, 7, 9, -1
+ warp 5, 7, 9, -1
+
+ db 3 ; signs
+ sign 2, 2, 3 ; CeladonPrizeRoomText3
+ sign 4, 2, 4 ; CeladonPrizeRoomText4
+ sign 6, 2, 5 ; CeladonPrizeRoomText5
+
+ db 2 ; objects
+ object SPRITE_BALDING_GUY, 1, 4, STAY, NONE, 1 ; person
+ object SPRITE_GAMBLER, 7, 3, WALK, 2, 2 ; person
+
+ ; warp-to
+ warp_to 4, 7, GAME_CORNER_PRIZE_ROOM_WIDTH
+ warp_to 5, 7, GAME_CORNER_PRIZE_ROOM_WIDTH
--- /dev/null
+++ b/data/maps/objects/HallOfFame.asm
@@ -1,0 +1,15 @@
+HallOfFame_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 7, 2, CHAMPIONS_ROOM
+ warp 5, 7, 3, CHAMPIONS_ROOM
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_OAK, 5, 2, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 4, 7, HALL_OF_FAME_WIDTH ; CHAMPIONS_ROOM
+ warp_to 5, 7, HALL_OF_FAME_WIDTH ; CHAMPIONS_ROOM
--- /dev/null
+++ b/data/maps/objects/IndigoPlateau.asm
@@ -1,0 +1,14 @@
+IndigoPlateau_Object:
+ db $e ; border block
+
+ db 2 ; warps
+ warp 9, 5, 0, INDIGO_PLATEAU_LOBBY
+ warp 10, 5, 0, INDIGO_PLATEAU_LOBBY
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 9, 5, INDIGO_PLATEAU_WIDTH ; INDIGO_PLATEAU_LOBBY
+ warp_to 10, 5, INDIGO_PLATEAU_WIDTH ; INDIGO_PLATEAU_LOBBY
--- /dev/null
+++ b/data/maps/objects/IndigoPlateauLobby.asm
@@ -1,0 +1,21 @@
+IndigoPlateauLobby_Object:
+ db $0 ; border block
+
+ db 3 ; warps
+ warp 7, 11, 0, -1
+ warp 8, 11, 1, -1
+ warp 8, 0, 0, LORELEIS_ROOM
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_NURSE, 7, 5, STAY, DOWN, 1 ; person
+ object SPRITE_GYM_HELPER, 4, 9, STAY, RIGHT, 2 ; person
+ object SPRITE_LASS, 5, 1, STAY, DOWN, 3 ; person
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 4 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 13, 6, STAY, DOWN, 5 ; person
+
+ ; warp-to
+ warp_to 7, 11, INDIGO_PLATEAU_LOBBY_WIDTH
+ warp_to 8, 11, INDIGO_PLATEAU_LOBBY_WIDTH
+ warp_to 8, 0, INDIGO_PLATEAU_LOBBY_WIDTH ; LORELEIS_ROOM
--- /dev/null
+++ b/data/maps/objects/LancesRoom.asm
@@ -1,0 +1,17 @@
+LancesRoom_Object:
+ db $3 ; border block
+
+ db 3 ; warps
+ warp 24, 16, 2, AGATHAS_ROOM
+ warp 5, 0, 0, CHAMPIONS_ROOM
+ warp 6, 0, 0, CHAMPIONS_ROOM
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_LANCE, 6, 1, STAY, DOWN, 1, OPP_LANCE, 1
+
+ ; warp-to
+ warp_to 24, 16, LANCES_ROOM_WIDTH ; AGATHAS_ROOM
+ warp_to 5, 0, LANCES_ROOM_WIDTH ; CHAMPIONS_ROOM
+ warp_to 6, 0, LANCES_ROOM_WIDTH ; CHAMPIONS_ROOM
--- /dev/null
+++ b/data/maps/objects/LavenderCuboneHouse.asm
@@ -1,0 +1,16 @@
+LavenderCuboneHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 4, -1
+ warp 3, 7, 4, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_SLOWBRO, 3, 5, STAY, UP, 1 ; person
+ object SPRITE_BRUNETTE_GIRL, 2, 4, STAY, RIGHT, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, LAVENDER_CUBONE_HOUSE_WIDTH
+ warp_to 3, 7, LAVENDER_CUBONE_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/LavenderMart.asm
@@ -1,0 +1,17 @@
+LavenderMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 3, -1
+ warp 4, 7, 3, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_BALDING_GUY, 3, 4, STAY, NONE, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 7, 2, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, LAVENDER_MART_WIDTH
+ warp_to 4, 7, LAVENDER_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/LavenderPokecenter.asm
@@ -1,0 +1,18 @@
+LavenderPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 0, -1
+ warp 4, 7, 0, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_GENTLEMAN, 5, 3, STAY, NONE, 2 ; person
+ object SPRITE_LITTLE_GIRL, 2, 6, WALK, 1, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, LAVENDER_POKECENTER_WIDTH
+ warp_to 4, 7, LAVENDER_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/LavenderTown.asm
@@ -1,0 +1,31 @@
+LavenderTown_Object:
+ db $2c ; border block
+
+ db 6 ; warps
+ warp 3, 5, 0, LAVENDER_POKECENTER
+ warp 14, 5, 0, POKEMON_TOWER_1F
+ warp 7, 9, 0, MR_FUJIS_HOUSE
+ warp 15, 13, 0, LAVENDER_MART
+ warp 3, 13, 0, LAVENDER_CUBONE_HOUSE
+ warp 7, 13, 0, NAME_RATERS_HOUSE
+
+ db 6 ; signs
+ sign 11, 9, 4 ; LavenderTownText4
+ sign 9, 3, 5 ; LavenderTownText5
+ sign 16, 13, 6 ; MartSignText
+ sign 4, 5, 7 ; PokeCenterSignText
+ sign 5, 9, 8 ; LavenderTownText8
+ sign 17, 7, 9 ; LavenderTownText9
+
+ db 3 ; objects
+ object SPRITE_LITTLE_GIRL, 15, 9, WALK, 0, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 9, 10, STAY, NONE, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 8, 7, WALK, 2, 3 ; person
+
+ ; warp-to
+ warp_to 3, 5, LAVENDER_TOWN_WIDTH ; LAVENDER_POKECENTER
+ warp_to 14, 5, LAVENDER_TOWN_WIDTH ; POKEMON_TOWER_1F
+ warp_to 7, 9, LAVENDER_TOWN_WIDTH ; MR_FUJIS_HOUSE
+ warp_to 15, 13, LAVENDER_TOWN_WIDTH ; LAVENDER_MART
+ warp_to 3, 13, LAVENDER_TOWN_WIDTH ; LAVENDER_CUBONE_HOUSE
+ warp_to 7, 13, LAVENDER_TOWN_WIDTH ; NAME_RATERS_HOUSE
--- /dev/null
+++ b/data/maps/objects/LoreleisRoom.asm
@@ -1,0 +1,19 @@
+LoreleisRoom_Object:
+ db $3 ; border block
+
+ db 4 ; warps
+ warp 4, 11, 2, INDIGO_PLATEAU_LOBBY
+ warp 5, 11, 2, INDIGO_PLATEAU_LOBBY
+ warp 4, 0, 0, BRUNOS_ROOM
+ warp 5, 0, 1, BRUNOS_ROOM
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_LORELEI, 5, 2, STAY, DOWN, 1, OPP_LORELEI, 1
+
+ ; warp-to
+ warp_to 4, 11, LORELEIS_ROOM_WIDTH ; INDIGO_PLATEAU_LOBBY
+ warp_to 5, 11, LORELEIS_ROOM_WIDTH ; INDIGO_PLATEAU_LOBBY
+ warp_to 4, 0, LORELEIS_ROOM_WIDTH ; BRUNOS_ROOM
+ warp_to 5, 0, LORELEIS_ROOM_WIDTH ; BRUNOS_ROOM
--- /dev/null
+++ b/data/maps/objects/MrFujisHouse.asm
@@ -1,0 +1,20 @@
+MrFujisHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 2, -1
+ warp 3, 7, 2, -1
+
+ db 0 ; signs
+
+ db 6 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 5, STAY, NONE, 1 ; person
+ object SPRITE_LITTLE_GIRL, 6, 3, STAY, DOWN, 2 ; person
+ object SPRITE_SLOWBRO, 6, 4, STAY, UP, 3 ; person
+ object SPRITE_SLOWBRO, 1, 3, STAY, NONE, 4 ; person
+ object SPRITE_MR_FUJI, 3, 1, STAY, NONE, 5 ; person
+ object SPRITE_BOOK_MAP_DEX, 3, 3, STAY, NONE, 6 ; person
+
+ ; warp-to
+ warp_to 2, 7, MR_FUJIS_HOUSE_WIDTH
+ warp_to 3, 7, MR_FUJIS_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/MrPsychicsHouse.asm
@@ -1,0 +1,15 @@
+MrPsychicsHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 7, -1
+ warp 3, 7, 7, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FISHER, 5, 3, STAY, LEFT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, MR_PSYCHICS_HOUSE_WIDTH
+ warp_to 3, 7, MR_PSYCHICS_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/MtMoon1F.asm
@@ -1,0 +1,34 @@
+MtMoon1F_Object:
+ db $3 ; border block
+
+ db 5 ; warps
+ warp 14, 35, 1, -1
+ warp 15, 35, 1, -1
+ warp 5, 5, 0, MT_MOON_B1F
+ warp 17, 11, 2, MT_MOON_B1F
+ warp 25, 15, 3, MT_MOON_B1F
+
+ db 1 ; signs
+ sign 15, 23, 14 ; MtMoon1Text14
+
+ db 13 ; objects
+ object SPRITE_HIKER, 5, 6, STAY, DOWN, 1, OPP_HIKER, 1
+ object SPRITE_BUG_CATCHER, 12, 16, STAY, RIGHT, 2, OPP_YOUNGSTER, 3
+ object SPRITE_LASS, 30, 4, STAY, DOWN, 3, OPP_LASS, 5
+ object SPRITE_BLACK_HAIR_BOY_2, 24, 31, STAY, UP, 4, OPP_SUPER_NERD, 1
+ object SPRITE_LASS, 16, 23, STAY, DOWN, 5, OPP_LASS, 6
+ object SPRITE_BUG_CATCHER, 7, 22, STAY, DOWN, 6, OPP_BUG_CATCHER, 7
+ object SPRITE_BUG_CATCHER, 30, 27, STAY, RIGHT, 7, OPP_BUG_CATCHER, 8
+ object SPRITE_BALL, 2, 20, STAY, NONE, 8, POTION
+ object SPRITE_BALL, 2, 2, STAY, NONE, 9, MOON_STONE
+ object SPRITE_BALL, 35, 31, STAY, NONE, 10, RARE_CANDY
+ object SPRITE_BALL, 36, 23, STAY, NONE, 11, ESCAPE_ROPE
+ object SPRITE_BALL, 20, 33, STAY, NONE, 12, POTION
+ object SPRITE_BALL, 5, 32, STAY, NONE, 13, TM_12
+
+ ; warp-to
+ warp_to 14, 35, MT_MOON_1F_WIDTH
+ warp_to 15, 35, MT_MOON_1F_WIDTH
+ warp_to 5, 5, MT_MOON_1F_WIDTH ; MT_MOON_B1F
+ warp_to 17, 11, MT_MOON_1F_WIDTH ; MT_MOON_B1F
+ warp_to 25, 15, MT_MOON_1F_WIDTH ; MT_MOON_B1F
--- /dev/null
+++ b/data/maps/objects/MtMoonB1F.asm
@@ -1,0 +1,26 @@
+MtMoonB1F_Object:
+ db $3 ; border block
+
+ db 8 ; warps
+ warp 5, 5, 2, MT_MOON_1F
+ warp 17, 11, 0, MT_MOON_B2F
+ warp 25, 9, 3, MT_MOON_1F
+ warp 25, 15, 4, MT_MOON_1F
+ warp 21, 17, 1, MT_MOON_B2F
+ warp 13, 27, 2, MT_MOON_B2F
+ warp 23, 3, 3, MT_MOON_B2F
+ warp 27, 3, 2, -1
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 5, 5, MT_MOON_B1F_WIDTH ; MT_MOON_1F
+ warp_to 17, 11, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
+ warp_to 25, 9, MT_MOON_B1F_WIDTH ; MT_MOON_1F
+ warp_to 25, 15, MT_MOON_B1F_WIDTH ; MT_MOON_1F
+ warp_to 21, 17, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
+ warp_to 13, 27, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
+ warp_to 23, 3, MT_MOON_B1F_WIDTH ; MT_MOON_B2F
+ warp_to 27, 3, MT_MOON_B1F_WIDTH
--- /dev/null
+++ b/data/maps/objects/MtMoonB2F.asm
@@ -1,0 +1,27 @@
+MtMoonB2F_Object:
+ db $3 ; border block
+
+ db 4 ; warps
+ warp 25, 9, 1, MT_MOON_B1F
+ warp 21, 17, 4, MT_MOON_B1F
+ warp 15, 27, 5, MT_MOON_B1F
+ warp 5, 7, 6, MT_MOON_B1F
+
+ db 0 ; signs
+
+ db 9 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 12, 8, STAY, RIGHT, 1, OPP_SUPER_NERD, 2
+ object SPRITE_ROCKET, 11, 16, STAY, DOWN, 2, OPP_ROCKET, 1
+ object SPRITE_ROCKET, 15, 22, STAY, DOWN, 3, OPP_ROCKET, 2
+ object SPRITE_ROCKET, 29, 11, STAY, UP, 4, OPP_ROCKET, 3
+ object SPRITE_ROCKET, 29, 17, STAY, LEFT, 5, OPP_ROCKET, 4
+ object SPRITE_OMANYTE, 12, 6, STAY, NONE, 6 ; person
+ object SPRITE_OMANYTE, 13, 6, STAY, NONE, 7 ; person
+ object SPRITE_BALL, 25, 21, STAY, NONE, 8, HP_UP
+ object SPRITE_BALL, 29, 5, STAY, NONE, 9, TM_01
+
+ ; warp-to
+ warp_to 25, 9, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
+ warp_to 21, 17, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
+ warp_to 15, 27, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
+ warp_to 5, 7, MT_MOON_B2F_WIDTH ; MT_MOON_B1F
--- /dev/null
+++ b/data/maps/objects/MtMoonPokecenter.asm
@@ -1,0 +1,20 @@
+MtMoonPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 0, -1
+ warp 4, 7, 0, -1
+
+ db 0 ; signs
+
+ db 6 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_BUG_CATCHER, 4, 3, STAY, UP, 2 ; person
+ object SPRITE_GENTLEMAN, 7, 3, STAY, UP, 3 ; person
+ object SPRITE_FAT_BALD_GUY, 10, 6, WALK, 2, 4 ; person
+ object SPRITE_CLIPBOARD, 7, 2, STAY, NONE, 5 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 6 ; person
+
+ ; warp-to
+ warp_to 3, 7, MT_MOON_POKECENTER_WIDTH
+ warp_to 4, 7, MT_MOON_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/Museum1F.asm
@@ -1,0 +1,25 @@
+Museum1F_Object:
+ db $a ; border block
+
+ db 5 ; warps
+ warp 10, 7, 0, -1
+ warp 11, 7, 0, -1
+ warp 16, 7, 1, -1
+ warp 17, 7, 1, -1
+ warp 7, 7, 0, MUSEUM_2F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_OAK_AIDE, 12, 4, STAY, LEFT, 1 ; person
+ object SPRITE_GAMBLER, 1, 4, STAY, NONE, 2 ; person
+ object SPRITE_OAK_AIDE, 15, 2, STAY, DOWN, 3 ; person
+ object SPRITE_OAK_AIDE, 17, 4, STAY, NONE, 4 ; person
+ object SPRITE_OLD_AMBER, 16, 2, STAY, NONE, 5 ; person
+
+ ; warp-to
+ warp_to 10, 7, MUSEUM_1F_WIDTH
+ warp_to 11, 7, MUSEUM_1F_WIDTH
+ warp_to 16, 7, MUSEUM_1F_WIDTH
+ warp_to 17, 7, MUSEUM_1F_WIDTH
+ warp_to 7, 7, MUSEUM_1F_WIDTH ; MUSEUM_2F
--- /dev/null
+++ b/data/maps/objects/Museum2F.asm
@@ -1,0 +1,19 @@
+Museum2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 7, 4, MUSEUM_1F
+
+ db 2 ; signs
+ sign 11, 2, 6 ; Museum2FText6
+ sign 2, 5, 7 ; Museum2FText7
+
+ db 5 ; objects
+ object SPRITE_BUG_CATCHER, 1, 7, WALK, 2, 1 ; person
+ object SPRITE_OLD_PERSON, 0, 5, STAY, DOWN, 2 ; person
+ object SPRITE_OAK_AIDE, 7, 5, STAY, DOWN, 3 ; person
+ object SPRITE_BRUNETTE_GIRL, 11, 5, STAY, NONE, 4 ; person
+ object SPRITE_HIKER, 12, 5, STAY, DOWN, 5 ; person
+
+ ; warp-to
+ warp_to 7, 7, MUSEUM_2F_WIDTH ; MUSEUM_1F
--- /dev/null
+++ b/data/maps/objects/NameRatersHouse.asm
@@ -1,0 +1,15 @@
+NameRatersHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 5, -1
+ warp 3, 7, 5, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_MR_MASTERBALL, 5, 3, STAY, LEFT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, NAME_RATERS_HOUSE_WIDTH
+ warp_to 3, 7, NAME_RATERS_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/OaksLab.asm
@@ -1,0 +1,25 @@
+OaksLab_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 11, 2, -1
+ warp 5, 11, 2, -1
+
+ db 0 ; signs
+
+ db 11 ; objects
+ object SPRITE_BLUE, 4, 3, STAY, NONE, 1, OPP_SONY1, 1
+ object SPRITE_BALL, 6, 3, STAY, NONE, 2 ; person
+ object SPRITE_BALL, 7, 3, STAY, NONE, 3 ; person
+ object SPRITE_BALL, 8, 3, STAY, NONE, 4 ; person
+ object SPRITE_OAK, 5, 2, STAY, DOWN, 5 ; person
+ object SPRITE_BOOK_MAP_DEX, 2, 1, STAY, NONE, 6 ; person
+ object SPRITE_BOOK_MAP_DEX, 3, 1, STAY, NONE, 7 ; person
+ object SPRITE_OAK, 5, 10, STAY, UP, 8 ; person
+ object SPRITE_GIRL, 1, 9, WALK, 1, 9 ; person
+ object SPRITE_OAK_AIDE, 2, 10, STAY, NONE, 10 ; person
+ object SPRITE_OAK_AIDE, 8, 10, STAY, NONE, 11 ; person
+
+ ; warp-to
+ warp_to 4, 11, OAKS_LAB_WIDTH
+ warp_to 5, 11, OAKS_LAB_WIDTH
--- /dev/null
+++ b/data/maps/objects/PalletTown.asm
@@ -1,0 +1,23 @@
+PalletTown_Object:
+ db $b ; border block
+
+ db 3 ; warps
+ warp 5, 5, 0, REDS_HOUSE_1F
+ warp 13, 5, 0, BLUES_HOUSE
+ warp 12, 11, 1, OAKS_LAB
+
+ db 4 ; signs
+ sign 13, 13, 4 ; PalletTownText4
+ sign 7, 9, 5 ; PalletTownText5
+ sign 3, 5, 6 ; PalletTownText6
+ sign 11, 5, 7 ; PalletTownText7
+
+ db 3 ; objects
+ object SPRITE_OAK, 8, 5, STAY, NONE, 1 ; person
+ object SPRITE_GIRL, 3, 8, WALK, 0, 2 ; person
+ object SPRITE_FISHER2, 11, 14, WALK, 0, 3 ; person
+
+ ; warp-to
+ warp_to 5, 5, PALLET_TOWN_WIDTH ; REDS_HOUSE_1F
+ warp_to 13, 5, PALLET_TOWN_WIDTH ; BLUES_HOUSE
+ warp_to 12, 11, PALLET_TOWN_WIDTH ; OAKS_LAB
--- /dev/null
+++ b/data/maps/objects/PewterCity.asm
@@ -1,0 +1,36 @@
+PewterCity_Object:
+ db $a ; border block
+
+ db 7 ; warps
+ warp 14, 7, 0, MUSEUM_1F
+ warp 19, 5, 2, MUSEUM_1F
+ warp 16, 17, 0, PEWTER_GYM
+ warp 29, 13, 0, PEWTER_NIDORAN_HOUSE
+ warp 23, 17, 0, PEWTER_MART
+ warp 7, 29, 0, PEWTER_SPEECH_HOUSE
+ warp 13, 25, 0, PEWTER_POKECENTER
+
+ db 7 ; signs
+ sign 19, 29, 6 ; PewterCityText6
+ sign 33, 19, 7 ; PewterCityText7
+ sign 24, 17, 8 ; MartSignText
+ sign 14, 25, 9 ; PokeCenterSignText
+ sign 15, 9, 10 ; PewterCityText10
+ sign 11, 17, 11 ; PewterCityText11
+ sign 25, 23, 12 ; PewterCityText12
+
+ db 5 ; objects
+ object SPRITE_LASS, 8, 15, STAY, NONE, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 17, 25, STAY, NONE, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 27, 17, STAY, NONE, 3 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 26, 25, WALK, 2, 4 ; person
+ object SPRITE_BUG_CATCHER, 35, 16, STAY, DOWN, 5 ; person
+
+ ; warp-to
+ warp_to 14, 7, PEWTER_CITY_WIDTH ; MUSEUM_1F
+ warp_to 19, 5, PEWTER_CITY_WIDTH ; MUSEUM_1F
+ warp_to 16, 17, PEWTER_CITY_WIDTH ; PEWTER_GYM
+ warp_to 29, 13, PEWTER_CITY_WIDTH ; PEWTER_NIDORAN_HOUSE
+ warp_to 23, 17, PEWTER_CITY_WIDTH ; PEWTER_MART
+ warp_to 7, 29, PEWTER_CITY_WIDTH ; PEWTER_SPEECH_HOUSE
+ warp_to 13, 25, PEWTER_CITY_WIDTH ; PEWTER_POKECENTER
--- /dev/null
+++ b/data/maps/objects/PewterGym.asm
@@ -1,0 +1,17 @@
+PewterGym_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 13, 2, -1
+ warp 5, 13, 2, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 4, 1, STAY, DOWN, 1, OPP_BROCK, 1
+ object SPRITE_BLACK_HAIR_BOY_1, 3, 6, STAY, RIGHT, 2, OPP_JR_TRAINER_M, 1
+ object SPRITE_GYM_HELPER, 7, 10, STAY, DOWN, 3 ; person
+
+ ; warp-to
+ warp_to 4, 13, PEWTER_GYM_WIDTH
+ warp_to 5, 13, PEWTER_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/PewterMart.asm
@@ -1,0 +1,17 @@
+PewterMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 4, -1
+ warp 4, 7, 4, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_BUG_CATCHER, 3, 3, WALK, 1, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 5, 5, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, PEWTER_MART_WIDTH
+ warp_to 4, 7, PEWTER_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/PewterNidoranHouse.asm
@@ -1,0 +1,17 @@
+PewterNidoranHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 3, -1
+ warp 3, 7, 3, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_SLOWBRO, 4, 5, STAY, LEFT, 1 ; person
+ object SPRITE_YOUNG_BOY, 3, 5, STAY, RIGHT, 2 ; person
+ object SPRITE_FAT_BALD_GUY, 1, 2, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, PEWTER_NIDORAN_HOUSE_WIDTH
+ warp_to 3, 7, PEWTER_NIDORAN_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/PewterPokecenter.asm
@@ -1,0 +1,18 @@
+PewterPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 6, -1
+ warp 4, 7, 6, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_GENTLEMAN, 11, 7, STAY, LEFT, 2 ; person
+ object SPRITE_CLEFAIRY, 1, 3, STAY, DOWN, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, PEWTER_POKECENTER_WIDTH
+ warp_to 4, 7, PEWTER_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/PewterSpeechHouse.asm
@@ -1,0 +1,16 @@
+PewterSpeechHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 5, -1
+ warp 3, 7, 5, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_GAMBLER, 2, 3, STAY, RIGHT, 1 ; person
+ object SPRITE_BUG_CATCHER, 4, 5, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, PEWTER_SPEECH_HOUSE_WIDTH
+ warp_to 3, 7, PEWTER_SPEECH_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/PokemonFanClub.asm
@@ -1,0 +1,22 @@
+PokemonFanClub_Object:
+ db $d ; border block
+
+ db 2 ; warps
+ warp 2, 7, 1, -1
+ warp 3, 7, 1, -1
+
+ db 2 ; signs
+ sign 1, 0, 7 ; FanClubText7
+ sign 6, 0, 8 ; FanClubText8
+
+ db 6 ; objects
+ object SPRITE_FISHER2, 6, 3, STAY, LEFT, 1 ; person
+ object SPRITE_GIRL, 1, 3, STAY, RIGHT, 2 ; person
+ object SPRITE_CLEFAIRY, 6, 4, STAY, LEFT, 3 ; person
+ object SPRITE_SEEL, 1, 4, STAY, RIGHT, 4 ; person
+ object SPRITE_GENTLEMAN, 3, 1, STAY, DOWN, 5 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 5, 1, STAY, DOWN, 6 ; person
+
+ ; warp-to
+ warp_to 2, 7, POKEMON_FAN_CLUB_WIDTH
+ warp_to 3, 7, POKEMON_FAN_CLUB_WIDTH
--- /dev/null
+++ b/data/maps/objects/PokemonMansion1F.asm
@@ -1,0 +1,29 @@
+PokemonMansion1F_Object:
+ db $2e ; border block
+
+ db 8 ; warps
+ warp 4, 27, 0, -1
+ warp 5, 27, 0, -1
+ warp 6, 27, 0, -1
+ warp 7, 27, 0, -1
+ warp 5, 10, 0, POKEMON_MANSION_2F
+ warp 21, 23, 0, POKEMON_MANSION_B1F
+ warp 26, 27, 0, -1
+ warp 27, 27, 0, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_OAK_AIDE, 17, 17, STAY, LEFT, 1, OPP_SCIENTIST, 4
+ object SPRITE_BALL, 14, 3, STAY, NONE, 2, ESCAPE_ROPE
+ object SPRITE_BALL, 18, 21, STAY, NONE, 3, CARBOS
+
+ ; warp-to
+ warp_to 4, 27, POKEMON_MANSION_1F_WIDTH
+ warp_to 5, 27, POKEMON_MANSION_1F_WIDTH
+ warp_to 6, 27, POKEMON_MANSION_1F_WIDTH
+ warp_to 7, 27, POKEMON_MANSION_1F_WIDTH
+ warp_to 5, 10, POKEMON_MANSION_1F_WIDTH ; POKEMON_MANSION_2F
+ warp_to 21, 23, POKEMON_MANSION_1F_WIDTH ; POKEMON_MANSION_B1F
+ warp_to 26, 27, POKEMON_MANSION_1F_WIDTH
+ warp_to 27, 27, POKEMON_MANSION_1F_WIDTH
--- /dev/null
+++ b/data/maps/objects/PokemonMansion2F.asm
@@ -1,0 +1,22 @@
+PokemonMansion2F_Object:
+ db $1 ; border block
+
+ db 4 ; warps
+ warp 5, 10, 4, POKEMON_MANSION_1F
+ warp 7, 10, 0, POKEMON_MANSION_3F
+ warp 25, 14, 2, POKEMON_MANSION_3F
+ warp 6, 1, 1, POKEMON_MANSION_3F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 17, WALK, 2, 1, OPP_BURGLAR, 7
+ object SPRITE_BALL, 28, 7, STAY, NONE, 2, CALCIUM
+ object SPRITE_BOOK_MAP_DEX, 18, 2, STAY, NONE, 3 ; person
+ object SPRITE_BOOK_MAP_DEX, 3, 22, STAY, NONE, 4 ; person
+
+ ; warp-to
+ warp_to 5, 10, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_1F
+ warp_to 7, 10, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_3F
+ warp_to 25, 14, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_3F
+ warp_to 6, 1, POKEMON_MANSION_2F_WIDTH ; POKEMON_MANSION_3F
--- /dev/null
+++ b/data/maps/objects/PokemonMansion3F.asm
@@ -1,0 +1,21 @@
+PokemonMansion3F_Object:
+ db $1 ; border block
+
+ db 3 ; warps
+ warp 7, 10, 1, POKEMON_MANSION_2F
+ warp 6, 1, 3, POKEMON_MANSION_2F
+ warp 25, 14, 2, POKEMON_MANSION_2F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 5, 11, WALK, 2, 1, OPP_BURGLAR, 8
+ object SPRITE_OAK_AIDE, 20, 11, STAY, LEFT, 2, OPP_SCIENTIST, 12
+ object SPRITE_BALL, 1, 16, STAY, NONE, 3, MAX_POTION
+ object SPRITE_BALL, 25, 5, STAY, NONE, 4, IRON
+ object SPRITE_BOOK_MAP_DEX, 6, 12, STAY, NONE, 5 ; person
+
+ ; warp-to
+ warp_to 7, 10, POKEMON_MANSION_3F_WIDTH ; POKEMON_MANSION_2F
+ warp_to 6, 1, POKEMON_MANSION_3F_WIDTH ; POKEMON_MANSION_2F
+ warp_to 25, 14, POKEMON_MANSION_3F_WIDTH ; POKEMON_MANSION_2F
--- /dev/null
+++ b/data/maps/objects/PokemonMansionB1F.asm
@@ -1,0 +1,20 @@
+PokemonMansionB1F_Object:
+ db $1 ; border block
+
+ db 1 ; warps
+ warp 23, 22, 5, POKEMON_MANSION_1F
+
+ db 0 ; signs
+
+ db 8 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 16, 23, STAY, NONE, 1, OPP_BURGLAR, 9
+ object SPRITE_OAK_AIDE, 27, 11, STAY, DOWN, 2, OPP_SCIENTIST, 13
+ object SPRITE_BALL, 10, 2, STAY, NONE, 3, RARE_CANDY
+ object SPRITE_BALL, 1, 22, STAY, NONE, 4, FULL_RESTORE
+ object SPRITE_BALL, 19, 25, STAY, NONE, 5, TM_14
+ object SPRITE_BALL, 5, 4, STAY, NONE, 6, TM_22
+ object SPRITE_BOOK_MAP_DEX, 16, 20, STAY, NONE, 7 ; person
+ object SPRITE_BALL, 5, 13, STAY, NONE, 8, SECRET_KEY
+
+ ; warp-to
+ warp_to 23, 22, POKEMON_MANSION_B1F_WIDTH ; POKEMON_MANSION_1F
--- /dev/null
+++ b/data/maps/objects/PokemonTower1F.asm
@@ -1,0 +1,21 @@
+PokemonTower1F_Object:
+ db $1 ; border block
+
+ db 3 ; warps
+ warp 10, 17, 1, -1
+ warp 11, 17, 1, -1
+ warp 18, 9, 1, POKEMON_TOWER_2F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_CABLE_CLUB_WOMAN, 15, 13, STAY, UP, 1 ; person
+ object SPRITE_MOM_GEISHA, 6, 8, STAY, NONE, 2 ; person
+ object SPRITE_BALDING_GUY, 8, 12, STAY, NONE, 3 ; person
+ object SPRITE_GIRL, 13, 7, STAY, NONE, 4 ; person
+ object SPRITE_MEDIUM, 17, 7, STAY, LEFT, 5 ; person
+
+ ; warp-to
+ warp_to 10, 17, POKEMON_TOWER_1F_WIDTH
+ warp_to 11, 17, POKEMON_TOWER_1F_WIDTH
+ warp_to 18, 9, POKEMON_TOWER_1F_WIDTH ; POKEMON_TOWER_2F
--- /dev/null
+++ b/data/maps/objects/PokemonTower2F.asm
@@ -1,0 +1,16 @@
+PokemonTower2F_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 3, 9, 0, POKEMON_TOWER_3F
+ warp 18, 9, 2, POKEMON_TOWER_1F
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BLUE, 14, 5, STAY, NONE, 1 ; person
+ object SPRITE_MEDIUM, 3, 7, STAY, RIGHT, 2 ; person
+
+ ; warp-to
+ warp_to 3, 9, POKEMON_TOWER_2F_WIDTH ; POKEMON_TOWER_3F
+ warp_to 18, 9, POKEMON_TOWER_2F_WIDTH ; POKEMON_TOWER_1F
--- /dev/null
+++ b/data/maps/objects/PokemonTower3F.asm
@@ -1,0 +1,18 @@
+PokemonTower3F_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 3, 9, 0, POKEMON_TOWER_2F
+ warp 18, 9, 1, POKEMON_TOWER_4F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_MEDIUM, 12, 3, STAY, LEFT, 1, OPP_CHANNELER, 5
+ object SPRITE_MEDIUM, 9, 8, STAY, DOWN, 2, OPP_CHANNELER, 6
+ object SPRITE_MEDIUM, 10, 13, STAY, DOWN, 3, OPP_CHANNELER, 8
+ object SPRITE_BALL, 12, 1, STAY, NONE, 4, ESCAPE_ROPE
+
+ ; warp-to
+ warp_to 3, 9, POKEMON_TOWER_3F_WIDTH ; POKEMON_TOWER_2F
+ warp_to 18, 9, POKEMON_TOWER_3F_WIDTH ; POKEMON_TOWER_4F
--- /dev/null
+++ b/data/maps/objects/PokemonTower4F.asm
@@ -1,0 +1,20 @@
+PokemonTower4F_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 3, 9, 0, POKEMON_TOWER_5F
+ warp 18, 9, 1, POKEMON_TOWER_3F
+
+ db 0 ; signs
+
+ db 6 ; objects
+ object SPRITE_MEDIUM, 5, 10, STAY, RIGHT, 1, OPP_CHANNELER, 9
+ object SPRITE_MEDIUM, 15, 7, STAY, DOWN, 2, OPP_CHANNELER, 10
+ object SPRITE_MEDIUM, 14, 12, STAY, LEFT, 3, OPP_CHANNELER, 12
+ object SPRITE_BALL, 12, 10, STAY, NONE, 4, ELIXER
+ object SPRITE_BALL, 9, 10, STAY, NONE, 5, AWAKENING
+ object SPRITE_BALL, 12, 16, STAY, NONE, 6, HP_UP
+
+ ; warp-to
+ warp_to 3, 9, POKEMON_TOWER_4F_WIDTH ; POKEMON_TOWER_5F
+ warp_to 18, 9, POKEMON_TOWER_4F_WIDTH ; POKEMON_TOWER_3F
--- /dev/null
+++ b/data/maps/objects/PokemonTower5F.asm
@@ -1,0 +1,20 @@
+PokemonTower5F_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 3, 9, 0, POKEMON_TOWER_4F
+ warp 18, 9, 0, POKEMON_TOWER_6F
+
+ db 0 ; signs
+
+ db 6 ; objects
+ object SPRITE_MEDIUM, 12, 8, STAY, NONE, 1 ; person
+ object SPRITE_MEDIUM, 17, 7, STAY, LEFT, 2, OPP_CHANNELER, 14
+ object SPRITE_MEDIUM, 14, 3, STAY, LEFT, 3, OPP_CHANNELER, 16
+ object SPRITE_MEDIUM, 6, 10, STAY, RIGHT, 4, OPP_CHANNELER, 17
+ object SPRITE_MEDIUM, 9, 16, STAY, RIGHT, 5, OPP_CHANNELER, 18
+ object SPRITE_BALL, 6, 14, STAY, NONE, 6, NUGGET
+
+ ; warp-to
+ warp_to 3, 9, POKEMON_TOWER_5F_WIDTH ; POKEMON_TOWER_4F
+ warp_to 18, 9, POKEMON_TOWER_5F_WIDTH ; POKEMON_TOWER_6F
--- /dev/null
+++ b/data/maps/objects/PokemonTower6F.asm
@@ -1,0 +1,19 @@
+PokemonTower6F_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 18, 9, 1, POKEMON_TOWER_5F
+ warp 9, 16, 0, POKEMON_TOWER_7F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_MEDIUM, 12, 10, STAY, RIGHT, 1, OPP_CHANNELER, 19
+ object SPRITE_MEDIUM, 9, 5, STAY, DOWN, 2, OPP_CHANNELER, 20
+ object SPRITE_MEDIUM, 16, 5, STAY, LEFT, 3, OPP_CHANNELER, 21
+ object SPRITE_BALL, 6, 8, STAY, NONE, 4, RARE_CANDY
+ object SPRITE_BALL, 14, 14, STAY, NONE, 5, X_ACCURACY
+
+ ; warp-to
+ warp_to 18, 9, POKEMON_TOWER_6F_WIDTH ; POKEMON_TOWER_5F
+ warp_to 9, 16, POKEMON_TOWER_6F_WIDTH ; POKEMON_TOWER_7F
--- /dev/null
+++ b/data/maps/objects/PokemonTower7F.asm
@@ -1,0 +1,16 @@
+PokemonTower7F_Object:
+ db $1 ; border block
+
+ db 1 ; warps
+ warp 9, 16, 1, POKEMON_TOWER_6F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_ROCKET, 9, 11, STAY, RIGHT, 1, OPP_ROCKET, 19
+ object SPRITE_ROCKET, 12, 9, STAY, LEFT, 2, OPP_ROCKET, 20
+ object SPRITE_ROCKET, 9, 7, STAY, RIGHT, 3, OPP_ROCKET, 21
+ object SPRITE_MR_FUJI, 10, 3, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 9, 16, POKEMON_TOWER_7F_WIDTH ; POKEMON_TOWER_6F
--- /dev/null
+++ b/data/maps/objects/PowerPlant.asm
@@ -1,0 +1,30 @@
+PowerPlant_Object:
+ db $2e ; border block
+
+ db 3 ; warps
+ warp 4, 35, 3, -1
+ warp 5, 35, 3, -1
+ warp 0, 11, 3, -1
+
+ db 0 ; signs
+
+ db 14 ; objects
+ object SPRITE_BALL, 9, 20, STAY, NONE, 1, VOLTORB, 40
+ object SPRITE_BALL, 32, 18, STAY, NONE, 2, VOLTORB, 40
+ object SPRITE_BALL, 21, 25, STAY, NONE, 3, VOLTORB, 40
+ object SPRITE_BALL, 25, 18, STAY, NONE, 4, ELECTRODE, 43
+ object SPRITE_BALL, 23, 34, STAY, NONE, 5, VOLTORB, 40
+ object SPRITE_BALL, 26, 28, STAY, NONE, 6, VOLTORB, 40
+ object SPRITE_BALL, 21, 14, STAY, NONE, 7, ELECTRODE, 43
+ object SPRITE_BALL, 37, 32, STAY, NONE, 8, VOLTORB, 40
+ object SPRITE_BIRD, 4, 9, STAY, UP, 9, ZAPDOS, 50
+ object SPRITE_BALL, 7, 25, STAY, NONE, 10, CARBOS
+ object SPRITE_BALL, 28, 3, STAY, NONE, 11, HP_UP
+ object SPRITE_BALL, 34, 3, STAY, NONE, 12, RARE_CANDY
+ object SPRITE_BALL, 26, 32, STAY, NONE, 13, TM_25
+ object SPRITE_BALL, 20, 32, STAY, NONE, 14, TM_33
+
+ ; warp-to
+ warp_to 4, 35, POWER_PLANT_WIDTH
+ warp_to 5, 35, POWER_PLANT_WIDTH
+ warp_to 0, 11, POWER_PLANT_WIDTH
--- /dev/null
+++ b/data/maps/objects/RedsHouse1F.asm
@@ -1,0 +1,18 @@
+RedsHouse1F_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 2, 7, 0, -1 ; exit1
+ warp 3, 7, 0, -1 ; exit2
+ warp 7, 1, 0, REDS_HOUSE_2F ; staircase
+
+ db 1 ; signs
+ sign 3, 1, 2 ; TV
+
+ db 1 ; objects
+ object SPRITE_MOM, 5, 4, STAY, LEFT, 1 ; Mom
+
+ ; warp-to
+ warp_to 2, 7, REDS_HOUSE_1F_WIDTH
+ warp_to 3, 7, REDS_HOUSE_1F_WIDTH
+ warp_to 7, 1, REDS_HOUSE_1F_WIDTH
--- /dev/null
+++ b/data/maps/objects/RedsHouse2F.asm
@@ -1,0 +1,12 @@
+RedsHouse2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 1, 2, REDS_HOUSE_1F
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 7, 1, REDS_HOUSE_2F_WIDTH
--- /dev/null
+++ b/data/maps/objects/RockTunnel1F.asm
@@ -1,0 +1,34 @@
+RockTunnel1F_Object:
+ db $3 ; border block
+
+ db 8 ; warps
+ warp 15, 3, 1, -1
+ warp 15, 0, 1, -1
+ warp 15, 33, 2, -1
+ warp 15, 35, 2, -1
+ warp 37, 3, 0, ROCK_TUNNEL_B1F
+ warp 5, 3, 1, ROCK_TUNNEL_B1F
+ warp 17, 11, 2, ROCK_TUNNEL_B1F
+ warp 37, 17, 3, ROCK_TUNNEL_B1F
+
+ db 1 ; signs
+ sign 11, 29, 8 ; RockTunnel1Text8
+
+ db 7 ; objects
+ object SPRITE_HIKER, 7, 5, STAY, DOWN, 1, OPP_HIKER, 12
+ object SPRITE_HIKER, 5, 16, STAY, DOWN, 2, OPP_HIKER, 13
+ object SPRITE_HIKER, 17, 15, STAY, LEFT, 3, OPP_HIKER, 14
+ object SPRITE_BLACK_HAIR_BOY_2, 23, 8, STAY, LEFT, 4, OPP_POKEMANIAC, 7
+ object SPRITE_LASS, 37, 21, STAY, LEFT, 5, OPP_JR_TRAINER_F, 17
+ object SPRITE_LASS, 22, 24, STAY, DOWN, 6, OPP_JR_TRAINER_F, 18
+ object SPRITE_LASS, 32, 24, STAY, RIGHT, 7, OPP_JR_TRAINER_F, 19
+
+ ; warp-to
+ warp_to 15, 3, ROCK_TUNNEL_1F_WIDTH
+ warp_to 15, 0, ROCK_TUNNEL_1F_WIDTH
+ warp_to 15, 33, ROCK_TUNNEL_1F_WIDTH
+ warp_to 15, 35, ROCK_TUNNEL_1F_WIDTH
+ warp_to 37, 3, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
+ warp_to 5, 3, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
+ warp_to 17, 11, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
+ warp_to 37, 17, ROCK_TUNNEL_1F_WIDTH ; ROCK_TUNNEL_B1F
--- /dev/null
+++ b/data/maps/objects/RockTunnelB1F.asm
@@ -1,0 +1,26 @@
+RockTunnelB1F_Object:
+ db $3 ; border block
+
+ db 4 ; warps
+ warp 33, 25, 4, ROCK_TUNNEL_1F
+ warp 27, 3, 5, ROCK_TUNNEL_1F
+ warp 23, 11, 6, ROCK_TUNNEL_1F
+ warp 3, 3, 7, ROCK_TUNNEL_1F
+
+ db 0 ; signs
+
+ db 8 ; objects
+ object SPRITE_LASS, 11, 13, STAY, DOWN, 1, OPP_JR_TRAINER_F, 9
+ object SPRITE_HIKER, 6, 10, STAY, DOWN, 2, OPP_HIKER, 9
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 5, STAY, DOWN, 3, OPP_POKEMANIAC, 3
+ object SPRITE_BLACK_HAIR_BOY_2, 20, 21, STAY, RIGHT, 4, OPP_POKEMANIAC, 4
+ object SPRITE_HIKER, 30, 10, STAY, DOWN, 5, OPP_HIKER, 10
+ object SPRITE_LASS, 14, 28, STAY, RIGHT, 6, OPP_JR_TRAINER_F, 10
+ object SPRITE_HIKER, 33, 5, STAY, RIGHT, 7, OPP_HIKER, 11
+ object SPRITE_BLACK_HAIR_BOY_2, 26, 30, STAY, DOWN, 8, OPP_POKEMANIAC, 5
+
+ ; warp-to
+ warp_to 33, 25, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
+ warp_to 27, 3, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
+ warp_to 23, 11, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
+ warp_to 3, 3, ROCK_TUNNEL_B1F_WIDTH ; ROCK_TUNNEL_1F
--- /dev/null
+++ b/data/maps/objects/RockTunnelPokecenter.asm
@@ -1,0 +1,18 @@
+RockTunnelPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 0, -1
+ warp 4, 7, 0, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_GENTLEMAN, 7, 3, WALK, 2, 2 ; person
+ object SPRITE_FISHER2, 2, 5, STAY, NONE, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, ROCK_TUNNEL_POKECENTER_WIDTH
+ warp_to 4, 7, ROCK_TUNNEL_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/RocketHideoutB1F.asm
@@ -1,0 +1,27 @@
+RocketHideoutB1F_Object:
+ db $2e ; border block
+
+ db 5 ; warps
+ warp 23, 2, 0, ROCKET_HIDEOUT_B2F
+ warp 21, 2, 2, GAME_CORNER
+ warp 24, 19, 0, ROCKET_HIDEOUT_ELEVATOR
+ warp 21, 24, 3, ROCKET_HIDEOUT_B2F
+ warp 25, 19, 1, ROCKET_HIDEOUT_ELEVATOR
+
+ db 0 ; signs
+
+ db 7 ; objects
+ object SPRITE_ROCKET, 26, 8, STAY, LEFT, 1, OPP_ROCKET, 8
+ object SPRITE_ROCKET, 12, 6, STAY, RIGHT, 2, OPP_ROCKET, 9
+ object SPRITE_ROCKET, 18, 17, STAY, DOWN, 3, OPP_ROCKET, 10
+ object SPRITE_ROCKET, 15, 25, STAY, RIGHT, 4, OPP_ROCKET, 11
+ object SPRITE_ROCKET, 28, 18, STAY, LEFT, 5, OPP_ROCKET, 12
+ object SPRITE_BALL, 11, 14, STAY, NONE, 6, ESCAPE_ROPE
+ object SPRITE_BALL, 9, 17, STAY, NONE, 7, HYPER_POTION
+
+ ; warp-to
+ warp_to 23, 2, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_B2F
+ warp_to 21, 2, ROCKET_HIDEOUT_B1F_WIDTH ; GAME_CORNER
+ warp_to 24, 19, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
+ warp_to 21, 24, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_B2F
+ warp_to 25, 19, ROCKET_HIDEOUT_B1F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/RocketHideoutB2F.asm
@@ -1,0 +1,25 @@
+RocketHideoutB2F_Object:
+ db $2e ; border block
+
+ db 5 ; warps
+ warp 27, 8, 0, ROCKET_HIDEOUT_B1F
+ warp 21, 8, 0, ROCKET_HIDEOUT_B3F
+ warp 24, 19, 0, ROCKET_HIDEOUT_ELEVATOR
+ warp 21, 22, 3, ROCKET_HIDEOUT_B1F
+ warp 25, 19, 1, ROCKET_HIDEOUT_ELEVATOR
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_ROCKET, 20, 12, STAY, DOWN, 1, OPP_ROCKET, 13
+ object SPRITE_BALL, 1, 11, STAY, NONE, 2, MOON_STONE
+ object SPRITE_BALL, 16, 8, STAY, NONE, 3, NUGGET
+ object SPRITE_BALL, 6, 12, STAY, NONE, 4, TM_07
+ object SPRITE_BALL, 3, 21, STAY, NONE, 5, SUPER_POTION
+
+ ; warp-to
+ warp_to 27, 8, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_B1F
+ warp_to 21, 8, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_B3F
+ warp_to 24, 19, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
+ warp_to 21, 22, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_B1F
+ warp_to 25, 19, ROCKET_HIDEOUT_B2F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/RocketHideoutB3F.asm
@@ -1,0 +1,18 @@
+RocketHideoutB3F_Object:
+ db $2e ; border block
+
+ db 2 ; warps
+ warp 25, 6, 1, ROCKET_HIDEOUT_B2F
+ warp 19, 18, 0, ROCKET_HIDEOUT_B4F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_ROCKET, 10, 22, STAY, RIGHT, 1, OPP_ROCKET, 14
+ object SPRITE_ROCKET, 26, 12, STAY, UP, 2, OPP_ROCKET, 15
+ object SPRITE_BALL, 26, 17, STAY, NONE, 3, TM_10
+ object SPRITE_BALL, 20, 14, STAY, NONE, 4, RARE_CANDY
+
+ ; warp-to
+ warp_to 25, 6, ROCKET_HIDEOUT_B3F_WIDTH ; ROCKET_HIDEOUT_B2F
+ warp_to 19, 18, ROCKET_HIDEOUT_B3F_WIDTH ; ROCKET_HIDEOUT_B4F
--- /dev/null
+++ b/data/maps/objects/RocketHideoutB4F.asm
@@ -1,0 +1,25 @@
+RocketHideoutB4F_Object:
+ db $2e ; border block
+
+ db 3 ; warps
+ warp 19, 10, 1, ROCKET_HIDEOUT_B3F
+ warp 24, 15, 0, ROCKET_HIDEOUT_ELEVATOR
+ warp 25, 15, 1, ROCKET_HIDEOUT_ELEVATOR
+
+ db 0 ; signs
+
+ db 9 ; objects
+ object SPRITE_GIOVANNI, 25, 3, STAY, DOWN, 1, OPP_GIOVANNI, 1
+ object SPRITE_ROCKET, 23, 12, STAY, DOWN, 2, OPP_ROCKET, 16
+ object SPRITE_ROCKET, 26, 12, STAY, DOWN, 3, OPP_ROCKET, 17
+ object SPRITE_ROCKET, 11, 2, STAY, DOWN, 4, OPP_ROCKET, 18
+ object SPRITE_BALL, 10, 12, STAY, NONE, 5, HP_UP
+ object SPRITE_BALL, 9, 4, STAY, NONE, 6, TM_02
+ object SPRITE_BALL, 12, 20, STAY, NONE, 7, IRON
+ object SPRITE_BALL, 25, 2, STAY, NONE, 8, SILPH_SCOPE
+ object SPRITE_BALL, 10, 2, STAY, NONE, 9, LIFT_KEY
+
+ ; warp-to
+ warp_to 19, 10, ROCKET_HIDEOUT_B4F_WIDTH ; ROCKET_HIDEOUT_B3F
+ warp_to 24, 15, ROCKET_HIDEOUT_B4F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
+ warp_to 25, 15, ROCKET_HIDEOUT_B4F_WIDTH ; ROCKET_HIDEOUT_ELEVATOR
--- /dev/null
+++ b/data/maps/objects/RocketHideoutElevator.asm
@@ -1,0 +1,15 @@
+RocketHideoutElevator_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 2, 1, 2, ROCKET_HIDEOUT_B1F
+ warp 3, 1, 4, ROCKET_HIDEOUT_B1F
+
+ db 1 ; signs
+ sign 1, 1, 1 ; RocketHideoutElevatorText1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 2, 1, ROCKET_HIDEOUT_ELEVATOR_WIDTH ; ROCKET_HIDEOUT_B1F
+ warp_to 3, 1, ROCKET_HIDEOUT_ELEVATOR_WIDTH ; ROCKET_HIDEOUT_B1F
--- /dev/null
+++ b/data/maps/objects/Route1.asm
@@ -1,0 +1,14 @@
+Route1_Object:
+ db $b ; border block
+
+ db 0 ; warps
+
+ db 1 ; signs
+ sign 9, 27, 3 ; Route1Text3
+
+ db 2 ; objects
+ object SPRITE_BUG_CATCHER, 5, 24, WALK, 1, 1 ; person
+ object SPRITE_BUG_CATCHER, 15, 13, WALK, 2, 2 ; person
+
+ ; warp-to (unused)
+ warp_to 2, 7, 4
--- /dev/null
+++ b/data/maps/objects/Route10.asm
@@ -1,0 +1,28 @@
+Route10_Object:
+ db $2c ; border block
+
+ db 4 ; warps
+ warp 11, 19, 0, ROCK_TUNNEL_POKECENTER
+ warp 8, 17, 0, ROCK_TUNNEL_1F
+ warp 8, 53, 2, ROCK_TUNNEL_1F
+ warp 6, 39, 0, POWER_PLANT
+
+ db 4 ; signs
+ sign 7, 19, 7 ; Route10Text7
+ sign 12, 19, 8 ; PokeCenterSignText
+ sign 9, 55, 9 ; Route10Text9
+ sign 5, 41, 10 ; Route10Text10
+
+ db 6 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 10, 44, STAY, LEFT, 1, OPP_POKEMANIAC, 1
+ object SPRITE_HIKER, 3, 57, STAY, UP, 2, OPP_HIKER, 7
+ object SPRITE_BLACK_HAIR_BOY_2, 14, 64, STAY, LEFT, 3, OPP_POKEMANIAC, 2
+ object SPRITE_LASS, 7, 25, STAY, LEFT, 4, OPP_JR_TRAINER_F, 7
+ object SPRITE_HIKER, 3, 61, STAY, DOWN, 5, OPP_HIKER, 8
+ object SPRITE_LASS, 7, 54, STAY, DOWN, 6, OPP_JR_TRAINER_F, 8
+
+ ; warp-to
+ warp_to 11, 19, ROUTE_10_WIDTH ; ROCK_TUNNEL_POKECENTER
+ warp_to 8, 17, ROUTE_10_WIDTH ; ROCK_TUNNEL_1F
+ warp_to 8, 53, ROUTE_10_WIDTH ; ROCK_TUNNEL_1F
+ warp_to 6, 39, ROUTE_10_WIDTH ; POWER_PLANT
--- /dev/null
+++ b/data/maps/objects/Route11.asm
@@ -1,0 +1,31 @@
+Route11_Object:
+ db $f ; border block
+
+ db 5 ; warps
+ warp 49, 8, 0, ROUTE_11_GATE_1F
+ warp 49, 9, 1, ROUTE_11_GATE_1F
+ warp 58, 8, 2, ROUTE_11_GATE_1F
+ warp 58, 9, 3, ROUTE_11_GATE_1F
+ warp 4, 5, 0, DIGLETTS_CAVE_ROUTE_11
+
+ db 1 ; signs
+ sign 1, 5, 11 ; Route11Text11
+
+ db 10 ; objects
+ object SPRITE_GAMBLER, 10, 14, STAY, DOWN, 1, OPP_GAMBLER, 1
+ object SPRITE_GAMBLER, 26, 9, STAY, DOWN, 2, OPP_GAMBLER, 2
+ object SPRITE_BUG_CATCHER, 13, 5, STAY, LEFT, 3, OPP_YOUNGSTER, 9
+ object SPRITE_BLACK_HAIR_BOY_2, 36, 11, STAY, DOWN, 4, OPP_ENGINEER, 2
+ object SPRITE_BUG_CATCHER, 22, 4, STAY, UP, 5, OPP_YOUNGSTER, 10
+ object SPRITE_GAMBLER, 45, 7, STAY, DOWN, 6, OPP_GAMBLER, 3
+ object SPRITE_GAMBLER, 33, 3, STAY, UP, 7, OPP_GAMBLER, 4
+ object SPRITE_BUG_CATCHER, 43, 5, STAY, RIGHT, 8, OPP_YOUNGSTER, 11
+ object SPRITE_BLACK_HAIR_BOY_2, 45, 16, STAY, LEFT, 9, OPP_ENGINEER, 3
+ object SPRITE_BUG_CATCHER, 22, 12, STAY, UP, 10, OPP_YOUNGSTER, 12
+
+ ; warp-to
+ warp_to 49, 8, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
+ warp_to 49, 9, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
+ warp_to 58, 8, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
+ warp_to 58, 9, ROUTE_11_WIDTH ; ROUTE_11_GATE_1F
+ warp_to 4, 5, ROUTE_11_WIDTH ; DIGLETTS_CAVE_ROUTE_11
--- /dev/null
+++ b/data/maps/objects/Route11Gate1F.asm
@@ -1,0 +1,21 @@
+Route11Gate1F_Object:
+ db $a ; border block
+
+ db 5 ; warps
+ warp 0, 4, 0, -1
+ warp 0, 5, 1, -1
+ warp 7, 4, 2, -1
+ warp 7, 5, 3, -1
+ warp 6, 8, 0, ROUTE_11_GATE_2F
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 4, 1, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 0, 4, ROUTE_11_GATE_1F_WIDTH
+ warp_to 0, 5, ROUTE_11_GATE_1F_WIDTH
+ warp_to 7, 4, ROUTE_11_GATE_1F_WIDTH
+ warp_to 7, 5, ROUTE_11_GATE_1F_WIDTH
+ warp_to 6, 8, ROUTE_11_GATE_1F_WIDTH ; ROUTE_11_GATE_2F
--- /dev/null
+++ b/data/maps/objects/Route11Gate2F.asm
@@ -1,0 +1,16 @@
+Route11Gate2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 7, 4, ROUTE_11_GATE_1F
+
+ db 2 ; signs
+ sign 1, 2, 3 ; Route11GateUpstairsText3
+ sign 6, 2, 4 ; Route11GateUpstairsText4
+
+ db 2 ; objects
+ object SPRITE_BUG_CATCHER, 4, 2, WALK, 2, 1 ; person
+ object SPRITE_OAK_AIDE, 2, 6, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 7, 7, ROUTE_11_GATE_2F_WIDTH ; ROUTE_11_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route12.asm
@@ -1,0 +1,30 @@
+Route12_Object:
+ db $43 ; border block
+
+ db 4 ; warps
+ warp 10, 15, 0, ROUTE_12_GATE_1F
+ warp 11, 15, 1, ROUTE_12_GATE_1F
+ warp 10, 21, 2, ROUTE_12_GATE_1F
+ warp 11, 77, 0, ROUTE_12_SUPER_ROD_HOUSE
+
+ db 2 ; signs
+ sign 13, 13, 11 ; Route12Text11
+ sign 11, 63, 12 ; Route12Text12
+
+ db 10 ; objects
+ object SPRITE_SNORLAX, 10, 62, STAY, DOWN, 1 ; person
+ object SPRITE_FISHER2, 14, 31, STAY, LEFT, 2, OPP_FISHER, 3
+ object SPRITE_FISHER2, 5, 39, STAY, UP, 3, OPP_FISHER, 4
+ object SPRITE_BLACK_HAIR_BOY_1, 11, 92, STAY, LEFT, 4, OPP_JR_TRAINER_M, 9
+ object SPRITE_BLACK_HAIR_BOY_2, 14, 76, STAY, UP, 5, OPP_ROCKER, 2
+ object SPRITE_FISHER2, 12, 40, STAY, LEFT, 6, OPP_FISHER, 5
+ object SPRITE_FISHER2, 9, 52, STAY, RIGHT, 7, OPP_FISHER, 6
+ object SPRITE_FISHER2, 6, 87, STAY, DOWN, 8, OPP_FISHER, 11
+ object SPRITE_BALL, 14, 35, STAY, NONE, 9, TM_16
+ object SPRITE_BALL, 5, 89, STAY, NONE, 10, IRON
+
+ ; warp-to
+ warp_to 10, 15, ROUTE_12_WIDTH ; ROUTE_12_GATE_1F
+ warp_to 11, 15, ROUTE_12_WIDTH ; ROUTE_12_GATE_1F
+ warp_to 10, 21, ROUTE_12_WIDTH ; ROUTE_12_GATE_1F
+ warp_to 11, 77, ROUTE_12_WIDTH ; ROUTE_12_SUPER_ROD_HOUSE
--- /dev/null
+++ b/data/maps/objects/Route12Gate1F.asm
@@ -1,0 +1,21 @@
+Route12Gate1F_Object:
+ db $a ; border block
+
+ db 5 ; warps
+ warp 4, 0, 0, -1
+ warp 5, 0, 1, -1
+ warp 4, 7, 2, -1
+ warp 5, 7, 2, -1
+ warp 8, 6, 0, ROUTE_12_GATE_2F
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 1, 3, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 4, 0, ROUTE_12_GATE_1F_WIDTH
+ warp_to 5, 0, ROUTE_12_GATE_1F_WIDTH
+ warp_to 4, 7, ROUTE_12_GATE_1F_WIDTH
+ warp_to 5, 7, ROUTE_12_GATE_1F_WIDTH
+ warp_to 8, 6, ROUTE_12_GATE_1F_WIDTH ; ROUTE_12_GATE_2F
--- /dev/null
+++ b/data/maps/objects/Route12Gate2F.asm
@@ -1,0 +1,15 @@
+Route12Gate2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 7, 4, ROUTE_12_GATE_1F
+
+ db 2 ; signs
+ sign 1, 2, 2 ; Route12GateUpstairsText2
+ sign 6, 2, 3 ; Route12GateUpstairsText3
+
+ db 1 ; objects
+ object SPRITE_BRUNETTE_GIRL, 3, 4, WALK, 1, 1 ; person
+
+ ; warp-to
+ warp_to 7, 7, ROUTE_12_GATE_2F_WIDTH ; ROUTE_12_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route12SuperRodHouse.asm
@@ -1,0 +1,15 @@
+Route12SuperRodHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 3, -1
+ warp 3, 7, 3, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FISHER, 2, 4, STAY, RIGHT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, ROUTE_12_SUPER_ROD_HOUSE_WIDTH
+ warp_to 3, 7, ROUTE_12_SUPER_ROD_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route13.asm
@@ -1,0 +1,21 @@
+Route13_Object:
+ db $43 ; border block
+
+ db 0 ; warps
+
+ db 3 ; signs
+ sign 15, 13, 11 ; Route13Text11
+ sign 33, 5, 12 ; Route13Text12
+ sign 31, 11, 13 ; Route13Text13
+
+ db 10 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 49, 10, STAY, RIGHT, 1, OPP_BIRD_KEEPER, 1
+ object SPRITE_LASS, 48, 10, STAY, DOWN, 2, OPP_JR_TRAINER_F, 12
+ object SPRITE_LASS, 27, 9, STAY, DOWN, 3, OPP_JR_TRAINER_F, 13
+ object SPRITE_LASS, 23, 10, STAY, LEFT, 4, OPP_JR_TRAINER_F, 14
+ object SPRITE_LASS, 50, 5, STAY, DOWN, 5, OPP_JR_TRAINER_F, 15
+ object SPRITE_BLACK_HAIR_BOY_1, 12, 4, STAY, RIGHT, 6, OPP_BIRD_KEEPER, 2
+ object SPRITE_FOULARD_WOMAN, 33, 6, STAY, DOWN, 7, OPP_BEAUTY, 4
+ object SPRITE_FOULARD_WOMAN, 32, 6, STAY, DOWN, 8, OPP_BEAUTY, 5
+ object SPRITE_BIKER, 10, 7, STAY, UP, 9, OPP_BIKER, 1
+ object SPRITE_BLACK_HAIR_BOY_1, 7, 13, STAY, UP, 10, OPP_BIRD_KEEPER, 3
--- /dev/null
+++ b/data/maps/objects/Route14.asm
@@ -1,0 +1,19 @@
+Route14_Object:
+ db $43 ; border block
+
+ db 0 ; warps
+
+ db 1 ; signs
+ sign 17, 13, 11 ; Route14Text11
+
+ db 10 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 4, 4, STAY, DOWN, 1, OPP_BIRD_KEEPER, 14
+ object SPRITE_BLACK_HAIR_BOY_1, 15, 6, STAY, DOWN, 2, OPP_BIRD_KEEPER, 15
+ object SPRITE_BLACK_HAIR_BOY_1, 12, 11, STAY, DOWN, 3, OPP_BIRD_KEEPER, 16
+ object SPRITE_BLACK_HAIR_BOY_1, 14, 15, STAY, UP, 4, OPP_BIRD_KEEPER, 17
+ object SPRITE_BLACK_HAIR_BOY_1, 15, 31, STAY, LEFT, 5, OPP_BIRD_KEEPER, 4
+ object SPRITE_BLACK_HAIR_BOY_1, 6, 49, STAY, UP, 6, OPP_BIRD_KEEPER, 5
+ object SPRITE_BIKER, 5, 39, STAY, DOWN, 7, OPP_BIKER, 13
+ object SPRITE_BIKER, 4, 30, STAY, RIGHT, 8, OPP_BIKER, 14
+ object SPRITE_BIKER, 15, 30, STAY, LEFT, 9, OPP_BIKER, 15
+ object SPRITE_BIKER, 4, 31, STAY, RIGHT, 10, OPP_BIKER, 2
--- /dev/null
+++ b/data/maps/objects/Route15.asm
@@ -1,0 +1,30 @@
+Route15_Object:
+ db $43 ; border block
+
+ db 4 ; warps
+ warp 7, 8, 0, ROUTE_15_GATE_1F
+ warp 7, 9, 1, ROUTE_15_GATE_1F
+ warp 14, 8, 2, ROUTE_15_GATE_1F
+ warp 14, 9, 3, ROUTE_15_GATE_1F
+
+ db 1 ; signs
+ sign 39, 9, 12 ; Route15Text12
+
+ db 11 ; objects
+ object SPRITE_LASS, 41, 11, STAY, DOWN, 1, OPP_JR_TRAINER_F, 20
+ object SPRITE_LASS, 53, 10, STAY, LEFT, 2, OPP_JR_TRAINER_F, 21
+ object SPRITE_BLACK_HAIR_BOY_1, 31, 13, STAY, UP, 3, OPP_BIRD_KEEPER, 6
+ object SPRITE_BLACK_HAIR_BOY_1, 35, 13, STAY, UP, 4, OPP_BIRD_KEEPER, 7
+ object SPRITE_FOULARD_WOMAN, 53, 11, STAY, DOWN, 5, OPP_BEAUTY, 9
+ object SPRITE_FOULARD_WOMAN, 41, 10, STAY, RIGHT, 6, OPP_BEAUTY, 10
+ object SPRITE_BIKER, 48, 10, STAY, DOWN, 7, OPP_BIKER, 3
+ object SPRITE_BIKER, 46, 10, STAY, DOWN, 8, OPP_BIKER, 4
+ object SPRITE_LASS, 37, 5, STAY, RIGHT, 9, OPP_JR_TRAINER_F, 22
+ object SPRITE_LASS, 18, 13, STAY, UP, 10, OPP_JR_TRAINER_F, 23
+ object SPRITE_BALL, 18, 5, STAY, NONE, 11, TM_20
+
+ ; warp-to
+ warp_to 7, 8, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
+ warp_to 7, 9, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
+ warp_to 14, 8, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
+ warp_to 14, 9, ROUTE_15_WIDTH ; ROUTE_15_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route15Gate1F.asm
@@ -1,0 +1,21 @@
+Route15Gate1F_Object:
+ db $a ; border block
+
+ db 5 ; warps
+ warp 0, 4, 0, -1
+ warp 0, 5, 1, -1
+ warp 7, 4, 2, -1
+ warp 7, 5, 3, -1
+ warp 6, 8, 0, ROUTE_15_GATE_2F
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 4, 1, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 0, 4, ROUTE_15_GATE_1F_WIDTH
+ warp_to 0, 5, ROUTE_15_GATE_1F_WIDTH
+ warp_to 7, 4, ROUTE_15_GATE_1F_WIDTH
+ warp_to 7, 5, ROUTE_15_GATE_1F_WIDTH
+ warp_to 6, 8, ROUTE_15_GATE_1F_WIDTH ; ROUTE_15_GATE_2F
--- /dev/null
+++ b/data/maps/objects/Route15Gate2F.asm
@@ -1,0 +1,14 @@
+Route15Gate2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 7, 4, ROUTE_15_GATE_1F
+
+ db 1 ; signs
+ sign 6, 2, 2 ; Route15GateUpstairsText2
+
+ db 1 ; objects
+ object SPRITE_OAK_AIDE, 4, 2, STAY, DOWN, 1
+
+ ; warp-to
+ warp_to 7, 7, ROUTE_15_GATE_2F_WIDTH ; ROUTE_15_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route16.asm
@@ -1,0 +1,37 @@
+Route16_Object:
+ db $f ; border block
+
+ db 9 ; warps
+ warp 17, 10, 0, ROUTE_16_GATE_1F
+ warp 17, 11, 1, ROUTE_16_GATE_1F
+ warp 24, 10, 2, ROUTE_16_GATE_1F
+ warp 24, 11, 3, ROUTE_16_GATE_1F
+ warp 17, 4, 4, ROUTE_16_GATE_1F
+ warp 17, 5, 5, ROUTE_16_GATE_1F
+ warp 24, 4, 6, ROUTE_16_GATE_1F
+ warp 24, 5, 7, ROUTE_16_GATE_1F
+ warp 7, 5, 0, ROUTE_16_FLY_HOUSE
+
+ db 2 ; signs
+ sign 27, 11, 8 ; Route16Text8
+ sign 5, 17, 9 ; Route16Text9
+
+ db 7 ; objects
+ object SPRITE_BIKER, 17, 12, STAY, LEFT, 1, OPP_BIKER, 5
+ object SPRITE_BIKER, 14, 13, STAY, RIGHT, 2, OPP_CUE_BALL, 1
+ object SPRITE_BIKER, 11, 12, STAY, UP, 3, OPP_CUE_BALL, 2
+ object SPRITE_BIKER, 9, 11, STAY, LEFT, 4, OPP_BIKER, 6
+ object SPRITE_BIKER, 6, 10, STAY, RIGHT, 5, OPP_CUE_BALL, 3
+ object SPRITE_BIKER, 3, 12, STAY, RIGHT, 6, OPP_BIKER, 7
+ object SPRITE_SNORLAX, 26, 10, STAY, DOWN, 7 ; person
+
+ ; warp-to
+ warp_to 17, 10, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 17, 11, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 24, 10, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 24, 11, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 17, 4, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 17, 5, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 24, 4, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 24, 5, ROUTE_16_WIDTH ; ROUTE_16_GATE_1F
+ warp_to 7, 5, ROUTE_16_WIDTH ; ROUTE_16_FLY_HOUSE
--- /dev/null
+++ b/data/maps/objects/Route16FlyHouse.asm
@@ -1,0 +1,16 @@
+Route16FlyHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 8, -1
+ warp 3, 7, 8, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BRUNETTE_GIRL, 2, 3, STAY, RIGHT, 1 ; person
+ object SPRITE_BIRD, 6, 4, WALK, 0, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, ROUTE_16_FLY_HOUSE_WIDTH
+ warp_to 3, 7, ROUTE_16_FLY_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route16Gate1F.asm
@@ -1,0 +1,30 @@
+Route16Gate1F_Object:
+ db $a ; border block
+
+ db 9 ; warps
+ warp 0, 8, 0, -1
+ warp 0, 9, 1, -1
+ warp 7, 8, 2, -1
+ warp 7, 9, 2, -1
+ warp 0, 2, 4, -1
+ warp 0, 3, 5, -1
+ warp 7, 2, 6, -1
+ warp 7, 3, 7, -1
+ warp 6, 12, 0, ROUTE_16_GATE_2F
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_GUARD, 4, 5, STAY, DOWN, 1 ; person
+ object SPRITE_GAMBLER, 4, 3, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 0, 8, ROUTE_16_GATE_1F_WIDTH
+ warp_to 0, 9, ROUTE_16_GATE_1F_WIDTH
+ warp_to 7, 8, ROUTE_16_GATE_1F_WIDTH
+ warp_to 7, 9, ROUTE_16_GATE_1F_WIDTH
+ warp_to 0, 2, ROUTE_16_GATE_1F_WIDTH
+ warp_to 0, 3, ROUTE_16_GATE_1F_WIDTH
+ warp_to 7, 2, ROUTE_16_GATE_1F_WIDTH
+ warp_to 7, 3, ROUTE_16_GATE_1F_WIDTH
+ warp_to 6, 12, ROUTE_16_GATE_1F_WIDTH ; ROUTE_16_GATE_2F
--- /dev/null
+++ b/data/maps/objects/Route16Gate2F.asm
@@ -1,0 +1,16 @@
+Route16Gate2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 7, 8, ROUTE_16_GATE_1F
+
+ db 2 ; signs
+ sign 1, 2, 3 ; Route16GateUpstairsText3
+ sign 6, 2, 4 ; Route16GateUpstairsText4
+
+ db 2 ; objects
+ object SPRITE_YOUNG_BOY, 4, 2, STAY, NONE, 1 ; person
+ object SPRITE_LITTLE_GIRL, 2, 5, WALK, 2, 2 ; person
+
+ ; warp-to
+ warp_to 7, 7, ROUTE_16_GATE_2F_WIDTH ; ROUTE_16_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route17.asm
@@ -1,0 +1,24 @@
+Route17_Object:
+ db $43 ; border block
+
+ db 0 ; warps
+
+ db 6 ; signs
+ sign 9, 51, 11 ; Route17Text11
+ sign 9, 63, 12 ; Route17Text12
+ sign 9, 75, 13 ; Route17Text13
+ sign 9, 87, 14 ; Route17Text14
+ sign 9, 111, 15 ; Route17Text15
+ sign 9, 141, 16 ; Route17Text16
+
+ db 10 ; objects
+ object SPRITE_BIKER, 12, 19, STAY, LEFT, 1, OPP_CUE_BALL, 4
+ object SPRITE_BIKER, 11, 16, STAY, RIGHT, 2, OPP_CUE_BALL, 5
+ object SPRITE_BIKER, 4, 18, STAY, UP, 3, OPP_BIKER, 8
+ object SPRITE_BIKER, 7, 32, STAY, LEFT, 4, OPP_BIKER, 9
+ object SPRITE_BIKER, 14, 34, STAY, RIGHT, 5, OPP_BIKER, 10
+ object SPRITE_BIKER, 17, 58, STAY, LEFT, 6, OPP_CUE_BALL, 6
+ object SPRITE_BIKER, 2, 68, STAY, RIGHT, 7, OPP_CUE_BALL, 7
+ object SPRITE_BIKER, 14, 98, STAY, RIGHT, 8, OPP_CUE_BALL, 8
+ object SPRITE_BIKER, 5, 98, STAY, LEFT, 9, OPP_BIKER, 11
+ object SPRITE_BIKER, 10, 118, STAY, DOWN, 10, OPP_BIKER, 12
--- /dev/null
+++ b/data/maps/objects/Route18.asm
@@ -1,0 +1,23 @@
+Route18_Object:
+ db $43 ; border block
+
+ db 4 ; warps
+ warp 33, 8, 0, ROUTE_18_GATE_1F
+ warp 33, 9, 1, ROUTE_18_GATE_1F
+ warp 40, 8, 2, ROUTE_18_GATE_1F
+ warp 40, 9, 3, ROUTE_18_GATE_1F
+
+ db 2 ; signs
+ sign 43, 7, 4 ; Route18Text4
+ sign 33, 5, 5 ; Route18Text5
+
+ db 3 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 36, 11, STAY, RIGHT, 1, OPP_BIRD_KEEPER, 8
+ object SPRITE_BLACK_HAIR_BOY_1, 40, 15, STAY, LEFT, 2, OPP_BIRD_KEEPER, 9
+ object SPRITE_BLACK_HAIR_BOY_1, 42, 13, STAY, LEFT, 3, OPP_BIRD_KEEPER, 10
+
+ ; warp-to
+ warp_to 33, 8, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
+ warp_to 33, 9, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
+ warp_to 40, 8, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
+ warp_to 40, 9, ROUTE_18_WIDTH ; ROUTE_18_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route18Gate1F.asm
@@ -1,0 +1,21 @@
+Route18Gate1F_Object:
+ db $a ; border block
+
+ db 5 ; warps
+ warp 0, 4, 0, -1
+ warp 0, 5, 1, -1
+ warp 7, 4, 2, -1
+ warp 7, 5, 3, -1
+ warp 6, 8, 0, ROUTE_18_GATE_2F
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 4, 1, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 0, 4, ROUTE_18_GATE_1F_WIDTH
+ warp_to 0, 5, ROUTE_18_GATE_1F_WIDTH
+ warp_to 7, 4, ROUTE_18_GATE_1F_WIDTH
+ warp_to 7, 5, ROUTE_18_GATE_1F_WIDTH
+ warp_to 6, 8, ROUTE_18_GATE_1F_WIDTH ; ROUTE_18_GATE_2F
--- /dev/null
+++ b/data/maps/objects/Route18Gate2F.asm
@@ -1,0 +1,15 @@
+Route18Gate2F_Object:
+ db $a ; border block
+
+ db 1 ; warps
+ warp 7, 7, 4, ROUTE_18_GATE_1F
+
+ db 2 ; signs
+ sign 1, 2, 2 ; Route18GateUpstairsText2
+ sign 6, 2, 3 ; Route18GateUpstairsText3
+
+ db 1 ; objects
+ object SPRITE_BUG_CATCHER, 4, 2, WALK, 2, 1 ; person
+
+ ; warp-to
+ warp_to 7, 7, ROUTE_18_GATE_2F_WIDTH ; ROUTE_18_GATE_1F
--- /dev/null
+++ b/data/maps/objects/Route19.asm
@@ -1,0 +1,21 @@
+Route19_Object:
+ db $43 ; border block
+
+ db 0 ; warps
+
+ db 1 ; signs
+ sign 11, 9, 11 ; Route19Text11
+
+ db 10 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 8, 7, STAY, LEFT, 1, OPP_SWIMMER, 2
+ object SPRITE_BLACK_HAIR_BOY_1, 13, 7, STAY, LEFT, 2, OPP_SWIMMER, 3
+ object SPRITE_SWIMMER, 13, 25, STAY, LEFT, 3, OPP_SWIMMER, 4
+ object SPRITE_SWIMMER, 4, 27, STAY, RIGHT, 4, OPP_SWIMMER, 5
+ object SPRITE_SWIMMER, 16, 31, STAY, UP, 5, OPP_SWIMMER, 6
+ object SPRITE_SWIMMER, 9, 11, STAY, DOWN, 6, OPP_SWIMMER, 7
+ object SPRITE_SWIMMER, 8, 43, STAY, LEFT, 7, OPP_BEAUTY, 12
+ object SPRITE_SWIMMER, 11, 43, STAY, RIGHT, 8, OPP_BEAUTY, 13
+ object SPRITE_SWIMMER, 9, 42, STAY, UP, 9, OPP_SWIMMER, 8
+ object SPRITE_SWIMMER, 10, 44, STAY, DOWN, 10, OPP_BEAUTY, 14
+
+ ; warp-to
--- /dev/null
+++ b/data/maps/objects/Route2.asm
@@ -1,0 +1,33 @@
+Route2_Object:
+ db $f ; border block
+
+ db 6 ; warps
+ warp 12, 9, 0, DIGLETTS_CAVE_ROUTE_2
+ warp 3, 11, 1, VIRIDIAN_FOREST_NORTH_GATE
+ warp 15, 19, 0, ROUTE_2_TRADE_HOUSE
+ warp 16, 35, 1, ROUTE_2_GATE
+ warp 15, 39, 2, ROUTE_2_GATE
+ warp 3, 43, 2, VIRIDIAN_FOREST_SOUTH_GATE
+
+ db 2 ; signs
+ sign 5, 65, 3 ; Route2Text3
+ sign 11, 11, 4 ; Route2Text4
+
+ db 2 ; objects
+ object SPRITE_BALL, 13, 54, STAY, NONE, 1, MOON_STONE
+ object SPRITE_BALL, 13, 45, STAY, NONE, 2, HP_UP
+
+ ; warp-to
+ warp_to 12, 9, ROUTE_2_WIDTH ; DIGLETTS_CAVE_ROUTE_2
+ warp_to 3, 11, ROUTE_2_WIDTH ; VIRIDIAN_FOREST_NORTH_GATE
+ warp_to 15, 19, ROUTE_2_WIDTH ; ROUTE_2_TRADE_HOUSE
+ warp_to 16, 35, ROUTE_2_WIDTH ; ROUTE_2_GATE
+ warp_to 15, 39, ROUTE_2_WIDTH ; ROUTE_2_GATE
+ warp_to 3, 43, ROUTE_2_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
+
+ ; unused
+ warp_to 2, 7, 4
+ db $12, $c7, $9, $7
+ warp_to 2, 7, 4
+ warp_to 2, 7, 4
+ warp_to 2, 7, 4
--- /dev/null
+++ b/data/maps/objects/Route20.asm
@@ -1,0 +1,26 @@
+Route20_Object:
+ db $43 ; border block
+
+ db 2 ; warps
+ warp 48, 5, 0, SEAFOAM_ISLANDS_1F
+ warp 58, 9, 2, SEAFOAM_ISLANDS_1F
+
+ db 2 ; signs
+ sign 51, 7, 11 ; Route20Text11
+ sign 57, 11, 12 ; Route20Text12
+
+ db 10 ; objects
+ object SPRITE_SWIMMER, 87, 8, STAY, UP, 1, OPP_SWIMMER, 9
+ object SPRITE_SWIMMER, 68, 11, STAY, UP, 2, OPP_BEAUTY, 15
+ object SPRITE_SWIMMER, 45, 10, STAY, DOWN, 3, OPP_BEAUTY, 6
+ object SPRITE_SWIMMER, 55, 14, STAY, RIGHT, 4, OPP_JR_TRAINER_F, 24
+ object SPRITE_SWIMMER, 38, 13, STAY, DOWN, 5, OPP_SWIMMER, 10
+ object SPRITE_SWIMMER, 87, 13, STAY, UP, 6, OPP_SWIMMER, 11
+ object SPRITE_BLACK_HAIR_BOY_1, 34, 9, STAY, UP, 7, OPP_BIRD_KEEPER, 11
+ object SPRITE_SWIMMER, 25, 7, STAY, UP, 8, OPP_BEAUTY, 7
+ object SPRITE_SWIMMER, 24, 12, STAY, DOWN, 9, OPP_JR_TRAINER_F, 16
+ object SPRITE_SWIMMER, 15, 8, STAY, UP, 10, OPP_BEAUTY, 8
+
+ ; warp-to
+ warp_to 48, 5, ROUTE_20_WIDTH ; SEAFOAM_ISLANDS_1F
+ warp_to 58, 9, ROUTE_20_WIDTH ; SEAFOAM_ISLANDS_1F
--- /dev/null
+++ b/data/maps/objects/Route21.asm
@@ -1,0 +1,17 @@
+Route21_Object:
+ db $43 ; border block
+
+ db 0 ; warps
+
+ db 0 ; signs
+
+ db 9 ; objects
+ object SPRITE_FISHER2, 4, 24, STAY, LEFT, 1, OPP_FISHER, 7
+ object SPRITE_FISHER2, 6, 25, STAY, DOWN, 2, OPP_FISHER, 9
+ object SPRITE_SWIMMER, 10, 31, STAY, UP, 3, OPP_SWIMMER, 12
+ object SPRITE_SWIMMER, 12, 30, STAY, RIGHT, 4, OPP_CUE_BALL, 9
+ object SPRITE_SWIMMER, 16, 63, STAY, DOWN, 5, OPP_SWIMMER, 13
+ object SPRITE_SWIMMER, 5, 71, STAY, RIGHT, 6, OPP_SWIMMER, 14
+ object SPRITE_SWIMMER, 15, 71, STAY, LEFT, 7, OPP_SWIMMER, 15
+ object SPRITE_FISHER2, 14, 56, STAY, LEFT, 8, OPP_FISHER, 8
+ object SPRITE_FISHER2, 17, 57, STAY, RIGHT, 9, OPP_FISHER, 10
--- /dev/null
+++ b/data/maps/objects/Route22.asm
@@ -1,0 +1,15 @@
+Route22_Object:
+ db $2c ; border block
+
+ db 1 ; warps
+ warp 8, 5, 0, ROUTE_22_GATE
+
+ db 1 ; signs
+ sign 7, 11, 3 ; Route22FrontGateText
+
+ db 2 ; objects
+ object SPRITE_BLUE, 25, 5, STAY, NONE, 1 ; person
+ object SPRITE_BLUE, 25, 5, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 8, 5, ROUTE_22_WIDTH ; ROUTE_22_GATE
--- /dev/null
+++ b/data/maps/objects/Route22Gate.asm
@@ -1,0 +1,19 @@
+Route22Gate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 4, 7, 0, -1
+ warp 5, 7, 0, -1
+ warp 4, 0, 0, -1
+ warp 5, 0, 1, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 6, 2, STAY, LEFT, 1 ; person
+
+ ; warp-to
+ warp_to 4, 7, ROUTE_22_GATE_WIDTH
+ warp_to 5, 7, ROUTE_22_GATE_WIDTH
+ warp_to 4, 0, ROUTE_22_GATE_WIDTH
+ warp_to 5, 0, ROUTE_22_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route23.asm
@@ -1,0 +1,26 @@
+Route23_Object:
+ db $f ; border block
+
+ db 4 ; warps
+ warp 7, 139, 2, ROUTE_22_GATE
+ warp 8, 139, 3, ROUTE_22_GATE
+ warp 4, 31, 0, VICTORY_ROAD_1F
+ warp 14, 31, 1, VICTORY_ROAD_2F
+
+ db 1 ; signs
+ sign 3, 33, 8 ; Route23Text8
+
+ db 7 ; objects
+ object SPRITE_GUARD, 4, 35, STAY, DOWN, 1 ; person
+ object SPRITE_GUARD, 10, 56, STAY, DOWN, 2 ; person
+ object SPRITE_SWIMMER, 8, 85, STAY, DOWN, 3 ; person
+ object SPRITE_SWIMMER, 11, 96, STAY, DOWN, 4 ; person
+ object SPRITE_GUARD, 12, 105, STAY, DOWN, 5 ; person
+ object SPRITE_GUARD, 8, 119, STAY, DOWN, 6 ; person
+ object SPRITE_GUARD, 8, 136, STAY, DOWN, 7 ; person
+
+ ; warp-to
+ warp_to 7, 139, ROUTE_23_WIDTH ; ROUTE_22_GATE
+ warp_to 8, 139, ROUTE_23_WIDTH ; ROUTE_22_GATE
+ warp_to 4, 31, ROUTE_23_WIDTH ; VICTORY_ROAD_1F
+ warp_to 14, 31, ROUTE_23_WIDTH ; VICTORY_ROAD_2F
--- /dev/null
+++ b/data/maps/objects/Route24.asm
@@ -1,0 +1,16 @@
+Route24_Object:
+ db $2c ; border block
+
+ db 0 ; warps
+
+ db 0 ; signs
+
+ db 8 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 11, 15, STAY, LEFT, 1, OPP_ROCKET, 6
+ object SPRITE_BLACK_HAIR_BOY_1, 5, 20, STAY, UP, 2, OPP_JR_TRAINER_M, 2
+ object SPRITE_BLACK_HAIR_BOY_1, 11, 19, STAY, LEFT, 3, OPP_JR_TRAINER_M, 3
+ object SPRITE_LASS, 10, 22, STAY, RIGHT, 4, OPP_LASS, 7
+ object SPRITE_BUG_CATCHER, 11, 25, STAY, LEFT, 5, OPP_YOUNGSTER, 4
+ object SPRITE_LASS, 10, 28, STAY, RIGHT, 6, OPP_LASS, 8
+ object SPRITE_BUG_CATCHER, 11, 31, STAY, LEFT, 7, OPP_BUG_CATCHER, 9
+ object SPRITE_BALL, 10, 5, STAY, NONE, 8, TM_45
--- /dev/null
+++ b/data/maps/objects/Route25.asm
@@ -1,0 +1,23 @@
+Route25_Object:
+ db $2c ; border block
+
+ db 1 ; warps
+ warp 45, 3, 0, BILLS_HOUSE
+
+ db 1 ; signs
+ sign 43, 3, 11 ; Route25Text11
+
+ db 10 ; objects
+ object SPRITE_BUG_CATCHER, 14, 2, STAY, DOWN, 1, OPP_YOUNGSTER, 5
+ object SPRITE_BUG_CATCHER, 18, 5, STAY, UP, 2, OPP_YOUNGSTER, 6
+ object SPRITE_BLACK_HAIR_BOY_1, 24, 4, STAY, DOWN, 3, OPP_JR_TRAINER_M, 2
+ object SPRITE_LASS, 18, 8, STAY, RIGHT, 4, OPP_LASS, 9
+ object SPRITE_BUG_CATCHER, 32, 3, STAY, LEFT, 5, OPP_YOUNGSTER, 7
+ object SPRITE_LASS, 37, 4, STAY, DOWN, 6, OPP_LASS, 10
+ object SPRITE_HIKER, 8, 4, STAY, RIGHT, 7, OPP_HIKER, 2
+ object SPRITE_HIKER, 23, 9, STAY, UP, 8, OPP_HIKER, 3
+ object SPRITE_HIKER, 13, 7, STAY, RIGHT, 9, OPP_HIKER, 4
+ object SPRITE_BALL, 22, 2, STAY, NONE, 10, TM_19
+
+ ; warp-to
+ warp_to 45, 3, ROUTE_25_WIDTH ; BILLS_HOUSE
--- /dev/null
+++ b/data/maps/objects/Route2Gate.asm
@@ -1,0 +1,20 @@
+Route2Gate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 4, 0, 3, -1
+ warp 5, 0, 3, -1
+ warp 4, 7, 4, -1
+ warp 5, 7, 4, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_OAK_AIDE, 1, 4, STAY, LEFT, 1 ; person
+ object SPRITE_BUG_CATCHER, 5, 4, WALK, 2, 2 ; person
+
+ ; warp-to
+ warp_to 4, 0, ROUTE_2_GATE_WIDTH
+ warp_to 5, 0, ROUTE_2_GATE_WIDTH
+ warp_to 4, 7, ROUTE_2_GATE_WIDTH
+ warp_to 5, 7, ROUTE_2_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route2TradeHouse.asm
@@ -1,0 +1,16 @@
+Route2TradeHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 2, -1
+ warp 3, 7, 2, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_OAK_AIDE, 2, 4, STAY, RIGHT, 1 ; person
+ object SPRITE_GAMEBOY_KID_COPY, 4, 1, STAY, DOWN, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, ROUTE_2_TRADE_HOUSE_WIDTH
+ warp_to 3, 7, ROUTE_2_TRADE_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route3.asm
@@ -1,0 +1,18 @@
+Route3_Object:
+ db $2c ; border block
+
+ db 0 ; warps
+
+ db 1 ; signs
+ sign 59, 9, 10 ; Route3Text10
+
+ db 9 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 57, 11, STAY, NONE, 1 ; person
+ object SPRITE_BUG_CATCHER, 10, 6, STAY, RIGHT, 2, OPP_BUG_CATCHER, 4
+ object SPRITE_BUG_CATCHER, 14, 4, STAY, DOWN, 3, OPP_YOUNGSTER, 1
+ object SPRITE_LASS, 16, 9, STAY, LEFT, 4, OPP_LASS, 1
+ object SPRITE_BUG_CATCHER, 19, 5, STAY, DOWN, 5, OPP_BUG_CATCHER, 5
+ object SPRITE_LASS, 23, 4, STAY, LEFT, 6, OPP_LASS, 2
+ object SPRITE_BUG_CATCHER, 22, 9, STAY, LEFT, 7, OPP_YOUNGSTER, 2
+ object SPRITE_BUG_CATCHER, 24, 6, STAY, RIGHT, 8, OPP_BUG_CATCHER, 6
+ object SPRITE_LASS, 33, 10, STAY, UP, 9, OPP_LASS, 3
--- /dev/null
+++ b/data/maps/objects/Route4.asm
@@ -1,0 +1,22 @@
+Route4_Object:
+ db $2c ; border block
+
+ db 3 ; warps
+ warp 11, 5, 0, MT_MOON_POKECENTER
+ warp 18, 5, 0, MT_MOON_1F
+ warp 24, 5, 7, MT_MOON_B1F
+
+ db 3 ; signs
+ sign 12, 5, 4 ; PokeCenterSignText
+ sign 17, 7, 5 ; Route4Text5
+ sign 27, 7, 6 ; Route4Text6
+
+ db 3 ; objects
+ object SPRITE_LASS, 9, 8, WALK, 0, 1 ; person
+ object SPRITE_LASS, 63, 3, STAY, RIGHT, 2, OPP_LASS, 4
+ object SPRITE_BALL, 57, 3, STAY, NONE, 3, TM_04
+
+ ; warp-to
+ warp_to 11, 5, ROUTE_4_WIDTH ; MT_MOON_POKECENTER
+ warp_to 18, 5, ROUTE_4_WIDTH ; MT_MOON_1F
+ warp_to 24, 5, ROUTE_4_WIDTH ; MT_MOON_B1F
--- /dev/null
+++ b/data/maps/objects/Route5.asm
@@ -1,0 +1,21 @@
+Route5_Object:
+ db $a ; border block
+
+ db 5 ; warps
+ warp 10, 29, 3, ROUTE_5_GATE
+ warp 9, 29, 2, ROUTE_5_GATE
+ warp 10, 33, 0, ROUTE_5_GATE
+ warp 17, 27, 0, UNDERGROUND_PATH_ROUTE_5
+ warp 10, 21, 0, DAYCARE
+
+ db 1 ; signs
+ sign 17, 29, 1 ; Route5Text1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 10, 29, ROUTE_5_WIDTH ; ROUTE_5_GATE
+ warp_to 9, 29, ROUTE_5_WIDTH ; ROUTE_5_GATE
+ warp_to 10, 33, ROUTE_5_WIDTH ; ROUTE_5_GATE
+ warp_to 17, 27, ROUTE_5_WIDTH ; UNDERGROUND_PATH_ROUTE_5
+ warp_to 10, 21, ROUTE_5_WIDTH ; DAYCARE
--- /dev/null
+++ b/data/maps/objects/Route5Gate.asm
@@ -1,0 +1,19 @@
+Route5Gate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 3, 5, 2, -1
+ warp 4, 5, 2, -1
+ warp 3, 0, 1, -1
+ warp 4, 0, 0, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 1, 3, STAY, RIGHT, 1 ; person
+
+ ; warp-to
+ warp_to 3, 5, ROUTE_5_GATE_WIDTH
+ warp_to 4, 5, ROUTE_5_GATE_WIDTH
+ warp_to 3, 0, ROUTE_5_GATE_WIDTH
+ warp_to 4, 0, ROUTE_5_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route6.asm
@@ -1,0 +1,25 @@
+Route6_Object:
+ db $f ; border block
+
+ db 4 ; warps
+ warp 9, 1, 2, ROUTE_6_GATE
+ warp 10, 1, 2, ROUTE_6_GATE
+ warp 10, 7, 0, ROUTE_6_GATE
+ warp 17, 13, 0, UNDERGROUND_PATH_ROUTE_6
+
+ db 1 ; signs
+ sign 19, 15, 7 ; Route6Text7
+
+ db 6 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 10, 21, STAY, RIGHT, 1, OPP_JR_TRAINER_M, 4
+ object SPRITE_LASS, 11, 21, STAY, LEFT, 2, OPP_JR_TRAINER_F, 2
+ object SPRITE_BUG_CATCHER, 0, 15, STAY, RIGHT, 3, OPP_BUG_CATCHER, 10
+ object SPRITE_BLACK_HAIR_BOY_1, 11, 31, STAY, LEFT, 4, OPP_JR_TRAINER_M, 5
+ object SPRITE_LASS, 11, 30, STAY, LEFT, 5, OPP_JR_TRAINER_F, 3
+ object SPRITE_BUG_CATCHER, 19, 26, STAY, LEFT, 6, OPP_BUG_CATCHER, 11
+
+ ; warp-to
+ warp_to 9, 1, ROUTE_6_WIDTH ; ROUTE_6_GATE
+ warp_to 10, 1, ROUTE_6_WIDTH ; ROUTE_6_GATE
+ warp_to 10, 7, ROUTE_6_WIDTH ; ROUTE_6_GATE
+ warp_to 17, 13, ROUTE_6_WIDTH ; UNDERGROUND_PATH_ROUTE_6
--- /dev/null
+++ b/data/maps/objects/Route6Gate.asm
@@ -1,0 +1,19 @@
+Route6Gate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 3, 5, 2, -1
+ warp 4, 5, 2, -1
+ warp 3, 0, 1, -1
+ warp 4, 0, 1, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 6, 2, STAY, LEFT, 1 ; person
+
+ ; warp-to
+ warp_to 3, 5, ROUTE_6_GATE_WIDTH
+ warp_to 4, 5, ROUTE_6_GATE_WIDTH
+ warp_to 3, 0, ROUTE_6_GATE_WIDTH
+ warp_to 4, 0, ROUTE_6_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route7.asm
@@ -1,0 +1,21 @@
+Route7_Object:
+ db $f ; border block
+
+ db 5 ; warps
+ warp 18, 9, 2, ROUTE_7_GATE
+ warp 18, 10, 3, ROUTE_7_GATE
+ warp 11, 9, 0, ROUTE_7_GATE
+ warp 11, 10, 1, ROUTE_7_GATE
+ warp 5, 13, 0, UNDERGROUND_PATH_ROUTE_7
+
+ db 1 ; signs
+ sign 3, 13, 1 ; Route7Text1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 18, 9, ROUTE_7_WIDTH ; ROUTE_7_GATE
+ warp_to 18, 10, ROUTE_7_WIDTH ; ROUTE_7_GATE
+ warp_to 11, 9, ROUTE_7_WIDTH ; ROUTE_7_GATE
+ warp_to 11, 10, ROUTE_7_WIDTH ; ROUTE_7_GATE
+ warp_to 5, 13, ROUTE_7_WIDTH ; UNDERGROUND_PATH_ROUTE_7
--- /dev/null
+++ b/data/maps/objects/Route7Gate.asm
@@ -1,0 +1,19 @@
+Route7Gate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 0, 3, 3, -1
+ warp 0, 4, 3, -1
+ warp 5, 3, 0, -1
+ warp 5, 4, 1, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 3, 1, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 0, 3, ROUTE_7_GATE_WIDTH
+ warp_to 0, 4, ROUTE_7_GATE_WIDTH
+ warp_to 5, 3, ROUTE_7_GATE_WIDTH
+ warp_to 5, 4, ROUTE_7_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route8.asm
@@ -1,0 +1,30 @@
+Route8_Object:
+ db $2c ; border block
+
+ db 5 ; warps
+ warp 1, 9, 0, ROUTE_8_GATE
+ warp 1, 10, 1, ROUTE_8_GATE
+ warp 8, 9, 2, ROUTE_8_GATE
+ warp 8, 10, 3, ROUTE_8_GATE
+ warp 13, 3, 0, UNDERGROUND_PATH_ROUTE_8
+
+ db 1 ; signs
+ sign 17, 3, 10 ; Route8Text10
+
+ db 9 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 8, 5, STAY, RIGHT, 1, OPP_SUPER_NERD, 3
+ object SPRITE_GAMBLER, 13, 9, STAY, UP, 2, OPP_GAMBLER, 5
+ object SPRITE_BLACK_HAIR_BOY_2, 42, 6, STAY, UP, 3, OPP_SUPER_NERD, 4
+ object SPRITE_LASS, 26, 3, STAY, LEFT, 4, OPP_LASS, 13
+ object SPRITE_BLACK_HAIR_BOY_2, 26, 4, STAY, RIGHT, 5, OPP_SUPER_NERD, 5
+ object SPRITE_LASS, 26, 5, STAY, LEFT, 6, OPP_LASS, 14
+ object SPRITE_LASS, 26, 6, STAY, RIGHT, 7, OPP_LASS, 15
+ object SPRITE_GAMBLER, 46, 13, STAY, DOWN, 8, OPP_GAMBLER, 7
+ object SPRITE_LASS, 51, 12, STAY, LEFT, 9, OPP_LASS, 16
+
+ ; warp-to
+ warp_to 1, 9, ROUTE_8_WIDTH ; ROUTE_8_GATE
+ warp_to 1, 10, ROUTE_8_WIDTH ; ROUTE_8_GATE
+ warp_to 8, 9, ROUTE_8_WIDTH ; ROUTE_8_GATE
+ warp_to 8, 10, ROUTE_8_WIDTH ; ROUTE_8_GATE
+ warp_to 13, 3, ROUTE_8_WIDTH ; UNDERGROUND_PATH_ROUTE_8
--- /dev/null
+++ b/data/maps/objects/Route8Gate.asm
@@ -1,0 +1,19 @@
+Route8Gate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 0, 3, 0, -1
+ warp 0, 4, 1, -1
+ warp 5, 3, 2, -1
+ warp 5, 4, 3, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GUARD, 2, 1, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 0, 3, ROUTE_8_GATE_WIDTH
+ warp_to 0, 4, ROUTE_8_GATE_WIDTH
+ warp_to 5, 3, ROUTE_8_GATE_WIDTH
+ warp_to 5, 4, ROUTE_8_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/Route9.asm
@@ -1,0 +1,19 @@
+Route9_Object:
+ db $2c ; border block
+
+ db 0 ; warps
+
+ db 1 ; signs
+ sign 25, 7, 11 ; Route9Text11
+
+ db 10 ; objects
+ object SPRITE_LASS, 13, 10, STAY, LEFT, 1, OPP_JR_TRAINER_F, 5
+ object SPRITE_BLACK_HAIR_BOY_1, 24, 7, STAY, LEFT, 2, OPP_JR_TRAINER_M, 7
+ object SPRITE_BLACK_HAIR_BOY_1, 31, 7, STAY, RIGHT, 3, OPP_JR_TRAINER_M, 8
+ object SPRITE_LASS, 48, 8, STAY, RIGHT, 4, OPP_JR_TRAINER_F, 6
+ object SPRITE_HIKER, 16, 15, STAY, LEFT, 5, OPP_HIKER, 11
+ object SPRITE_HIKER, 43, 3, STAY, LEFT, 6, OPP_HIKER, 6
+ object SPRITE_BUG_CATCHER, 22, 2, STAY, DOWN, 7, OPP_BUG_CATCHER, 13
+ object SPRITE_HIKER, 45, 15, STAY, RIGHT, 8, OPP_HIKER, 5
+ object SPRITE_BUG_CATCHER, 40, 8, STAY, RIGHT, 9, OPP_BUG_CATCHER, 14
+ object SPRITE_BALL, 10, 15, STAY, NONE, 10, TM_30
--- /dev/null
+++ b/data/maps/objects/SSAnne1F.asm
@@ -1,0 +1,34 @@
+SSAnne1F_Object:
+ db $c ; border block
+
+ db 11 ; warps
+ warp 26, 0, 1, VERMILION_DOCK
+ warp 27, 0, 1, VERMILION_DOCK
+ warp 31, 8, 0, SS_ANNE_1F_ROOMS
+ warp 23, 8, 1, SS_ANNE_1F_ROOMS
+ warp 19, 8, 2, SS_ANNE_1F_ROOMS
+ warp 15, 8, 3, SS_ANNE_1F_ROOMS
+ warp 11, 8, 4, SS_ANNE_1F_ROOMS
+ warp 7, 8, 5, SS_ANNE_1F_ROOMS
+ warp 2, 6, 6, SS_ANNE_2F
+ warp 37, 15, 5, SS_ANNE_B1F
+ warp 3, 16, 0, SS_ANNE_KITCHEN
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_WAITER, 12, 6, WALK, 2, 1 ; person
+ object SPRITE_SAILOR, 27, 5, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 26, 0, SS_ANNE_1F_WIDTH ; VERMILION_DOCK
+ warp_to 27, 0, SS_ANNE_1F_WIDTH ; VERMILION_DOCK
+ warp_to 31, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
+ warp_to 23, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
+ warp_to 19, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
+ warp_to 15, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
+ warp_to 11, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
+ warp_to 7, 8, SS_ANNE_1F_WIDTH ; SS_ANNE_1F_ROOMS
+ warp_to 2, 6, SS_ANNE_1F_WIDTH ; SS_ANNE_2F
+ warp_to 37, 15, SS_ANNE_1F_WIDTH ; SS_ANNE_B1F
+ warp_to 3, 16, SS_ANNE_1F_WIDTH ; SS_ANNE_KITCHEN
--- /dev/null
+++ b/data/maps/objects/SSAnne1FRooms.asm
@@ -1,0 +1,33 @@
+SSAnne1FRooms_Object:
+ db $c ; border block
+
+ db 6 ; warps
+ warp 0, 0, 2, SS_ANNE_1F
+ warp 10, 0, 3, SS_ANNE_1F
+ warp 20, 0, 4, SS_ANNE_1F
+ warp 0, 10, 5, SS_ANNE_1F
+ warp 10, 10, 6, SS_ANNE_1F
+ warp 20, 10, 7, SS_ANNE_1F
+
+ db 0 ; signs
+
+ db 11 ; objects
+ object SPRITE_GENTLEMAN, 2, 3, STAY, LEFT, 1, OPP_GENTLEMAN, 1
+ object SPRITE_GENTLEMAN, 11, 4, STAY, UP, 2, OPP_GENTLEMAN, 2
+ object SPRITE_BUG_CATCHER, 11, 14, STAY, UP, 3, OPP_YOUNGSTER, 8
+ object SPRITE_LASS, 13, 11, STAY, LEFT, 4, OPP_LASS, 11
+ object SPRITE_GIRL, 22, 3, WALK, 1, 5 ; person
+ object SPRITE_FAT_BALD_GUY, 0, 14, STAY, NONE, 6 ; person
+ object SPRITE_LITTLE_GIRL, 2, 11, STAY, DOWN, 7 ; person
+ object SPRITE_CLEFAIRY, 3, 11, STAY, DOWN, 8 ; person
+ object SPRITE_GIRL, 10, 13, STAY, RIGHT, 9 ; person
+ object SPRITE_BALL, 12, 15, STAY, NONE, 10, TM_08
+ object SPRITE_GENTLEMAN, 21, 13, WALK, 2, 11 ; person
+
+ ; warp-to
+ warp_to 0, 0, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
+ warp_to 10, 0, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
+ warp_to 20, 0, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
+ warp_to 0, 10, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
+ warp_to 10, 10, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
+ warp_to 20, 10, SS_ANNE_1F_ROOMS_WIDTH ; SS_ANNE_1F
--- /dev/null
+++ b/data/maps/objects/SSAnne2F.asm
@@ -1,0 +1,30 @@
+SSAnne2F_Object:
+ db $c ; border block
+
+ db 9 ; warps
+ warp 9, 11, 0, SS_ANNE_2F_ROOMS
+ warp 13, 11, 2, SS_ANNE_2F_ROOMS
+ warp 17, 11, 4, SS_ANNE_2F_ROOMS
+ warp 21, 11, 6, SS_ANNE_2F_ROOMS
+ warp 25, 11, 8, SS_ANNE_2F_ROOMS
+ warp 29, 11, 10, SS_ANNE_2F_ROOMS
+ warp 2, 4, 8, SS_ANNE_1F
+ warp 2, 12, 1, SS_ANNE_3F
+ warp 36, 4, 0, SS_ANNE_CAPTAINS_ROOM
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_WAITER, 3, 7, WALK, 1, 1 ; person
+ object SPRITE_BLUE, 36, 4, STAY, DOWN, 2, OPP_SONY1, 1
+
+ ; warp-to
+ warp_to 9, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
+ warp_to 13, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
+ warp_to 17, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
+ warp_to 21, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
+ warp_to 25, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
+ warp_to 29, 11, SS_ANNE_2F_WIDTH ; SS_ANNE_2F_ROOMS
+ warp_to 2, 4, SS_ANNE_2F_WIDTH ; SS_ANNE_1F
+ warp_to 2, 12, SS_ANNE_2F_WIDTH ; SS_ANNE_3F
+ warp_to 36, 4, SS_ANNE_2F_WIDTH ; SS_ANNE_CAPTAINS_ROOM
--- /dev/null
+++ b/data/maps/objects/SSAnne2FRooms.asm
@@ -1,0 +1,47 @@
+SSAnne2FRooms_Object:
+ db $c ; border block
+
+ db 12 ; warps
+ warp 2, 5, 0, SS_ANNE_2F
+ warp 3, 5, 0, SS_ANNE_2F
+ warp 12, 5, 1, SS_ANNE_2F
+ warp 13, 5, 1, SS_ANNE_2F
+ warp 22, 5, 2, SS_ANNE_2F
+ warp 23, 5, 2, SS_ANNE_2F
+ warp 2, 15, 3, SS_ANNE_2F
+ warp 3, 15, 3, SS_ANNE_2F
+ warp 12, 15, 4, SS_ANNE_2F
+ warp 13, 15, 4, SS_ANNE_2F
+ warp 22, 15, 5, SS_ANNE_2F
+ warp 23, 15, 5, SS_ANNE_2F
+
+ db 0 ; signs
+
+ db 13 ; objects
+ object SPRITE_GENTLEMAN, 10, 2, STAY, RIGHT, 1, OPP_GENTLEMAN, 3
+ object SPRITE_FISHER2, 13, 4, STAY, LEFT, 2, OPP_FISHER, 1
+ object SPRITE_GENTLEMAN, 0, 14, STAY, RIGHT, 3, OPP_GENTLEMAN, 5
+ object SPRITE_LASS, 2, 11, STAY, DOWN, 4, OPP_LASS, 12
+ object SPRITE_GENTLEMAN, 1, 2, STAY, DOWN, 5 ; person
+ object SPRITE_BALL, 12, 1, STAY, NONE, 6, MAX_ETHER
+ object SPRITE_GENTLEMAN, 21, 2, STAY, DOWN, 7 ; person
+ object SPRITE_OLD_PERSON, 22, 1, STAY, DOWN, 8 ; person
+ object SPRITE_BALL, 0, 12, STAY, NONE, 9, RARE_CANDY
+ object SPRITE_GENTLEMAN, 12, 12, STAY, DOWN, 10 ; person
+ object SPRITE_YOUNG_BOY, 11, 14, STAY, NONE, 11 ; person
+ object SPRITE_BRUNETTE_GIRL, 22, 12, STAY, LEFT, 12 ; person
+ object SPRITE_FOULARD_WOMAN, 20, 12, STAY, RIGHT, 13 ; person
+
+ ; warp-to
+ warp_to 2, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 3, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 12, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 13, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 22, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 23, 5, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 2, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 3, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 12, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 13, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 22, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
+ warp_to 23, 15, SS_ANNE_2F_ROOMS_WIDTH ; SS_ANNE_2F
--- /dev/null
+++ b/data/maps/objects/SSAnne3F.asm
@@ -1,0 +1,15 @@
+SSAnne3F_Object:
+ db $c ; border block
+
+ db 2 ; warps
+ warp 0, 3, 0, SS_ANNE_BOW
+ warp 19, 3, 7, SS_ANNE_2F
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_SAILOR, 9, 3, WALK, 2, 1 ; person
+
+ ; warp-to
+ warp_to 0, 3, SS_ANNE_3F_WIDTH ; SS_ANNE_BOW
+ warp_to 19, 3, SS_ANNE_3F_WIDTH ; SS_ANNE_2F
--- /dev/null
+++ b/data/maps/objects/SSAnneB1F.asm
@@ -1,0 +1,22 @@
+SSAnneB1F_Object:
+ db $c ; border block
+
+ db 6 ; warps
+ warp 23, 3, 8, SS_ANNE_B1F_ROOMS
+ warp 19, 3, 6, SS_ANNE_B1F_ROOMS
+ warp 15, 3, 4, SS_ANNE_B1F_ROOMS
+ warp 11, 3, 2, SS_ANNE_B1F_ROOMS
+ warp 7, 3, 0, SS_ANNE_B1F_ROOMS
+ warp 27, 5, 9, SS_ANNE_1F
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 23, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
+ warp_to 19, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
+ warp_to 15, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
+ warp_to 11, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
+ warp_to 7, 3, SS_ANNE_B1F_WIDTH ; SS_ANNE_B1F_ROOMS
+ warp_to 27, 5, SS_ANNE_B1F_WIDTH ; SS_ANNE_1F
--- /dev/null
+++ b/data/maps/objects/SSAnneB1FRooms.asm
@@ -1,0 +1,41 @@
+SSAnneB1FRooms_Object:
+ db $c ; border block
+
+ db 10 ; warps
+ warp 2, 5, 4, SS_ANNE_B1F
+ warp 3, 5, 4, SS_ANNE_B1F
+ warp 12, 5, 3, SS_ANNE_B1F
+ warp 13, 5, 3, SS_ANNE_B1F
+ warp 22, 5, 2, SS_ANNE_B1F
+ warp 23, 5, 2, SS_ANNE_B1F
+ warp 2, 15, 1, SS_ANNE_B1F
+ warp 3, 15, 1, SS_ANNE_B1F
+ warp 12, 15, 0, SS_ANNE_B1F
+ warp 13, 15, 0, SS_ANNE_B1F
+
+ db 0 ; signs
+
+ db 11 ; objects
+ object SPRITE_SAILOR, 0, 13, STAY, DOWN, 1, OPP_SAILOR, 3
+ object SPRITE_SAILOR, 2, 11, STAY, DOWN, 2, OPP_SAILOR, 4
+ object SPRITE_SAILOR, 12, 3, STAY, LEFT, 3, OPP_SAILOR, 5
+ object SPRITE_SAILOR, 22, 2, STAY, DOWN, 4, OPP_SAILOR, 6
+ object SPRITE_SAILOR, 0, 2, STAY, RIGHT, 5, OPP_SAILOR, 7
+ object SPRITE_FISHER2, 0, 4, STAY, RIGHT, 6, OPP_FISHER, 2
+ object SPRITE_BLACK_HAIR_BOY_2, 10, 13, STAY, RIGHT, 7 ; person
+ object SPRITE_SLOWBRO, 11, 12, STAY, NONE, 8 ; person
+ object SPRITE_BALL, 20, 2, STAY, NONE, 9, ETHER
+ object SPRITE_BALL, 10, 2, STAY, NONE, 10, TM_44
+ object SPRITE_BALL, 12, 11, STAY, NONE, 11, MAX_POTION
+
+ ; warp-to
+ warp_to 2, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 3, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 12, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 13, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 22, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 23, 5, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 2, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 3, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 12, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
+ warp_to 13, 15, SS_ANNE_B1F_ROOMS_WIDTH ; SS_ANNE_B1F
--- /dev/null
+++ b/data/maps/objects/SSAnneBow.asm
@@ -1,0 +1,19 @@
+SSAnneBow_Object:
+ db $23 ; border block
+
+ db 2 ; warps
+ warp 13, 6, 0, SS_ANNE_3F
+ warp 13, 7, 0, SS_ANNE_3F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 5, 2, STAY, UP, 1 ; person
+ object SPRITE_SAILOR, 4, 9, STAY, NONE, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 7, 11, STAY, NONE, 3 ; person
+ object SPRITE_SAILOR, 4, 4, STAY, DOWN, 4, OPP_SAILOR, 1
+ object SPRITE_SAILOR, 10, 8, STAY, UP, 5, OPP_SAILOR, 2
+
+ ; warp-to
+ warp_to 13, 6, SS_ANNE_BOW_WIDTH ; SS_ANNE_3F
+ warp_to 13, 7, SS_ANNE_BOW_WIDTH ; SS_ANNE_3F
--- /dev/null
+++ b/data/maps/objects/SSAnneCaptainsRoom.asm
@@ -1,0 +1,15 @@
+SSAnneCaptainsRoom_Object:
+ db $c ; border block
+
+ db 1 ; warps
+ warp 0, 7, 8, SS_ANNE_2F
+
+ db 2 ; signs
+ sign 4, 1, 2 ; SSAnne7Text2
+ sign 1, 2, 3 ; SSAnne7Text3
+
+ db 1 ; objects
+ object SPRITE_SS_CAPTAIN, 4, 2, STAY, UP, 1 ; person
+
+ ; warp-to
+ warp_to 0, 7, SS_ANNE_CAPTAINS_ROOM_WIDTH ; SS_ANNE_2F
--- /dev/null
+++ b/data/maps/objects/SSAnneKitchen.asm
@@ -1,0 +1,19 @@
+SSAnneKitchen_Object:
+ db $c ; border block
+
+ db 1 ; warps
+ warp 6, 0, 10, SS_ANNE_1F
+
+ db 0 ; signs
+
+ db 7 ; objects
+ object SPRITE_COOK, 1, 8, WALK, 1, 1 ; person
+ object SPRITE_COOK, 5, 8, WALK, 1, 2 ; person
+ object SPRITE_COOK, 9, 7, WALK, 1, 3 ; person
+ object SPRITE_COOK, 13, 6, STAY, NONE, 4 ; person
+ object SPRITE_COOK, 13, 8, STAY, NONE, 5 ; person
+ object SPRITE_COOK, 13, 10, STAY, NONE, 6 ; person
+ object SPRITE_COOK, 11, 13, STAY, UP, 7 ; person
+
+ ; warp-to
+ warp_to 6, 0, SS_ANNE_KITCHEN_WIDTH ; SS_ANNE_1F
--- /dev/null
+++ b/data/maps/objects/SafariZoneCenter.asm
@@ -1,0 +1,31 @@
+SafariZoneCenter_Object:
+ db $0 ; border block
+
+ db 9 ; warps
+ warp 14, 25, 2, SAFARI_ZONE_GATE
+ warp 15, 25, 3, SAFARI_ZONE_GATE
+ warp 0, 10, 4, SAFARI_ZONE_WEST
+ warp 0, 11, 5, SAFARI_ZONE_WEST
+ warp 14, 0, 4, SAFARI_ZONE_NORTH
+ warp 15, 0, 5, SAFARI_ZONE_NORTH
+ warp 29, 10, 2, SAFARI_ZONE_EAST
+ warp 29, 11, 3, SAFARI_ZONE_EAST
+ warp 17, 19, 0, SAFARI_ZONE_CENTER_REST_HOUSE
+
+ db 2 ; signs
+ sign 18, 20, 2 ; SafariZoneCenterText2
+ sign 14, 22, 3 ; SafariZoneCenterText3
+
+ db 1 ; objects
+ object SPRITE_BALL, 14, 10, STAY, NONE, 1, NUGGET
+
+ ; warp-to
+ warp_to 14, 25, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_GATE
+ warp_to 15, 25, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_GATE
+ warp_to 0, 10, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 0, 11, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 14, 0, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 15, 0, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 29, 10, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_EAST
+ warp_to 29, 11, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_EAST
+ warp_to 17, 19, SAFARI_ZONE_CENTER_WIDTH ; SAFARI_ZONE_CENTER_REST_HOUSE
--- /dev/null
+++ b/data/maps/objects/SafariZoneCenterRestHouse.asm
@@ -1,0 +1,16 @@
+SafariZoneCenterRestHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 8, SAFARI_ZONE_CENTER
+ warp 3, 7, 8, SAFARI_ZONE_CENTER
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_GIRL, 3, 2, STAY, DOWN, 1 ; person
+ object SPRITE_OAK_AIDE, 1, 4, WALK, 1, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, SAFARI_ZONE_CENTER_REST_HOUSE_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 3, 7, SAFARI_ZONE_CENTER_REST_HOUSE_WIDTH ; SAFARI_ZONE_CENTER
--- /dev/null
+++ b/data/maps/objects/SafariZoneEast.asm
@@ -1,0 +1,27 @@
+SafariZoneEast_Object:
+ db $0 ; border block
+
+ db 5 ; warps
+ warp 0, 4, 6, SAFARI_ZONE_NORTH
+ warp 0, 5, 7, SAFARI_ZONE_NORTH
+ warp 0, 22, 6, SAFARI_ZONE_CENTER
+ warp 0, 23, 6, SAFARI_ZONE_CENTER
+ warp 25, 9, 0, SAFARI_ZONE_EAST_REST_HOUSE
+
+ db 3 ; signs
+ sign 26, 10, 5 ; SafariZoneEastText5
+ sign 6, 4, 6 ; SafariZoneEastText6
+ sign 5, 23, 7 ; SafariZoneEastText7
+
+ db 4 ; objects
+ object SPRITE_BALL, 21, 10, STAY, NONE, 1, FULL_RESTORE
+ object SPRITE_BALL, 3, 7, STAY, NONE, 2, MAX_POTION
+ object SPRITE_BALL, 20, 13, STAY, NONE, 3, CARBOS
+ object SPRITE_BALL, 15, 12, STAY, NONE, 4, TM_37
+
+ ; warp-to
+ warp_to 0, 4, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 0, 5, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 0, 22, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 0, 23, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 25, 9, SAFARI_ZONE_EAST_WIDTH ; SAFARI_ZONE_EAST_REST_HOUSE
--- /dev/null
+++ b/data/maps/objects/SafariZoneEastRestHouse.asm
@@ -1,0 +1,17 @@
+SafariZoneEastRestHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 4, SAFARI_ZONE_EAST
+ warp 3, 7, 4, SAFARI_ZONE_EAST
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_OAK_AIDE, 1, 3, WALK, 1, 1 ; person
+ object SPRITE_ROCKER, 4, 2, STAY, NONE, 2 ; person
+ object SPRITE_LAPRAS_GIVER, 5, 2, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, SAFARI_ZONE_EAST_REST_HOUSE_WIDTH ; SAFARI_ZONE_EAST
+ warp_to 3, 7, SAFARI_ZONE_EAST_REST_HOUSE_WIDTH ; SAFARI_ZONE_EAST
--- /dev/null
+++ b/data/maps/objects/SafariZoneGate.asm
@@ -1,0 +1,20 @@
+SafariZoneGate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 3, 5, 4, -1
+ warp 4, 5, 4, -1
+ warp 3, 0, 0, SAFARI_ZONE_CENTER
+ warp 4, 0, 1, SAFARI_ZONE_CENTER
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_WHITE_PLAYER, 6, 2, STAY, LEFT, 1 ; person
+ object SPRITE_WHITE_PLAYER, 1, 4, STAY, RIGHT, 2 ; person
+
+ ; warp-to
+ warp_to 3, 5, SAFARI_ZONE_GATE_WIDTH
+ warp_to 4, 5, SAFARI_ZONE_GATE_WIDTH
+ warp_to 3, 0, SAFARI_ZONE_GATE_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 4, 0, SAFARI_ZONE_GATE_WIDTH ; SAFARI_ZONE_CENTER
--- /dev/null
+++ b/data/maps/objects/SafariZoneNorth.asm
@@ -1,0 +1,35 @@
+SafariZoneNorth_Object:
+ db $0 ; border block
+
+ db 9 ; warps
+ warp 2, 35, 0, SAFARI_ZONE_WEST
+ warp 3, 35, 1, SAFARI_ZONE_WEST
+ warp 8, 35, 2, SAFARI_ZONE_WEST
+ warp 9, 35, 3, SAFARI_ZONE_WEST
+ warp 20, 35, 4, SAFARI_ZONE_CENTER
+ warp 21, 35, 5, SAFARI_ZONE_CENTER
+ warp 39, 30, 0, SAFARI_ZONE_EAST
+ warp 39, 31, 1, SAFARI_ZONE_EAST
+ warp 35, 3, 0, SAFARI_ZONE_NORTH_REST_HOUSE
+
+ db 5 ; signs
+ sign 36, 4, 3 ; SafariZoneNorthText3
+ sign 4, 25, 4 ; SafariZoneNorthText4
+ sign 13, 31, 5 ; SafariZoneNorthText5
+ sign 19, 33, 6 ; SafariZoneNorthText6
+ sign 26, 28, 7 ; SafariZoneNorthText7
+
+ db 2 ; objects
+ object SPRITE_BALL, 25, 1, STAY, NONE, 1, PROTEIN
+ object SPRITE_BALL, 19, 7, STAY, NONE, 2, TM_40
+
+ ; warp-to
+ warp_to 2, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 3, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 8, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 9, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 20, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 21, 35, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 39, 30, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_EAST
+ warp_to 39, 31, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_EAST
+ warp_to 35, 3, SAFARI_ZONE_NORTH_WIDTH ; SAFARI_ZONE_NORTH_REST_HOUSE
--- /dev/null
+++ b/data/maps/objects/SafariZoneNorthRestHouse.asm
@@ -1,0 +1,17 @@
+SafariZoneNorthRestHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 8, SAFARI_ZONE_NORTH
+ warp 3, 7, 8, SAFARI_ZONE_NORTH
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_OAK_AIDE, 6, 3, WALK, 2, 1 ; person
+ object SPRITE_WHITE_PLAYER, 3, 4, STAY, NONE, 2 ; person
+ object SPRITE_GENTLEMAN, 1, 5, WALK, 1, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, SAFARI_ZONE_NORTH_REST_HOUSE_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 3, 7, SAFARI_ZONE_NORTH_REST_HOUSE_WIDTH ; SAFARI_ZONE_NORTH
--- /dev/null
+++ b/data/maps/objects/SafariZoneSecretHouse.asm
@@ -1,0 +1,15 @@
+SafariZoneSecretHouse_Object:
+ db $17 ; border block
+
+ db 2 ; warps
+ warp 2, 7, 6, SAFARI_ZONE_WEST
+ warp 3, 7, 6, SAFARI_ZONE_WEST
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FISHER, 3, 3, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, SAFARI_ZONE_SECRET_HOUSE_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 3, 7, SAFARI_ZONE_SECRET_HOUSE_WIDTH ; SAFARI_ZONE_WEST
--- /dev/null
+++ b/data/maps/objects/SafariZoneWest.asm
@@ -1,0 +1,34 @@
+SafariZoneWest_Object:
+ db $0 ; border block
+
+ db 8 ; warps
+ warp 20, 0, 0, SAFARI_ZONE_NORTH
+ warp 21, 0, 1, SAFARI_ZONE_NORTH
+ warp 26, 0, 2, SAFARI_ZONE_NORTH
+ warp 27, 0, 3, SAFARI_ZONE_NORTH
+ warp 29, 22, 2, SAFARI_ZONE_CENTER
+ warp 29, 23, 3, SAFARI_ZONE_CENTER
+ warp 3, 3, 0, SAFARI_ZONE_SECRET_HOUSE
+ warp 11, 11, 0, SAFARI_ZONE_WEST_REST_HOUSE
+
+ db 4 ; signs
+ sign 12, 12, 5 ; SafariZoneWestText5
+ sign 17, 3, 6 ; SafariZoneWestText6
+ sign 26, 4, 7 ; SafariZoneWestText7
+ sign 24, 22, 8 ; SafariZoneWestText8
+
+ db 4 ; objects
+ object SPRITE_BALL, 8, 20, STAY, NONE, 1, MAX_POTION
+ object SPRITE_BALL, 9, 7, STAY, NONE, 2, TM_32
+ object SPRITE_BALL, 18, 18, STAY, NONE, 3, MAX_REVIVE
+ object SPRITE_BALL, 19, 7, STAY, NONE, 4, GOLD_TEETH
+
+ ; warp-to
+ warp_to 20, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 21, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 26, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 27, 0, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_NORTH
+ warp_to 29, 22, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 29, 23, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_CENTER
+ warp_to 3, 3, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_SECRET_HOUSE
+ warp_to 11, 11, SAFARI_ZONE_WEST_WIDTH ; SAFARI_ZONE_WEST_REST_HOUSE
--- /dev/null
+++ b/data/maps/objects/SafariZoneWestRestHouse.asm
@@ -1,0 +1,17 @@
+SafariZoneWestRestHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 7, SAFARI_ZONE_WEST
+ warp 3, 7, 7, SAFARI_ZONE_WEST
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_OAK_AIDE, 4, 4, WALK, 0, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 0, 2, STAY, RIGHT, 2 ; person
+ object SPRITE_ERIKA, 6, 2, STAY, DOWN, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, SAFARI_ZONE_WEST_REST_HOUSE_WIDTH ; SAFARI_ZONE_WEST
+ warp_to 3, 7, SAFARI_ZONE_WEST_REST_HOUSE_WIDTH ; SAFARI_ZONE_WEST
--- /dev/null
+++ b/data/maps/objects/SaffronCity.asm
@@ -1,0 +1,51 @@
+SaffronCity_Object:
+ db $f ; border block
+
+ db 8 ; warps
+ warp 7, 5, 0, COPYCATS_HOUSE_1F
+ warp 26, 3, 0, FIGHTING_DOJO
+ warp 34, 3, 0, SAFFRON_GYM
+ warp 13, 11, 0, SAFFRON_PIDGEY_HOUSE
+ warp 25, 11, 0, SAFFRON_MART
+ warp 18, 21, 0, SILPH_CO_1F
+ warp 9, 29, 0, SAFFRON_POKECENTER
+ warp 29, 29, 0, MR_PSYCHICS_HOUSE
+
+ db 10 ; signs
+ sign 17, 5, 16 ; SaffronCityText16
+ sign 27, 5, 17 ; SaffronCityText17
+ sign 35, 5, 18 ; SaffronCityText18
+ sign 26, 11, 19 ; MartSignText
+ sign 39, 19, 20 ; SaffronCityText20
+ sign 5, 21, 21 ; SaffronCityText21
+ sign 15, 21, 22 ; SaffronCityText22
+ sign 10, 29, 23 ; PokeCenterSignText
+ sign 27, 29, 24 ; SaffronCityText24
+ sign 1, 19, 25 ; SaffronCityText25
+
+ db 15 ; objects
+ object SPRITE_ROCKET, 7, 6, STAY, NONE, 1 ; person
+ object SPRITE_ROCKET, 20, 8, WALK, 2, 2 ; person
+ object SPRITE_ROCKET, 34, 4, STAY, NONE, 3 ; person
+ object SPRITE_ROCKET, 13, 12, STAY, NONE, 4 ; person
+ object SPRITE_ROCKET, 11, 25, WALK, 2, 5 ; person
+ object SPRITE_ROCKET, 32, 13, WALK, 2, 6 ; person
+ object SPRITE_ROCKET, 18, 30, WALK, 2, 7 ; person
+ object SPRITE_OAK_AIDE, 8, 14, WALK, 0, 8 ; person
+ object SPRITE_LAPRAS_GIVER, 23, 23, STAY, NONE, 9 ; person
+ object SPRITE_ERIKA, 17, 30, WALK, 2, 10 ; person
+ object SPRITE_GENTLEMAN, 30, 12, STAY, DOWN, 11 ; person
+ object SPRITE_BIRD, 31, 12, STAY, DOWN, 12 ; person
+ object SPRITE_ROCKER, 18, 8, STAY, UP, 13 ; person
+ object SPRITE_ROCKET, 18, 22, STAY, DOWN, 14 ; person
+ object SPRITE_ROCKET, 19, 22, STAY, DOWN, 15 ; person
+
+ ; warp-to
+ warp_to 7, 5, SAFFRON_CITY_WIDTH ; COPYCATS_HOUSE_1F
+ warp_to 26, 3, SAFFRON_CITY_WIDTH ; FIGHTING_DOJO
+ warp_to 34, 3, SAFFRON_CITY_WIDTH ; SAFFRON_GYM
+ warp_to 13, 11, SAFFRON_CITY_WIDTH ; SAFFRON_PIDGEY_HOUSE
+ warp_to 25, 11, SAFFRON_CITY_WIDTH ; SAFFRON_MART
+ warp_to 18, 21, SAFFRON_CITY_WIDTH ; SILPH_CO_1F
+ warp_to 9, 29, SAFFRON_CITY_WIDTH ; SAFFRON_POKECENTER
+ warp_to 29, 29, SAFFRON_CITY_WIDTH ; MR_PSYCHICS_HOUSE
--- /dev/null
+++ b/data/maps/objects/SaffronGym.asm
@@ -1,0 +1,83 @@
+SaffronGym_Object:
+ db $2e ; border block
+
+ db 32 ; warps
+ warp 8, 17, 2, -1
+ warp 9, 17, 2, -1
+ warp 1, 3, 22, SAFFRON_GYM
+ warp 5, 3, 15, SAFFRON_GYM
+ warp 1, 5, 18, SAFFRON_GYM
+ warp 5, 5, 8, SAFFRON_GYM
+ warp 1, 9, 27, SAFFRON_GYM
+ warp 5, 9, 16, SAFFRON_GYM
+ warp 1, 11, 5, SAFFRON_GYM
+ warp 5, 11, 13, SAFFRON_GYM
+ warp 1, 15, 23, SAFFRON_GYM
+ warp 5, 15, 30, SAFFRON_GYM
+ warp 1, 17, 17, SAFFRON_GYM
+ warp 5, 17, 9, SAFFRON_GYM
+ warp 9, 3, 26, SAFFRON_GYM
+ warp 11, 3, 3, SAFFRON_GYM
+ warp 9, 5, 7, SAFFRON_GYM
+ warp 11, 5, 12, SAFFRON_GYM
+ warp 11, 11, 4, SAFFRON_GYM
+ warp 11, 15, 31, SAFFRON_GYM
+ warp 15, 3, 24, SAFFRON_GYM
+ warp 19, 3, 28, SAFFRON_GYM
+ warp 15, 5, 2, SAFFRON_GYM
+ warp 19, 5, 10, SAFFRON_GYM
+ warp 15, 9, 20, SAFFRON_GYM
+ warp 19, 9, 29, SAFFRON_GYM
+ warp 15, 11, 14, SAFFRON_GYM
+ warp 19, 11, 6, SAFFRON_GYM
+ warp 15, 15, 21, SAFFRON_GYM
+ warp 19, 15, 25, SAFFRON_GYM
+ warp 15, 17, 11, SAFFRON_GYM
+ warp 19, 17, 19, SAFFRON_GYM
+
+ db 0 ; signs
+
+ db 9 ; objects
+ object SPRITE_GIRL, 9, 8, STAY, DOWN, 1, OPP_SABRINA, 1
+ object SPRITE_MEDIUM, 10, 1, STAY, DOWN, 2, OPP_CHANNELER, 22
+ object SPRITE_BUG_CATCHER, 17, 1, STAY, DOWN, 3, OPP_PSYCHIC_TR, 1
+ object SPRITE_MEDIUM, 3, 7, STAY, DOWN, 4, OPP_CHANNELER, 23
+ object SPRITE_BUG_CATCHER, 17, 7, STAY, DOWN, 5, OPP_PSYCHIC_TR, 2
+ object SPRITE_MEDIUM, 3, 13, STAY, DOWN, 6, OPP_CHANNELER, 24
+ object SPRITE_BUG_CATCHER, 17, 13, STAY, DOWN, 7, OPP_PSYCHIC_TR, 3
+ object SPRITE_BUG_CATCHER, 3, 1, STAY, DOWN, 8, OPP_PSYCHIC_TR, 4
+ object SPRITE_GYM_HELPER, 10, 15, STAY, DOWN, 9 ; person
+
+ ; warp-to
+ warp_to 8, 17, SAFFRON_GYM_WIDTH
+ warp_to 9, 17, SAFFRON_GYM_WIDTH
+ warp_to 1, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 5, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 1, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 5, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 1, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 5, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 1, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 5, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 1, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 5, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 1, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 5, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 9, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 11, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 9, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 11, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 11, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 11, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 15, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 19, 3, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 15, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 19, 5, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 15, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 19, 9, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 15, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 19, 11, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 15, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 19, 15, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 15, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
+ warp_to 19, 17, SAFFRON_GYM_WIDTH ; SAFFRON_GYM
--- /dev/null
+++ b/data/maps/objects/SaffronMart.asm
@@ -1,0 +1,17 @@
+SaffronMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 4, -1
+ warp 4, 7, 4, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_2, 4, 2, STAY, NONE, 2 ; person
+ object SPRITE_LASS, 6, 5, WALK, 0, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, SAFFRON_MART_WIDTH
+ warp_to 4, 7, SAFFRON_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/SaffronPidgeyHouse.asm
@@ -1,0 +1,18 @@
+SaffronPidgeyHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 3, -1
+ warp 3, 7, 3, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_BRUNETTE_GIRL, 2, 3, STAY, RIGHT, 1 ; person
+ object SPRITE_BIRD, 0, 4, WALK, 1, 2 ; person
+ object SPRITE_BUG_CATCHER, 4, 1, STAY, DOWN, 3 ; person
+ object SPRITE_PAPER_SHEET, 3, 3, STAY, NONE, 4 ; person
+
+ ; warp-to
+ warp_to 2, 7, SAFFRON_PIDGEY_HOUSE_WIDTH
+ warp_to 3, 7, SAFFRON_PIDGEY_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/SaffronPokecenter.asm
@@ -1,0 +1,18 @@
+SaffronPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 6, -1
+ warp 4, 7, 6, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_FOULARD_WOMAN, 5, 5, STAY, NONE, 2 ; person
+ object SPRITE_GENTLEMAN, 8, 3, STAY, DOWN, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, SAFFRON_POKECENTER_WIDTH
+ warp_to 4, 7, SAFFRON_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/SeafoamIslands1F.asm
@@ -1,0 +1,30 @@
+SeafoamIslands1F_Object:
+ db $7d ; border block
+
+ db 7 ; warps
+ warp 4, 17, 0, -1
+ warp 5, 17, 0, -1
+ warp 26, 17, 1, -1
+ warp 27, 17, 1, -1
+ warp 7, 5, 1, SEAFOAM_ISLANDS_B1F
+ warp 25, 3, 6, SEAFOAM_ISLANDS_B1F
+ warp 23, 15, 4, SEAFOAM_ISLANDS_B1F
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BOULDER, 18, 10, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
+ object SPRITE_BOULDER, 26, 7, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
+
+ ; warp-to
+ warp_to 4, 17, SEAFOAM_ISLANDS_1F_WIDTH
+ warp_to 5, 17, SEAFOAM_ISLANDS_1F_WIDTH
+ warp_to 26, 17, SEAFOAM_ISLANDS_1F_WIDTH
+ warp_to 27, 17, SEAFOAM_ISLANDS_1F_WIDTH
+ warp_to 7, 5, SEAFOAM_ISLANDS_1F_WIDTH ; SEAFOAM_ISLANDS_B1F
+ warp_to 25, 3, SEAFOAM_ISLANDS_1F_WIDTH ; SEAFOAM_ISLANDS_B1F
+ warp_to 23, 15, SEAFOAM_ISLANDS_1F_WIDTH ; SEAFOAM_ISLANDS_B1F
+
+ ; holes
+ warp_to 17, 6, SEAFOAM_ISLANDS_1F_WIDTH
+ warp_to 24, 6, SEAFOAM_ISLANDS_1F_WIDTH
--- /dev/null
+++ b/data/maps/objects/SeafoamIslandsB1F.asm
@@ -1,0 +1,26 @@
+SeafoamIslandsB1F_Object:
+ db $7d ; border block
+
+ db 7 ; warps
+ warp 4, 2, 0, SEAFOAM_ISLANDS_B2F
+ warp 7, 5, 4, SEAFOAM_ISLANDS_1F
+ warp 13, 7, 2, SEAFOAM_ISLANDS_B2F
+ warp 19, 15, 3, SEAFOAM_ISLANDS_B2F
+ warp 23, 15, 6, SEAFOAM_ISLANDS_1F
+ warp 25, 11, 5, SEAFOAM_ISLANDS_B2F
+ warp 25, 3, 5, SEAFOAM_ISLANDS_1F
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BOULDER, 17, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
+ object SPRITE_BOULDER, 22, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
+
+ ; warp-to
+ warp_to 4, 2, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 7, 5, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_1F
+ warp_to 13, 7, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 19, 15, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 23, 15, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_1F
+ warp_to 25, 11, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 25, 3, SEAFOAM_ISLANDS_B1F_WIDTH ; SEAFOAM_ISLANDS_1F
--- /dev/null
+++ b/data/maps/objects/SeafoamIslandsB2F.asm
@@ -1,0 +1,26 @@
+SeafoamIslandsB2F_Object:
+ db $7d ; border block
+
+ db 7 ; warps
+ warp 5, 3, 0, SEAFOAM_ISLANDS_B1F
+ warp 5, 13, 0, SEAFOAM_ISLANDS_B3F
+ warp 13, 7, 2, SEAFOAM_ISLANDS_B1F
+ warp 19, 15, 3, SEAFOAM_ISLANDS_B1F
+ warp 25, 3, 3, SEAFOAM_ISLANDS_B3F
+ warp 25, 11, 5, SEAFOAM_ISLANDS_B1F
+ warp 25, 14, 4, SEAFOAM_ISLANDS_B3F
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BOULDER, 18, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
+ object SPRITE_BOULDER, 23, 6, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
+
+ ; warp-to
+ warp_to 5, 3, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
+ warp_to 5, 13, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B3F
+ warp_to 13, 7, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
+ warp_to 19, 15, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
+ warp_to 25, 3, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B3F
+ warp_to 25, 11, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B1F
+ warp_to 25, 14, SEAFOAM_ISLANDS_B2F_WIDTH ; SEAFOAM_ISLANDS_B3F
--- /dev/null
+++ b/data/maps/objects/SeafoamIslandsB3F.asm
@@ -1,0 +1,30 @@
+SeafoamIslandsB3F_Object:
+ db $7d ; border block
+
+ db 7 ; warps
+ warp 5, 12, 1, SEAFOAM_ISLANDS_B2F
+ warp 8, 6, 2, SEAFOAM_ISLANDS_B4F
+ warp 25, 4, 3, SEAFOAM_ISLANDS_B4F
+ warp 25, 3, 4, SEAFOAM_ISLANDS_B2F
+ warp 25, 14, 6, SEAFOAM_ISLANDS_B2F
+ warp 20, 17, 0, SEAFOAM_ISLANDS_B4F
+ warp 21, 17, 1, SEAFOAM_ISLANDS_B4F
+
+ db 0 ; signs
+
+ db 6 ; objects
+ object SPRITE_BOULDER, 5, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 1 ; person
+ object SPRITE_BOULDER, 3, 15, STAY, BOULDER_MOVEMENT_BYTE_2, 2 ; person
+ object SPRITE_BOULDER, 8, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 3 ; person
+ object SPRITE_BOULDER, 9, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 4 ; person
+ object SPRITE_BOULDER, 18, 6, STAY, NONE, 5 ; person
+ object SPRITE_BOULDER, 19, 6, STAY, NONE, 6 ; person
+
+ ; warp-to
+ warp_to 5, 12, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 8, 6, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
+ warp_to 25, 4, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
+ warp_to 25, 3, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 25, 14, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B2F
+ warp_to 20, 17, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
+ warp_to 21, 17, SEAFOAM_ISLANDS_B3F_WIDTH ; SEAFOAM_ISLANDS_B4F
--- /dev/null
+++ b/data/maps/objects/SeafoamIslandsB4F.asm
@@ -1,0 +1,23 @@
+SeafoamIslandsB4F_Object:
+ db $7d ; border block
+
+ db 4 ; warps
+ warp 20, 17, 5, SEAFOAM_ISLANDS_B3F
+ warp 21, 17, 6, SEAFOAM_ISLANDS_B3F
+ warp 11, 7, 1, SEAFOAM_ISLANDS_B3F
+ warp 25, 4, 2, SEAFOAM_ISLANDS_B3F
+
+ db 2 ; signs
+ sign 9, 15, 4 ; SeafoamIslands5Text4
+ sign 23, 1, 5 ; SeafoamIslands5Text5
+
+ db 3 ; objects
+ object SPRITE_BOULDER, 4, 15, STAY, NONE, 1 ; person
+ object SPRITE_BOULDER, 5, 15, STAY, NONE, 2 ; person
+ object SPRITE_BIRD, 6, 1, STAY, DOWN, 3, ARTICUNO, 50
+
+ ; warp-to
+ warp_to 20, 17, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
+ warp_to 21, 17, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
+ warp_to 11, 7, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
+ warp_to 25, 4, SEAFOAM_ISLANDS_B4F_WIDTH ; SEAFOAM_ISLANDS_B3F
--- /dev/null
+++ b/data/maps/objects/SilphCo10F.asm
@@ -1,0 +1,28 @@
+SilphCo10F_Object:
+ db $2e ; border block
+
+ db 6 ; warps
+ warp 8, 0, 0, SILPH_CO_9F
+ warp 10, 0, 0, SILPH_CO_11F
+ warp 12, 0, 0, SILPH_CO_ELEVATOR
+ warp 9, 11, 3, SILPH_CO_4F
+ warp 13, 15, 5, SILPH_CO_4F
+ warp 13, 7, 6, SILPH_CO_4F
+
+ db 0 ; signs
+
+ db 6 ; objects
+ object SPRITE_ROCKET, 1, 9, STAY, RIGHT, 1, OPP_ROCKET, 39
+ object SPRITE_OAK_AIDE, 10, 2, STAY, LEFT, 2, OPP_SCIENTIST, 11
+ object SPRITE_ERIKA, 9, 15, WALK, 0, 3 ; person
+ object SPRITE_BALL, 2, 12, STAY, NONE, 4, TM_26
+ object SPRITE_BALL, 4, 14, STAY, NONE, 5, RARE_CANDY
+ object SPRITE_BALL, 5, 11, STAY, NONE, 6, CARBOS
+
+ ; warp-to
+ warp_to 8, 0, SILPH_CO_10F_WIDTH ; SILPH_CO_9F
+ warp_to 10, 0, SILPH_CO_10F_WIDTH ; SILPH_CO_11F
+ warp_to 12, 0, SILPH_CO_10F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 9, 11, SILPH_CO_10F_WIDTH ; SILPH_CO_4F
+ warp_to 13, 15, SILPH_CO_10F_WIDTH ; SILPH_CO_4F
+ warp_to 13, 7, SILPH_CO_10F_WIDTH ; SILPH_CO_4F
--- /dev/null
+++ b/data/maps/objects/SilphCo11F.asm
@@ -1,0 +1,23 @@
+SilphCo11F_Object:
+ db $d ; border block
+
+ db 4 ; warps
+ warp 9, 0, 1, SILPH_CO_10F
+ warp 13, 0, 0, SILPH_CO_ELEVATOR
+ warp 5, 5, 9, -1
+ warp 3, 2, 3, SILPH_CO_7F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_MR_MASTERBALL, 7, 5, STAY, DOWN, 1 ; person
+ object SPRITE_FOULARD_WOMAN, 10, 5, STAY, DOWN, 2 ; person
+ object SPRITE_GIOVANNI, 6, 9, STAY, DOWN, 3, OPP_GIOVANNI, 2
+ object SPRITE_ROCKET, 3, 16, STAY, UP, 4, OPP_ROCKET, 41
+ object SPRITE_ROCKET, 15, 9, STAY, UP, 5, OPP_ROCKET, 40
+
+ ; warp-to
+ warp_to 9, 0, SILPH_CO_11F_WIDTH ; SILPH_CO_10F
+ warp_to 13, 0, SILPH_CO_11F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 5, 5, SILPH_CO_11F_WIDTH
+ warp_to 3, 2, SILPH_CO_11F_WIDTH ; SILPH_CO_7F
--- /dev/null
+++ b/data/maps/objects/SilphCo1F.asm
@@ -1,0 +1,21 @@
+SilphCo1F_Object:
+ db $2e ; border block
+
+ db 5 ; warps
+ warp 10, 17, 5, -1
+ warp 11, 17, 5, -1
+ warp 26, 0, 0, SILPH_CO_2F
+ warp 20, 0, 0, SILPH_CO_ELEVATOR
+ warp 16, 10, 6, SILPH_CO_3F
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_CABLE_CLUB_WOMAN, 4, 2, STAY, DOWN, 1 ; person
+
+ ; warp-to
+ warp_to 10, 17, SILPH_CO_1F_WIDTH
+ warp_to 11, 17, SILPH_CO_1F_WIDTH
+ warp_to 26, 0, SILPH_CO_1F_WIDTH ; SILPH_CO_2F
+ warp_to 20, 0, SILPH_CO_1F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 16, 10, SILPH_CO_1F_WIDTH ; SILPH_CO_3F
--- /dev/null
+++ b/data/maps/objects/SilphCo2F.asm
@@ -1,0 +1,29 @@
+SilphCo2F_Object:
+ db $2e ; border block
+
+ db 7 ; warps
+ warp 24, 0, 2, SILPH_CO_1F
+ warp 26, 0, 0, SILPH_CO_3F
+ warp 20, 0, 0, SILPH_CO_ELEVATOR
+ warp 3, 3, 6, SILPH_CO_3F
+ warp 13, 3, 4, SILPH_CO_8F
+ warp 27, 15, 5, SILPH_CO_8F
+ warp 9, 15, 4, SILPH_CO_6F
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_ERIKA, 10, 1, STAY, UP, 1 ; person
+ object SPRITE_OAK_AIDE, 5, 12, STAY, DOWN, 2, OPP_SCIENTIST, 2
+ object SPRITE_OAK_AIDE, 24, 13, STAY, LEFT, 3, OPP_SCIENTIST, 3
+ object SPRITE_ROCKET, 16, 11, STAY, UP, 4, OPP_ROCKET, 23
+ object SPRITE_ROCKET, 24, 7, STAY, UP, 5, OPP_ROCKET, 24
+
+ ; warp-to
+ warp_to 24, 0, SILPH_CO_2F_WIDTH ; SILPH_CO_1F
+ warp_to 26, 0, SILPH_CO_2F_WIDTH ; SILPH_CO_3F
+ warp_to 20, 0, SILPH_CO_2F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 3, 3, SILPH_CO_2F_WIDTH ; SILPH_CO_3F
+ warp_to 13, 3, SILPH_CO_2F_WIDTH ; SILPH_CO_8F
+ warp_to 27, 15, SILPH_CO_2F_WIDTH ; SILPH_CO_8F
+ warp_to 9, 15, SILPH_CO_2F_WIDTH ; SILPH_CO_6F
--- /dev/null
+++ b/data/maps/objects/SilphCo3F.asm
@@ -1,0 +1,34 @@
+SilphCo3F_Object:
+ db $2e ; border block
+
+ db 10 ; warps
+ warp 26, 0, 1, SILPH_CO_2F
+ warp 24, 0, 0, SILPH_CO_4F
+ warp 20, 0, 0, SILPH_CO_ELEVATOR
+ warp 23, 11, 9, SILPH_CO_3F
+ warp 3, 3, 5, SILPH_CO_5F
+ warp 3, 15, 6, SILPH_CO_5F
+ warp 27, 3, 3, SILPH_CO_2F
+ warp 3, 11, 3, SILPH_CO_9F
+ warp 11, 11, 4, SILPH_CO_7F
+ warp 27, 15, 3, SILPH_CO_3F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_LAPRAS_GIVER, 24, 8, STAY, NONE, 1 ; person
+ object SPRITE_ROCKET, 20, 7, STAY, LEFT, 2, OPP_ROCKET, 25
+ object SPRITE_OAK_AIDE, 7, 9, STAY, DOWN, 3, OPP_SCIENTIST, 4
+ object SPRITE_BALL, 8, 5, STAY, NONE, 4, HYPER_POTION
+
+ ; warp-to
+ warp_to 26, 0, SILPH_CO_3F_WIDTH ; SILPH_CO_2F
+ warp_to 24, 0, SILPH_CO_3F_WIDTH ; SILPH_CO_4F
+ warp_to 20, 0, SILPH_CO_3F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 23, 11, SILPH_CO_3F_WIDTH ; SILPH_CO_3F
+ warp_to 3, 3, SILPH_CO_3F_WIDTH ; SILPH_CO_5F
+ warp_to 3, 15, SILPH_CO_3F_WIDTH ; SILPH_CO_5F
+ warp_to 27, 3, SILPH_CO_3F_WIDTH ; SILPH_CO_2F
+ warp_to 3, 11, SILPH_CO_3F_WIDTH ; SILPH_CO_9F
+ warp_to 11, 11, SILPH_CO_3F_WIDTH ; SILPH_CO_7F
+ warp_to 27, 15, SILPH_CO_3F_WIDTH ; SILPH_CO_3F
--- /dev/null
+++ b/data/maps/objects/SilphCo4F.asm
@@ -1,0 +1,31 @@
+SilphCo4F_Object:
+ db $2e ; border block
+
+ db 7 ; warps
+ warp 24, 0, 1, SILPH_CO_3F
+ warp 26, 0, 1, SILPH_CO_5F
+ warp 20, 0, 0, SILPH_CO_ELEVATOR
+ warp 11, 7, 3, SILPH_CO_10F
+ warp 17, 3, 3, SILPH_CO_6F
+ warp 3, 15, 4, SILPH_CO_10F
+ warp 17, 11, 5, SILPH_CO_10F
+
+ db 0 ; signs
+
+ db 7 ; objects
+ object SPRITE_LAPRAS_GIVER, 6, 2, STAY, NONE, 1 ; person
+ object SPRITE_ROCKET, 9, 14, STAY, RIGHT, 2, OPP_ROCKET, 26
+ object SPRITE_OAK_AIDE, 14, 6, STAY, LEFT, 3, OPP_SCIENTIST, 5
+ object SPRITE_ROCKET, 26, 10, STAY, UP, 4, OPP_ROCKET, 27
+ object SPRITE_BALL, 3, 9, STAY, NONE, 5, FULL_HEAL
+ object SPRITE_BALL, 4, 7, STAY, NONE, 6, MAX_REVIVE
+ object SPRITE_BALL, 5, 8, STAY, NONE, 7, ESCAPE_ROPE
+
+ ; warp-to
+ warp_to 24, 0, SILPH_CO_4F_WIDTH ; SILPH_CO_3F
+ warp_to 26, 0, SILPH_CO_4F_WIDTH ; SILPH_CO_5F
+ warp_to 20, 0, SILPH_CO_4F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 11, 7, SILPH_CO_4F_WIDTH ; SILPH_CO_10F
+ warp_to 17, 3, SILPH_CO_4F_WIDTH ; SILPH_CO_6F
+ warp_to 3, 15, SILPH_CO_4F_WIDTH ; SILPH_CO_10F
+ warp_to 17, 11, SILPH_CO_4F_WIDTH ; SILPH_CO_10F
--- /dev/null
+++ b/data/maps/objects/SilphCo5F.asm
@@ -1,0 +1,35 @@
+SilphCo5F_Object:
+ db $2e ; border block
+
+ db 7 ; warps
+ warp 24, 0, 1, SILPH_CO_6F
+ warp 26, 0, 1, SILPH_CO_4F
+ warp 20, 0, 0, SILPH_CO_ELEVATOR
+ warp 27, 3, 5, SILPH_CO_7F
+ warp 9, 15, 4, SILPH_CO_9F
+ warp 11, 5, 4, SILPH_CO_3F
+ warp 3, 15, 5, SILPH_CO_3F
+
+ db 0 ; signs
+
+ db 11 ; objects
+ object SPRITE_LAPRAS_GIVER, 13, 9, STAY, NONE, 1 ; person
+ object SPRITE_ROCKET, 8, 16, STAY, RIGHT, 2, OPP_ROCKET, 28
+ object SPRITE_OAK_AIDE, 8, 3, STAY, RIGHT, 3, OPP_SCIENTIST, 6
+ object SPRITE_ROCKER, 18, 10, STAY, UP, 4, OPP_JUGGLER, 1
+ object SPRITE_ROCKET, 28, 4, STAY, UP, 5, OPP_ROCKET, 29
+ object SPRITE_BALL, 2, 13, STAY, NONE, 6, TM_09
+ object SPRITE_BALL, 4, 6, STAY, NONE, 7, PROTEIN
+ object SPRITE_BALL, 21, 16, STAY, NONE, 8, CARD_KEY
+ object SPRITE_CLIPBOARD, 22, 12, STAY, NONE, 9 ; person
+ object SPRITE_CLIPBOARD, 25, 10, STAY, NONE, 10 ; person
+ object SPRITE_CLIPBOARD, 24, 6, STAY, NONE, 11 ; person
+
+ ; warp-to
+ warp_to 24, 0, SILPH_CO_5F_WIDTH ; SILPH_CO_6F
+ warp_to 26, 0, SILPH_CO_5F_WIDTH ; SILPH_CO_4F
+ warp_to 20, 0, SILPH_CO_5F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 27, 3, SILPH_CO_5F_WIDTH ; SILPH_CO_7F
+ warp_to 9, 15, SILPH_CO_5F_WIDTH ; SILPH_CO_9F
+ warp_to 11, 5, SILPH_CO_5F_WIDTH ; SILPH_CO_3F
+ warp_to 3, 15, SILPH_CO_5F_WIDTH ; SILPH_CO_3F
--- /dev/null
+++ b/data/maps/objects/SilphCo6F.asm
@@ -1,0 +1,30 @@
+SilphCo6F_Object:
+ db $2e ; border block
+
+ db 5 ; warps
+ warp 16, 0, 1, SILPH_CO_7F
+ warp 14, 0, 0, SILPH_CO_5F
+ warp 18, 0, 0, SILPH_CO_ELEVATOR
+ warp 3, 3, 4, SILPH_CO_4F
+ warp 23, 3, 6, SILPH_CO_2F
+
+ db 0 ; signs
+
+ db 10 ; objects
+ object SPRITE_LAPRAS_GIVER, 10, 6, STAY, NONE, 1 ; person
+ object SPRITE_LAPRAS_GIVER, 20, 6, STAY, NONE, 2 ; person
+ object SPRITE_ERIKA, 21, 6, STAY, DOWN, 3 ; person
+ object SPRITE_ERIKA, 11, 10, STAY, RIGHT, 4 ; person
+ object SPRITE_LAPRAS_GIVER, 18, 13, STAY, UP, 5 ; person
+ object SPRITE_ROCKET, 17, 3, STAY, RIGHT, 6, OPP_ROCKET, 30
+ object SPRITE_OAK_AIDE, 7, 8, STAY, DOWN, 7, OPP_SCIENTIST, 7
+ object SPRITE_ROCKET, 14, 15, STAY, LEFT, 8, OPP_ROCKET, 31
+ object SPRITE_BALL, 3, 12, STAY, NONE, 9, HP_UP
+ object SPRITE_BALL, 2, 15, STAY, NONE, 10, X_ACCURACY
+
+ ; warp-to
+ warp_to 16, 0, SILPH_CO_6F_WIDTH ; SILPH_CO_7F
+ warp_to 14, 0, SILPH_CO_6F_WIDTH ; SILPH_CO_5F
+ warp_to 18, 0, SILPH_CO_6F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 3, 3, SILPH_CO_6F_WIDTH ; SILPH_CO_4F
+ warp_to 23, 3, SILPH_CO_6F_WIDTH ; SILPH_CO_2F
--- /dev/null
+++ b/data/maps/objects/SilphCo7F.asm
@@ -1,0 +1,33 @@
+SilphCo7F_Object:
+ db $2e ; border block
+
+ db 6 ; warps
+ warp 16, 0, 1, SILPH_CO_8F
+ warp 22, 0, 0, SILPH_CO_6F
+ warp 18, 0, 0, SILPH_CO_ELEVATOR
+ warp 5, 7, 3, SILPH_CO_11F
+ warp 5, 3, 8, SILPH_CO_3F
+ warp 21, 15, 3, SILPH_CO_5F
+
+ db 0 ; signs
+
+ db 11 ; objects
+ object SPRITE_LAPRAS_GIVER, 1, 5, STAY, NONE, 1 ; person
+ object SPRITE_LAPRAS_GIVER, 13, 13, STAY, UP, 2 ; person
+ object SPRITE_LAPRAS_GIVER, 7, 10, STAY, NONE, 3 ; person
+ object SPRITE_ERIKA, 10, 8, STAY, NONE, 4 ; person
+ object SPRITE_ROCKET, 13, 1, STAY, DOWN, 5, OPP_ROCKET, 32
+ object SPRITE_OAK_AIDE, 2, 13, STAY, DOWN, 6, OPP_SCIENTIST, 8
+ object SPRITE_ROCKET, 20, 2, STAY, LEFT, 7, OPP_ROCKET, 33
+ object SPRITE_ROCKET, 19, 14, STAY, RIGHT, 8, OPP_ROCKET, 34
+ object SPRITE_BLUE, 3, 7, STAY, UP, 9 ; person
+ object SPRITE_BALL, 1, 9, STAY, NONE, 10, CALCIUM
+ object SPRITE_BALL, 24, 11, STAY, NONE, 11, TM_03
+
+ ; warp-to
+ warp_to 16, 0, SILPH_CO_7F_WIDTH ; SILPH_CO_8F
+ warp_to 22, 0, SILPH_CO_7F_WIDTH ; SILPH_CO_6F
+ warp_to 18, 0, SILPH_CO_7F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 5, 7, SILPH_CO_7F_WIDTH ; SILPH_CO_11F
+ warp_to 5, 3, SILPH_CO_7F_WIDTH ; SILPH_CO_3F
+ warp_to 21, 15, SILPH_CO_7F_WIDTH ; SILPH_CO_5F
--- /dev/null
+++ b/data/maps/objects/SilphCo8F.asm
@@ -1,0 +1,28 @@
+SilphCo8F_Object:
+ db $2e ; border block
+
+ db 7 ; warps
+ warp 16, 0, 1, SILPH_CO_9F
+ warp 14, 0, 0, SILPH_CO_7F
+ warp 18, 0, 0, SILPH_CO_ELEVATOR
+ warp 3, 11, 6, SILPH_CO_8F
+ warp 3, 15, 4, SILPH_CO_2F
+ warp 11, 5, 5, SILPH_CO_2F
+ warp 11, 9, 3, SILPH_CO_8F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_LAPRAS_GIVER, 4, 2, STAY, NONE, 1 ; person
+ object SPRITE_ROCKET, 19, 2, STAY, LEFT, 2, OPP_ROCKET, 35
+ object SPRITE_OAK_AIDE, 10, 2, STAY, DOWN, 3, OPP_SCIENTIST, 9
+ object SPRITE_ROCKET, 12, 15, STAY, RIGHT, 4, OPP_ROCKET, 36
+
+ ; warp-to
+ warp_to 16, 0, SILPH_CO_8F_WIDTH ; SILPH_CO_9F
+ warp_to 14, 0, SILPH_CO_8F_WIDTH ; SILPH_CO_7F
+ warp_to 18, 0, SILPH_CO_8F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 3, 11, SILPH_CO_8F_WIDTH ; SILPH_CO_8F
+ warp_to 3, 15, SILPH_CO_8F_WIDTH ; SILPH_CO_2F
+ warp_to 11, 5, SILPH_CO_8F_WIDTH ; SILPH_CO_2F
+ warp_to 11, 9, SILPH_CO_8F_WIDTH ; SILPH_CO_8F_WIDTH
--- /dev/null
+++ b/data/maps/objects/SilphCo9F.asm
@@ -1,0 +1,24 @@
+SilphCo9F_Object:
+ db $2e ; border block
+
+ db 5 ; warps
+ warp 14, 0, 0, SILPH_CO_10F
+ warp 16, 0, 0, SILPH_CO_8F
+ warp 18, 0, 0, SILPH_CO_ELEVATOR
+ warp 9, 3, 7, SILPH_CO_3F
+ warp 17, 15, 4, SILPH_CO_5F
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 14, STAY, DOWN, 1 ; person
+ object SPRITE_ROCKET, 2, 4, STAY, UP, 2, OPP_ROCKET, 37
+ object SPRITE_OAK_AIDE, 21, 13, STAY, DOWN, 3, OPP_SCIENTIST, 10
+ object SPRITE_ROCKET, 13, 16, STAY, UP, 4, OPP_ROCKET, 38
+
+ ; warp-to
+ warp_to 14, 0, SILPH_CO_9F_WIDTH ; SILPH_CO_10F
+ warp_to 16, 0, SILPH_CO_9F_WIDTH ; SILPH_CO_8F
+ warp_to 18, 0, SILPH_CO_9F_WIDTH ; SILPH_CO_ELEVATOR
+ warp_to 9, 3, SILPH_CO_9F_WIDTH ; SILPH_CO_3F
+ warp_to 17, 15, SILPH_CO_9F_WIDTH ; SILPH_CO_5F
--- /dev/null
+++ b/data/maps/objects/SilphCoElevator.asm
@@ -1,0 +1,15 @@
+SilphCoElevator_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 1, 3, 0, 237
+ warp 2, 3, 0, 237
+
+ db 1 ; signs
+ sign 3, 0, 1 ; SilphCoElevatorText1
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 1, 3, SILPH_CO_ELEVATOR_WIDTH
+ warp_to 2, 3, SILPH_CO_ELEVATOR_WIDTH
--- /dev/null
+++ b/data/maps/objects/TradeCenter.asm
@@ -1,0 +1,9 @@
+TradeCenter_Object:
+ db $e ; border block
+
+ db 0 ; warps
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_RED, 2, 2, STAY, 0, 1 ; person
--- /dev/null
+++ b/data/maps/objects/UndergroundPathNorthSouth.asm
@@ -1,0 +1,14 @@
+UndergroundPathNorthSouth_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 5, 4, 2, UNDERGROUND_PATH_ROUTE_5
+ warp 2, 41, 2, UNDERGROUND_PATH_ROUTE_6
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 5, 4, UNDERGROUND_PATH_NORTH_SOUTH_WIDTH ; UNDERGROUND_PATH_ROUTE_5
+ warp_to 2, 41, UNDERGROUND_PATH_NORTH_SOUTH_WIDTH ; UNDERGROUND_PATH_ROUTE_6
--- /dev/null
+++ b/data/maps/objects/UndergroundPathRoute5.asm
@@ -1,0 +1,17 @@
+UndergroundPathRoute5_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 3, 7, 3, -1
+ warp 4, 7, 3, -1
+ warp 4, 4, 0, UNDERGROUND_PATH_NORTH_SOUTH
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_LITTLE_GIRL, 2, 3, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 3, 7, UNDERGROUND_PATH_ROUTE_5_WIDTH
+ warp_to 4, 7, UNDERGROUND_PATH_ROUTE_5_WIDTH
+ warp_to 4, 4, UNDERGROUND_PATH_ROUTE_5_WIDTH ; UNDERGROUND_PATH_NORTH_SOUTH
--- /dev/null
+++ b/data/maps/objects/UndergroundPathRoute6.asm
@@ -1,0 +1,17 @@
+UndergroundPathRoute6_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 3, 7, 3, -1
+ warp 4, 7, 3, -1
+ warp 4, 4, 1, UNDERGROUND_PATH_NORTH_SOUTH
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GIRL, 2, 3, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 3, 7, UNDERGROUND_PATH_ROUTE_6_WIDTH
+ warp_to 4, 7, UNDERGROUND_PATH_ROUTE_6_WIDTH
+ warp_to 4, 4, UNDERGROUND_PATH_ROUTE_6_WIDTH ; UNDERGROUND_PATH_NORTH_SOUTH
--- /dev/null
+++ b/data/maps/objects/UndergroundPathRoute7.asm
@@ -1,0 +1,17 @@
+UndergroundPathRoute7_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 3, 7, 4, -1
+ warp 4, 7, 4, -1
+ warp 4, 4, 0, UNDERGROUND_PATH_WEST_EAST
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FAT_BALD_GUY, 2, 4, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 3, 7, UNDERGROUND_PATH_ROUTE_7_WIDTH
+ warp_to 4, 7, UNDERGROUND_PATH_ROUTE_7_WIDTH
+ warp_to 4, 4, UNDERGROUND_PATH_ROUTE_7_WIDTH ; UNDERGROUND_PATH_WEST_EAST
--- /dev/null
+++ b/data/maps/objects/UndergroundPathRoute7Copy.asm
@@ -1,0 +1,18 @@
+UndergroundPathRoute7Copy_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 3, 7, 5, -1
+ warp 4, 7, 5, -1
+ warp 4, 4, 0, UNDERGROUND_PATH_WEST_EAST
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_GIRL, 3, 2, STAY, NONE, 1 ; person
+ object SPRITE_FAT_BALD_GUY, 2, 4, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 3, 7, UNDERGROUND_PATH_ROUTE_7_COPY_WIDTH
+ warp_to 4, 7, UNDERGROUND_PATH_ROUTE_7_COPY_WIDTH
+ warp_to 4, 4, UNDERGROUND_PATH_ROUTE_7_COPY_WIDTH ; UNDERGROUND_PATH_WEST_EAST
--- /dev/null
+++ b/data/maps/objects/UndergroundPathRoute8.asm
@@ -1,0 +1,17 @@
+UndergroundPathRoute8_Object:
+ db $a ; border block
+
+ db 3 ; warps
+ warp 3, 7, 4, -1
+ warp 4, 7, 4, -1
+ warp 4, 4, 1, UNDERGROUND_PATH_WEST_EAST
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_GIRL, 3, 4, STAY, NONE, 1 ; person
+
+ ; warp-to
+ warp_to 3, 7, UNDERGROUND_PATH_ROUTE_8_WIDTH
+ warp_to 4, 7, UNDERGROUND_PATH_ROUTE_8_WIDTH
+ warp_to 4, 4, UNDERGROUND_PATH_ROUTE_8_WIDTH ; UNDERGROUND_PATH_WEST_EAST
--- /dev/null
+++ b/data/maps/objects/UndergroundPathWestEast.asm
@@ -1,0 +1,14 @@
+UndergroundPathWestEast_Object:
+ db $1 ; border block
+
+ db 2 ; warps
+ warp 2, 5, 2, UNDERGROUND_PATH_ROUTE_7
+ warp 47, 2, 2, UNDERGROUND_PATH_ROUTE_8
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 2, 5, UNDERGROUND_PATH_WEST_EAST_WIDTH ; UNDERGROUND_PATH_ROUTE_7
+ warp_to 47, 2, UNDERGROUND_PATH_WEST_EAST_WIDTH ; UNDERGROUND_PATH_ROUTE_8
--- /dev/null
+++ b/data/maps/objects/VermilionCity.asm
@@ -1,0 +1,41 @@
+VermilionCity_Object:
+ db $43 ; border block
+
+ db 9 ; warps
+ warp 11, 3, 0, VERMILION_POKECENTER
+ warp 9, 13, 0, POKEMON_FAN_CLUB
+ warp 23, 13, 0, VERMILION_MART
+ warp 12, 19, 0, VERMILION_GYM
+ warp 23, 19, 0, VERMILION_PIDGEY_HOUSE
+ warp 18, 31, 0, VERMILION_DOCK
+ warp 19, 31, 0, VERMILION_DOCK
+ warp 15, 13, 0, VERMILION_TRADE_HOUSE
+ warp 7, 3, 0, VERMILION_OLD_ROD_HOUSE
+
+ db 7 ; signs
+ sign 27, 3, 7 ; VermilionCityText7
+ sign 37, 13, 8 ; VermilionCityText8
+ sign 24, 13, 9 ; MartSignText
+ sign 12, 3, 10 ; PokeCenterSignText
+ sign 7, 13, 11 ; VermilionCityText11
+ sign 7, 19, 12 ; VermilionCityText12
+ sign 29, 15, 13 ; VermilionCityText13
+
+ db 6 ; objects
+ object SPRITE_FOULARD_WOMAN, 19, 7, WALK, 2, 1 ; person
+ object SPRITE_GAMBLER, 14, 6, STAY, NONE, 2 ; person
+ object SPRITE_SAILOR, 19, 30, STAY, UP, 3 ; person
+ object SPRITE_GAMBLER, 30, 7, STAY, NONE, 4 ; person
+ object SPRITE_SLOWBRO, 29, 9, WALK, 1, 5 ; person
+ object SPRITE_SAILOR, 25, 27, WALK, 2, 6 ; person
+
+ ; warp-to
+ warp_to 11, 3, VERMILION_CITY_WIDTH ; VERMILION_POKECENTER
+ warp_to 9, 13, VERMILION_CITY_WIDTH ; POKEMON_FAN_CLUB
+ warp_to 23, 13, VERMILION_CITY_WIDTH ; VERMILION_MART
+ warp_to 12, 19, VERMILION_CITY_WIDTH ; VERMILION_GYM
+ warp_to 23, 19, VERMILION_CITY_WIDTH ; VERMILION_PIDGEY_HOUSE
+ warp_to 18, 31, VERMILION_CITY_WIDTH ; VERMILION_DOCK
+ warp_to 19, 31, VERMILION_CITY_WIDTH ; VERMILION_DOCK
+ warp_to 15, 13, VERMILION_CITY_WIDTH ; VERMILION_TRADE_HOUSE
+ warp_to 7, 3, VERMILION_CITY_WIDTH ; VERMILION_OLD_ROD_HOUSE
--- /dev/null
+++ b/data/maps/objects/VermilionDock.asm
@@ -1,0 +1,14 @@
+VermilionDock_Object:
+ db $f ; border block
+
+ db 2 ; warps
+ warp 14, 0, 5, -1
+ warp 14, 2, 1, SS_ANNE_1F
+
+ db 0 ; signs
+
+ db 0 ; objects
+
+ ; warp-to
+ warp_to 14, 0, VERMILION_DOCK_WIDTH
+ warp_to 14, 2, VERMILION_DOCK_WIDTH ; SS_ANNE_1F
--- /dev/null
+++ b/data/maps/objects/VermilionGym.asm
@@ -1,0 +1,19 @@
+VermilionGym_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 4, 17, 3, -1
+ warp 5, 17, 3, -1
+
+ db 0 ; signs
+
+ db 5 ; objects
+ object SPRITE_ROCKER, 5, 1, STAY, DOWN, 1, OPP_LT_SURGE, 1
+ object SPRITE_GENTLEMAN, 9, 6, STAY, LEFT, 2, OPP_GENTLEMAN, 3
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 8, STAY, LEFT, 3, OPP_ROCKER, 1
+ object SPRITE_SAILOR, 0, 10, STAY, RIGHT, 4, OPP_SAILOR, 8
+ object SPRITE_GYM_HELPER, 4, 14, STAY, DOWN, 5 ; person
+
+ ; warp-to
+ warp_to 4, 17, VERMILION_GYM_WIDTH
+ warp_to 5, 17, VERMILION_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/VermilionMart.asm
@@ -1,0 +1,17 @@
+VermilionMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 2, -1
+ warp 4, 7, 2, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 5, 6, STAY, NONE, 2 ; person
+ object SPRITE_LASS, 3, 3, WALK, 2, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, VERMILION_MART_WIDTH
+ warp_to 4, 7, VERMILION_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/VermilionOldRodHouse.asm
@@ -1,0 +1,15 @@
+VermilionOldRodHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 8, -1
+ warp 3, 7, 8, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_FISHER, 2, 4, STAY, RIGHT, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, VERMILION_OLD_ROD_HOUSE_WIDTH
+ warp_to 3, 7, VERMILION_OLD_ROD_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/VermilionPidgeyHouse.asm
@@ -1,0 +1,17 @@
+VermilionPidgeyHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 4, -1
+ warp 3, 7, 4, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_BUG_CATCHER, 5, 3, STAY, LEFT, 1 ; person
+ object SPRITE_BIRD, 3, 5, WALK, 2, 2 ; person
+ object SPRITE_PAPER_SHEET, 4, 3, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 2, 7, VERMILION_PIDGEY_HOUSE_WIDTH
+ warp_to 3, 7, VERMILION_PIDGEY_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/VermilionPokecenter.asm
@@ -1,0 +1,18 @@
+VermilionPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 0, -1
+ warp 4, 7, 0, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_FISHER, 10, 5, STAY, NONE, 2 ; person
+ object SPRITE_SAILOR, 5, 4, STAY, NONE, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, VERMILION_POKECENTER_WIDTH
+ warp_to 4, 7, VERMILION_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/VermilionTradeHouse.asm
@@ -1,0 +1,15 @@
+VermilionTradeHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 7, -1
+ warp 3, 7, 7, -1
+
+ db 0 ; signs
+
+ db 1 ; objects
+ object SPRITE_LITTLE_GIRL, 3, 5, STAY, UP, 1 ; person
+
+ ; warp-to
+ warp_to 2, 7, VERMILION_TRADE_HOUSE_WIDTH
+ warp_to 3, 7, VERMILION_TRADE_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/VictoryRoad1F.asm
@@ -1,0 +1,23 @@
+VictoryRoad1F_Object:
+ db $7d ; border block
+
+ db 3 ; warps
+ warp 8, 17, 2, -1
+ warp 9, 17, 2, -1
+ warp 1, 1, 0, VICTORY_ROAD_2F
+
+ db 0 ; signs
+
+ db 7 ; objects
+ object SPRITE_LASS, 7, 5, STAY, RIGHT, 1, OPP_COOLTRAINER_F, 5
+ object SPRITE_BLACK_HAIR_BOY_1, 3, 2, STAY, DOWN, 2, OPP_COOLTRAINER_M, 5
+ object SPRITE_BALL, 11, 0, STAY, NONE, 3, TM_43
+ object SPRITE_BALL, 9, 2, STAY, NONE, 4, RARE_CANDY
+ object SPRITE_BOULDER, 5, 15, STAY, BOULDER_MOVEMENT_BYTE_2, 5 ; person
+ object SPRITE_BOULDER, 14, 2, STAY, BOULDER_MOVEMENT_BYTE_2, 6 ; person
+ object SPRITE_BOULDER, 2, 10, STAY, BOULDER_MOVEMENT_BYTE_2, 7 ; person
+
+ ; warp-to
+ warp_to 8, 17, VICTORY_ROAD_1F_WIDTH
+ warp_to 9, 17, VICTORY_ROAD_1F_WIDTH
+ warp_to 1, 1, VICTORY_ROAD_1F_WIDTH ; VICTORY_ROAD_2F
--- /dev/null
+++ b/data/maps/objects/VictoryRoad2F.asm
@@ -1,0 +1,37 @@
+VictoryRoad2F_Object:
+ db $7d ; border block
+
+ db 7 ; warps
+ warp 0, 8, 2, VICTORY_ROAD_1F
+ warp 29, 7, 3, -1
+ warp 29, 8, 3, -1
+ warp 23, 7, 0, VICTORY_ROAD_3F
+ warp 25, 14, 2, VICTORY_ROAD_3F
+ warp 27, 7, 1, VICTORY_ROAD_3F
+ warp 1, 1, 3, VICTORY_ROAD_3F
+
+ db 0 ; signs
+
+ db 13 ; objects
+ object SPRITE_HIKER, 12, 9, STAY, LEFT, 1, OPP_BLACKBELT, 9
+ object SPRITE_BLACK_HAIR_BOY_2, 21, 13, STAY, LEFT, 2, OPP_JUGGLER, 2
+ object SPRITE_BLACK_HAIR_BOY_1, 19, 8, STAY, DOWN, 3, OPP_TAMER, 5
+ object SPRITE_BLACK_HAIR_BOY_2, 4, 2, STAY, DOWN, 4, OPP_POKEMANIAC, 6
+ object SPRITE_BLACK_HAIR_BOY_2, 26, 3, STAY, LEFT, 5, OPP_JUGGLER, 5
+ object SPRITE_BIRD, 11, 5, STAY, UP, 6, MOLTRES, 50
+ object SPRITE_BALL, 27, 5, STAY, NONE, 7, TM_17
+ object SPRITE_BALL, 18, 9, STAY, NONE, 8, FULL_HEAL
+ object SPRITE_BALL, 9, 11, STAY, NONE, 9, TM_05
+ object SPRITE_BALL, 11, 0, STAY, NONE, 10, GUARD_SPEC
+ object SPRITE_BOULDER, 4, 14, STAY, BOULDER_MOVEMENT_BYTE_2, 11 ; person
+ object SPRITE_BOULDER, 5, 5, STAY, BOULDER_MOVEMENT_BYTE_2, 12 ; person
+ object SPRITE_BOULDER, 23, 16, STAY, BOULDER_MOVEMENT_BYTE_2, 13 ; person
+
+ ; warp-to
+ warp_to 0, 8, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_1F
+ warp_to 29, 7, VICTORY_ROAD_2F_WIDTH
+ warp_to 29, 8, VICTORY_ROAD_2F_WIDTH
+ warp_to 23, 7, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
+ warp_to 25, 14, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
+ warp_to 27, 7, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
+ warp_to 1, 1, VICTORY_ROAD_2F_WIDTH ; VICTORY_ROAD_3F
--- /dev/null
+++ b/data/maps/objects/VictoryRoad3F.asm
@@ -1,0 +1,28 @@
+VictoryRoad3F_Object:
+ db $7d ; border block
+
+ db 4 ; warps
+ warp 23, 7, 3, VICTORY_ROAD_2F
+ warp 26, 8, 5, VICTORY_ROAD_2F
+ warp 27, 15, 4, VICTORY_ROAD_2F
+ warp 2, 0, 6, VICTORY_ROAD_2F
+
+ db 0 ; signs
+
+ db 10 ; objects
+ object SPRITE_BLACK_HAIR_BOY_1, 28, 5, STAY, LEFT, 1, OPP_COOLTRAINER_M, 2
+ object SPRITE_LASS, 7, 13, STAY, RIGHT, 2, OPP_COOLTRAINER_F, 2
+ object SPRITE_BLACK_HAIR_BOY_1, 6, 14, STAY, LEFT, 3, OPP_COOLTRAINER_M, 3
+ object SPRITE_LASS, 13, 3, STAY, RIGHT, 4, OPP_COOLTRAINER_F, 3
+ object SPRITE_BALL, 26, 5, STAY, NONE, 5, MAX_REVIVE
+ object SPRITE_BALL, 7, 7, STAY, NONE, 6, TM_47
+ object SPRITE_BOULDER, 22, 3, STAY, BOULDER_MOVEMENT_BYTE_2, 7 ; person
+ object SPRITE_BOULDER, 13, 12, STAY, BOULDER_MOVEMENT_BYTE_2, 8 ; person
+ object SPRITE_BOULDER, 24, 10, STAY, BOULDER_MOVEMENT_BYTE_2, 9 ; person
+ object SPRITE_BOULDER, 22, 15, STAY, BOULDER_MOVEMENT_BYTE_2, 10 ; person
+
+ ; warp-to
+ warp_to 23, 7, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
+ warp_to 26, 8, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
+ warp_to 27, 15, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
+ warp_to 2, 0, VICTORY_ROAD_3F_WIDTH ; VICTORY_ROAD_2F
--- /dev/null
+++ b/data/maps/objects/ViridianCity.asm
@@ -1,0 +1,33 @@
+ViridianCity_Object:
+ db $f ; border block
+
+ db 5 ; warps
+ warp 23, 25, 0, VIRIDIAN_POKECENTER
+ warp 29, 19, 0, VIRIDIAN_MART
+ warp 21, 15, 0, VIRIDIAN_SCHOOL_HOUSE
+ warp 21, 9, 0, VIRIDIAN_NICKNAME_HOUSE
+ warp 32, 7, 0, VIRIDIAN_GYM
+
+ db 6 ; signs
+ sign 17, 17, 8 ; ViridianCityText8
+ sign 19, 1, 9 ; ViridianCityText9
+ sign 21, 29, 10 ; ViridianCityText10
+ sign 30, 19, 11 ; MartSignText
+ sign 24, 25, 12 ; PokeCenterSignText
+ sign 27, 7, 13 ; ViridianCityText13
+
+ db 7 ; objects
+ object SPRITE_BUG_CATCHER, 13, 20, WALK, 0, 1 ; person
+ object SPRITE_GAMBLER, 30, 8, STAY, NONE, 2 ; person
+ object SPRITE_BUG_CATCHER, 30, 25, WALK, 0, 3 ; person
+ object SPRITE_GIRL, 17, 9, STAY, RIGHT, 4 ; person
+ object SPRITE_LYING_OLD_MAN, 18, 9, STAY, NONE, 5 ; person
+ object SPRITE_FISHER2, 6, 23, STAY, DOWN, 6 ; person
+ object SPRITE_GAMBLER, 17, 5, WALK, 2, 7 ; person
+
+ ; warp-to
+ warp_to 23, 25, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_POKECENTER
+ warp_to 29, 19, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_MART
+ warp_to 21, 15, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_SCHOOL_HOUSE
+ warp_to 21, 9, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_NICKNAME_HOUSE
+ warp_to 32, 7, VIRIDIAN_CITY_WIDTH ; VIRIDIAN_GYM
--- /dev/null
+++ b/data/maps/objects/ViridianForest.asm
@@ -1,0 +1,36 @@
+ViridianForest_Object:
+ db $3 ; border block
+
+ db 6 ; warps
+ warp 1, 0, 2, VIRIDIAN_FOREST_NORTH_GATE
+ warp 2, 0, 3, VIRIDIAN_FOREST_NORTH_GATE
+ warp 15, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
+ warp 16, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
+ warp 17, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
+ warp 18, 47, 1, VIRIDIAN_FOREST_SOUTH_GATE
+
+ db 6 ; signs
+ sign 24, 40, 9 ; ViridianForestText9
+ sign 16, 32, 10 ; ViridianForestText10
+ sign 26, 17, 11 ; ViridianForestText11
+ sign 4, 24, 12 ; ViridianForestText12
+ sign 18, 45, 13 ; ViridianForestText13
+ sign 2, 1, 14 ; ViridianForestText14
+
+ db 8 ; objects
+ object SPRITE_BUG_CATCHER, 16, 43, STAY, NONE, 1 ; person
+ object SPRITE_BUG_CATCHER, 30, 33, STAY, LEFT, 2, OPP_BUG_CATCHER, 1
+ object SPRITE_BUG_CATCHER, 30, 19, STAY, LEFT, 3, OPP_BUG_CATCHER, 2
+ object SPRITE_BUG_CATCHER, 2, 18, STAY, LEFT, 4, OPP_BUG_CATCHER, 3
+ object SPRITE_BALL, 25, 11, STAY, NONE, 5, ANTIDOTE
+ object SPRITE_BALL, 12, 29, STAY, NONE, 6, POTION
+ object SPRITE_BALL, 1, 31, STAY, NONE, 7, POKE_BALL
+ object SPRITE_BUG_CATCHER, 27, 40, STAY, NONE, 8 ; person
+
+ ; warp-to
+ warp_to 1, 0, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_NORTH_GATE
+ warp_to 2, 0, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_NORTH_GATE
+ warp_to 15, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
+ warp_to 16, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
+ warp_to 17, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
+ warp_to 18, 47, VIRIDIAN_FOREST_WIDTH ; VIRIDIAN_FOREST_SOUTH_GATE
--- /dev/null
+++ b/data/maps/objects/ViridianForestNorthGate.asm
@@ -1,0 +1,20 @@
+ViridianForestNorthGate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 4, 0, 1, -1
+ warp 5, 0, 1, -1
+ warp 4, 7, 0, VIRIDIAN_FOREST
+ warp 5, 7, 0, VIRIDIAN_FOREST
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BLACK_HAIR_BOY_2, 3, 2, STAY, NONE, 1 ; person
+ object SPRITE_OLD_PERSON, 2, 5, STAY, NONE, 2 ; person
+
+ ; warp-to
+ warp_to 4, 0, VIRIDIAN_FOREST_NORTH_GATE_WIDTH
+ warp_to 5, 0, VIRIDIAN_FOREST_NORTH_GATE_WIDTH
+ warp_to 4, 7, VIRIDIAN_FOREST_NORTH_GATE_WIDTH ; VIRIDIAN_FOREST
+ warp_to 5, 7, VIRIDIAN_FOREST_NORTH_GATE_WIDTH ; VIRIDIAN_FOREST
--- /dev/null
+++ b/data/maps/objects/ViridianForestSouthGate.asm
@@ -1,0 +1,20 @@
+ViridianForestSouthGate_Object:
+ db $a ; border block
+
+ db 4 ; warps
+ warp 4, 0, 3, VIRIDIAN_FOREST
+ warp 5, 0, 4, VIRIDIAN_FOREST
+ warp 4, 7, 5, -1
+ warp 5, 7, 5, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_GIRL, 8, 4, STAY, LEFT, 1 ; person
+ object SPRITE_LITTLE_GIRL, 2, 4, WALK, 1, 2 ; person
+
+ ; warp-to
+ warp_to 4, 0, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH ; VIRIDIAN_FOREST
+ warp_to 5, 0, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH ; VIRIDIAN_FOREST
+ warp_to 4, 7, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH
+ warp_to 5, 7, VIRIDIAN_FOREST_SOUTH_GATE_WIDTH
--- /dev/null
+++ b/data/maps/objects/ViridianGym.asm
@@ -1,0 +1,25 @@
+ViridianGym_Object:
+ db $3 ; border block
+
+ db 2 ; warps
+ warp 16, 17, 4, -1
+ warp 17, 17, 4, -1
+
+ db 0 ; signs
+
+ db 11 ; objects
+ object SPRITE_GIOVANNI, 2, 1, STAY, DOWN, 1, OPP_GIOVANNI, 3
+ object SPRITE_BLACK_HAIR_BOY_1, 12, 7, STAY, DOWN, 2, OPP_COOLTRAINER_M, 9
+ object SPRITE_HIKER, 11, 11, STAY, UP, 3, OPP_BLACKBELT, 6
+ object SPRITE_ROCKER, 10, 7, STAY, DOWN, 4, OPP_TAMER, 3
+ object SPRITE_HIKER, 3, 7, STAY, LEFT, 5, OPP_BLACKBELT, 7
+ object SPRITE_BLACK_HAIR_BOY_1, 13, 5, STAY, RIGHT, 6, OPP_COOLTRAINER_M, 10
+ object SPRITE_HIKER, 10, 1, STAY, DOWN, 7, OPP_BLACKBELT, 8
+ object SPRITE_ROCKER, 2, 16, STAY, RIGHT, 8, OPP_TAMER, 4
+ object SPRITE_BLACK_HAIR_BOY_1, 6, 5, STAY, DOWN, 9, OPP_COOLTRAINER_M, 1
+ object SPRITE_GYM_HELPER, 16, 15, STAY, DOWN, 10 ; person
+ object SPRITE_BALL, 16, 9, STAY, NONE, 11, REVIVE
+
+ ; warp-to
+ warp_to 16, 17, VIRIDIAN_GYM_WIDTH
+ warp_to 17, 17, VIRIDIAN_GYM_WIDTH
--- /dev/null
+++ b/data/maps/objects/ViridianMart.asm
@@ -1,0 +1,17 @@
+ViridianMart_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 1, -1
+ warp 4, 7, 1, -1
+
+ db 0 ; signs
+
+ db 3 ; objects
+ object SPRITE_MART_GUY, 0, 5, STAY, RIGHT, 1 ; person
+ object SPRITE_BUG_CATCHER, 5, 5, WALK, 1, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 3, 3, STAY, NONE, 3 ; person
+
+ ; warp-to
+ warp_to 3, 7, VIRIDIAN_MART_WIDTH
+ warp_to 4, 7, VIRIDIAN_MART_WIDTH
--- /dev/null
+++ b/data/maps/objects/ViridianNicknameHouse.asm
@@ -1,0 +1,18 @@
+ViridianNicknameHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 3, -1
+ warp 3, 7, 3, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_BALDING_GUY, 5, 3, STAY, NONE, 1 ; person
+ object SPRITE_LITTLE_GIRL, 1, 4, WALK, 1, 2 ; person
+ object SPRITE_BIRD, 5, 5, WALK, 2, 3 ; person
+ object SPRITE_CLIPBOARD, 4, 0, STAY, NONE, 4 ; person
+
+ ; warp-to
+ warp_to 2, 7, VIRIDIAN_NICKNAME_HOUSE_WIDTH
+ warp_to 3, 7, VIRIDIAN_NICKNAME_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/ViridianPokecenter.asm
@@ -1,0 +1,18 @@
+ViridianPokecenter_Object:
+ db $0 ; border block
+
+ db 2 ; warps
+ warp 3, 7, 0, -1
+ warp 4, 7, 0, -1
+
+ db 0 ; signs
+
+ db 4 ; objects
+ object SPRITE_NURSE, 3, 1, STAY, DOWN, 1 ; person
+ object SPRITE_GENTLEMAN, 10, 5, WALK, 1, 2 ; person
+ object SPRITE_BLACK_HAIR_BOY_1, 4, 3, STAY, NONE, 3 ; person
+ object SPRITE_CABLE_CLUB_WOMAN, 11, 2, STAY, DOWN, 4 ; person
+
+ ; warp-to
+ warp_to 3, 7, VIRIDIAN_POKECENTER_WIDTH
+ warp_to 4, 7, VIRIDIAN_POKECENTER_WIDTH
--- /dev/null
+++ b/data/maps/objects/ViridianSchoolHouse.asm
@@ -1,0 +1,16 @@
+ViridianSchoolHouse_Object:
+ db $a ; border block
+
+ db 2 ; warps
+ warp 2, 7, 2, -1
+ warp 3, 7, 2, -1
+
+ db 0 ; signs
+
+ db 2 ; objects
+ object SPRITE_BRUNETTE_GIRL, 3, 5, STAY, UP, 1 ; person
+ object SPRITE_LASS, 4, 1, STAY, DOWN, 2 ; person
+
+ ; warp-to
+ warp_to 2, 7, VIRIDIAN_SCHOOL_HOUSE_WIDTH
+ warp_to 3, 7, VIRIDIAN_SCHOOL_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/objects/WardensHouse.asm
@@ -1,0 +1,19 @@
+WardensHouse_Object:
+ db $17 ; border block
+
+ db 2 ; warps
+ warp 4, 7, 3, -1
+ warp 5, 7, 3, -1
+
+ db 2 ; signs
+ sign 4, 3, 4 ; FuchsiaHouse2Text4
+ sign 5, 3, 5 ; FuchsiaHouse2Text5
+
+ db 3 ; objects
+ object SPRITE_WARDEN, 2, 3, STAY, NONE, 1 ; person
+ object SPRITE_BALL, 8, 3, STAY, NONE, 2, RARE_CANDY
+ object SPRITE_BOULDER, 8, 4, STAY, BOULDER_MOVEMENT_BYTE_2, 3 ; person
+
+ ; warp-to
+ warp_to 4, 7, WARDENS_HOUSE_WIDTH
+ warp_to 5, 7, WARDENS_HOUSE_WIDTH
--- /dev/null
+++ b/data/maps/rest_house_maps.asm
@@ -1,0 +1,5 @@
+SafariZoneRestHouses:
+ db SAFARI_ZONE_WEST_REST_HOUSE
+ db SAFARI_ZONE_EAST_REST_HOUSE
+ db SAFARI_ZONE_NORTH_REST_HOUSE
+ db -1
--- /dev/null
+++ b/data/maps/songs.asm
@@ -1,0 +1,249 @@
+MapSongBanks::
+ db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; PALLET_TOWN
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_CITY
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_CITY
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_CITY
+ db MUSIC_LAVENDER, BANK(Music_Lavender) ; LAVENDER_TOWN
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_CITY
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_CITY
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_CITY
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_ISLAND
+ db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; SAFFRON_CITY
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; UNUSED_MAP_0B
+ db MUSIC_ROUTES1, BANK(Music_Routes1) ; ROUTE_1
+ db MUSIC_ROUTES1, BANK(Music_Routes1) ; ROUTE_2
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_3
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_4
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_5
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_6
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_7
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_8
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_9
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_10
+ db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_11
+ db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_12
+ db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_13
+ db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_14
+ db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_15
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_16
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_17
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_18
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_19
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_20
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_21
+ db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_22
+ db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; ROUTE_23
+ db MUSIC_ROUTES2, BANK(Music_Routes2) ; ROUTE_24
+ db MUSIC_ROUTES2, BANK(Music_Routes2) ; ROUTE_25
+ db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; REDS_HOUSE_1F
+ db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; REDS_HOUSE_2F
+ db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; BLUES_HOUSE
+ db MUSIC_OAKS_LAB, BANK(Music_OaksLab) ; OAKS_LAB
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VIRIDIAN_POKECENTER
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VIRIDIAN_MART
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_SCHOOL_HOUSE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_NICKNAME_HOUSE
+ db MUSIC_GYM, BANK(Music_Gym) ; VIRIDIAN_GYM
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DIGLETTS_CAVE_ROUTE_2
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_FOREST_NORTH_GATE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_2_TRADE_HOUSE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_2_GATE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_FOREST_SOUTH_GATE
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; VIRIDIAN_FOREST
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; MUSEUM_1F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; MUSEUM_2F
+ db MUSIC_GYM, BANK(Music_Gym) ; PEWTER_GYM
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_NIDORAN_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; PEWTER_MART
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_SPEECH_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; PEWTER_POKECENTER
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MT_MOON_1F
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MT_MOON_B1F
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MT_MOON_B2F
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_TRASHED_HOUSE
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_TRADE_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CERULEAN_POKECENTER
+ db MUSIC_GYM, BANK(Music_Gym) ; CERULEAN_GYM
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; BIKE_SHOP
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CERULEAN_MART
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; MT_MOON_POKECENTER
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; CERULEAN_TRASHED_HOUSE_COPY
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_5_GATE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_5
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; DAYCARE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_6_GATE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_6
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; UNDERGROUND_PATH_ROUTE_6_COPY
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_7_GATE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_7
+ db MUSIC_CELADON, BANK(Music_Celadon) ; UNDERGROUND_PATH_ROUTE_7_COPY
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_8_GATE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_8
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; ROCK_TUNNEL_POKECENTER
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; ROCK_TUNNEL_1F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; POWER_PLANT
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; ROUTE_11_GATE_1F
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DIGLETTS_CAVE_ROUTE_11
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; ROUTE_11_GATE_2F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_12_GATE_1F
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; BILLS_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VERMILION_POKECENTER
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; POKEMON_FAN_CLUB
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VERMILION_MART
+ db MUSIC_GYM, BANK(Music_Gym) ; VERMILION_GYM
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_PIDGEY_HOUSE
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; VERMILION_DOCK
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_1F
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_2F
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_3F
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_B1F
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_BOW
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_KITCHEN
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_CAPTAINS_ROOM
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_1F_ROOMS
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_2F_ROOMS
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SS_ANNE_B1F_ROOMS
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; UNUSED_MAP_69
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; UNUSED_MAP_6A
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_6B
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VICTORY_ROAD_1F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; UNUSED_MAP_6D
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_6E
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_6F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_70
+ db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; LANCES_ROOM
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_72
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_73
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_74
+ db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; UNUSED_MAP_75
+ db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; HALL_OF_FAME
+ db MUSIC_ROUTES1, BANK(Music_Routes1) ; UNDERGROUND_PATH_NORTH_SOUTH
+ db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; CHAMPIONS_ROOM
+ db MUSIC_ROUTES1, BANK(Music_Routes1) ; UNDERGROUND_PATH_WEST_EAST
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_1F
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_2F
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_3F
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_4F
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_ROOF
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_ELEVATOR
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_1F
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_2F
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_3F
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_ROOF
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_MANSION_ROOF_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_POKECENTER
+ db MUSIC_GYM, BANK(Music_Gym) ; CELADON_GYM
+ db MUSIC_GAME_CORNER, BANK(Music_GameCorner) ; GAME_CORNER
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CELADON_MART_5F
+ db MUSIC_CELADON, BANK(Music_Celadon) ; GAME_CORNER_PRIZE_ROOM
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_DINER
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_CHIEF_HOUSE
+ db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_HOTEL
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; LAVENDER_POKECENTER
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_1F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_2F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_3F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_4F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_5F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_6F
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; POKEMON_TOWER_7F
+ db MUSIC_LAVENDER, BANK(Music_Lavender) ; MR_FUJIS_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; LAVENDER_MART
+ db MUSIC_LAVENDER, BANK(Music_Lavender) ; LAVENDER_CUBONE_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; FUCHSIA_MART
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_BILLS_GRANDPAS_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; FUCHSIA_POKECENTER
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; WARDENS_HOUSE
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; SAFARI_ZONE_GATE
+ db MUSIC_GYM, BANK(Music_Gym) ; FUCHSIA_GYM
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_MEETING_ROOM
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B1F
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B2F
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B3F
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_B4F
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; VERMILION_OLD_ROD_HOUSE
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_GOOD_ROD_HOUSE
+ db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_1F
+ db MUSIC_GYM, BANK(Music_Gym) ; CINNABAR_GYM
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB_TRADE_ROOM
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB_METRONOME_ROOM
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_LAB_FOSSIL_ROOM
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CINNABAR_POKECENTER
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CINNABAR_MART
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_MART_COPY
+ db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU_LOBBY
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; COPYCATS_HOUSE_1F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; COPYCATS_HOUSE_2F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; FIGHTING_DOJO
+ db MUSIC_GYM, BANK(Music_Gym) ; SAFFRON_GYM
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; SAFFRON_PIDGEY_HOUSE
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; SAFFRON_MART
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_1F
+ db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; SAFFRON_POKECENTER
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; MR_PSYCHICS_HOUSE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_15_GATE_1F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_15_GATE_2F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_16_GATE_1F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_16_GATE_2F
+ db MUSIC_CELADON, BANK(Music_Celadon) ; ROUTE_16_FLY_HOUSE
+ db MUSIC_CELADON, BANK(Music_Celadon) ; ROUTE_12_SUPER_ROD_HOUSE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_18_GATE_1F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_18_GATE_2F
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SEAFOAM_ISLANDS_1F
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; ROUTE_22_GATE
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VICTORY_ROAD_2F
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_12_GATE_2F
+ db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_TRADE_HOUSE
+ db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DIGLETTS_CAVE
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VICTORY_ROAD_3F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B1F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B2F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B3F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_B4F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; ROCKET_HIDEOUT_ELEVATOR
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_CC
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_CD
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UNUSED_MAP_CE
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_2F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_3F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_4F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_5F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_6F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_7F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_8F
+ db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_2F
+ db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_3F
+ db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; POKEMON_MANSION_B1F
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_EAST
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_NORTH
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_WEST
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_CENTER
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_CENTER_REST_HOUSE
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_SECRET_HOUSE
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_WEST_REST_HOUSE
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_EAST_REST_HOUSE
+ db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SAFARI_ZONE_NORTH_REST_HOUSE
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; CERULEAN_CAVE_2F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; CERULEAN_CAVE_B1F
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; CERULEAN_CAVE_1F
+ db MUSIC_CITIES2, BANK(Music_Cities2) ; NAME_RATERS_HOUSE
+ db MUSIC_CITIES1, BANK(Music_Cities1) ; CERULEAN_BADGE_HOUSE
+ db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; UNUSED_MAP_E7
+ db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; ROCK_TUNNEL_B1F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_9F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_10F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_11F
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SILPH_CO_ELEVATOR
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_ED
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_EE
+ db MUSIC_CELADON, BANK(Music_Celadon) ; TRADE_CENTER
+ db MUSIC_CELADON, BANK(Music_Celadon) ; COLOSSEUM
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F1
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F2
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F3
+ db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; UNUSED_MAP_F4
+ db MUSIC_GYM, BANK(Music_Gym) ; LORELEIS_ROOM
+ db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; BRUNOS_ROOM
+ db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; AGATHAS_ROOM
--- /dev/null
+++ b/data/maps/special_warps.asm
@@ -1,0 +1,119 @@
+; Format: (size 2 bytes)
+; 00: target map ID
+; 01: which dungeon warp in the source map was used
+DungeonWarpList:
+ db SEAFOAM_ISLANDS_B1F,$01
+ db SEAFOAM_ISLANDS_B1F,$02
+ db SEAFOAM_ISLANDS_B2F,$01
+ db SEAFOAM_ISLANDS_B2F,$02
+ db SEAFOAM_ISLANDS_B3F,$01
+ db SEAFOAM_ISLANDS_B3F,$02
+ db SEAFOAM_ISLANDS_B4F,$01
+ db SEAFOAM_ISLANDS_B4F,$02
+ db VICTORY_ROAD_2F,$02
+ db POKEMON_MANSION_1F,$01
+ db POKEMON_MANSION_1F,$02
+ db POKEMON_MANSION_2F,$03
+ db $FF
+
+DungeonWarpData:
+ FLYWARP_DATA SEAFOAM_ISLANDS_B1F_WIDTH,7,18
+ FLYWARP_DATA SEAFOAM_ISLANDS_B1F_WIDTH,7,23
+ FLYWARP_DATA SEAFOAM_ISLANDS_B2F_WIDTH,7,19
+ FLYWARP_DATA SEAFOAM_ISLANDS_B2F_WIDTH,7,22
+ FLYWARP_DATA SEAFOAM_ISLANDS_B3F_WIDTH,7,18
+ FLYWARP_DATA SEAFOAM_ISLANDS_B3F_WIDTH,7,19
+ FLYWARP_DATA SEAFOAM_ISLANDS_B4F_WIDTH,14,4
+ FLYWARP_DATA SEAFOAM_ISLANDS_B4F_WIDTH,14,5
+ FLYWARP_DATA VICTORY_ROAD_2F_WIDTH,16,22
+ FLYWARP_DATA POKEMON_MANSION_1F_WIDTH,14,16
+ FLYWARP_DATA POKEMON_MANSION_1F_WIDTH,14,16
+ FLYWARP_DATA POKEMON_MANSION_2F_WIDTH,14,18
+
+;Format:
+; db Map_id
+; FLYWARP_DATA [Map Width][Y-pos][X-pos]
+; db Tileset_id
+FirstMapSpec:
+ db REDS_HOUSE_2F
+ FLYWARP_DATA REDS_HOUSE_2F_WIDTH,6,3
+ db REDS_HOUSE_2
+
+TradeCenterSpec1:
+ db TRADE_CENTER
+ FLYWARP_DATA TRADE_CENTER_WIDTH,4,3
+ db CLUB
+
+TradeCenterSpec2:
+ db TRADE_CENTER
+ FLYWARP_DATA TRADE_CENTER_WIDTH,4,6
+ db CLUB
+
+ColosseumSpec1:
+ db COLOSSEUM
+ FLYWARP_DATA COLOSSEUM_WIDTH,4,3
+ db CLUB
+
+ColosseumSpec2:
+ db COLOSSEUM
+ FLYWARP_DATA COLOSSEUM_WIDTH,4,6
+ db CLUB
+
+FlyWarpDataPtr:
+ db PALLET_TOWN, 0
+ dw PalletTownFlyWarp
+ db VIRIDIAN_CITY, 0
+ dw ViridianCityFlyWarp
+ db PEWTER_CITY, 0
+ dw PewterCityFlyWarp
+ db CERULEAN_CITY, 0
+ dw CeruleanCityFlyWarp
+ db LAVENDER_TOWN, 0
+ dw LavenderTownFlyWarp
+ db VERMILION_CITY, 0
+ dw VermilionCityFlyWarp
+ db CELADON_CITY, 0
+ dw CeladonCityFlyWarp
+ db FUCHSIA_CITY, 0
+ dw FuchsiaCityFlyWarp
+ db CINNABAR_ISLAND, 0
+ dw CinnabarIslandFlyWarp
+ db INDIGO_PLATEAU, 0
+ dw IndigoPlateauFlyWarp
+ db SAFFRON_CITY, 0
+ dw SaffronCityFlyWarp
+ db ROUTE_4, 0
+ dw Route4FlyWarp
+ db ROUTE_10, 0
+ dw Route10FlyWarp
+
+; Original Format:
+; [Event Displacement][Y-block][X-block][Y-sub_block][X-sub_block]
+; Macro Format:
+; FLYWARP_DATA [Map Width][Y-pos][X-pos]
+PalletTownFlyWarp:
+ FLYWARP_DATA PALLET_TOWN_WIDTH, 6, 5
+ViridianCityFlyWarp:
+ FLYWARP_DATA VIRIDIAN_CITY_WIDTH, 26, 23
+PewterCityFlyWarp:
+ FLYWARP_DATA PEWTER_CITY_WIDTH, 26, 13
+CeruleanCityFlyWarp:
+ FLYWARP_DATA CERULEAN_CITY_WIDTH, 18, 19
+LavenderTownFlyWarp:
+ FLYWARP_DATA LAVENDER_TOWN_WIDTH, 6, 3
+VermilionCityFlyWarp:
+ FLYWARP_DATA VERMILION_CITY_WIDTH, 4, 11
+CeladonCityFlyWarp:
+ FLYWARP_DATA CELADON_CITY_WIDTH, 10, 41
+FuchsiaCityFlyWarp:
+ FLYWARP_DATA FUCHSIA_CITY_WIDTH, 28, 19
+CinnabarIslandFlyWarp:
+ FLYWARP_DATA CINNABAR_ISLAND_WIDTH, 12, 11
+IndigoPlateauFlyWarp:
+ FLYWARP_DATA INDIGO_PLATEAU_WIDTH, 6, 9
+SaffronCityFlyWarp:
+ FLYWARP_DATA SAFFRON_CITY_WIDTH, 30, 9
+Route4FlyWarp:
+ FLYWARP_DATA ROUTE_4_WIDTH, 6, 11
+Route10FlyWarp:
+ FLYWARP_DATA ROUTE_10_WIDTH, 20, 11
--- /dev/null
+++ b/data/maps/sprite_sets.asm
@@ -1,0 +1,190 @@
+MapSpriteSets:
+ db $01 ; PALLET_TOWN
+ db $01 ; VIRIDIAN_CITY
+ db $02 ; PEWTER_CITY
+ db $02 ; CERULEAN_CITY
+ db $03 ; LAVENDER_TOWN
+ db $04 ; VERMILION_CITY
+ db $05 ; CELADON_CITY
+ db $0a ; FUCHSIA_CITY
+ db $01 ; CINNABAR_ISLAND
+ db $06 ; INDIGO_PLATEAU
+ db $07 ; SAFFRON_CITY
+ db $01 ; unused map ID
+ db $01 ; ROUTE_1
+ db $f1 ; ROUTE_2
+ db $02 ; ROUTE_3
+ db $02 ; ROUTE_4
+ db $f9 ; ROUTE_5
+ db $fa ; ROUTE_6
+ db $fb ; ROUTE_7
+ db $fc ; ROUTE_8
+ db $02 ; ROUTE_9
+ db $f2 ; ROUTE_10
+ db $f3 ; ROUTE_11
+ db $f4 ; ROUTE_12
+ db $08 ; ROUTE_13
+ db $08 ; ROUTE_14
+ db $f5 ; ROUTE_15
+ db $f6 ; ROUTE_16
+ db $09 ; ROUTE_17
+ db $f7 ; ROUTE_18
+ db $0a ; ROUTE_19
+ db $f8 ; ROUTE_20
+ db $01 ; ROUTE_21
+ db $01 ; ROUTE_22
+ db $06 ; ROUTE_23
+ db $02 ; ROUTE_24
+ db $02 ; ROUTE_25
+
+; Format:
+; 00: determines whether the map is split East/West or North/South
+; $01 = East/West divide
+; $02 = North/South divide
+; 01: coordinate of dividing line
+; 02: sprite set ID if in the West or North side
+; 03: sprite set ID if in the East or South side
+SplitMapSpriteSets:
+ db $02,$25,$02,$01 ; $f1
+ db $02,$32,$02,$03 ; $f2
+ db $01,$39,$04,$08 ; $f3
+ db $02,$15,$03,$08 ; $f4
+ db $01,$08,$0A,$08 ; $f5
+ db $01,$18,$09,$05 ; $f6
+ db $01,$22,$09,$0A ; $f7
+ db $01,$35,$01,$0A ; $f8
+ db $02,$21,$02,$07 ; $f9
+ db $02,$02,$07,$04 ; $fa
+ db $01,$11,$05,$07 ; $fb
+ db $01,$03,$07,$03 ; $fc
+
+SpriteSets:
+; sprite set $01
+ db SPRITE_BLUE
+ db SPRITE_BUG_CATCHER
+ db SPRITE_GIRL
+ db SPRITE_FISHER2
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_GAMBLER
+ db SPRITE_SEEL
+ db SPRITE_OAK
+ db SPRITE_SWIMMER
+ db SPRITE_BALL
+ db SPRITE_LYING_OLD_MAN
+
+; sprite set $02
+ db SPRITE_BUG_CATCHER
+ db SPRITE_ROCKET
+ db SPRITE_BLACK_HAIR_BOY_2
+ db SPRITE_HIKER
+ db SPRITE_SLOWBRO
+ db SPRITE_BLUE
+ db SPRITE_GUARD
+ db SPRITE_LASS
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_BALL
+ db SPRITE_LYING_OLD_MAN_UNUSED_2
+
+; sprite set $03
+ db SPRITE_LITTLE_GIRL
+ db SPRITE_GIRL
+ db SPRITE_BLACK_HAIR_BOY_2
+ db SPRITE_HIKER
+ db SPRITE_GAMBLER
+ db SPRITE_SLOWBRO
+ db SPRITE_LASS
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_GUARD
+ db SPRITE_BALL
+ db SPRITE_LYING_OLD_MAN_UNUSED_2
+
+; sprite set $04
+ db SPRITE_FOULARD_WOMAN
+ db SPRITE_BLACK_HAIR_BOY_2
+ db SPRITE_BUG_CATCHER
+ db SPRITE_GAMBLER
+ db SPRITE_SLOWBRO
+ db SPRITE_GUARD
+ db SPRITE_SAILOR
+ db SPRITE_LASS
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_BALL
+ db SPRITE_LYING_OLD_MAN_UNUSED_2
+
+; sprite set $05
+ db SPRITE_LITTLE_GIRL
+ db SPRITE_YOUNG_BOY
+ db SPRITE_GIRL
+ db SPRITE_FISHER2
+ db SPRITE_FAT_BALD_GUY
+ db SPRITE_OLD_PERSON
+ db SPRITE_SLOWBRO
+ db SPRITE_GUARD
+ db SPRITE_ROCKET
+ db SPRITE_BALL
+ db SPRITE_SNORLAX
+
+; sprite set $06
+ db SPRITE_BUG_CATCHER
+ db SPRITE_GYM_HELPER
+ db SPRITE_SLOWBRO
+ db SPRITE_BLUE
+ db SPRITE_LASS
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_SWIMMER
+ db SPRITE_GUARD
+ db SPRITE_GAMBLER
+ db SPRITE_BALL
+ db SPRITE_LYING_OLD_MAN_UNUSED_2
+
+; sprite set $07
+ db SPRITE_ROCKET
+ db SPRITE_OAK_AIDE
+ db SPRITE_LAPRAS_GIVER
+ db SPRITE_ERIKA
+ db SPRITE_GENTLEMAN
+ db SPRITE_BIRD
+ db SPRITE_ROCKER
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_SLOWBRO
+ db SPRITE_BALL
+ db SPRITE_LYING_OLD_MAN_UNUSED_2
+
+; sprite set $08
+ db SPRITE_BIKER
+ db SPRITE_BLACK_HAIR_BOY_2
+ db SPRITE_FAT_BALD_GUY
+ db SPRITE_LASS
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_FOULARD_WOMAN
+ db SPRITE_FISHER2
+ db SPRITE_ROCKER
+ db SPRITE_SLOWBRO
+ db SPRITE_BALL
+ db SPRITE_SNORLAX
+
+; sprite set $09
+ db SPRITE_BIKER
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_LAPRAS_GIVER
+ db SPRITE_FISHER2
+ db SPRITE_ROCKER
+ db SPRITE_HIKER
+ db SPRITE_GAMBLER
+ db SPRITE_FAT_BALD_GUY
+ db SPRITE_BLACK_HAIR_BOY_2
+ db SPRITE_BALL
+ db SPRITE_SNORLAX
+
+; sprite set $0a
+ db SPRITE_BIRD
+ db SPRITE_BLACK_HAIR_BOY_1
+ db SPRITE_CLEFAIRY
+ db SPRITE_FISHER2
+ db SPRITE_GAMBLER
+ db SPRITE_SLOWBRO
+ db SPRITE_SEEL
+ db SPRITE_SWIMMER
+ db SPRITE_BUG_CATCHER
+ db SPRITE_BALL
+ db SPRITE_OMANYTE
--- /dev/null
+++ b/data/maps/town_map_entries.asm
@@ -1,0 +1,101 @@
+ExternalMapEntries:
+ EMAP $2,$B,PalletTownName
+ EMAP $2,$8,ViridianCityName
+ EMAP $2,$3,PewterCityName
+ EMAP $A,$2,CeruleanCityName
+ EMAP $E,$5,LavenderTownName
+ EMAP $A,$9,VermilionCityName
+ EMAP $7,$5,CeladonCityName
+ EMAP $8,$D,FuchsiaCityName
+ EMAP $2,$F,CinnabarIslandName
+ EMAP $0,$2,IndigoPlateauName
+ EMAP $A,$5,SaffronCityName
+ EMAP $0,$0,PalletTownName ; unused
+ EMAP $2,$A,Route1Name
+ EMAP $2,$6,Route2Name
+ EMAP $4,$3,Route3Name
+ EMAP $8,$2,Route4Name
+ EMAP $A,$3,Route5Name
+ EMAP $A,$8,Route6Name
+ EMAP $8,$5,Route7Name
+ EMAP $D,$5,Route8Name
+ EMAP $D,$2,Route9Name
+ EMAP $E,$4,Route10Name
+ EMAP $C,$9,Route11Name
+ EMAP $E,$9,Route12Name
+ EMAP $D,$B,Route13Name
+ EMAP $B,$C,Route14Name
+ EMAP $A,$D,Route15Name
+ EMAP $5,$5,Route16Name
+ EMAP $4,$8,Route17Name
+ EMAP $6,$D,Route18Name
+ EMAP $6,$F,Route19Name
+ EMAP $4,$F,Route20Name
+ EMAP $2,$D,Route21Name
+ EMAP $0,$8,Route22Name
+ EMAP $0,$6,Route23Name
+ EMAP $A,$1,Route24Name
+ EMAP $B,$0,Route25Name
+
+InternalMapEntries:
+ IMAP OAKS_LAB, $2,$B,PalletTownName
+ IMAP VIRIDIAN_GYM, $2,$8,ViridianCityName
+ IMAP VIRIDIAN_FOREST_SOUTH_GATE, $2,$6,Route2Name
+ IMAP VIRIDIAN_FOREST, $2,$4,ViridianForestName
+ IMAP PEWTER_POKECENTER, $2,$3,PewterCityName
+ IMAP MT_MOON_B2F, $6,$2,MountMoonName
+ IMAP CERULEAN_MART, $A,$2,CeruleanCityName
+ IMAP MT_MOON_POKECENTER, $5,$2,Route4Name
+ IMAP CERULEAN_TRASHED_HOUSE_COPY, $A,$2,CeruleanCityName
+ IMAP DAYCARE, $A,$4,Route5Name
+ IMAP UNDERGROUND_PATH_ROUTE_6_COPY, $A,$6,Route6Name
+ IMAP UNDERGROUND_PATH_ROUTE_7_COPY, $9,$5,Route7Name
+ IMAP UNDERGROUND_PATH_ROUTE_8, $B,$5,Route8Name
+ IMAP ROCK_TUNNEL_1F, $E,$3,RockTunnelName
+ IMAP POWER_PLANT, $F,$4,PowerPlantName
+ IMAP ROUTE_11_GATE_2F, $D,$9,Route11Name
+ IMAP ROUTE_12_GATE_1F, $E,$7,Route12Name
+ IMAP BILLS_HOUSE, $C,$0,SeaCottageName
+ IMAP VERMILION_DOCK, $A,$9,VermilionCityName
+ IMAP SS_ANNE_B1F_ROOMS, $9,$A,SSAnneName
+ IMAP VICTORY_ROAD_1F, $0,$4,VictoryRoadName
+ IMAP HALL_OF_FAME, $0,$2,PokemonLeagueName
+ IMAP UNDERGROUND_PATH_NORTH_SOUTH, $A,$5,UndergroundPathName
+ IMAP CHAMPIONS_ROOM, $0,$2,PokemonLeagueName
+ IMAP UNDERGROUND_PATH_WEST_EAST, $A,$5,UndergroundPathName
+ IMAP CELADON_HOTEL, $7,$5,CeladonCityName
+ IMAP LAVENDER_POKECENTER, $E,$5,LavenderTownName
+ IMAP POKEMON_TOWER_7F, $F,$5,PokemonTowerName
+ IMAP LAVENDER_CUBONE_HOUSE, $E,$5,LavenderTownName
+ IMAP WARDENS_HOUSE, $8,$D,FuchsiaCityName
+ IMAP SAFARI_ZONE_GATE, $8,$C,SafariZoneName
+ IMAP FUCHSIA_MEETING_ROOM, $8,$D,FuchsiaCityName
+ IMAP SEAFOAM_ISLANDS_B4F, $5,$F,SeafoamIslandsName
+ IMAP VERMILION_OLD_ROD_HOUSE, $A,$9,VermilionCityName
+ IMAP FUCHSIA_GOOD_ROD_HOUSE, $8,$D,FuchsiaCityName
+ IMAP POKEMON_MANSION_1F, $2,$F,PokemonMansionName
+ IMAP CINNABAR_MART_COPY, $2,$F,CinnabarIslandName
+ IMAP INDIGO_PLATEAU_LOBBY, $0,$2,IndigoPlateauName
+ IMAP MR_PSYCHICS_HOUSE, $A,$5,SaffronCityName
+ IMAP ROUTE_15_GATE_2F, $9,$D,Route15Name
+ IMAP ROUTE_16_FLY_HOUSE, $4,$5,Route16Name
+ IMAP ROUTE_12_SUPER_ROD_HOUSE, $E,$A,Route12Name
+ IMAP ROUTE_18_GATE_2F, $7,$D,Route18Name
+ IMAP SEAFOAM_ISLANDS_1F, $5,$F,SeafoamIslandsName
+ IMAP ROUTE_22_GATE, $0,$7,Route22Name
+ IMAP VICTORY_ROAD_2F, $0,$4,VictoryRoadName
+ IMAP ROUTE_12_GATE_2F, $E,$7,Route12Name
+ IMAP VERMILION_TRADE_HOUSE, $A,$9,VermilionCityName
+ IMAP DIGLETTS_CAVE, $3,$4,DiglettsCaveName
+ IMAP VICTORY_ROAD_3F, $0,$4,VictoryRoadName
+ IMAP UNUSED_MAP_CE, $7,$5,RocketHQName
+ IMAP SILPH_CO_8F, $A,$5,SilphCoName
+ IMAP POKEMON_MANSION_B1F, $2,$F,PokemonMansionName
+ IMAP SAFARI_ZONE_NORTH_REST_HOUSE, $8,$C,SafariZoneName
+ IMAP CERULEAN_CAVE_1F, $9,$1,CeruleanCaveName
+ IMAP NAME_RATERS_HOUSE, $E,$5,LavenderTownName
+ IMAP CERULEAN_BADGE_HOUSE, $A,$2,CeruleanCityName
+ IMAP ROCK_TUNNEL_B1F, $E,$3,RockTunnelName
+ IMAP SILPH_CO_ELEVATOR, $A,$5,SilphCoName
+ IMAP AGATHAS_ROOM, $0,$2,PokemonLeagueName
+ db $FF
--- /dev/null
+++ b/data/maps/town_map_order.asm
@@ -1,0 +1,49 @@
+TownMapOrder:
+ db PALLET_TOWN
+ db ROUTE_1
+ db VIRIDIAN_CITY
+ db ROUTE_2
+ db VIRIDIAN_FOREST
+ db DIGLETTS_CAVE
+ db PEWTER_CITY
+ db ROUTE_3
+ db MT_MOON_1F
+ db ROUTE_4
+ db CERULEAN_CITY
+ db ROUTE_24
+ db ROUTE_25
+ db BILLS_HOUSE
+ db ROUTE_5
+ db ROUTE_6
+ db VERMILION_CITY
+ db SS_ANNE_1F
+ db ROUTE_9
+ db ROCK_TUNNEL_POKECENTER
+ db ROUTE_10
+ db LAVENDER_TOWN
+ db POKEMON_TOWER_2F
+ db ROUTE_8
+ db ROUTE_7
+ db CELADON_CITY
+ db SAFFRON_CITY
+ db ROUTE_11
+ db ROUTE_12
+ db ROUTE_13
+ db ROUTE_14
+ db ROUTE_15
+ db ROUTE_16
+ db ROUTE_17
+ db ROUTE_18
+ db FUCHSIA_CITY
+ db SAFARI_ZONE_EAST
+ db ROUTE_19
+ db SEAFOAM_ISLANDS_B1F
+ db ROUTE_20
+ db CINNABAR_ISLAND
+ db ROUTE_21
+ db ROUTE_22
+ db ROUTE_23
+ db VICTORY_ROAD_3F
+ db INDIGO_PLATEAU
+ db POWER_PLANT
+TownMapOrderEnd:
--- a/data/mart_inventories.asm
+++ /dev/null
@@ -1,64 +1,0 @@
-; mart inventories are below
-; they are texts
-
-; Viridian
-ViridianCashierText::
- TX_MART POKE_BALL, ANTIDOTE, PARLYZ_HEAL, BURN_HEAL
-
-; Pewter
-PewterCashierText::
- TX_MART POKE_BALL, POTION, ESCAPE_ROPE, ANTIDOTE, BURN_HEAL, AWAKENING, PARLYZ_HEAL
-
-; Cerulean
-CeruleanCashierText::
- TX_MART POKE_BALL, POTION, REPEL, ANTIDOTE, BURN_HEAL, AWAKENING, PARLYZ_HEAL
-
-; Bike shop
- TX_MART BICYCLE
-
-; Vermilion
-VermilionCashierText::
- TX_MART POKE_BALL, SUPER_POTION, ICE_HEAL, AWAKENING, PARLYZ_HEAL, REPEL
-
-; Lavender
-LavenderCashierText::
- TX_MART GREAT_BALL, SUPER_POTION, REVIVE, ESCAPE_ROPE, SUPER_REPEL, ANTIDOTE, BURN_HEAL, ICE_HEAL, PARLYZ_HEAL
-
-; Celadon Dept. Store 2F (1)
-CeladonMart2Clerk1Text::
- TX_MART GREAT_BALL, SUPER_POTION, REVIVE, SUPER_REPEL, ANTIDOTE, BURN_HEAL, ICE_HEAL, AWAKENING, PARLYZ_HEAL
-
-; Celadon Dept. Store 2F (2)
-CeladonMart2Clerk2Text::
- TX_MART TM_32, TM_33, TM_02, TM_07, TM_37, TM_01, TM_05, TM_09, TM_17
-
-; Celadon Dept. Store 4F
-CeladonMart4ClerkText::
- TX_MART POKE_DOLL, FIRE_STONE, THUNDER_STONE, WATER_STONE, LEAF_STONE
-
-; Celadon Dept. Store 5F (1)
-CeladonMart5Clerk1Text::
- TX_MART X_ACCURACY, GUARD_SPEC, DIRE_HIT, X_ATTACK, X_DEFEND, X_SPEED, X_SPECIAL
-
-; Celadon Dept. Store 5F (2)
-CeladonMart5Clerk2Text::
- TX_MART HP_UP, PROTEIN, IRON, CARBOS, CALCIUM
-
-; Fuchsia
-FuchsiaCashierText::
- TX_MART ULTRA_BALL, GREAT_BALL, SUPER_POTION, REVIVE, FULL_HEAL, SUPER_REPEL
-
-; unused?
- TX_MART GREAT_BALL, HYPER_POTION, SUPER_POTION, FULL_HEAL, REVIVE
-
-; Cinnabar
-CinnabarCashierText::
- TX_MART ULTRA_BALL, GREAT_BALL, HYPER_POTION, MAX_REPEL, ESCAPE_ROPE, FULL_HEAL, REVIVE
-
-; Saffron
-SaffronCashierText::
- TX_MART GREAT_BALL, HYPER_POTION, MAX_REPEL, ESCAPE_ROPE, FULL_HEAL, REVIVE
-
-; Indigo
-IndigoCashierText::
- TX_MART ULTRA_BALL, GREAT_BALL, FULL_RESTORE, MAX_POTION, FULL_HEAL, REVIVE, MAX_REPEL
--- a/data/mon_palettes.asm
+++ /dev/null
@@ -1,153 +1,0 @@
-MonsterPalettes:
- db PAL_MEWMON ; MISSINGNO
- db PAL_GREENMON ; BULBASAUR
- db PAL_GREENMON ; IVYSAUR
- db PAL_GREENMON ; VENUSAUR
- db PAL_REDMON ; CHARMANDER
- db PAL_REDMON ; CHARMELEON
- db PAL_REDMON ; CHARIZARD
- db PAL_CYANMON ; SQUIRTLE
- db PAL_CYANMON ; WARTORTLE
- db PAL_CYANMON ; BLASTOISE
- db PAL_GREENMON ; CATERPIE
- db PAL_GREENMON ; METAPOD
- db PAL_CYANMON ; BUTTERFREE
- db PAL_YELLOWMON ; WEEDLE
- db PAL_YELLOWMON ; KAKUNA
- db PAL_YELLOWMON ; BEEDRILL
- db PAL_BROWNMON ; PIDGEY
- db PAL_BROWNMON ; PIDGEOTTO
- db PAL_BROWNMON ; PIDGEOT
- db PAL_GREYMON ; RATTATA
- db PAL_GREYMON ; RATICATE
- db PAL_BROWNMON ; SPEAROW
- db PAL_BROWNMON ; FEAROW
- db PAL_PURPLEMON ; EKANS
- db PAL_PURPLEMON ; ARBOK
- db PAL_YELLOWMON ; PIKACHU
- db PAL_YELLOWMON ; RAICHU
- db PAL_BROWNMON ; SANDSHREW
- db PAL_BROWNMON ; SANDSLASH
- db PAL_BLUEMON ; NIDORAN_F
- db PAL_BLUEMON ; NIDORINA
- db PAL_BLUEMON ; NIDOQUEEN
- db PAL_PURPLEMON ; NIDORAN_M
- db PAL_PURPLEMON ; NIDORINO
- db PAL_PURPLEMON ; NIDOKING
- db PAL_PINKMON ; CLEFAIRY
- db PAL_PINKMON ; CLEFABLE
- db PAL_REDMON ; VULPIX
- db PAL_YELLOWMON ; NINETALES
- db PAL_PINKMON ; JIGGLYPUFF
- db PAL_PINKMON ; WIGGLYTUFF
- db PAL_BLUEMON ; ZUBAT
- db PAL_BLUEMON ; GOLBAT
- db PAL_GREENMON ; ODDISH
- db PAL_REDMON ; GLOOM
- db PAL_REDMON ; VILEPLUME
- db PAL_REDMON ; PARAS
- db PAL_REDMON ; PARASECT
- db PAL_PURPLEMON ; VENONAT
- db PAL_PURPLEMON ; VENOMOTH
- db PAL_BROWNMON ; DIGLETT
- db PAL_BROWNMON ; DUGTRIO
- db PAL_YELLOWMON ; MEOWTH
- db PAL_YELLOWMON ; PERSIAN
- db PAL_YELLOWMON ; PSYDUCK
- db PAL_CYANMON ; GOLDUCK
- db PAL_BROWNMON ; MANKEY
- db PAL_BROWNMON ; PRIMEAPE
- db PAL_BROWNMON ; GROWLITHE
- db PAL_REDMON ; ARCANINE
- db PAL_BLUEMON ; POLIWAG
- db PAL_BLUEMON ; POLIWHIRL
- db PAL_BLUEMON ; POLIWRATH
- db PAL_YELLOWMON ; ABRA
- db PAL_YELLOWMON ; KADABRA
- db PAL_YELLOWMON ; ALAKAZAM
- db PAL_GREYMON ; MACHOP
- db PAL_GREYMON ; MACHOKE
- db PAL_GREYMON ; MACHAMP
- db PAL_GREENMON ; BELLSPROUT
- db PAL_GREENMON ; WEEPINBELL
- db PAL_GREENMON ; VICTREEBEL
- db PAL_CYANMON ; TENTACOOL
- db PAL_CYANMON ; TENTACRUEL
- db PAL_GREYMON ; GEODUDE
- db PAL_GREYMON ; GRAVELER
- db PAL_GREYMON ; GOLEM
- db PAL_REDMON ; PONYTA
- db PAL_REDMON ; RAPIDASH
- db PAL_PINKMON ; SLOWPOKE
- db PAL_PINKMON ; SLOWBRO
- db PAL_GREYMON ; MAGNEMITE
- db PAL_GREYMON ; MAGNETON
- db PAL_BROWNMON ; FARFETCHD
- db PAL_BROWNMON ; DODUO
- db PAL_BROWNMON ; DODRIO
- db PAL_BLUEMON ; SEEL
- db PAL_BLUEMON ; DEWGONG
- db PAL_PURPLEMON ; GRIMER
- db PAL_PURPLEMON ; MUK
- db PAL_GREYMON ; SHELLDER
- db PAL_GREYMON ; CLOYSTER
- db PAL_PURPLEMON ; GASTLY
- db PAL_PURPLEMON ; HAUNTER
- db PAL_PURPLEMON ; GENGAR
- db PAL_GREYMON ; ONIX
- db PAL_YELLOWMON ; DROWZEE
- db PAL_YELLOWMON ; HYPNO
- db PAL_REDMON ; KRABBY
- db PAL_REDMON ; KINGLER
- db PAL_YELLOWMON ; VOLTORB
- db PAL_YELLOWMON ; ELECTRODE
- db PAL_PINKMON ; EXEGGCUTE
- db PAL_GREENMON ; EXEGGUTOR
- db PAL_GREYMON ; CUBONE
- db PAL_GREYMON ; MAROWAK
- db PAL_BROWNMON ; HITMONLEE
- db PAL_BROWNMON ; HITMONCHAN
- db PAL_PINKMON ; LICKITUNG
- db PAL_PURPLEMON ; KOFFING
- db PAL_PURPLEMON ; WEEZING
- db PAL_GREYMON ; RHYHORN
- db PAL_GREYMON ; RHYDON
- db PAL_PINKMON ; CHANSEY
- db PAL_BLUEMON ; TANGELA
- db PAL_BROWNMON ; KANGASKHAN
- db PAL_CYANMON ; HORSEA
- db PAL_CYANMON ; SEADRA
- db PAL_REDMON ; GOLDEEN
- db PAL_REDMON ; SEAKING
- db PAL_REDMON ; STARYU
- db PAL_GREYMON ; STARMIE
- db PAL_PINKMON ; MR_MIME
- db PAL_GREENMON ; SCYTHER
- db PAL_MEWMON ; JYNX
- db PAL_YELLOWMON ; ELECTABUZZ
- db PAL_REDMON ; MAGMAR
- db PAL_BROWNMON ; PINSIR
- db PAL_GREYMON ; TAUROS
- db PAL_REDMON ; MAGIKARP
- db PAL_BLUEMON ; GYARADOS
- db PAL_CYANMON ; LAPRAS
- db PAL_GREYMON ; DITTO
- db PAL_GREYMON ; EEVEE
- db PAL_CYANMON ; VAPOREON
- db PAL_YELLOWMON ; JOLTEON
- db PAL_REDMON ; FLAREON
- db PAL_GREYMON ; PORYGON
- db PAL_BLUEMON ; OMANYTE
- db PAL_BLUEMON ; OMASTAR
- db PAL_BROWNMON ; KABUTO
- db PAL_BROWNMON ; KABUTOPS
- db PAL_GREYMON ; AERODACTYL
- db PAL_PINKMON ; SNORLAX
- db PAL_BLUEMON ; ARTICUNO
- db PAL_YELLOWMON ; ZAPDOS
- db PAL_REDMON ; MOLTRES
- db PAL_GREYMON ; DRATINI
- db PAL_BLUEMON ; DRAGONAIR
- db PAL_BROWNMON ; DRAGONITE
- db PAL_MEWMON ; MEWTWO
- db PAL_MEWMON ; MEW
--- a/data/mon_party_sprite_pointers.asm
+++ /dev/null
@@ -1,140 +1,0 @@
-MonPartySpritePointers:
- dw SlowbroSprite + $c0
- db $40 / $10 ; 40 bytes
- db BANK(SlowbroSprite)
- dw vSprites
-
- dw BallSprite
- db $80 / $10 ; $80 bytes
- db BANK(BallSprite)
- dw vSprites + $40
-
- dw ClefairySprite + $c0
- db $40 / $10 ; $40 bytes
- db BANK(ClefairySprite)
- dw vSprites + $c0
-
- dw BirdSprite + $c0
- db $40 / $10 ; $40 bytes
- db BANK(BirdSprite)
- dw vSprites + $100
-
- dw SeelSprite
- db $40 / $10 ; $40 bytes
- db BANK(SeelSprite)
- dw vSprites + $140
-
- dw BugIconFrame2
- db $10 / $10 ; $10 bytes
- db BANK(BugIconFrame2)
- dw vSprites + $180
-
- dw BugIconFrame2 + $10
- db $10 / $10 ; $10 bytes
- db BANK(BugIconFrame2)
- dw vSprites + $1a0
-
- dw PlantIconFrame2
- db $10 / $10 ; $10 bytes
- db BANK(PlantIconFrame2)
- dw vSprites + $1c0
-
- dw PlantIconFrame2 + $10
- db $10 / $10 ; $10 bytes
- db BANK(PlantIconFrame2)
- dw vSprites + $1e0
-
- dw SnakeIconFrame1
- db $10 / $10 ; $10 bytes
- db BANK(SnakeIconFrame1)
- dw vSprites + $200
-
- dw SnakeIconFrame1 + $10
- db $10 / $10 ; $10 bytes
- db BANK(SnakeIconFrame1)
- dw vSprites + $220
-
- dw QuadrupedIconFrame1
- db $10 / $10 ; $10 bytes
- db BANK(QuadrupedIconFrame1)
- dw vSprites + $240
-
- dw QuadrupedIconFrame1 + $10
- db $10 / $10 ; $10 bytes
- db BANK(QuadrupedIconFrame1)
- dw vSprites + $260
-
- dw TradeBubbleIconGFX
- db $40 / $10 ; $40 bytes
- db BANK(TradeBubbleIconGFX)
- dw vSprites + $380
-
- dw SlowbroSprite
- db $40 / $10 ; $40 bytes
- db BANK(SlowbroSprite)
- dw vSprites + $400
-
- dw BallSprite
- db $80 / $10 ; $80 bytes
- db BANK(BallSprite)
- dw vSprites + $440
-
- dw ClefairySprite
- db $40 / $10 ; $40 bytes
- db BANK(ClefairySprite)
- dw vSprites + $4c0
-
- dw BirdSprite
- db $40 / $10 ; $40 bytes
- db BANK(BirdSprite)
- dw vSprites + $500
-
- dw SeelSprite + $C0
- db $40 / $10 ; $40 bytes
- db BANK(SeelSprite)
- dw vSprites + $540
-
- dw BugIconFrame1
- db $10 / $10 ; $10 bytes
- db BANK(BugIconFrame1)
- dw vSprites + $580
-
- dw BugIconFrame1 + $10
- db $10 / $10 ; $10 bytes
- db BANK(BugIconFrame1)
- dw vSprites + $5a0
-
- dw PlantIconFrame1
- db $10 / $10 ; $10 bytes
- db BANK(PlantIconFrame1)
- dw vSprites + $5c0
-
- dw PlantIconFrame1 + $10
- db $10 / $10 ; $10 bytes
- db BANK(PlantIconFrame1)
- dw vSprites + $5E0
-
- dw SnakeIconFrame2
- db $10 / $10 ; $10 bytes
- db BANK(SnakeIconFrame2)
- dw vSprites + $600
-
- dw SnakeIconFrame2 + $10
- db $10 / $10 ; $10 bytes
- db BANK(SnakeIconFrame2)
- dw vSprites + $620
-
- dw QuadrupedIconFrame2
- db $10 / $10 ; $10 bytes
- db BANK(QuadrupedIconFrame2)
- dw vSprites + $640
-
- dw QuadrupedIconFrame2 + $10
- db $10 / $10 ; $10 bytes
- db BANK(QuadrupedIconFrame2)
- dw vSprites + $660
-
- dw TradeBubbleIconGFX + $40
- db $40 / $10 ; $40 bytes
- db BANK(TradeBubbleIconGFX)
- dw vSprites + $780
--- a/data/mon_party_sprites.asm
+++ /dev/null
@@ -1,77 +1,0 @@
-MonPartyData:
- dn ICON_GRASS, ICON_GRASS ; Bulbasaur / Ivysaur
- dn ICON_GRASS, ICON_MON ; Venusaur / Charmander
- dn ICON_MON, ICON_MON ; Charmeleon / Charizard
- dn ICON_WATER, ICON_WATER ; Squirtle / Wartortle
- dn ICON_WATER, ICON_BUG ; Blastoise / Caterpie
- dn ICON_BUG, ICON_BUG ; Metapod / Butterfree
- dn ICON_BUG, ICON_BUG ; Weedle / Kakuna
- dn ICON_BUG, ICON_BIRD ; Beedrill / Pidgey
- dn ICON_BIRD, ICON_BIRD ; Pidgeotto / Pidgeot
- dn ICON_QUADRUPED, ICON_QUADRUPED ; Rattata / Raticate
- dn ICON_BIRD, ICON_BIRD ; Spearow / Fearow
- dn ICON_SNAKE, ICON_SNAKE ; Ekans / Arbok
- dn ICON_FAIRY, ICON_FAIRY ; Pikachu / Raichu
- dn ICON_MON, ICON_MON ; Sandshrew / Sandslash
- dn ICON_MON, ICON_MON ; NidoranF / Nidorina
- dn ICON_MON, ICON_MON ; Nidoqueen / NidoranM
- dn ICON_MON, ICON_MON ; Nidorino / Nidoking
- dn ICON_FAIRY, ICON_FAIRY ; Clefairy / Clefable
- dn ICON_QUADRUPED, ICON_QUADRUPED ; Vulpix / Ninetales
- dn ICON_FAIRY, ICON_FAIRY ; Jigglypuff / Wigglytuff
- dn ICON_MON, ICON_MON ; Zubat / Golbat
- dn ICON_GRASS, ICON_GRASS ; Oddish / Gloom
- dn ICON_GRASS, ICON_BUG ; Vileplume / Paras
- dn ICON_BUG, ICON_BUG ; Parasect / Venonat
- dn ICON_BUG, ICON_MON ; Venomoth / Diglett
- dn ICON_MON, ICON_MON ; Dugtrio / Meowth
- dn ICON_MON, ICON_MON ; Persian / Psyduck
- dn ICON_MON, ICON_MON ; Golduck / Mankey
- dn ICON_MON, ICON_QUADRUPED ; Primeape / Growlithe
- dn ICON_QUADRUPED, ICON_MON ; Arcanine / Poliwag
- dn ICON_MON, ICON_MON ; Poliwhirl / Poliwrath
- dn ICON_MON, ICON_MON ; Abra / Kadabra
- dn ICON_MON, ICON_MON ; Alakazam / Machop
- dn ICON_MON, ICON_MON ; Machoke / Machamp
- dn ICON_GRASS, ICON_GRASS ; Bellsprout / Weepinbell
- dn ICON_GRASS, ICON_WATER ; Victreebel / Tentacool
- dn ICON_WATER, ICON_MON ; Tentacruel / Geodude
- dn ICON_MON, ICON_MON ; Graveler / Golem
- dn ICON_QUADRUPED, ICON_QUADRUPED ; Ponyta / Rapidash
- dn ICON_QUADRUPED, ICON_MON ; Slowpoke / Slowbro
- dn ICON_BALL, ICON_BALL ; Magnemite / Magneton
- dn ICON_BIRD, ICON_BIRD ; Farfetch'd / Doduo
- dn ICON_BIRD, ICON_WATER ; Dodrio / Seel
- dn ICON_WATER, ICON_MON ; Dewgong / Grimer
- dn ICON_MON, ICON_HELIX ; Muk / Shellder
- dn ICON_HELIX, ICON_MON ; Cloyster / Gastly
- dn ICON_MON, ICON_MON ; Haunter / Gengar
- dn ICON_SNAKE, ICON_MON ; Onix / Drowzee
- dn ICON_MON, ICON_WATER ; Hypno / Krabby
- dn ICON_WATER, ICON_BALL ; Kingler / Voltorb
- dn ICON_BALL, ICON_GRASS ; Electrode / Exeggcute
- dn ICON_GRASS, ICON_MON ; Exeggutor / Cubone
- dn ICON_MON, ICON_MON ; Marowak / Hitmonlee
- dn ICON_MON, ICON_MON ; Hitmonchan / Lickitung
- dn ICON_MON, ICON_MON ; Koffing / Weezing
- dn ICON_QUADRUPED, ICON_MON ; Rhyhorn / Rhydon
- dn ICON_FAIRY, ICON_GRASS ; Chansey / Tangela
- dn ICON_MON, ICON_WATER ; Kangaskhan / Horsea
- dn ICON_WATER, ICON_WATER ; Seadra / Goldeen
- dn ICON_WATER, ICON_HELIX ; Seaking / Staryu
- dn ICON_HELIX, ICON_MON ; Starmie / Mr.Mime
- dn ICON_BUG, ICON_MON ; Scyther / Jynx
- dn ICON_MON, ICON_MON ; Electabuzz / Magmar
- dn ICON_BUG, ICON_QUADRUPED ; Pinsir / Tauros
- dn ICON_WATER, ICON_SNAKE ; Magikarp / Gyarados
- dn ICON_WATER, ICON_MON ; Lapras / Ditto
- dn ICON_QUADRUPED, ICON_QUADRUPED ; Eevee / Vaporeon
- dn ICON_QUADRUPED, ICON_QUADRUPED ; Jolteon / Flareon
- dn ICON_MON, ICON_HELIX ; Porygon / Omanyte
- dn ICON_HELIX, ICON_HELIX ; Omastar / Kabuto
- dn ICON_HELIX, ICON_BIRD ; Kabutops / Aerodactyl
- dn ICON_MON, ICON_BIRD ; Snorlax / Articuno
- dn ICON_BIRD, ICON_BIRD ; Zapdos / Moltres
- dn ICON_SNAKE, ICON_SNAKE ; Dratini / Dragonair
- dn ICON_SNAKE, ICON_MON ; Dragonite / Mewtwo
- dn ICON_MON, 0 ; Mew / padding
--- a/data/move_animation_pointers.asm
+++ /dev/null
@@ -1,81 +1,0 @@
-; Format: Special Effect ID (1 byte), Address (2 bytes)
-SpecialEffectPointers:
- db SE_DARK_SCREEN_FLASH ; $FE
- dw AnimationFlashScreen
- db SE_DARK_SCREEN_PALETTE ; $FD
- dw AnimationDarkScreenPalette
- db SE_RESET_SCREEN_PALETTE ; $FC
- dw AnimationResetScreenPalette
- db SE_SHAKE_SCREEN ; $FB
- dw AnimationShakeScreen
- db SE_WATER_DROPLETS_EVERYWHERE ; $FA
- dw AnimationWaterDropletsEverywhere
- db SE_DARKEN_MON_PALETTE ; $F9
- dw AnimationDarkenMonPalette
- db SE_FLASH_SCREEN_LONG ; $F8
- dw AnimationFlashScreenLong
- db SE_SLIDE_MON_UP ; $F7
- dw AnimationSlideMonUp
- db SE_SLIDE_MON_DOWN ; $F6
- dw AnimationSlideMonDown
- db SE_FLASH_MON_PIC ; $F5
- dw AnimationFlashMonPic
- db SE_SLIDE_MON_OFF ; $F4
- dw AnimationSlideMonOff
- db SE_BLINK_MON ; $F3
- dw AnimationBlinkMon
- db SE_MOVE_MON_HORIZONTALLY ; $F2
- dw AnimationMoveMonHorizontally
- db SE_RESET_MON_POSITION ; $F1
- dw AnimationResetMonPosition
- db SE_LIGHT_SCREEN_PALETTE ; $F0
- dw AnimationLightScreenPalette
- db SE_HIDE_MON_PIC ; $EF
- dw AnimationHideMonPic
- db SE_SQUISH_MON_PIC ; $EE
- dw AnimationSquishMonPic
- db SE_SHOOT_BALLS_UPWARD ; $ED
- dw AnimationShootBallsUpward
- db SE_SHOOT_MANY_BALLS_UPWARD ; $EC
- dw AnimationShootManyBallsUpward
- db SE_BOUNCE_UP_AND_DOWN ; $EB
- dw AnimationBoundUpAndDown
- db SE_MINIMIZE_MON ; $EA
- dw AnimationMinimizeMon
- db SE_SLIDE_MON_DOWN_AND_HIDE ; $E9
- dw AnimationSlideMonDownAndHide
- db SE_TRANSFORM_MON ; $E8
- dw AnimationTransformMon
- db SE_LEAVES_FALLING ; $E7
- dw AnimationLeavesFalling
- db SE_PETALS_FALLING ; $E6
- dw AnimationPetalsFalling
- db SE_SLIDE_MON_HALF_OFF ; $E5
- dw AnimationSlideMonHalfOff
- db SE_SHAKE_ENEMY_HUD ; $E4
- dw AnimationShakeEnemyHUD
- db SE_SHAKE_ENEMY_HUD_2 ; unused--same pointer as SE_SHAKE_ENEMY_HUD ($E4)
- dw AnimationShakeEnemyHUD
- db SE_SPIRAL_BALLS_INWARD ; $E2
- dw AnimationSpiralBallsInward
- db SE_DELAY_ANIMATION_10 ; $E1
- dw AnimationDelay10
- db SE_FLASH_ENEMY_MON_PIC ; unused--same as SE_FLASH_MON_PIC ($F5), but for the enemy mon
- dw AnimationFlashEnemyMonPic
- db SE_HIDE_ENEMY_MON_PIC ; $DF
- dw AnimationHideEnemyMonPic
- db SE_BLINK_ENEMY_MON ; $DE
- dw AnimationBlinkEnemyMon
- db SE_SHOW_MON_PIC ; $DD
- dw AnimationShowMonPic
- db SE_SHOW_ENEMY_MON_PIC ; $DC
- dw AnimationShowEnemyMonPic
- db SE_SLIDE_ENEMY_MON_OFF ; $DB
- dw AnimationSlideEnemyMonOff
- db SE_SHAKE_BACK_AND_FORTH ; $DA
- dw AnimationShakeBackAndForth
- db SE_SUBSTITUTE_MON ; $D9
- dw AnimationSubstitute
- db SE_WAVY_SCREEN ; $D8
- dw AnimationWavyScreen
- db $FF
--- a/data/move_animation_special_effects.asm
+++ /dev/null
@@ -1,75 +1,0 @@
-; Format: Animation ID (1 byte), Address (2 bytes)
-AnimationIdSpecialEffects:
- db MEGA_PUNCH
- dw AnimationFlashScreen
-
- db GUILLOTINE
- dw AnimationFlashScreen
-
- db MEGA_KICK
- dw AnimationFlashScreen
-
- db HEADBUTT
- dw AnimationFlashScreen
-
- db TAIL_WHIP
- dw TailWhipAnimationUnused
-
- db GROWL
- dw DoGrowlSpecialEffects
-
- db DISABLE
- dw AnimationFlashScreen
-
- db BLIZZARD
- dw DoBlizzardSpecialEffects
-
- db BUBBLEBEAM
- dw AnimationFlashScreen
-
- db HYPER_BEAM
- dw FlashScreenEveryFourFrameBlocks
-
- db THUNDERBOLT
- dw FlashScreenEveryEightFrameBlocks
-
- db REFLECT
- dw AnimationFlashScreen
-
- db SELFDESTRUCT
- dw DoExplodeSpecialEffects
-
- db SPORE
- dw AnimationFlashScreen
-
- db EXPLOSION
- dw DoExplodeSpecialEffects
-
- db ROCK_SLIDE
- dw DoRockSlideSpecialEffects
-
- db TRADE_BALL_DROP_ANIM
- dw TradeHidePokemon
-
- db TRADE_BALL_SHAKE_ANIM
- dw TradeShakePokeball
-
- db TRADE_BALL_TILT_ANIM
- dw TradeJumpPokeball
-
- db TOSS_ANIM
- dw DoBallTossSpecialEffects
-
- db SHAKE_ANIM
- dw DoBallShakeSpecialEffects
-
- db POOF_ANIM
- dw DoPoofSpecialEffects
-
- db GREATTOSS_ANIM
- dw DoBallTossSpecialEffects
-
- db ULTRATOSS_ANIM
- dw DoBallTossSpecialEffects
-
- db $FF ; terminator
--- a/data/move_grammar.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-ExclamationPointMoveSets:
- db SWORDS_DANCE, GROWTH
- db $00
- db RECOVER, BIDE, SELFDESTRUCT, AMNESIA
- db $00
- db MEDITATE, AGILITY, TELEPORT, MIMIC, DOUBLE_TEAM, BARRAGE
- db $00
- db POUND, SCRATCH, VICEGRIP, WING_ATTACK, FLY, BIND, SLAM, HORN_ATTACK, BODY_SLAM
- db WRAP, THRASH, TAIL_WHIP, LEER, BITE, GROWL, ROAR, SING, PECK, COUNTER
- db STRENGTH, ABSORB, STRING_SHOT, EARTHQUAKE, FISSURE, DIG, TOXIC, SCREECH, HARDEN
- db MINIMIZE, WITHDRAW, DEFENSE_CURL, METRONOME, LICK, CLAMP, CONSTRICT, POISON_GAS
- db LEECH_LIFE, BUBBLE, FLASH, SPLASH, ACID_ARMOR, FURY_SWIPES, REST, SHARPEN, SLASH, SUBSTITUTE
- db $00
- db $FF ; terminator
--- a/data/move_sfx.asm
+++ /dev/null
@@ -1,168 +1,0 @@
-MoveSoundTable:
- ; ID, pitch mod, tempo mod
- db SFX_POUND, $00,$80 ; POUND
- db SFX_BATTLE_0C, $10,$80 ; KARATE_CHOP
- db SFX_DOUBLESLAP, $00,$80 ; DOUBLESLAP
- db SFX_BATTLE_0B, $01,$80 ; COMET_PUNCH
- db SFX_BATTLE_0D, $00,$40 ; MEGA_PUNCH
- db SFX_SILPH_SCOPE, $00,$ff ; PAY_DAY
- db SFX_BATTLE_0D, $10,$60 ; FIRE_PUNCH
- db SFX_BATTLE_0D, $20,$80 ; ICE_PUNCH
- db SFX_BATTLE_0D, $00,$a0 ; THUNDERPUNCH
- db SFX_DAMAGE, $00,$80 ; SCRATCH
- db SFX_BATTLE_0F, $20,$40 ; VICEGRIP
- db SFX_BATTLE_0F, $00,$80 ; GUILLOTINE
- db SFX_BATTLE_0E, $00,$a0 ; RAZOR_WIND
- db SFX_NOT_VERY_EFFECTIVE,$10,$c0 ; SWORDS_DANCE
- db SFX_NOT_VERY_EFFECTIVE,$00,$a0 ; CUT
- db SFX_BATTLE_12, $00,$c0 ; GUST
- db SFX_BATTLE_12, $10,$a0 ; WING_ATTACK
- db SFX_BATTLE_13, $00,$e0 ; WHIRLWIND
- db SFX_NOT_VERY_EFFECTIVE,$20,$c0 ; FLY
- db SFX_BATTLE_14, $00,$80 ; BIND
- db SFX_BATTLE_22, $00,$80 ; SLAM
- db SFX_VINE_WHIP, $01,$80 ; VINE_WHIP
- db SFX_BATTLE_20, $00,$80 ; STOMP
- db SFX_BATTLE_17, $f0,$40 ; DOUBLE_KICK
- db SFX_SUPER_EFFECTIVE, $00,$80 ; MEGA_KICK
- db SFX_BATTLE_17, $00,$80 ; JUMP_KICK
- db SFX_BATTLE_21, $10,$80 ; ROLLING_KICK
- db SFX_BATTLE_1B, $01,$a0 ; SAND_ATTACK
- db SFX_BATTLE_18, $00,$80 ; HEADBUTT
- db SFX_BATTLE_1E, $00,$60 ; HORN_ATTACK
- db SFX_BATTLE_1E, $01,$40 ; FURY_ATTACK
- db SFX_HORN_DRILL, $00,$a0 ; HORN_DRILL
- db SFX_SUPER_EFFECTIVE, $10,$a0 ; TACKLE
- db SFX_BATTLE_20, $00,$c0 ; BODY_SLAM
- db SFX_BATTLE_14, $10,$60 ; WRAP
- db SFX_SUPER_EFFECTIVE, $00,$a0 ; TAKE_DOWN
- db SFX_BATTLE_22, $11,$c0 ; THRASH
- db SFX_SUPER_EFFECTIVE, $20,$c0 ; DOUBLE_EDGE
- db SFX_BATTLE_21, $00,$80 ; TAIL_WHIP
- db SFX_BATTLE_1B, $00,$80 ; POISON_STING
- db SFX_BATTLE_1B, $20,$c0 ; TWINEEDLE
- db SFX_BATTLE_19, $00,$80 ; PIN_MISSILE
- db SFX_BATTLE_31, $ff,$40 ; LEER
- db SFX_BATTLE_1E, $00,$80 ; BITE
- db SFX_BATTLE_0B, $00,$c0 ; GROWL
- db SFX_BATTLE_0B, $00,$40 ; ROAR
- db SFX_BATTLE_35, $00,$80 ; SING
- db SFX_BATTLE_27, $40,$60 ; SUPERSONIC
- db SFX_BATTLE_27, $00,$80 ; SONICBOOM
- db SFX_BATTLE_27, $ff,$40 ; DISABLE
- db SFX_BATTLE_2A, $80,$c0 ; ACID
- db SFX_BATTLE_19, $10,$a0 ; EMBER
- db SFX_BATTLE_19, $21,$e0 ; FLAMETHROWER
- db SFX_BATTLE_29, $00,$80 ; MIST
- db SFX_BATTLE_24, $20,$60 ; WATER_GUN
- db SFX_BATTLE_2A, $00,$80 ; HYDRO_PUMP
- db SFX_BATTLE_2C, $00,$80 ; SURF
- db SFX_BATTLE_28, $40,$80 ; ICE_BEAM
- db SFX_BATTLE_29, $f0,$e0 ; BLIZZARD
- db SFX_PSYBEAM, $00,$80 ; PSYBEAM
- db SFX_BATTLE_2A, $f0,$60 ; BUBBLEBEAM
- db SFX_BATTLE_28, $00,$80 ; AURORA_BEAM
- db SFX_BATTLE_36, $00,$80 ; HYPER_BEAM
- db SFX_PECK, $01,$a0 ; PECK
- db SFX_BATTLE_13, $f0,$20 ; DRILL_PECK
- db SFX_BATTLE_23, $01,$c0 ; SUBMISSION
- db SFX_BATTLE_23, $00,$80 ; LOW_KICK
- db SFX_SUPER_EFFECTIVE, $00,$e0 ; COUNTER
- db SFX_BATTLE_26, $01,$60 ; SEISMIC_TOSS
- db SFX_BATTLE_26, $20,$40 ; STRENGTH
- db SFX_BATTLE_24, $00,$80 ; ABSORB
- db SFX_BATTLE_24, $40,$c0 ; MEGA_DRAIN
- db SFX_BATTLE_1B, $03,$60 ; LEECH_SEED
- db SFX_BATTLE_25, $11,$e0 ; GROWTH
- db SFX_BATTLE_12, $20,$e0 ; RAZOR_LEAF
- db SFX_BATTLE_2E, $00,$80 ; SOLARBEAM
- db SFX_BATTLE_1C, $00,$80 ; POISONPOWDER
- db SFX_BATTLE_1C, $11,$a0 ; STUN_SPORE
- db SFX_BATTLE_1C, $01,$c0 ; SLEEP_POWDER
- db SFX_BATTLE_13, $14,$c0 ; PETAL_DANCE
- db SFX_BATTLE_1B, $02,$a0 ; STRING_SHOT
- db SFX_BATTLE_29, $f0,$80 ; DRAGON_RAGE
- db SFX_BATTLE_29, $20,$c0 ; FIRE_SPIN
- db SFX_BATTLE_2F, $00,$20 ; THUNDERSHOCK
- db SFX_BATTLE_2F, $20,$80 ; THUNDERBOLT
- db SFX_BATTLE_2E, $12,$60 ; THUNDER_WAVE
- db SFX_BATTLE_26, $00,$80 ; THUNDER
- db SFX_BATTLE_14, $01,$e0 ; ROCK_THROW
- db SFX_BATTLE_29, $0f,$e0 ; EARTHQUAKE
- db SFX_BATTLE_29, $11,$20 ; FISSURE
- db SFX_DAMAGE, $10,$40 ; DIG
- db SFX_BATTLE_0F, $10,$c0 ; TOXIC
- db SFX_BATTLE_14, $00,$20 ; CONFUSION
- db SFX_PSYCHIC_M, $00,$80 ; PSYCHIC_M
- db SFX_BATTLE_35, $11,$18 ; HYPNOSIS
- db SFX_BATTLE_09, $20,$c0 ; MEDITATE
- db SFX_FAINT_FALL, $20,$c0 ; AGILITY
- db SFX_BATTLE_25, $00,$10 ; QUICK_ATTACK
- db SFX_BATTLE_26, $f0,$20 ; RAGE
- db SFX_BATTLE_33, $f0,$c0 ; TELEPORT
- db SFX_NOT_VERY_EFFECTIVE,$f0,$e0 ; NIGHT_SHADE
- db SFX_BATTLE_09, $f0,$40 ; MIMIC
- db SFX_BATTLE_31, $00,$80 ; SCREECH
- db SFX_BATTLE_33, $80,$40 ; DOUBLE_TEAM
- db SFX_BATTLE_33, $00,$80 ; RECOVER
- db SFX_BATTLE_14, $11,$20 ; HARDEN
- db SFX_BATTLE_14, $22,$10 ; MINIMIZE
- db SFX_BATTLE_1B, $f1,$ff ; SMOKESCREEN
- db SFX_BATTLE_13, $f1,$ff ; CONFUSE_RAY
- db SFX_BATTLE_14, $33,$30 ; WITHDRAW
- db SFX_BATTLE_32, $40,$c0 ; DEFENSE_CURL
- db SFX_BATTLE_0E, $20,$20 ; BARRIER
- db SFX_BATTLE_0E, $f0,$10 ; LIGHT_SCREEN
- db SFX_BATTLE_0F, $f8,$10 ; HAZE
- db SFX_NOT_VERY_EFFECTIVE,$f0,$10 ; REFLECT
- db SFX_BATTLE_25, $00,$80 ; FOCUS_ENERGY
- db SFX_BATTLE_18, $00,$c0 ; BIDE
- db SFX_BATTLE_32, $c0,$ff ; METRONOME
- db SFX_BATTLE_09, $f2,$20 ; MIRROR_MOVE
- db SFX_BATTLE_34, $00,$80 ; SELFDESTRUCT
- db SFX_BATTLE_34, $00,$40 ; EGG_BOMB
- db SFX_BATTLE_09, $00,$40 ; LICK
- db SFX_NOT_VERY_EFFECTIVE,$10,$ff ; SMOG
- db SFX_BATTLE_2A, $20,$20 ; SLUDGE
- db SFX_BATTLE_32, $00,$80 ; BONE_CLUB
- db SFX_BATTLE_29, $1f,$20 ; FIRE_BLAST
- db SFX_BATTLE_25, $2f,$80 ; WATERFALL
- db SFX_BATTLE_0F, $1f,$ff ; CLAMP
- db SFX_BATTLE_2B, $1f,$60 ; SWIFT
- db SFX_BATTLE_26, $1e,$20 ; SKULL_BASH
- db SFX_BATTLE_26, $1f,$18 ; SPIKE_CANNON
- db SFX_BATTLE_14, $0f,$80 ; CONSTRICT
- db SFX_BATTLE_09, $f8,$10 ; AMNESIA
- db SFX_FAINT_FALL, $18,$20 ; KINESIS
- db SFX_BATTLE_32, $08,$40 ; SOFTBOILED
- db SFX_BATTLE_17, $01,$e0 ; HI_JUMP_KICK
- db SFX_NOT_VERY_EFFECTIVE,$09,$ff ; GLARE
- db SFX_BATTLE_35, $42,$01 ; DREAM_EATER
- db SFX_BATTLE_1C, $00,$ff ; POISON_GAS
- db SFX_BATTLE_32, $08,$e0 ; BARRAGE
- db SFX_BATTLE_24, $00,$80 ; LEECH_LIFE
- db SFX_BATTLE_09, $88,$10 ; LOVELY_KISS
- db SFX_BATTLE_25, $48,$ff ; SKY_ATTACK
- db SFX_FAINT_FALL, $ff,$ff ; TRANSFORM
- db SFX_BATTLE_24, $ff,$10 ; BUBBLE
- db SFX_FAINT_FALL, $ff,$04 ; DIZZY_PUNCH
- db SFX_BATTLE_1C, $01,$ff ; SPORE
- db SFX_BATTLE_13, $f8,$ff ; FLASH
- db SFX_BATTLE_0C, $f0,$f0 ; PSYWAVE
- db SFX_BATTLE_0F, $08,$10 ; SPLASH
- db SFX_BATTLE_0D, $f0,$ff ; ACID_ARMOR
- db SFX_SUPER_EFFECTIVE, $f0,$ff ; CRABHAMMER
- db SFX_BATTLE_34, $10,$ff ; EXPLOSION
- db SFX_BATTLE_0E, $f0,$20 ; FURY_SWIPES
- db SFX_BATTLE_2B, $f0,$60 ; BONEMERANG
- db SFX_BATTLE_21, $12,$10 ; REST
- db SFX_BATTLE_36, $f0,$20 ; ROCK_SLIDE
- db SFX_BATTLE_1E, $12,$ff ; HYPER_FANG
- db SFX_BATTLE_31, $80,$04 ; SHARPEN
- db SFX_BATTLE_33, $f0,$10 ; CONVERSION
- db SFX_BATTLE_29, $f8,$ff ; TRI_ATTACK
- db SFX_BATTLE_26, $f0,$ff ; SUPER_FANG
- db SFX_NOT_VERY_EFFECTIVE,$01,$ff ; SLASH
- db SFX_BATTLE_2C, $d8,$04 ; SUBSTITUTE
- db SFX_BATTLE_0B, $00,$80 ; STRUGGLE
- db SFX_BATTLE_0B, $00,$80
--- a/data/moves.asm
+++ /dev/null
@@ -1,178 +1,0 @@
-Moves:
-; Characteristics of each move.
-
-move: macro
- db \1 ; animation (interchangeable with move id)
- db \2 ; effect
- db \3 ; power
- db \4 ; type
- db \5 percent ; accuracy
- db \6 ; pp
-endm
-
- move POUND, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
-MoveEnd:
- move KARATE_CHOP, NO_ADDITIONAL_EFFECT, 50, NORMAL, 100, 25
- move DOUBLESLAP, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 10
- move COMET_PUNCH, TWO_TO_FIVE_ATTACKS_EFFECT, 18, NORMAL, 85, 15
- move MEGA_PUNCH, NO_ADDITIONAL_EFFECT, 80, NORMAL, 85, 20
- move PAY_DAY, PAY_DAY_EFFECT, 40, NORMAL, 100, 20
- move FIRE_PUNCH, BURN_SIDE_EFFECT1, 75, FIRE, 100, 15
- move ICE_PUNCH, FREEZE_SIDE_EFFECT, 75, ICE, 100, 15
- move THUNDERPUNCH, PARALYZE_SIDE_EFFECT1, 75, ELECTRIC, 100, 15
- move SCRATCH, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
- move VICEGRIP, NO_ADDITIONAL_EFFECT, 55, NORMAL, 100, 30
- move GUILLOTINE, OHKO_EFFECT, 1, NORMAL, 30, 5
- move RAZOR_WIND, CHARGE_EFFECT, 80, NORMAL, 75, 10
- move SWORDS_DANCE, ATTACK_UP2_EFFECT, 0, NORMAL, 100, 30
- move CUT, NO_ADDITIONAL_EFFECT, 50, NORMAL, 95, 30
- move GUST, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
- move WING_ATTACK, NO_ADDITIONAL_EFFECT, 35, FLYING, 100, 35
- move WHIRLWIND, SWITCH_AND_TELEPORT_EFFECT, 0, NORMAL, 85, 20
- move FLY, FLY_EFFECT, 70, FLYING, 95, 15
- move BIND, TRAPPING_EFFECT, 15, NORMAL, 75, 20
- move SLAM, NO_ADDITIONAL_EFFECT, 80, NORMAL, 75, 20
- move VINE_WHIP, NO_ADDITIONAL_EFFECT, 35, GRASS, 100, 10
- move STOMP, FLINCH_SIDE_EFFECT2, 65, NORMAL, 100, 20
- move DOUBLE_KICK, ATTACK_TWICE_EFFECT, 30, FIGHTING, 100, 30
- move MEGA_KICK, NO_ADDITIONAL_EFFECT, 120, NORMAL, 75, 5
- move JUMP_KICK, JUMP_KICK_EFFECT, 70, FIGHTING, 95, 25
- move ROLLING_KICK, FLINCH_SIDE_EFFECT2, 60, FIGHTING, 85, 15
- move SAND_ATTACK, ACCURACY_DOWN1_EFFECT, 0, NORMAL, 100, 15
- move HEADBUTT, FLINCH_SIDE_EFFECT2, 70, NORMAL, 100, 15
- move HORN_ATTACK, NO_ADDITIONAL_EFFECT, 65, NORMAL, 100, 25
- move FURY_ATTACK, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 20
- move HORN_DRILL, OHKO_EFFECT, 1, NORMAL, 30, 5
- move TACKLE, NO_ADDITIONAL_EFFECT, 35, NORMAL, 95, 35
- move BODY_SLAM, PARALYZE_SIDE_EFFECT2, 85, NORMAL, 100, 15
- move WRAP, TRAPPING_EFFECT, 15, NORMAL, 85, 20
- move TAKE_DOWN, RECOIL_EFFECT, 90, NORMAL, 85, 20
- move THRASH, THRASH_PETAL_DANCE_EFFECT, 90, NORMAL, 100, 20
- move DOUBLE_EDGE, RECOIL_EFFECT, 100, NORMAL, 100, 15
- move TAIL_WHIP, DEFENSE_DOWN1_EFFECT, 0, NORMAL, 100, 30
- move POISON_STING, POISON_SIDE_EFFECT1, 15, POISON, 100, 35
- move TWINEEDLE, TWINEEDLE_EFFECT, 25, BUG, 100, 20
- move PIN_MISSILE, TWO_TO_FIVE_ATTACKS_EFFECT, 14, BUG, 85, 20
- move LEER, DEFENSE_DOWN1_EFFECT, 0, NORMAL, 100, 30
- move BITE, FLINCH_SIDE_EFFECT1, 60, NORMAL, 100, 25
- move GROWL, ATTACK_DOWN1_EFFECT, 0, NORMAL, 100, 40
- move ROAR, SWITCH_AND_TELEPORT_EFFECT, 0, NORMAL, 100, 20
- move SING, SLEEP_EFFECT, 0, NORMAL, 55, 15
- move SUPERSONIC, CONFUSION_EFFECT, 0, NORMAL, 55, 20
- move SONICBOOM, SPECIAL_DAMAGE_EFFECT, 1, NORMAL, 90, 20
- move DISABLE, DISABLE_EFFECT, 0, NORMAL, 55, 20
- move ACID, DEFENSE_DOWN_SIDE_EFFECT, 40, POISON, 100, 30
- move EMBER, BURN_SIDE_EFFECT1, 40, FIRE, 100, 25
- move FLAMETHROWER, BURN_SIDE_EFFECT1, 95, FIRE, 100, 15
- move MIST, MIST_EFFECT, 0, ICE, 100, 30
- move WATER_GUN, NO_ADDITIONAL_EFFECT, 40, WATER, 100, 25
- move HYDRO_PUMP, NO_ADDITIONAL_EFFECT, 120, WATER, 80, 5
- move SURF, NO_ADDITIONAL_EFFECT, 95, WATER, 100, 15
- move ICE_BEAM, FREEZE_SIDE_EFFECT, 95, ICE, 100, 10
- move BLIZZARD, FREEZE_SIDE_EFFECT, 120, ICE, 90, 5
- move PSYBEAM, CONFUSION_SIDE_EFFECT, 65, PSYCHIC, 100, 20
- move BUBBLEBEAM, SPEED_DOWN_SIDE_EFFECT, 65, WATER, 100, 20
- move AURORA_BEAM, ATTACK_DOWN_SIDE_EFFECT, 65, ICE, 100, 20
- move HYPER_BEAM, HYPER_BEAM_EFFECT, 150, NORMAL, 90, 5
- move PECK, NO_ADDITIONAL_EFFECT, 35, FLYING, 100, 35
- move DRILL_PECK, NO_ADDITIONAL_EFFECT, 80, FLYING, 100, 20
- move SUBMISSION, RECOIL_EFFECT, 80, FIGHTING, 80, 25
- move LOW_KICK, FLINCH_SIDE_EFFECT2, 50, FIGHTING, 90, 20
- move COUNTER, NO_ADDITIONAL_EFFECT, 1, FIGHTING, 100, 20
- move SEISMIC_TOSS, SPECIAL_DAMAGE_EFFECT, 1, FIGHTING, 100, 20
- move STRENGTH, NO_ADDITIONAL_EFFECT, 80, NORMAL, 100, 15
- move ABSORB, DRAIN_HP_EFFECT, 20, GRASS, 100, 20
- move MEGA_DRAIN, DRAIN_HP_EFFECT, 40, GRASS, 100, 10
- move LEECH_SEED, LEECH_SEED_EFFECT, 0, GRASS, 90, 10
- move GROWTH, SPECIAL_UP1_EFFECT, 0, NORMAL, 100, 40
- move RAZOR_LEAF, NO_ADDITIONAL_EFFECT, 55, GRASS, 95, 25
- move SOLARBEAM, CHARGE_EFFECT, 120, GRASS, 100, 10
- move POISONPOWDER, POISON_EFFECT, 0, POISON, 75, 35
- move STUN_SPORE, PARALYZE_EFFECT, 0, GRASS, 75, 30
- move SLEEP_POWDER, SLEEP_EFFECT, 0, GRASS, 75, 15
- move PETAL_DANCE, THRASH_PETAL_DANCE_EFFECT, 70, GRASS, 100, 20
- move STRING_SHOT, SPEED_DOWN1_EFFECT, 0, BUG, 95, 40
- move DRAGON_RAGE, SPECIAL_DAMAGE_EFFECT, 1, DRAGON, 100, 10
- move FIRE_SPIN, TRAPPING_EFFECT, 15, FIRE, 70, 15
- move THUNDERSHOCK, PARALYZE_SIDE_EFFECT1, 40, ELECTRIC, 100, 30
- move THUNDERBOLT, PARALYZE_SIDE_EFFECT1, 95, ELECTRIC, 100, 15
- move THUNDER_WAVE, PARALYZE_EFFECT, 0, ELECTRIC, 100, 20
- move THUNDER, PARALYZE_SIDE_EFFECT1, 120, ELECTRIC, 70, 10
- move ROCK_THROW, NO_ADDITIONAL_EFFECT, 50, ROCK, 65, 15
- move EARTHQUAKE, NO_ADDITIONAL_EFFECT, 100, GROUND, 100, 10
- move FISSURE, OHKO_EFFECT, 1, GROUND, 30, 5
- move DIG, CHARGE_EFFECT, 100, GROUND, 100, 10
- move TOXIC, POISON_EFFECT, 0, POISON, 85, 10
- move CONFUSION, CONFUSION_SIDE_EFFECT, 50, PSYCHIC, 100, 25
- move PSYCHIC_M, SPECIAL_DOWN_SIDE_EFFECT, 90, PSYCHIC, 100, 10
- move HYPNOSIS, SLEEP_EFFECT, 0, PSYCHIC, 60, 20
- move MEDITATE, ATTACK_UP1_EFFECT, 0, PSYCHIC, 100, 40
- move AGILITY, SPEED_UP2_EFFECT, 0, PSYCHIC, 100, 30
- move QUICK_ATTACK, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 30
- move RAGE, RAGE_EFFECT, 20, NORMAL, 100, 20
- move TELEPORT, SWITCH_AND_TELEPORT_EFFECT, 0, PSYCHIC, 100, 20
- move NIGHT_SHADE, SPECIAL_DAMAGE_EFFECT, 0, GHOST, 100, 15
- move MIMIC, MIMIC_EFFECT, 0, NORMAL, 100, 10
- move SCREECH, DEFENSE_DOWN2_EFFECT, 0, NORMAL, 85, 40
- move DOUBLE_TEAM, EVASION_UP1_EFFECT, 0, NORMAL, 100, 15
- move RECOVER, HEAL_EFFECT, 0, NORMAL, 100, 20
- move HARDEN, DEFENSE_UP1_EFFECT, 0, NORMAL, 100, 30
- move MINIMIZE, EVASION_UP1_EFFECT, 0, NORMAL, 100, 20
- move SMOKESCREEN, ACCURACY_DOWN1_EFFECT, 0, NORMAL, 100, 20
- move CONFUSE_RAY, CONFUSION_EFFECT, 0, GHOST, 100, 10
- move WITHDRAW, DEFENSE_UP1_EFFECT, 0, WATER, 100, 40
- move DEFENSE_CURL, DEFENSE_UP1_EFFECT, 0, NORMAL, 100, 40
- move BARRIER, DEFENSE_UP2_EFFECT, 0, PSYCHIC, 100, 30
- move LIGHT_SCREEN, LIGHT_SCREEN_EFFECT, 0, PSYCHIC, 100, 30
- move HAZE, HAZE_EFFECT, 0, ICE, 100, 30
- move REFLECT, REFLECT_EFFECT, 0, PSYCHIC, 100, 20
- move FOCUS_ENERGY, FOCUS_ENERGY_EFFECT, 0, NORMAL, 100, 30
- move BIDE, BIDE_EFFECT, 0, NORMAL, 100, 10
- move METRONOME, METRONOME_EFFECT, 0, NORMAL, 100, 10
- move MIRROR_MOVE, MIRROR_MOVE_EFFECT, 0, FLYING, 100, 20
- move SELFDESTRUCT, EXPLODE_EFFECT, 130, NORMAL, 100, 5
- move EGG_BOMB, NO_ADDITIONAL_EFFECT, 100, NORMAL, 75, 10
- move LICK, PARALYZE_SIDE_EFFECT2, 20, GHOST, 100, 30
- move SMOG, POISON_SIDE_EFFECT2, 20, POISON, 70, 20
- move SLUDGE, POISON_SIDE_EFFECT2, 65, POISON, 100, 20
- move BONE_CLUB, FLINCH_SIDE_EFFECT1, 65, GROUND, 85, 20
- move FIRE_BLAST, BURN_SIDE_EFFECT2, 120, FIRE, 85, 5
- move WATERFALL, NO_ADDITIONAL_EFFECT, 80, WATER, 100, 15
- move CLAMP, TRAPPING_EFFECT, 35, WATER, 75, 10
- move SWIFT, SWIFT_EFFECT, 60, NORMAL, 100, 20
- move SKULL_BASH, CHARGE_EFFECT, 100, NORMAL, 100, 15
- move SPIKE_CANNON, TWO_TO_FIVE_ATTACKS_EFFECT, 20, NORMAL, 100, 15
- move CONSTRICT, SPEED_DOWN_SIDE_EFFECT, 10, NORMAL, 100, 35
- move AMNESIA, SPECIAL_UP2_EFFECT, 0, PSYCHIC, 100, 20
- move KINESIS, ACCURACY_DOWN1_EFFECT, 0, PSYCHIC, 80, 15
- move SOFTBOILED, HEAL_EFFECT, 0, NORMAL, 100, 10
- move HI_JUMP_KICK, JUMP_KICK_EFFECT, 85, FIGHTING, 90, 20
- move GLARE, PARALYZE_EFFECT, 0, NORMAL, 75, 30
- move DREAM_EATER, DREAM_EATER_EFFECT, 100, PSYCHIC, 100, 15
- move POISON_GAS, POISON_EFFECT, 0, POISON, 55, 40
- move BARRAGE, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 20
- move LEECH_LIFE, DRAIN_HP_EFFECT, 20, BUG, 100, 15
- move LOVELY_KISS, SLEEP_EFFECT, 0, NORMAL, 75, 10
- move SKY_ATTACK, CHARGE_EFFECT, 140, FLYING, 90, 5
- move TRANSFORM, TRANSFORM_EFFECT, 0, NORMAL, 100, 10
- move BUBBLE, SPEED_DOWN_SIDE_EFFECT, 20, WATER, 100, 30
- move DIZZY_PUNCH, NO_ADDITIONAL_EFFECT, 70, NORMAL, 100, 10
- move SPORE, SLEEP_EFFECT, 0, GRASS, 100, 15
- move FLASH, ACCURACY_DOWN1_EFFECT, 0, NORMAL, 70, 20
- move PSYWAVE, SPECIAL_DAMAGE_EFFECT, 1, PSYCHIC, 80, 15
- move SPLASH, SPLASH_EFFECT, 0, NORMAL, 100, 40
- move ACID_ARMOR, DEFENSE_UP2_EFFECT, 0, POISON, 100, 40
- move CRABHAMMER, NO_ADDITIONAL_EFFECT, 90, WATER, 85, 10
- move EXPLOSION, EXPLODE_EFFECT, 170, NORMAL, 100, 5
- move FURY_SWIPES, TWO_TO_FIVE_ATTACKS_EFFECT, 18, NORMAL, 80, 15
- move BONEMERANG, ATTACK_TWICE_EFFECT, 50, GROUND, 90, 10
- move REST, HEAL_EFFECT, 0, PSYCHIC, 100, 10
- move ROCK_SLIDE, NO_ADDITIONAL_EFFECT, 75, ROCK, 90, 10
- move HYPER_FANG, FLINCH_SIDE_EFFECT1, 80, NORMAL, 90, 15
- move SHARPEN, ATTACK_UP1_EFFECT, 0, NORMAL, 100, 30
- move CONVERSION, CONVERSION_EFFECT, 0, NORMAL, 100, 30
- move TRI_ATTACK, NO_ADDITIONAL_EFFECT, 80, NORMAL, 100, 10
- move SUPER_FANG, SUPER_FANG_EFFECT, 1, NORMAL, 90, 10
- move SLASH, NO_ADDITIONAL_EFFECT, 70, NORMAL, 100, 20
- move SUBSTITUTE, SUBSTITUTE_EFFECT, 0, NORMAL, 100, 10
- move STRUGGLE, RECOIL_EFFECT, 50, NORMAL, 100, 10
--- /dev/null
+++ b/data/moves/animation_special_effect_pointers.asm
@@ -1,0 +1,81 @@
+; Format: Special Effect ID (1 byte), Address (2 bytes)
+SpecialEffectPointers:
+ db SE_DARK_SCREEN_FLASH ; $FE
+ dw AnimationFlashScreen
+ db SE_DARK_SCREEN_PALETTE ; $FD
+ dw AnimationDarkScreenPalette
+ db SE_RESET_SCREEN_PALETTE ; $FC
+ dw AnimationResetScreenPalette
+ db SE_SHAKE_SCREEN ; $FB
+ dw AnimationShakeScreen
+ db SE_WATER_DROPLETS_EVERYWHERE ; $FA
+ dw AnimationWaterDropletsEverywhere
+ db SE_DARKEN_MON_PALETTE ; $F9
+ dw AnimationDarkenMonPalette
+ db SE_FLASH_SCREEN_LONG ; $F8
+ dw AnimationFlashScreenLong
+ db SE_SLIDE_MON_UP ; $F7
+ dw AnimationSlideMonUp
+ db SE_SLIDE_MON_DOWN ; $F6
+ dw AnimationSlideMonDown
+ db SE_FLASH_MON_PIC ; $F5
+ dw AnimationFlashMonPic
+ db SE_SLIDE_MON_OFF ; $F4
+ dw AnimationSlideMonOff
+ db SE_BLINK_MON ; $F3
+ dw AnimationBlinkMon
+ db SE_MOVE_MON_HORIZONTALLY ; $F2
+ dw AnimationMoveMonHorizontally
+ db SE_RESET_MON_POSITION ; $F1
+ dw AnimationResetMonPosition
+ db SE_LIGHT_SCREEN_PALETTE ; $F0
+ dw AnimationLightScreenPalette
+ db SE_HIDE_MON_PIC ; $EF
+ dw AnimationHideMonPic
+ db SE_SQUISH_MON_PIC ; $EE
+ dw AnimationSquishMonPic
+ db SE_SHOOT_BALLS_UPWARD ; $ED
+ dw AnimationShootBallsUpward
+ db SE_SHOOT_MANY_BALLS_UPWARD ; $EC
+ dw AnimationShootManyBallsUpward
+ db SE_BOUNCE_UP_AND_DOWN ; $EB
+ dw AnimationBoundUpAndDown
+ db SE_MINIMIZE_MON ; $EA
+ dw AnimationMinimizeMon
+ db SE_SLIDE_MON_DOWN_AND_HIDE ; $E9
+ dw AnimationSlideMonDownAndHide
+ db SE_TRANSFORM_MON ; $E8
+ dw AnimationTransformMon
+ db SE_LEAVES_FALLING ; $E7
+ dw AnimationLeavesFalling
+ db SE_PETALS_FALLING ; $E6
+ dw AnimationPetalsFalling
+ db SE_SLIDE_MON_HALF_OFF ; $E5
+ dw AnimationSlideMonHalfOff
+ db SE_SHAKE_ENEMY_HUD ; $E4
+ dw AnimationShakeEnemyHUD
+ db SE_SHAKE_ENEMY_HUD_2 ; unused--same pointer as SE_SHAKE_ENEMY_HUD ($E4)
+ dw AnimationShakeEnemyHUD
+ db SE_SPIRAL_BALLS_INWARD ; $E2
+ dw AnimationSpiralBallsInward
+ db SE_DELAY_ANIMATION_10 ; $E1
+ dw AnimationDelay10
+ db SE_FLASH_ENEMY_MON_PIC ; unused--same as SE_FLASH_MON_PIC ($F5), but for the enemy mon
+ dw AnimationFlashEnemyMonPic
+ db SE_HIDE_ENEMY_MON_PIC ; $DF
+ dw AnimationHideEnemyMonPic
+ db SE_BLINK_ENEMY_MON ; $DE
+ dw AnimationBlinkEnemyMon
+ db SE_SHOW_MON_PIC ; $DD
+ dw AnimationShowMonPic
+ db SE_SHOW_ENEMY_MON_PIC ; $DC
+ dw AnimationShowEnemyMonPic
+ db SE_SLIDE_ENEMY_MON_OFF ; $DB
+ dw AnimationSlideEnemyMonOff
+ db SE_SHAKE_BACK_AND_FORTH ; $DA
+ dw AnimationShakeBackAndForth
+ db SE_SUBSTITUTE_MON ; $D9
+ dw AnimationSubstitute
+ db SE_WAVY_SCREEN ; $D8
+ dw AnimationWavyScreen
+ db $FF
--- /dev/null
+++ b/data/moves/animation_special_effects.asm
@@ -1,0 +1,75 @@
+; Format: Animation ID (1 byte), Address (2 bytes)
+AnimationIdSpecialEffects:
+ db MEGA_PUNCH
+ dw AnimationFlashScreen
+
+ db GUILLOTINE
+ dw AnimationFlashScreen
+
+ db MEGA_KICK
+ dw AnimationFlashScreen
+
+ db HEADBUTT
+ dw AnimationFlashScreen
+
+ db TAIL_WHIP
+ dw TailWhipAnimationUnused
+
+ db GROWL
+ dw DoGrowlSpecialEffects
+
+ db DISABLE
+ dw AnimationFlashScreen
+
+ db BLIZZARD
+ dw DoBlizzardSpecialEffects
+
+ db BUBBLEBEAM
+ dw AnimationFlashScreen
+
+ db HYPER_BEAM
+ dw FlashScreenEveryFourFrameBlocks
+
+ db THUNDERBOLT
+ dw FlashScreenEveryEightFrameBlocks
+
+ db REFLECT
+ dw AnimationFlashScreen
+
+ db SELFDESTRUCT
+ dw DoExplodeSpecialEffects
+
+ db SPORE
+ dw AnimationFlashScreen
+
+ db EXPLOSION
+ dw DoExplodeSpecialEffects
+
+ db ROCK_SLIDE
+ dw DoRockSlideSpecialEffects
+
+ db TRADE_BALL_DROP_ANIM
+ dw TradeHidePokemon
+
+ db TRADE_BALL_SHAKE_ANIM
+ dw TradeShakePokeball
+
+ db TRADE_BALL_TILT_ANIM
+ dw TradeJumpPokeball
+
+ db TOSS_ANIM
+ dw DoBallTossSpecialEffects
+
+ db SHAKE_ANIM
+ dw DoBallShakeSpecialEffects
+
+ db POOF_ANIM
+ dw DoPoofSpecialEffects
+
+ db GREATTOSS_ANIM
+ dw DoBallTossSpecialEffects
+
+ db ULTRATOSS_ANIM
+ dw DoBallTossSpecialEffects
+
+ db $FF ; terminator
--- /dev/null
+++ b/data/moves/animations.asm
@@ -1,0 +1,3628 @@
+AttackAnimationPointers:
+ dw PoundAnim
+ dw KarateChopAnim
+ dw DoubleSlapAnim
+ dw CometPunchAnim
+ dw MegaPunchAnim
+ dw PayDayAnim
+ dw FirePunchAnim
+ dw IcePunchAnim
+ dw ThunderPunchAnim
+ dw ScratchAnim
+ dw VicegripAnim
+ dw GuillotineAnim
+ dw RazorWindAnim
+ dw SwordsDanceAnim
+ dw CutAnim
+ dw GustAnim
+ dw WingAttackAnim
+ dw WhirlwindAnim
+ dw FlyAnim
+ dw BindAnim
+ dw SlamAnim
+ dw VineWhipAnim
+ dw StompAnim
+ dw DoubleKickAnim
+ dw MegaKickAnim
+ dw JumpKickAnim
+ dw RollingKickAnim
+ dw SandAttackAnim
+ dw HeatButtAnim
+ dw HornAttackAnim
+ dw FuryAttackAnim
+ dw HornDrillAnim
+ dw TackleAnim
+ dw BodySlamAnim
+ dw WrapAnim
+ dw TakeDownAnim
+ dw ThrashAnim
+ dw DoubleEdgeAnim
+ dw TailWhipAnim
+ dw PoisonStingAnim
+ dw TwineedleAnim
+ dw PinMissileAnim
+ dw LeerAnim
+ dw BiteAnim
+ dw GrowlAnim
+ dw RoarAnim
+ dw SingAnim
+ dw SupersonicAnim
+ dw SonicBoomAnim
+ dw DisableAnim
+ dw AcidAnim
+ dw EmberAnim
+ dw FlamethrowerAnim
+ dw MistAnim
+ dw WaterGunAnim
+ dw HydroPumpAnim
+ dw SurfAnim
+ dw IceBeamAnim
+ dw BlizzardAnim
+ dw PsyBeamAnim
+ dw BubbleBeamAnim
+ dw AuroraBeamAnim
+ dw HyperBeamAnim
+ dw PeckAnim
+ dw DrillPeckAnim
+ dw SubmissionAnim
+ dw LowKickAnim
+ dw CounterAnim
+ dw SeismicTossAnim
+ dw StrengthAnim
+ dw AbsorbAnim
+ dw MegaDrainAnim
+ dw LeechSeedAnim
+ dw GrowthAnim
+ dw RazorLeafAnim
+ dw SolarBeamAnim
+ dw PoisonPowderAnim
+ dw StunSporeAnim
+ dw SleepPowderAnim
+ dw PedalDanceAnim
+ dw StringShotAnim
+ dw DragonRageAnim
+ dw FireSpinAnim
+ dw ThunderShockAnim
+ dw ThunderBoltAnim
+ dw ThunderWaveAnim
+ dw ThunderAnim
+ dw RockThrowAnim
+ dw EarthquakeAnim
+ dw FissureAnim
+ dw DigAnim
+ dw ToxicAnim
+ dw ConfusionAnim
+ dw PsychicAnim
+ dw HypnosisAnim
+ dw MeditateAnim
+ dw AgilityAnim
+ dw QuickAttackAnim
+ dw RageAnim
+ dw TeleportAnim
+ dw NightShadeAnim
+ dw MimicAnim
+ dw ScreechAnim
+ dw DoubleTeamAnim
+ dw RecoverAnim
+ dw HardenAnim
+ dw MinimizeAnim
+ dw SmokeScreenAnim
+ dw ConfuseRayAnim
+ dw WithdrawAnim
+ dw DefenseCurlAnim
+ dw BarrierAnim
+ dw LightScreenAnim
+ dw HazeAnim
+ dw ReflectAnim
+ dw FocusEnergyAnim
+ dw BideAnim
+ dw MetronomeAnim
+ dw MirrorMoveAnim
+ dw SelfdestructAnim
+ dw EggBombAnim
+ dw LickAnim
+ dw SmogAnim
+ dw SludgeAnim
+ dw BoneClubAnim
+ dw FireBlastAnim
+ dw WaterfallAnim
+ dw ClampAnim
+ dw SwiftAnim
+ dw SkullBashAnim
+ dw SpikeCannonAnim
+ dw ConstrictAnim
+ dw AmnesiaAnim
+ dw KinesisAnim
+ dw SoftboiledAnim
+ dw HiJumpKickAnim
+ dw GlareAnim
+ dw DreamEaterAnim
+ dw PoisonGasAnim
+ dw BarrageAnim
+ dw LeechLifeAnim
+ dw LovelyKissAnim
+ dw SkyAttackAnim
+ dw TransformAnim
+ dw BubbleAnim
+ dw DizzyPunchAnim
+ dw SporeAnim
+ dw FlashAnim
+ dw PsywaveAnim
+ dw SplashAnim
+ dw AcidArmorAnim
+ dw CrabHammerAnim
+ dw ExplosionAnim
+ dw FurySwipesAnim
+ dw BonemerangAnim
+ dw RestAnim
+ dw RockSlideAnim
+ dw HyperFangAnim
+ dw SharpenAnim
+ dw ConversionAnim
+ dw TriAttackAnim
+ dw SuperFangAnim
+ dw SlashAnim
+ dw SubstituteAnim
+ dw StruggleAnim
+ dw ShowPicAnim
+ dw EnemyFlashAnim
+ dw PlayerFlashAnim
+ dw EnemyHUDShakeAnim
+ dw TradeBallDropAnim
+ dw TradeBallAppear1Anim
+ dw TradeBallAppear2Anim
+ dw TradeBallPoofAnim
+ dw XStatItemAnim
+ dw XStatItemAnim
+ dw ShrinkingSquareAnim
+ dw ShrinkingSquareAnim
+ dw XStatItemBlackAnim
+ dw XStatItemBlackAnim
+ dw ShrinkingSquareBlackAnim
+ dw ShrinkingSquareBlackAnim
+ dw UnusedAnim
+ dw UnusedAnim
+ dw ParalyzeAnim
+ dw ParalyzeAnim
+ dw PoisonAnim
+ dw PoisonAnim
+ dw SleepPlayerAnim
+ dw SleepEnemyAnim
+ dw ConfusedPlayerAnim
+ dw ConfusedEnemyAnim
+ dw FaintAnim
+ dw BallTossAnim
+ dw BallShakeAnim
+ dw BallPoofAnim
+ dw BallBlockAnim
+ dw GreatTossAnim
+ dw UltraTossAnim
+ dw ShakeScreenAnim
+ dw HidePicAnim
+ dw ThrowRockAnim
+ dw ThrowBaitAnim
+ dw ZigZagScreenAnim
+
+; each animation is a list of subanimations and special effects
+; if first byte < $56
+; db tileset_and_delay, sound_id, subanimation_id
+; if first byte >= $D8
+; db special_effect_id, sound_id
+; $FF terminated
+ZigZagScreenAnim:
+ db SE_WAVY_SCREEN, $FF
+ db $FF
+
+PoundAnim:
+StruggleAnim:
+ db $08,$00,$01
+ db $FF
+
+KarateChopAnim:
+ db $08,$01,$03
+ db $FF
+
+DoubleSlapAnim:
+ db $05,$02,$01
+ db $05,$02,$01
+ db $FF
+
+CometPunchAnim:
+ db $04,$03,$02
+ db $04,$03,$02
+ db $FF
+
+MegaPunchAnim:
+ db $46,$04,$04
+ db $FF
+
+PayDayAnim:
+ db $08,$00,$01
+ db $04,$05,$52
+ db $FF
+
+FirePunchAnim:
+ db $06,$06,$02
+ db $46,$FF,$11
+ db $FF
+
+IcePunchAnim:
+ db $06,$07,$02
+ db $10,$FF,$2F
+ db $FF
+
+ThunderPunchAnim:
+ db $06,$08,$02
+ db SE_DARK_SCREEN_PALETTE, $FF
+ db $46,$FF,$2B
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ScratchAnim:
+ db $06,$09,$0F
+ db $FF
+
+VicegripAnim:
+ db $08,$0A,$2A
+ db $FF
+
+GuillotineAnim:
+ db $06,$0B,$2A
+ db $FF
+
+RazorWindAnim:
+ db $04,$0C,$16
+ db $FF
+
+SwordsDanceAnim:
+ db $46,$0D,$18
+ db $46,$0D,$18
+ db $46,$0D,$18
+ db $FF
+
+CutAnim:
+ db SE_DARK_SCREEN_FLASH, $0E
+ db $04,$FF,$16
+ db $FF
+
+GustAnim:
+ db $46,$0F,$10
+ db $06,$FF,$02
+ db $FF
+
+WingAttackAnim:
+ db $46,$10,$04
+ db $FF
+
+WhirlwindAnim:
+ db $46,$11,$10
+ db SE_SLIDE_ENEMY_MON_OFF, $FF
+ db $FF
+
+FlyAnim:
+ db $46,$12,$04
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+BindAnim:
+ db $04,$13,$23
+ db $04,$13,$23
+ db $FF
+
+SlamAnim:
+ db $06,$14,$02
+ db $FF
+
+VineWhipAnim:
+ db $01,$15,$16
+ db $08,$FF,$01
+ db $FF
+
+StompAnim:
+ db $48,$16,$05
+ db $FF
+
+DoubleKickAnim:
+ db $08,$17,$01
+ db $08,$17,$01
+ db $FF
+
+MegaKickAnim:
+ db $46,$18,$04
+ db $FF
+
+JumpKickAnim:
+ db $46,$19,$04
+ db $FF
+
+RollingKickAnim:
+ db SE_DARK_SCREEN_FLASH, $1A
+ db $46,$FF,$04
+ db $FF
+
+SandAttackAnim:
+ db $46,$1B,$28
+ db $FF
+
+HeatButtAnim:
+ db $46,$1C,$05
+ db $FF
+
+HornAttackAnim:
+ db $06,$1D,$45
+ db $46,$FF,$05
+ db $FF
+
+FuryAttackAnim:
+ db $02,$1E,$46
+ db $02,$FF,$46
+ db $FF
+
+HornDrillAnim:
+ db $42,$1F,$05
+ db $42,$FF,$05
+ db $42,$FF,$05
+ db $42,$FF,$05
+ db $42,$FF,$05
+ db $FF
+
+TackleAnim:
+ db SE_MOVE_MON_HORIZONTALLY, $48
+ db SE_RESET_MON_POSITION, $FF
+ db $FF
+
+BodySlamAnim:
+ db SE_MOVE_MON_HORIZONTALLY, $48
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_MON_POSITION, $FF
+ db $FF
+
+WrapAnim:
+ db $04,$22,$23
+ db $04,$22,$23
+ db $04,$22,$23
+ db $FF
+
+TakeDownAnim:
+ db SE_MOVE_MON_HORIZONTALLY, $48
+ db SE_DARK_SCREEN_FLASH, $23
+ db SE_RESET_MON_POSITION, $FF
+ db $FF
+
+ThrashAnim:
+ db $46,$24,$04
+ db $FF
+
+DoubleEdgeAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $48
+ db $06,$FF,$2D
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db SE_MOVE_MON_HORIZONTALLY, $FF
+ db SE_DARK_SCREEN_FLASH, $25
+ db SE_RESET_MON_POSITION, $FF
+ db $FF
+
+TailWhipAnim:
+ db SE_MOVE_MON_HORIZONTALLY, $84
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_RESET_MON_POSITION, $84
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_MOVE_MON_HORIZONTALLY, $84
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_RESET_MON_POSITION, $84
+ db $FF
+
+PoisonStingAnim:
+ db $06,$27,$00
+ db $FF
+
+TwineedleAnim:
+ db $05,$28,$01
+ db $05,$28,$01
+ db $FF
+
+PinMissileAnim:
+ db $03,$29,$01
+ db $FF
+
+LeerAnim:
+ db SE_DARK_SCREEN_PALETTE, $48
+ db SE_DARK_SCREEN_FLASH, $2A
+ db SE_DARK_SCREEN_FLASH, $2A
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+BiteAnim:
+ db $08,$2B,$02
+ db $FF
+
+GrowlAnim:
+ db $46,$2C,$12
+ db $FF
+
+RoarAnim:
+ db $46,$2D,$15
+ db $46,$2D,$15
+ db $46,$2D,$15
+ db $FF
+
+SingAnim:
+ db $46,$2E,$12
+ db $50,$FF,$40
+ db $50,$FF,$40
+ db $FF
+
+SupersonicAnim:
+ db $06,$2F,$31
+ db $FF
+
+SonicBoomAnim:
+ db $46,$2D,$15
+ db $46,$2D,$15
+ db $46,$0F,$10
+ db $46,$FF,$05
+ db $FF
+
+DisableAnim:
+ db SE_DARK_SCREEN_PALETTE, $48
+ db SE_DARK_SCREEN_FLASH, $2A
+ db SE_DARK_SCREEN_FLASH, $2A
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+AcidAnim:
+ db $46,$32,$13
+ db $46,$32,$14
+ db $FF
+
+EmberAnim:
+ db $46,$33,$11
+ db $FF
+
+FlamethrowerAnim:
+ db $46,$34,$1F
+ db $46,$34,$0C
+ db $46,$34,$0D
+ db $FF
+
+MistAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db SE_WATER_DROPLETS_EVERYWHERE, $38
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+WaterGunAnim:
+ db $06,$36,$2C
+ db $FF
+
+HydroPumpAnim:
+ db $06,$37,$1A
+ db $06,$37,$1A
+ db $FF
+
+SurfAnim:
+ db SE_WATER_DROPLETS_EVERYWHERE, $38
+ db $06,$37,$1A
+ db $FF
+
+IceBeamAnim:
+ db $03,$39,$2E
+ db $10,$FF,$2F
+ db $FF
+
+BlizzardAnim:
+ db $04,$3A,$38
+ db $04,$37,$38
+ db $FF
+
+PsyBeamAnim:
+ db $03,$3B,$2E
+ db SE_FLASH_SCREEN_LONG, $FF
+ db $FF
+
+BubbleBeamAnim:
+ db $12,$3C,$35
+ db $FF
+
+AuroraBeamAnim:
+ db $03,$3D,$2E
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db $FF
+
+HyperBeamAnim:
+ db SE_DARK_SCREEN_PALETTE, $48
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db $02,$3E,$2E
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $46,$04,$04
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+PeckAnim:
+ db $08,$3F,$01
+ db $FF
+
+DrillPeckAnim:
+ db $46,$40,$04
+ db $FF
+
+SubmissionAnim:
+ db SE_SLIDE_MON_OFF, $41
+ db $06,$FF,$01
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+LowKickAnim:
+ db SE_SLIDE_MON_OFF, $42
+ db $46,$FF,$04
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+CounterAnim:
+ db SE_SLIDE_MON_OFF, $43
+ db $46,$FF,$04
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+SeismicTossAnim:
+ db SE_BLINK_ENEMY_MON, $FF
+ db $41,$8B,$4E
+ db SE_HIDE_ENEMY_MON_PIC, $FF
+ db SE_SLIDE_MON_OFF, $FF
+ db $42,$44,$4F
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_SHOW_MON_PIC, $FF
+ db $41,$44,$50
+ db SE_SHOW_ENEMY_MON_PIC, $FF
+ db SE_SHAKE_SCREEN, $FF
+ db $FF
+
+StrengthAnim:
+ db SE_MOVE_MON_HORIZONTALLY, $48
+ db SE_RESET_MON_POSITION, $FF
+ db $46,$06,$04
+ db $FF
+
+AbsorbAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $46
+ db $06,$FF,$21
+ db $06,$FF,$22
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+MegaDrainAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $47
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $06,$FF,$21
+ db $06,$FF,$22
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+LeechSeedAnim:
+ db $46,$48,$1B
+ db $55,$4D,$1C
+ db $FF
+
+GrowthAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $49
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+RazorLeafAnim:
+ db SE_LEAVES_FALLING, $4A
+ db $41,$80,$44
+ db $01,$0C,$16
+ db $FF
+
+SolarBeamAnim:
+ db $06,$4B,$2E
+ db $06,$FF,$01
+ db $FF
+
+PoisonPowderAnim:
+ db $06,$4C,$36
+ db $FF
+
+StunSporeAnim:
+ db $06,$4D,$36
+ db $FF
+
+SleepPowderAnim:
+ db $06,$4E,$36
+ db $FF
+
+PedalDanceAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $4F
+ db SE_PETALS_FALLING, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+StringShotAnim:
+ db $08,$50,$37
+ db $FF
+
+DragonRageAnim:
+ db $46,$51,$1F
+ db $46,$FF,$0C
+ db $46,$FF,$0D
+ db $46,$FF,$0E
+ db $FF
+
+FireSpinAnim:
+ db $46,$52,$0C
+ db $46,$FF,$0D
+ db $46,$FF,$0E
+ db $FF
+
+ThunderShockAnim:
+ db $42,$53,$29
+ db $FF
+
+ThunderBoltAnim:
+ db $41,$54,$29
+ db $41,$54,$29
+ db $FF
+
+ThunderWaveAnim:
+ db $42,$55,$29
+ db $02,$FF,$23
+ db $04,$FF,$23
+ db $FF
+
+ThunderAnim:
+ db SE_DARK_SCREEN_PALETTE, $56
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $46,$FF,$2B
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $42,$54,$29
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+RockThrowAnim:
+ db $04,$57,$30
+ db $FF
+
+EarthquakeAnim:
+ db SE_SHAKE_SCREEN, $58
+ db SE_SHAKE_SCREEN, $58
+ db $FF
+
+FissureAnim:
+ db SE_DARK_SCREEN_FLASH, $59
+ db SE_SHAKE_SCREEN, $FF
+ db SE_DARK_SCREEN_FLASH, $59
+ db SE_SHAKE_SCREEN, $FF
+ db $FF
+
+DigAnim:
+ db $46,$5A,$04
+ db SE_SLIDE_MON_UP, $FF
+ db $FF
+
+ToxicAnim:
+ db SE_WATER_DROPLETS_EVERYWHERE, $38
+ db $46,$5B,$14
+ db $FF
+
+ConfusionAnim:
+ db SE_FLASH_SCREEN_LONG, $5C
+ db $FF
+
+PsychicAnim:
+ db SE_FLASH_SCREEN_LONG, $5D
+ db SE_WAVY_SCREEN, $FF
+ db $FF
+
+HypnosisAnim:
+ db SE_FLASH_SCREEN_LONG, $5E
+ db $FF
+
+MeditateAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $5F
+ db $46,$FF,$43
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+AgilityAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $60
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+QuickAttackAnim:
+ db SE_SLIDE_MON_OFF, $61
+ db $46,$FF,$04
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+RageAnim:
+ db $06,$62,$01
+ db $FF
+
+TeleportAnim:
+ db SE_SQUISH_MON_PIC, $63
+ db SE_SHOOT_BALLS_UPWARD, $FF
+ db $FF
+
+NightShadeAnim:
+ db SE_FLASH_SCREEN_LONG, $5C
+ db SE_WAVY_SCREEN, $FF
+ db $FF
+
+MimicAnim:
+ db $46,$65,$21
+ db $46,$65,$22
+ db $FF
+
+ScreechAnim:
+ db $46,$66,$12
+ db $FF
+
+DoubleTeamAnim:
+ db SE_DARK_SCREEN_PALETTE, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db SE_SHAKE_BACK_AND_FORTH, $67
+ db SE_SHOW_MON_PIC, $FF
+ db $46,$6F,$33
+ db $FF
+
+RecoverAnim:
+ db SE_BLINK_MON, $68
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+HardenAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $69
+ db $46,$FF,$43
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+MinimizeAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $6A
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db SE_MINIMIZE_MON, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+SmokeScreenAnim:
+ db $46,$6B,$28
+ db $04,$FF,$0A
+ db SE_DARKEN_MON_PALETTE, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DARK_SCREEN_PALETTE, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_DARKEN_MON_PALETTE, $FF
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ConfuseRayAnim:
+ db SE_DARK_SCREEN_PALETTE, $6C
+ db $46,$FF,$3E
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+WithdrawAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $6E
+ db SE_SLIDE_MON_DOWN, $FF
+ db $06,$FF,$51
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+DefenseCurlAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $6E
+ db $06,$FF,$43
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+BarrierAnim:
+ db $46,$6F,$33
+ db $46,$6F,$33
+ db $FF
+
+LightScreenAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db $46,$70,$33
+ db $46,$70,$33
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+HazeAnim:
+ db SE_DARKEN_MON_PALETTE, $FF
+ db SE_WATER_DROPLETS_EVERYWHERE, $38
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ReflectAnim:
+ db SE_DARK_SCREEN_PALETTE, $FF
+ db $46,$72,$33
+ db $46,$72,$33
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+FocusEnergyAnim:
+ db SE_SPIRAL_BALLS_INWARD, $73
+ db $FF
+
+BideAnim:
+ db $46,$74,$04
+ db $FF
+
+MetronomeAnim:
+ db SE_MOVE_MON_HORIZONTALLY, $84
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_RESET_MON_POSITION, $84
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_MOVE_MON_HORIZONTALLY, $84
+ db SE_DELAY_ANIMATION_10, $FF
+ db SE_RESET_MON_POSITION, $84
+ db $FF
+
+MirrorMoveAnim:
+ db $08,$76,$01
+ db $FF
+
+SelfdestructAnim:
+ db $43,$77,$34
+ db $FF
+
+EggBombAnim:
+ db $44,$78,$41
+ db $44,$78,$42
+ db $FF
+
+LickAnim:
+ db $46,$7B,$14
+ db $FF
+
+SmogAnim:
+ db SE_DARKEN_MON_PALETTE, $48
+ db $46,$7A,$19
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+SludgeAnim:
+ db $46,$7B,$13
+ db $46,$7B,$14
+ db $FF
+
+BoneClubAnim:
+ db $08,$7C,$02
+ db $FF
+
+FireBlastAnim:
+ db $46,$7D,$1F
+ db $46,$FF,$20
+ db $46,$FF,$20
+ db $46,$FF,$0C
+ db $46,$FF,$0D
+ db $FF
+
+WaterfallAnim:
+ db SE_SLIDE_MON_DOWN, $48
+ db $06,$37,$1A
+ db $08,$FF,$02
+ db SE_SLIDE_MON_UP, $FF
+ db $FF
+
+ClampAnim:
+ db $08,$7F,$2A
+ db $06,$83,$23
+ db $06,$83,$23
+ db $FF
+
+SwiftAnim:
+ db $43,$80,$3F
+ db $FF
+
+SkullBashAnim:
+ db $46,$81,$05
+ db $FF
+
+SpikeCannonAnim:
+ db $44,$82,$04
+ db $FF
+
+ConstrictAnim:
+ db $06,$83,$23
+ db $06,$83,$23
+ db $06,$83,$23
+ db $FF
+
+AmnesiaAnim:
+ db $08,$84,$25
+ db $08,$84,$25
+ db $FF
+
+KinesisAnim:
+ db $08,$85,$01
+ db $FF
+
+SoftboiledAnim:
+ db SE_SLIDE_MON_HALF_OFF, $48
+ db $08,$86,$4C
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+HiJumpKickAnim:
+ db $46,$87,$04
+ db $FF
+
+GlareAnim:
+ db SE_DARK_SCREEN_PALETTE, $48
+ db SE_DARK_SCREEN_FLASH, $88
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+DreamEaterAnim:
+ db SE_FLASH_SCREEN_LONG, $89
+ db SE_DARK_SCREEN_PALETTE, $89
+ db $08,$89,$02
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+PoisonGasAnim:
+ db $46,$8A,$19
+ db $FF
+
+BarrageAnim:
+ db $43,$8B,$41
+ db $05,$FF,$55
+ db $FF
+
+LeechLifeAnim:
+ db $08,$8C,$02
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $06,$FF,$21
+ db $06,$FF,$22
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $FF
+
+LovelyKissAnim:
+ db $06,$8D,$12
+ db $FF
+
+SkyAttackAnim:
+ db SE_SQUISH_MON_PIC, $8E
+ db SE_SHOOT_BALLS_UPWARD, $FF
+ db $46,$87,$04
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+TransformAnim:
+ db $46,$8F,$21
+ db $44,$8F,$22
+ db $08,$FF,$47
+ db SE_TRANSFORM_MON, $FF
+ db $FF
+
+BubbleAnim:
+ db $16,$90,$35
+ db $FF
+
+DizzyPunchAnim:
+ db $06,$91,$17
+ db $06,$91,$17
+ db $06,$91,$17
+ db $06,$02,$02
+ db $FF
+
+SporeAnim:
+ db $06,$92,$36
+ db $FF
+
+FlashAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $48
+ db SE_DARK_SCREEN_FLASH, $88
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+PsywaveAnim:
+ db $06,$2F,$31
+ db SE_WAVY_SCREEN, $5C
+ db $FF
+
+SplashAnim:
+ db SE_BOUNCE_UP_AND_DOWN, $95
+ db $FF
+
+AcidArmorAnim:
+ db SE_SLIDE_MON_DOWN_AND_HIDE, $96
+ db $FF
+
+CrabHammerAnim:
+ db $46,$97,$05
+ db $06,$FF,$2A
+ db $FF
+
+ExplosionAnim:
+ db $43,$98,$34
+ db $FF
+
+FurySwipesAnim:
+ db $04,$99,$0F
+ db $FF
+
+BonemerangAnim:
+ db $06,$9A,$02
+ db $FF
+
+RestAnim:
+ db $10,$9B,$3A
+ db $10,$9B,$3A
+ db $FF
+
+RockSlideAnim:
+ db $04,$9C,$1D
+ db $03,$9C,$1E
+ db $46,$9D,$04
+ db $FF
+
+HyperFangAnim:
+ db $06,$9D,$02
+ db $FF
+
+SharpenAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $9E
+ db $46,$FF,$43
+ db SE_DARK_SCREEN_FLASH, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ConversionAnim:
+ db SE_DARK_SCREEN_FLASH, $9F
+ db $46,$FF,$21
+ db $46,$FF,$22
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $FF
+
+TriAttackAnim:
+ db SE_DARK_SCREEN_FLASH, $A0
+ db $46,$FF,$4D
+ db SE_DARK_SCREEN_FLASH, $FF
+ db $FF
+
+SuperFangAnim:
+ db SE_DARK_SCREEN_PALETTE, $48
+ db $46,$A1,$04
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+SlashAnim:
+ db $06,$A2,$0F
+ db $FF
+
+SubstituteAnim:
+ db SE_SLIDE_MON_OFF, $A3
+ db $08,$FF,$47
+ db SE_SUBSTITUTE_MON, $FF
+ db $FF
+
+BallTossAnim:
+ db $03,$FF,$06
+ db $FF
+
+GreatTossAnim:
+ db $03,$FF,$07
+ db $FF
+
+UltraTossAnim:
+ db $02,$FF,$08
+ db $FF
+
+BallShakeAnim:
+ db $04,$FF,$09
+ db $FF
+
+BallPoofAnim:
+ db $04,$FF,$0A
+ db $FF
+
+ShowPicAnim:
+ db SE_SHOW_ENEMY_MON_PIC, $FF
+ db $FF
+
+HidePicAnim:
+ db SE_HIDE_ENEMY_MON_PIC, $FF
+ db $FF
+
+EnemyFlashAnim:
+ db SE_SHOW_MON_PIC, $FF
+ db $FF
+
+PlayerFlashAnim:
+ db SE_FLASH_MON_PIC, $FF
+ db $FF
+
+EnemyHUDShakeAnim:
+ db SE_SHAKE_ENEMY_HUD, $FF
+ db $FF
+
+TradeBallDropAnim:
+ db $86,$FF,$48
+ db $FF
+
+TradeBallAppear1Anim:
+ db $84,$FF,$49
+ db $FF
+
+TradeBallAppear2Anim:
+ db $86,$FF,$4A
+ db $FF
+
+TradeBallPoofAnim:
+ db $86,$FF,$4B
+ db $FF
+
+XStatItemAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ShrinkingSquareAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db $46,$FF,$43
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+XStatItemBlackAnim:
+ db SE_DARKEN_MON_PALETTE, $FF
+ db SE_SPIRAL_BALLS_INWARD, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ShrinkingSquareBlackAnim:
+ db SE_DARKEN_MON_PALETTE, $FF
+ db $46,$FF,$43
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+UnusedAnim:
+ db SE_LIGHT_SCREEN_PALETTE, $FF
+ db SE_SHOOT_MANY_BALLS_UPWARD, $FF
+ db SE_RESET_SCREEN_PALETTE, $FF
+ db $FF
+
+ParalyzeAnim:
+ db $04,$13,$24
+ db $04,$13,$24
+ db $FF
+
+PoisonAnim:
+ db $08,$13,$27
+ db $08,$13,$27
+ db $FF
+
+SleepPlayerAnim:
+ db $10,$9B,$3A
+ db $10,$9B,$3A
+ db $FF
+
+SleepEnemyAnim:
+ db $10,$9B,$3B
+ db $10,$9B,$3B
+ db $FF
+
+ConfusedPlayerAnim:
+ db $08,$84,$25
+ db $08,$84,$25
+ db $FF
+
+ConfusedEnemyAnim:
+ db $08,$84,$26
+ db $08,$84,$26
+ db $FF
+
+BallBlockAnim:
+ db $03,$FF,$0B
+ db $FF
+
+FaintAnim:
+ db SE_SLIDE_MON_DOWN, $5A
+ db $FF
+
+ShakeScreenAnim:
+ db SE_SHAKE_SCREEN, $FF
+ db $FF
+
+ThrowRockAnim:
+ db $03,$8B,$53
+ db $FF
+
+ThrowBaitAnim:
+ db $03,$8B,$54
+ db $FF
+
+SubanimationPointers:
+ dw Subanimation00
+ dw Subanimation01
+ dw Subanimation02
+ dw Subanimation03
+ dw Subanimation04
+ dw Subanimation05
+ dw Subanimation06
+ dw Subanimation07
+ dw Subanimation08
+ dw Subanimation09
+ dw Subanimation0a
+ dw Subanimation0b
+ dw Subanimation0c
+ dw Subanimation0d
+ dw Subanimation0e
+ dw Subanimation0f
+ dw Subanimation10
+ dw Subanimation11
+ dw Subanimation12
+ dw Subanimation13
+ dw Subanimation14
+ dw Subanimation15
+ dw Subanimation16
+ dw Subanimation17
+ dw Subanimation18
+ dw Subanimation19
+ dw Subanimation1a
+ dw Subanimation1b
+ dw Subanimation1c
+ dw Subanimation1d
+ dw Subanimation1e
+ dw Subanimation1f
+ dw Subanimation20
+ dw Subanimation21
+ dw Subanimation22
+ dw Subanimation23
+ dw Subanimation24
+ dw Subanimation25
+ dw Subanimation26
+ dw Subanimation27
+ dw Subanimation28
+ dw Subanimation29
+ dw Subanimation2a
+ dw Subanimation2b
+ dw Subanimation2c
+ dw Subanimation2d
+ dw Subanimation2e
+ dw Subanimation2f
+ dw Subanimation30
+ dw Subanimation31
+ dw Subanimation32
+ dw Subanimation33
+ dw Subanimation34
+ dw Subanimation35
+ dw Subanimation36
+ dw Subanimation37
+ dw Subanimation38
+ dw Subanimation39
+ dw Subanimation3a
+ dw Subanimation3b
+ dw Subanimation3c
+ dw Subanimation3d
+ dw Subanimation3e
+ dw Subanimation3f
+ dw Subanimation40
+ dw Subanimation41
+ dw Subanimation42
+ dw Subanimation43
+ dw Subanimation44
+ dw Subanimation45
+ dw Subanimation46
+ dw Subanimation47
+ dw Subanimation48
+ dw Subanimation49
+ dw Subanimation4a
+ dw Subanimation4b
+ dw Subanimation4c
+ dw Subanimation4d
+ dw Subanimation4e
+ dw Subanimation4f
+ dw Subanimation50
+ dw Subanimation51
+ dw Subanimation52
+ dw Subanimation53
+ dw Subanimation54
+ dw Subanimation55
+
+Subanimation04:
+ db $43
+ db $02,$1a,$00
+ db $02,$10,$00
+ db $02,$03,$00
+
+Subanimation05:
+ db $41
+ db $02,$10,$00
+
+Subanimation08:
+ db $0b
+ db $03,$30,$00
+ db $03,$44,$00
+ db $03,$94,$00
+ db $03,$60,$00
+ db $03,$76,$00
+ db $03,$9f,$00
+ db $03,$8d,$00
+ db $03,$a0,$00
+ db $03,$1a,$00
+ db $03,$a1,$00
+ db $03,$34,$00
+
+Subanimation07:
+ db $0b
+ db $03,$30,$00
+ db $03,$a2,$00
+ db $03,$31,$00
+ db $03,$a3,$00
+ db $03,$32,$00
+ db $03,$a4,$00
+ db $03,$92,$00
+ db $03,$a5,$00
+ db $03,$15,$00
+ db $03,$a6,$00
+ db $03,$34,$00
+
+Subanimation06:
+ db $0b
+ db $03,$30,$00
+ db $03,$a2,$00
+ db $03,$93,$00
+ db $03,$61,$00
+ db $03,$73,$00
+ db $03,$a7,$00
+ db $03,$33,$00
+ db $03,$a8,$00
+ db $03,$0e,$00
+ db $03,$a9,$00
+ db $03,$34,$00
+
+Subanimation09:
+ db $04
+ db $03,$21,$04
+ db $04,$21,$04
+ db $03,$21,$04
+ db $05,$21,$04
+
+Subanimation0a:
+ db $46
+ db $06,$1b,$00
+ db $07,$1b,$00
+ db $08,$36,$00
+ db $09,$36,$00
+ db $0a,$15,$00
+ db $0a,$15,$00
+
+Subanimation0b:
+ db $04
+ db $01,$2d,$00
+ db $03,$2f,$00
+ db $03,$35,$00
+ db $03,$4d,$00
+
+Subanimation55:
+ db $41
+ db $01,$9d,$00
+
+Subanimation11:
+ db $4c
+ db $0b,$26,$00
+ db $0c,$26,$00
+ db $0b,$26,$00
+ db $0c,$26,$00
+ db $0b,$28,$00
+ db $0c,$28,$00
+ db $0b,$28,$00
+ db $0c,$28,$00
+ db $0b,$27,$00
+ db $0c,$27,$00
+ db $0b,$27,$00
+ db $0c,$27,$00
+
+Subanimation2b:
+ db $4b
+ db $0d,$03,$03
+ db $0e,$03,$03
+ db $0f,$03,$00
+ db $0d,$11,$00
+ db $0d,$11,$00
+ db $0d,$37,$00
+ db $0d,$37,$00
+ db $10,$21,$00
+ db $10,$21,$00
+ db $11,$1b,$00
+ db $11,$1b,$00
+
+Subanimation2c:
+ db $4c
+ db $12,$01,$00
+ db $12,$0f,$00
+ db $12,$1b,$00
+ db $12,$25,$00
+ db $13,$38,$00
+ db $13,$38,$02
+ db $14,$38,$00
+ db $14,$38,$02
+ db $15,$38,$00
+ db $15,$38,$00
+ db $16,$38,$00
+ db $16,$38,$00
+
+Subanimation12:
+ db $69
+ db $17,$30,$00
+ db $17,$39,$00
+ db $17,$3a,$00
+ db $17,$3b,$00
+ db $17,$3c,$00
+ db $17,$3d,$00
+ db $17,$3e,$00
+ db $17,$3f,$00
+ db $17,$1f,$00
+
+Subanimation00:
+ db $41
+ db $01,$17,$00
+
+Subanimation01:
+ db $42
+ db $01,$0f,$00
+ db $01,$1d,$00
+
+Subanimation02:
+ db $43
+ db $01,$12,$00
+ db $01,$15,$00
+ db $01,$1c,$00
+
+Subanimation03:
+ db $44
+ db $01,$0b,$00
+ db $01,$11,$00
+ db $01,$18,$00
+ db $01,$1d,$00
+
+Subanimation0c:
+ db $43
+ db $0c,$20,$00
+ db $0c,$21,$00
+ db $0c,$23,$00
+
+Subanimation0d:
+ db $46
+ db $0c,$20,$02
+ db $0c,$15,$00
+ db $0c,$21,$02
+ db $0c,$17,$00
+ db $0c,$23,$02
+ db $0c,$19,$00
+
+Subanimation0e:
+ db $49
+ db $0c,$20,$02
+ db $0c,$15,$02
+ db $0c,$07,$00
+ db $0c,$21,$02
+ db $0c,$17,$02
+ db $0c,$09,$00
+ db $0c,$23,$02
+ db $0c,$19,$02
+ db $0c,$0c,$00
+
+Subanimation1f:
+ db $85
+ db $0c,$30,$03
+ db $0c,$40,$03
+ db $0c,$41,$03
+ db $0c,$42,$03
+ db $0c,$21,$00
+
+Subanimation2e:
+ db $2e
+ db $18,$43,$02
+ db $75,$52,$04
+ db $19,$43,$02
+ db $75,$63,$04
+ db $1a,$43,$02
+ db $75,$4d,$04
+ db $1b,$43,$02
+ db $75,$97,$04
+ db $1c,$43,$02
+ db $75,$98,$04
+ db $1d,$43,$02
+ db $75,$58,$04
+ db $1e,$43,$02
+ db $75,$1b,$00
+
+Subanimation2f:
+ db $44
+ db $1f,$24,$00
+ db $20,$20,$00
+ db $21,$1a,$00
+ db $22,$15,$00
+
+Subanimation30:
+ db $52
+ db $23,$00,$02
+ db $23,$02,$02
+ db $23,$04,$00
+ db $23,$07,$02
+ db $23,$02,$02
+ db $23,$04,$00
+ db $23,$0e,$02
+ db $23,$02,$02
+ db $23,$0c,$00
+ db $25,$07,$00
+ db $25,$0e,$00
+ db $25,$15,$00
+ db $24,$24,$02
+ db $23,$1c,$02
+ db $23,$23,$00
+ db $23,$21,$02
+ db $24,$28,$00
+ db $24,$28,$00
+
+Subanimation0f:
+ db $4c
+ db $26,$0e,$02
+ db $26,$16,$02
+ db $26,$1c,$00
+ db $27,$0e,$02
+ db $27,$16,$02
+ db $27,$1c,$00
+ db $28,$0e,$02
+ db $28,$16,$02
+ db $28,$1c,$00
+ db $29,$0e,$02
+ db $29,$16,$02
+ db $29,$1c,$00
+
+Subanimation16:
+ db $4c
+ db $2a,$05,$00
+ db $2b,$05,$02
+ db $2b,$0c,$02
+ db $2a,$11,$04
+ db $2b,$11,$02
+ db $2b,$17,$02
+ db $2a,$1b,$04
+ db $2b,$1b,$02
+ db $2b,$20,$02
+ db $2a,$2f,$04
+ db $2c,$00,$02
+ db $2c,$00,$00
+
+Subanimation10:
+ db $88
+ db $2d,$44,$00
+ db $2e,$45,$00
+ db $2d,$46,$00
+ db $2e,$47,$00
+ db $2d,$48,$00
+ db $2e,$49,$00
+ db $2d,$2f,$00
+ db $2e,$1a,$00
+
+Subanimation31:
+ db $2a
+ db $2f,$46,$00
+ db $2f,$4a,$00
+ db $2f,$4b,$00
+ db $2f,$4c,$00
+ db $2f,$4d,$00
+ db $2f,$4e,$00
+ db $2f,$4f,$00
+ db $2f,$50,$00
+ db $2f,$2e,$00
+ db $2f,$51,$00
+
+Subanimation13:
+ db $86
+ db $30,$31,$00
+ db $30,$32,$00
+ db $30,$92,$00
+ db $30,$0e,$00
+ db $30,$0f,$00
+ db $30,$10,$00
+
+Subanimation14:
+ db $49
+ db $30,$10,$00
+ db $30,$10,$03
+ db $31,$1c,$04
+ db $31,$21,$04
+ db $31,$26,$00
+ db $30,$10,$02
+ db $31,$1d,$04
+ db $31,$22,$04
+ db $31,$27,$00
+
+Subanimation41:
+ db $85
+ db $03,$31,$00
+ db $03,$32,$00
+ db $03,$92,$00
+ db $03,$0e,$00
+ db $03,$10,$00
+
+Subanimation42:
+ db $43
+ db $48,$08,$00
+ db $49,$08,$00
+ db $5a,$08,$00
+
+Subanimation15:
+ db $22
+ db $35,$52,$00
+ db $35,$53,$00
+
+Subanimation17:
+ db $44
+ db $36,$54,$00
+ db $36,$55,$00
+ db $37,$56,$00
+ db $37,$57,$00
+
+Subanimation18:
+ db $a4
+ db $36,$54,$00
+ db $36,$55,$00
+ db $37,$56,$00
+ db $37,$57,$00
+
+Subanimation40:
+ db $46
+ db $17,$54,$00
+ db $17,$55,$00
+ db $17,$0e,$00
+ db $17,$56,$00
+ db $17,$57,$00
+ db $17,$13,$00
+
+Subanimation19:
+ db $8c
+ db $38,$31,$00
+ db $39,$31,$00
+ db $38,$32,$00
+ db $39,$32,$00
+ db $38,$92,$00
+ db $39,$92,$00
+ db $38,$0e,$00
+ db $39,$0e,$00
+ db $38,$0f,$00
+ db $39,$0f,$00
+ db $38,$10,$00
+ db $39,$10,$00
+
+Subanimation1a:
+ db $50
+ db $3a,$08,$00
+ db $3b,$08,$00
+ db $3c,$08,$00
+ db $3d,$08,$00
+ db $3e,$08,$00
+ db $3f,$08,$00
+ db $3e,$08,$00
+ db $3f,$08,$00
+ db $3a,$0b,$00
+ db $3b,$0b,$00
+ db $3c,$0b,$00
+ db $3d,$0b,$00
+ db $3e,$0b,$00
+ db $3f,$0b,$00
+ db $3e,$0b,$00
+ db $3f,$0b,$00
+
+Subanimation1b:
+ db $84
+ db $40,$31,$00
+ db $40,$32,$00
+ db $40,$92,$00
+ db $40,$15,$00
+
+Subanimation1c:
+ db $43
+ db $41,$58,$00
+ db $41,$59,$00
+ db $41,$21,$00
+
+Subanimation1d:
+ db $af
+ db $24,$9a,$00
+ db $23,$1b,$02
+ db $24,$22,$00
+ db $23,$16,$02
+ db $23,$1d,$02
+ db $24,$98,$00
+ db $25,$2c,$04
+ db $25,$2a,$04
+ db $25,$99,$04
+ db $25,$62,$04
+ db $25,$99,$04
+ db $25,$62,$04
+ db $25,$99,$04
+ db $25,$62,$04
+ db $25,$99,$03
+
+Subanimation1e:
+ db $01
+ db $25,$75,$00
+
+Subanimation20:
+ db $42
+ db $42,$07,$00
+ db $43,$07,$00
+
+Subanimation21:
+ db $43
+ db $44,$00,$00
+ db $45,$08,$00
+ db $46,$10,$02
+
+Subanimation22:
+ db $8b
+ db $47,$10,$00
+ db $47,$56,$00
+ db $47,$07,$00
+ db $47,$aa,$00
+ db $47,$ab,$00
+ db $47,$ac,$00
+ db $47,$ad,$00
+ db $47,$ae,$00
+ db $47,$af,$00
+ db $47,$89,$00
+ db $47,$b0,$00
+
+Subanimation2d:
+ db $66
+ db $44,$64,$00
+ db $45,$65,$00
+ db $46,$66,$00
+ db $47,$66,$00
+ db $47,$66,$00
+ db $47,$66,$00
+
+Subanimation39:
+ db $61
+ db $47,$67,$00
+
+Subanimation4e:
+ db $41
+ db $71,$0f,$03
+
+Subanimation4f:
+ db $47
+ db $71,$0f,$00
+ db $71,$08,$00
+ db $71,$01,$00
+ db $71,$95,$00
+ db $72,$95,$00
+ db $73,$95,$00
+ db $74,$95,$00
+
+Subanimation50:
+ db $48
+ db $74,$95,$00
+ db $73,$95,$00
+ db $72,$95,$00
+ db $71,$95,$00
+ db $71,$01,$00
+ db $71,$08,$00
+ db $71,$0f,$00
+ db $71,$16,$00
+
+Subanimation29:
+ db $5d
+ db $48,$0f,$00
+ db $4a,$68,$03
+ db $4b,$2a,$03
+ db $49,$0f,$00
+ db $4a,$68,$03
+ db $4b,$2a,$00
+ db $4c,$6a,$03
+ db $4d,$69,$03
+ db $49,$6b,$00
+ db $4c,$6a,$03
+ db $4d,$69,$00
+ db $4a,$68,$03
+ db $4b,$2a,$03
+ db $49,$6c,$00
+ db $4a,$68,$03
+ db $4b,$2a,$00
+ db $4c,$6a,$03
+ db $4d,$69,$03
+ db $49,$6d,$00
+ db $4c,$6a,$03
+ db $4d,$2a,$00
+ db $4a,$68,$03
+ db $4b,$2a,$03
+ db $49,$0f,$00
+ db $4a,$68,$03
+ db $4b,$2a,$00
+ db $4c,$6a,$03
+ db $4d,$2a,$03
+ db $49,$6b,$00
+
+Subanimation2a:
+ db $44
+ db $4e,$2b,$00
+ db $4f,$2b,$00
+ db $50,$2b,$00
+ db $50,$2b,$00
+
+Subanimation23:
+ db $42
+ db $51,$2d,$00
+ db $51,$6e,$00
+
+Subanimation24:
+ db $a2
+ db $51,$2d,$00
+ db $51,$6e,$00
+
+Subanimation25:
+ db $62
+ db $52,$71,$00
+ db $52,$72,$00
+
+Subanimation26:
+ db $02
+ db $52,$01,$00
+ db $52,$2c,$00
+
+Subanimation3a:
+ db $63
+ db $53,$71,$00
+ db $53,$7f,$00
+ db $53,$81,$00
+
+Subanimation3b:
+ db $03
+ db $53,$01,$00
+ db $53,$15,$00
+ db $53,$2c,$00
+
+Subanimation27:
+ db $a2
+ db $54,$01,$00
+ db $54,$2c,$00
+
+Subanimation28:
+ db $23
+ db $55,$73,$03
+ db $56,$73,$03
+ db $57,$73,$00
+
+Subanimation32:
+ db $63
+ db $47,$74,$00
+ db $47,$43,$00
+ db $47,$75,$00
+
+Subanimation33:
+ db $26
+ db $58,$76,$00
+ db $34,$76,$00
+ db $58,$76,$00
+ db $34,$76,$00
+ db $58,$76,$00
+ db $34,$76,$00
+
+Subanimation3c:
+ db $67
+ db $59,$79,$03
+ db $59,$7b,$03
+ db $59,$77,$03
+ db $59,$7a,$03
+ db $59,$78,$03
+ db $59,$7c,$03
+ db $59,$76,$00
+
+Subanimation3d:
+ db $08
+ db $3a,$4d,$00
+ db $3b,$4d,$00
+ db $3c,$4d,$00
+ db $3d,$4d,$00
+ db $3e,$4d,$00
+ db $3f,$4d,$00
+ db $3e,$4d,$00
+ db $3f,$4d,$00
+
+Subanimation34:
+ db $35
+ db $48,$7d,$00
+ db $49,$7d,$00
+ db $5a,$7d,$00
+ db $48,$30,$00
+ db $49,$30,$00
+ db $5a,$30,$00
+ db $48,$7e,$00
+ db $49,$7e,$00
+ db $5a,$7e,$00
+ db $48,$7f,$00
+ db $49,$7f,$00
+ db $5a,$7f,$00
+ db $48,$80,$00
+ db $49,$80,$00
+ db $5a,$80,$00
+ db $48,$81,$00
+ db $49,$81,$00
+ db $5a,$81,$00
+ db $48,$82,$00
+ db $49,$82,$00
+ db $5a,$82,$00
+
+Subanimation35:
+ db $24
+ db $5b,$83,$03
+ db $5c,$84,$03
+ db $5d,$85,$03
+ db $5e,$09,$00
+
+Subanimation36:
+ db $48
+ db $5f,$2a,$00
+ db $5f,$00,$00
+ db $60,$2a,$00
+ db $60,$00,$00
+ db $61,$2a,$00
+ db $61,$00,$00
+ db $62,$2a,$00
+ db $62,$00,$00
+
+Subanimation37:
+ db $2a
+ db $63,$89,$00
+ db $64,$75,$00
+ db $63,$76,$00
+ db $65,$0d,$00
+ db $65,$86,$00
+ db $65,$12,$00
+ db $65,$87,$00
+ db $65,$17,$00
+ db $65,$88,$00
+ db $65,$1a,$00
+
+Subanimation38:
+ db $50
+ db $66,$8a,$00
+ db $66,$33,$00
+ db $66,$2e,$00
+ db $67,$24,$03
+ db $66,$01,$04
+ db $66,$10,$04
+ db $66,$1d,$04
+ db $67,$28,$03
+ db $66,$2a,$04
+ db $66,$0e,$04
+ db $66,$1b,$04
+ db $67,$26,$03
+ db $66,$03,$04
+ db $66,$12,$04
+ db $66,$1e,$04
+ db $67,$29,$00
+
+Subanimation3e:
+ db $92
+ db $02,$31,$00
+ db $34,$31,$00
+ db $02,$31,$00
+ db $02,$32,$00
+ db $34,$32,$00
+ db $02,$32,$00
+ db $02,$92,$00
+ db $34,$92,$00
+ db $02,$92,$00
+ db $02,$0e,$00
+ db $34,$0e,$00
+ db $02,$0e,$00
+ db $02,$0f,$00
+ db $34,$0f,$00
+ db $02,$0f,$00
+ db $02,$10,$00
+ db $34,$10,$00
+ db $02,$10,$00
+
+Subanimation3f:
+ db $72
+ db $68,$4b,$00
+ db $68,$8c,$00
+ db $68,$20,$00
+ db $68,$1c,$00
+ db $68,$19,$00
+ db $68,$14,$00
+ db $68,$76,$00
+ db $68,$8d,$00
+ db $68,$15,$00
+ db $68,$10,$00
+ db $68,$0c,$00
+ db $68,$06,$00
+ db $68,$8e,$00
+ db $68,$8f,$00
+ db $68,$90,$00
+ db $68,$26,$00
+ db $68,$23,$00
+ db $68,$1f,$00
+
+Subanimation44:
+ db $2c
+ db $69,$4b,$00
+ db $69,$8c,$00
+ db $69,$20,$00
+ db $69,$1c,$00
+ db $69,$19,$00
+ db $69,$14,$00
+ db $69,$76,$00
+ db $69,$8d,$00
+ db $69,$15,$00
+ db $69,$10,$00
+ db $69,$0c,$00
+ db $69,$06,$00
+
+Subanimation43:
+ db $a3
+ db $6a,$07,$00
+ db $6b,$0f,$00
+ db $6c,$17,$00
+
+Subanimation45:
+ db $24
+ db $6d,$8b,$00
+ db $6d,$84,$00
+ db $6d,$63,$00
+ db $6d,$8c,$00
+
+Subanimation46:
+ db $26
+ db $6d,$8b,$00
+ db $6d,$84,$00
+ db $6d,$63,$00
+ db $6d,$8c,$00
+ db $6d,$0a,$00
+ db $6d,$89,$00
+
+Subanimation47:
+ db $23
+ db $06,$82,$00
+ db $07,$82,$00
+ db $08,$96,$00
+
+Subanimation48:
+ db $06
+ db $03,$41,$04
+ db $03,$48,$04
+ db $04,$48,$04
+ db $03,$48,$04
+ db $05,$48,$04
+ db $03,$48,$03
+
+Subanimation49:
+ db $04
+ db $04,$48,$04
+ db $03,$48,$04
+ db $05,$48,$04
+ db $03,$48,$03
+
+Subanimation4a:
+ db $01
+ db $04,$84,$03
+
+Subanimation4b:
+ db $03
+ db $06,$72,$00
+ db $07,$72,$00
+ db $08,$72,$00
+
+Subanimation4c:
+ db $68
+ db $6f,$30,$00
+ db $6e,$30,$00
+ db $70,$30,$00
+ db $6e,$30,$00
+ db $6f,$30,$00
+ db $6e,$30,$00
+ db $70,$30,$00
+ db $6e,$30,$00
+
+Subanimation4d:
+ db $26
+ db $32,$4b,$00
+ db $33,$4f,$00
+ db $32,$20,$00
+ db $33,$16,$00
+ db $32,$19,$00
+ db $33,$0d,$00
+
+Subanimation51:
+ db $a6
+ db $76,$1b,$00
+ db $34,$1b,$00
+ db $76,$1b,$00
+ db $34,$1b,$00
+ db $76,$1b,$00
+ db $34,$1b,$00
+
+Subanimation52:
+ db $47
+ db $77,$25,$00
+ db $77,$9b,$00
+ db $77,$1a,$00
+ db $77,$9c,$00
+ db $77,$2f,$00
+ db $77,$50,$00
+ db $77,$8c,$00
+
+Subanimation53:
+ db $0c
+ db $78,$30,$00
+ db $78,$a2,$00
+ db $78,$93,$00
+ db $78,$61,$00
+ db $78,$73,$00
+ db $78,$a7,$00
+ db $78,$33,$00
+ db $78,$a8,$00
+ db $78,$0e,$00
+ db $78,$a9,$00
+ db $78,$34,$00
+ db $01,$9e,$00
+
+Subanimation54:
+ db $0b
+ db $79,$30,$00
+ db $79,$a2,$00
+ db $79,$93,$00
+ db $79,$61,$00
+ db $79,$73,$00
+ db $79,$a7,$00
+ db $79,$33,$00
+ db $79,$a8,$00
+ db $79,$0e,$00
+ db $79,$a9,$00
+ db $79,$34,$00
+
+FrameBlockPointers:
+ dw FrameBlock00
+ dw FrameBlock01
+ dw FrameBlock02
+ dw FrameBlock03
+ dw FrameBlock04
+ dw FrameBlock05
+ dw FrameBlock06
+ dw FrameBlock07
+ dw FrameBlock08
+ dw FrameBlock09
+ dw FrameBlock0a
+ dw FrameBlock0b
+ dw FrameBlock0c
+ dw FrameBlock0d
+ dw FrameBlock0e
+ dw FrameBlock0f
+ dw FrameBlock10
+ dw FrameBlock11
+ dw FrameBlock12
+ dw FrameBlock13
+ dw FrameBlock14
+ dw FrameBlock15
+ dw FrameBlock16
+ dw FrameBlock17
+ dw FrameBlock18
+ dw FrameBlock19
+ dw FrameBlock1a
+ dw FrameBlock1b
+ dw FrameBlock1c
+ dw FrameBlock1d
+ dw FrameBlock1e
+ dw FrameBlock1f
+ dw FrameBlock20
+ dw FrameBlock21
+ dw FrameBlock22
+ dw FrameBlock23
+ dw FrameBlock24
+ dw FrameBlock25
+ dw FrameBlock26
+ dw FrameBlock27
+ dw FrameBlock28
+ dw FrameBlock29
+ dw FrameBlock2a
+ dw FrameBlock2b
+ dw FrameBlock2c
+ dw FrameBlock2d
+ dw FrameBlock2e
+ dw FrameBlock2f
+ dw FrameBlock30
+ dw FrameBlock31
+ dw FrameBlock32
+ dw FrameBlock33
+ dw FrameBlock34
+ dw FrameBlock35
+ dw FrameBlock36
+ dw FrameBlock37
+ dw FrameBlock38
+ dw FrameBlock39
+ dw FrameBlock3a
+ dw FrameBlock3b
+ dw FrameBlock3c
+ dw FrameBlock3d
+ dw FrameBlock3e
+ dw FrameBlock3f
+ dw FrameBlock40
+ dw FrameBlock41
+ dw FrameBlock42
+ dw FrameBlock43
+ dw FrameBlock44
+ dw FrameBlock45
+ dw FrameBlock46
+ dw FrameBlock47
+ dw SmallBlackCircleFrameBlock
+ dw LargeBlockCircleFrameBlock
+ dw FrameBlock4a
+ dw FrameBlock4b
+ dw FrameBlock4c
+ dw FrameBlock4d
+ dw FrameBlock4e
+ dw FrameBlock4f
+ dw FrameBlock50
+ dw FrameBlock51
+ dw FrameBlock52
+ dw FrameBlock53
+ dw FrameBlock54
+ dw FrameBlock55
+ dw FrameBlock56
+ dw FrameBlock57
+ dw FrameBlock58
+ dw FrameBlock59
+ dw FrameBlock5a
+ dw FrameBlock5b
+ dw FrameBlock5c
+ dw FrameBlock5d
+ dw FrameBlock5e
+ dw FrameBlock5f
+ dw FrameBlock60
+ dw FrameBlock61
+ dw FrameBlock62
+ dw FrameBlock63
+ dw FrameBlock64
+ dw FrameBlock65
+ dw FrameBlock66
+ dw FrameBlock67
+ dw FrameBlock68
+ dw FrameBlock69
+ dw FrameBlock6a
+ dw FrameBlock6b
+ dw FrameBlock6c
+ dw FrameBlock6d
+ dw FrameBlock6e
+ dw FrameBlock6f
+ dw FrameBlock70
+ dw FrameBlock71
+ dw FrameBlock72
+ dw FrameBlock73
+ dw FrameBlock74
+ dw FrameBlock75
+ dw FrameBlock76
+ dw FrameBlock77
+ dw FrameBlock78
+ dw FrameBlock79
+
+; FrameBlock format is as follows:
+; first byte = number of tiles in FrameBlock
+;
+; Next, each group of 4 bytes describes a tile in the FrameBlock
+; first byte = y offset
+; second byte = x offset
+; third byte = tile id (it's actually tile id - $31)
+; fourth byte = tile properties (xflip/yflip/etc.)
+FrameBlock01:
+ db $09
+ db $00,$00,$2c,$00
+ db $00,$08,$2d,$00
+ db $00,$10,$2c,$20
+ db $08,$00,$3c,$00
+ db $08,$08,$3d,$00
+ db $08,$10,$3c,$20
+ db $10,$00,$2c,$40
+ db $10,$08,$2d,$40
+ db $10,$10,$2c,$60
+
+FrameBlock02:
+ db $10
+ db $00,$00,$20,$00
+ db $00,$08,$21,$00
+ db $00,$10,$21,$20
+ db $00,$18,$20,$20
+ db $08,$00,$30,$00
+ db $08,$08,$31,$00
+ db $08,$10,$31,$20
+ db $08,$18,$30,$20
+ db $10,$00,$30,$40
+ db $10,$08,$31,$40
+ db $10,$10,$31,$60
+ db $10,$18,$30,$60
+ db $18,$00,$20,$40
+ db $18,$08,$21,$40
+ db $18,$10,$21,$60
+ db $18,$18,$20,$60
+
+FrameBlock03:
+ db $04
+ db $00,$00,$02,$00
+ db $00,$08,$02,$20
+ db $08,$00,$12,$00
+ db $08,$08,$12,$20
+
+FrameBlock04:
+ db $04
+ db $00,$00,$06,$00
+ db $00,$08,$07,$00
+ db $08,$00,$16,$00
+ db $08,$08,$17,$00
+
+FrameBlock05:
+ db $04
+ db $00,$00,$07,$20
+ db $00,$08,$06,$20
+ db $08,$00,$17,$20
+ db $08,$08,$16,$20
+
+FrameBlock06:
+ db $0c
+ db $00,$08,$23,$00
+ db $08,$00,$32,$00
+ db $08,$08,$33,$00
+ db $00,$10,$23,$20
+ db $08,$10,$33,$20
+ db $08,$18,$32,$20
+ db $10,$00,$32,$40
+ db $10,$08,$33,$40
+ db $18,$08,$23,$40
+ db $10,$10,$33,$60
+ db $10,$18,$32,$60
+ db $18,$10,$23,$60
+
+FrameBlock07:
+ db $10
+ db $00,$00,$20,$00
+ db $00,$08,$21,$00
+ db $08,$00,$30,$00
+ db $08,$08,$31,$00
+ db $00,$10,$21,$20
+ db $00,$18,$20,$20
+ db $08,$10,$31,$20
+ db $08,$18,$30,$20
+ db $10,$00,$30,$40
+ db $10,$08,$31,$40
+ db $18,$00,$20,$40
+ db $18,$08,$21,$40
+ db $10,$10,$31,$60
+ db $10,$18,$30,$60
+ db $18,$10,$21,$60
+ db $18,$18,$20,$60
+
+FrameBlock08:
+ db $10
+ db $00,$00,$20,$00
+ db $00,$08,$21,$00
+ db $08,$00,$30,$00
+ db $08,$08,$31,$00
+ db $00,$18,$21,$20
+ db $00,$20,$20,$20
+ db $08,$18,$31,$20
+ db $08,$20,$30,$20
+ db $18,$00,$30,$40
+ db $18,$08,$31,$40
+ db $20,$00,$20,$40
+ db $20,$08,$21,$40
+ db $18,$18,$31,$60
+ db $18,$20,$30,$60
+ db $20,$18,$21,$60
+ db $20,$20,$20,$60
+
+FrameBlock09:
+ db $0c
+ db $00,$00,$24,$00
+ db $00,$08,$25,$00
+ db $08,$00,$34,$00
+ db $00,$18,$25,$20
+ db $00,$20,$24,$20
+ db $08,$20,$34,$20
+ db $18,$00,$34,$40
+ db $20,$00,$24,$40
+ db $20,$08,$25,$40
+ db $18,$20,$34,$60
+ db $20,$18,$25,$60
+ db $20,$20,$24,$60
+
+FrameBlock0a:
+ db $0c
+ db $00,$00,$24,$00
+ db $00,$08,$25,$00
+ db $08,$00,$34,$00
+ db $00,$20,$25,$20
+ db $00,$28,$24,$20
+ db $08,$28,$34,$20
+ db $20,$00,$34,$40
+ db $28,$00,$24,$40
+ db $28,$08,$25,$40
+ db $20,$28,$34,$60
+ db $28,$20,$25,$60
+ db $28,$28,$24,$60
+
+FrameBlock0b:
+ db $04
+ db $00,$00,$05,$00
+ db $00,$08,$05,$20
+ db $08,$00,$15,$00
+ db $08,$08,$15,$20
+
+FrameBlock0c:
+ db $04
+ db $00,$00,$04,$00
+ db $00,$08,$04,$20
+ db $08,$00,$14,$00
+ db $08,$08,$14,$20
+
+FrameBlock0d:
+ db $08
+ db $00,$00,$0c,$00
+ db $00,$08,$0d,$00
+ db $08,$00,$1c,$00
+ db $08,$08,$1d,$00
+ db $10,$00,$1d,$60
+ db $10,$08,$1c,$60
+ db $18,$00,$0d,$60
+ db $18,$08,$0c,$60
+
+FrameBlock0e:
+ db $04
+ db $20,$00,$0c,$00
+ db $20,$08,$0d,$00
+ db $28,$00,$1c,$00
+ db $28,$08,$1d,$00
+
+FrameBlock0f:
+ db $04
+ db $30,$00,$1d,$60
+ db $30,$08,$1c,$60
+ db $38,$00,$0d,$60
+ db $38,$08,$0c,$60
+
+FrameBlock10:
+ db $08
+ db $00,$00,$0e,$00
+ db $00,$08,$0f,$00
+ db $08,$00,$1e,$00
+ db $08,$08,$1f,$00
+ db $00,$10,$0f,$20
+ db $00,$18,$0e,$20
+ db $08,$10,$1f,$20
+ db $08,$18,$1e,$20
+
+FrameBlock11:
+ db $08
+ db $00,$00,$0e,$00
+ db $00,$08,$0f,$00
+ db $08,$00,$1e,$00
+ db $08,$08,$1f,$00
+ db $00,$20,$0f,$20
+ db $00,$28,$0e,$20
+ db $08,$20,$1f,$20
+ db $08,$28,$1e,$20
+
+FrameBlock12:
+ db $03
+ db $00,$00,$37,$00
+ db $08,$10,$37,$00
+ db $00,$20,$37,$00
+
+FrameBlock13:
+ db $04
+ db $00,$00,$36,$00
+ db $00,$08,$36,$20
+ db $08,$00,$36,$40
+ db $08,$08,$36,$60
+
+FrameBlock14:
+ db $08
+ db $00,$10,$28,$00
+ db $00,$18,$28,$20
+ db $08,$10,$38,$00
+ db $08,$18,$38,$20
+ db $00,$20,$36,$00
+ db $00,$28,$36,$20
+ db $08,$20,$36,$40
+ db $08,$28,$36,$60
+
+FrameBlock15:
+ db $0c
+ db $00,$00,$28,$00
+ db $00,$08,$28,$20
+ db $08,$00,$38,$00
+ db $08,$08,$38,$20
+ db $00,$10,$29,$00
+ db $00,$18,$29,$20
+ db $08,$10,$39,$00
+ db $08,$18,$39,$20
+ db $00,$20,$28,$00
+ db $00,$28,$28,$20
+ db $08,$20,$38,$00
+ db $08,$28,$38,$20
+
+FrameBlock16:
+ db $08
+ db $00,$00,$29,$00
+ db $00,$08,$29,$20
+ db $08,$00,$39,$00
+ db $08,$08,$39,$20
+ db $00,$20,$29,$00
+ db $00,$28,$29,$20
+ db $08,$20,$39,$00
+ db $08,$28,$39,$20
+
+FrameBlock17:
+ db $04
+ db $00,$00,$08,$00
+ db $00,$08,$09,$00
+ db $08,$00,$18,$00
+ db $08,$08,$19,$00
+
+FrameBlock18:
+ db $01
+ db $18,$00,$45,$60
+
+FrameBlock19:
+ db $02
+ db $18,$08,$45,$00
+ db $10,$08,$46,$60
+
+FrameBlock1a:
+ db $02
+ db $10,$10,$45,$60
+ db $18,$10,$46,$00
+
+FrameBlock1b:
+ db $02
+ db $10,$18,$45,$00
+ db $08,$18,$46,$60
+
+FrameBlock1c:
+ db $02
+ db $08,$20,$45,$60
+ db $10,$20,$46,$00
+
+FrameBlock1d:
+ db $02
+ db $08,$28,$45,$00
+ db $00,$28,$46,$60
+
+FrameBlock1e:
+ db $02
+ db $00,$30,$45,$60
+ db $08,$30,$46,$00
+
+FrameBlock75:
+ db $04
+ db $00,$00,$43,$00
+ db $00,$08,$43,$20
+ db $08,$00,$22,$00
+ db $08,$08,$43,$60
+
+FrameBlock1f:
+ db $02
+ db $00,$00,$03,$00
+ db $00,$30,$03,$20
+
+FrameBlock20:
+ db $06
+ db $00,$00,$03,$00
+ db $00,$30,$03,$20
+ db $08,$08,$03,$00
+ db $08,$28,$03,$20
+ db $08,$00,$13,$00
+ db $08,$30,$13,$20
+
+FrameBlock21:
+ db $0c
+ db $00,$00,$03,$00
+ db $00,$30,$03,$20
+ db $08,$08,$03,$00
+ db $08,$28,$03,$20
+ db $08,$00,$13,$00
+ db $08,$30,$13,$20
+ db $10,$10,$03,$00
+ db $10,$20,$03,$20
+ db $10,$08,$13,$00
+ db $10,$28,$13,$20
+ db $10,$00,$03,$00
+ db $10,$30,$03,$20
+
+FrameBlock22:
+ db $13
+ db $00,$00,$03,$00
+ db $08,$00,$13,$00
+ db $10,$00,$03,$00
+ db $18,$00,$13,$00
+ db $08,$08,$03,$00
+ db $10,$08,$13,$00
+ db $18,$08,$03,$00
+ db $10,$10,$03,$00
+ db $18,$10,$13,$00
+ db $18,$18,$03,$00
+ db $10,$20,$03,$20
+ db $18,$20,$13,$20
+ db $08,$28,$03,$20
+ db $10,$28,$13,$20
+ db $18,$28,$03,$20
+ db $00,$30,$03,$20
+ db $08,$30,$13,$20
+ db $10,$30,$03,$20
+ db $18,$30,$13,$20
+
+FrameBlock23:
+ db $04
+ db $00,$00,$0a,$00
+ db $00,$08,$0b,$00
+ db $08,$00,$1a,$00
+ db $08,$08,$1b,$00
+
+FrameBlock24:
+ db $02
+ db $08,$00,$0a,$00
+ db $08,$08,$0b,$00
+
+FrameBlock25:
+ db $0c
+ db $10,$00,$0a,$00
+ db $10,$08,$0b,$00
+ db $18,$00,$1a,$00
+ db $18,$08,$1b,$00
+ db $00,$10,$0a,$00
+ db $00,$18,$0b,$00
+ db $08,$10,$1a,$00
+ db $08,$18,$1b,$00
+ db $08,$20,$0a,$00
+ db $08,$28,$0b,$00
+ db $10,$20,$1a,$00
+ db $10,$28,$1b,$00
+
+FrameBlock26:
+ db $04
+ db $00,$10,$44,$00
+ db $00,$18,$44,$20
+ db $08,$10,$44,$40
+ db $08,$18,$44,$60
+
+FrameBlock27:
+ db $05
+ db $08,$08,$44,$00
+ db $08,$10,$44,$20
+ db $10,$08,$44,$40
+ db $10,$10,$44,$60
+ db $00,$18,$47,$00
+
+FrameBlock28:
+ db $06
+ db $10,$00,$44,$00
+ db $10,$08,$44,$20
+ db $18,$00,$44,$40
+ db $18,$08,$44,$60
+ db $08,$10,$47,$00
+ db $02,$16,$47,$00
+
+FrameBlock29:
+ db $04
+ db $18,$00,$47,$00
+ db $12,$06,$47,$00
+ db $0c,$0c,$47,$00
+ db $06,$12,$47,$00
+
+FrameBlock2a:
+ db $04
+ db $00,$00,$44,$00
+ db $00,$08,$44,$20
+ db $08,$00,$44,$40
+ db $08,$08,$44,$60
+
+FrameBlock2b:
+ db $02
+ db $06,$02,$47,$00
+ db $00,$08,$47,$00
+
+FrameBlock2c:
+ db $01
+ db $a0,$00,$4d,$00
+
+FrameBlock2d:
+ db $08
+ db $00,$00,$26,$00
+ db $00,$08,$27,$00
+ db $08,$00,$36,$00
+ db $08,$08,$37,$00
+ db $10,$00,$28,$00
+ db $10,$08,$29,$00
+ db $18,$00,$38,$00
+ db $18,$08,$39,$00
+
+FrameBlock2e:
+ db $08
+ db $00,$00,$27,$20
+ db $00,$08,$26,$20
+ db $08,$00,$37,$20
+ db $08,$08,$36,$20
+ db $10,$00,$29,$20
+ db $10,$08,$28,$20
+ db $18,$00,$39,$20
+ db $18,$08,$38,$20
+
+FrameBlock2f:
+ db $04
+ db $00,$00,$0c,$00
+ db $00,$08,$0d,$00
+ db $08,$00,$0c,$40
+ db $08,$08,$0d,$40
+
+FrameBlock30:
+ db $04
+ db $00,$00,$44,$00
+ db $00,$08,$44,$20
+ db $08,$00,$44,$40
+ db $08,$08,$44,$60
+
+FrameBlock31:
+ db $01
+ db $00,$00,$45,$00
+
+FrameBlock32:
+ db $07
+ db $00,$00,$4d,$00
+ db $00,$08,$2f,$00
+ db $00,$10,$4d,$20
+ db $08,$00,$4e,$00
+ db $08,$08,$07,$00
+ db $08,$10,$4e,$20
+ db $10,$08,$3f,$00
+
+FrameBlock33:
+ db $07
+ db $00,$08,$3f,$40
+ db $08,$00,$4e,$40
+ db $08,$08,$07,$40
+ db $08,$10,$4e,$60
+ db $10,$00,$4d,$40
+ db $10,$08,$2f,$40
+ db $10,$10,$4d,$60
+
+FrameBlock34:
+ db $01
+ db $a0,$00,$00,$10
+
+FrameBlock35:
+ db $06
+ db $00,$00,$2a,$00
+ db $00,$08,$2b,$00
+ db $08,$00,$3a,$00
+ db $10,$00,$3a,$40
+ db $18,$00,$2a,$40
+ db $18,$08,$2b,$40
+
+FrameBlock36:
+ db $04
+ db $00,$00,$00,$00
+ db $00,$08,$01,$00
+ db $08,$00,$10,$00
+ db $08,$08,$11,$00
+
+FrameBlock37:
+ db $04
+ db $00,$00,$01,$a0
+ db $00,$08,$00,$a0
+ db $08,$00,$11,$a0
+ db $08,$08,$10,$a0
+
+FrameBlock38:
+ db $04
+ db $00,$00,$0a,$00
+ db $00,$08,$0b,$00
+ db $08,$00,$1a,$00
+ db $08,$08,$1b,$00
+
+FrameBlock39:
+ db $04
+ db $00,$00,$0b,$20
+ db $00,$08,$0a,$20
+ db $08,$00,$1b,$20
+ db $08,$08,$1a,$20
+
+FrameBlock3a:
+ db $04
+ db $20,$00,$05,$00
+ db $20,$08,$05,$20
+ db $28,$00,$15,$00
+ db $28,$08,$15,$20
+
+FrameBlock3b:
+ db $05
+ db $18,$00,$04,$00
+ db $18,$08,$04,$20
+ db $20,$00,$14,$00
+ db $20,$08,$14,$20
+ db $28,$04,$41,$00
+
+FrameBlock3c:
+ db $06
+ db $10,$00,$05,$00
+ db $10,$08,$05,$20
+ db $18,$00,$15,$00
+ db $18,$08,$15,$20
+ db $20,$04,$42,$00
+ db $28,$04,$42,$00
+
+FrameBlock3d:
+ db $07
+ db $08,$00,$04,$00
+ db $08,$08,$04,$20
+ db $10,$00,$14,$00
+ db $10,$08,$14,$20
+ db $18,$04,$41,$00
+ db $20,$04,$41,$00
+ db $28,$04,$41,$00
+
+FrameBlock3e:
+ db $08
+ db $00,$00,$05,$00
+ db $00,$08,$05,$20
+ db $08,$00,$15,$00
+ db $08,$08,$15,$20
+ db $10,$04,$42,$00
+ db $18,$04,$42,$00
+ db $20,$04,$42,$00
+ db $28,$04,$42,$00
+
+FrameBlock3f:
+ db $08
+ db $00,$00,$04,$00
+ db $00,$08,$04,$20
+ db $08,$00,$14,$00
+ db $08,$08,$14,$20
+ db $10,$04,$41,$00
+ db $18,$04,$41,$00
+ db $20,$04,$41,$00
+ db $28,$04,$41,$00
+
+FrameBlock40:
+ db $03
+ db $00,$00,$3d,$00
+ db $00,$08,$3d,$00
+ db $08,$08,$3d,$00
+
+FrameBlock41:
+ db $04
+ db $00,$00,$06,$00
+ db $00,$08,$06,$20
+ db $08,$00,$16,$00
+ db $08,$08,$17,$00
+
+FrameBlock42:
+ db $0b
+ db $00,$10,$42,$00
+ db $08,$00,$42,$00
+ db $08,$08,$42,$00
+ db $08,$10,$42,$00
+ db $08,$18,$42,$00
+ db $08,$20,$42,$00
+ db $10,$10,$42,$00
+ db $18,$08,$42,$00
+ db $18,$18,$42,$00
+ db $20,$00,$42,$00
+ db $20,$20,$42,$00
+
+FrameBlock43:
+ db $0b
+ db $00,$10,$41,$00
+ db $08,$00,$41,$00
+ db $08,$08,$41,$00
+ db $08,$10,$41,$00
+ db $08,$18,$41,$00
+ db $08,$20,$41,$00
+ db $10,$10,$41,$00
+ db $18,$08,$41,$00
+ db $18,$18,$41,$00
+ db $20,$00,$41,$00
+ db $20,$20,$41,$00
+
+FrameBlock44:
+ db $04
+ db $00,$00,$49,$00
+ db $00,$28,$49,$00
+ db $28,$00,$49,$00
+ db $28,$28,$49,$00
+
+FrameBlock45:
+ db $04
+ db $00,$00,$49,$00
+ db $00,$18,$49,$00
+ db $18,$00,$49,$00
+ db $18,$18,$49,$00
+
+FrameBlock46:
+ db $04
+ db $00,$00,$49,$00
+ db $00,$08,$49,$00
+ db $08,$00,$49,$00
+ db $08,$08,$49,$00
+
+FrameBlock47:
+ db $04
+ db $00,$00,$43,$00
+ db $00,$08,$43,$20
+ db $08,$00,$43,$40
+ db $08,$08,$43,$60
+
+SmallBlackCircleFrameBlock:
+ db $04
+ db $08,$08,$33,$00
+ db $08,$10,$33,$20
+ db $10,$08,$33,$40
+ db $10,$10,$33,$60
+
+LargeBlockCircleFrameBlock:
+ db $10
+ db $00,$00,$22,$00
+ db $00,$08,$23,$00
+ db $00,$10,$23,$20
+ db $00,$18,$22,$20
+ db $08,$00,$32,$00
+ db $08,$08,$43,$00
+ db $08,$10,$43,$20
+ db $08,$18,$32,$20
+ db $10,$00,$32,$40
+ db $10,$08,$43,$40
+ db $10,$10,$43,$60
+ db $10,$18,$32,$60
+ db $18,$00,$22,$40
+ db $18,$08,$23,$40
+ db $18,$10,$23,$60
+ db $18,$18,$22,$60
+
+FrameBlock71:
+ db $10
+ db $00,$00,$22,$00
+ db $00,$08,$3b,$00
+ db $00,$10,$23,$20
+ db $00,$18,$22,$20
+ db $08,$00,$32,$00
+ db $08,$08,$43,$00
+ db $08,$10,$43,$20
+ db $08,$18,$32,$20
+ db $10,$00,$32,$40
+ db $10,$08,$43,$40
+ db $10,$10,$43,$60
+ db $10,$18,$32,$60
+ db $18,$00,$22,$40
+ db $18,$08,$23,$40
+ db $18,$10,$23,$60
+ db $18,$18,$22,$60
+
+FrameBlock72:
+ db $0c
+ db $00,$00,$32,$00
+ db $00,$08,$43,$00
+ db $00,$10,$43,$20
+ db $00,$18,$32,$20
+ db $08,$00,$32,$40
+ db $08,$08,$43,$40
+ db $08,$10,$43,$60
+ db $08,$18,$32,$60
+ db $10,$00,$22,$40
+ db $10,$08,$23,$40
+ db $10,$10,$23,$60
+ db $10,$18,$22,$60
+
+FrameBlock73:
+ db $08
+ db $00,$00,$32,$40
+ db $00,$08,$43,$40
+ db $00,$10,$43,$60
+ db $00,$18,$32,$60
+ db $08,$00,$22,$40
+ db $08,$08,$23,$40
+ db $08,$10,$23,$60
+ db $08,$18,$22,$60
+
+FrameBlock74:
+ db $04
+ db $00,$00,$22,$40
+ db $00,$08,$23,$40
+ db $00,$10,$23,$60
+ db $00,$18,$22,$60
+
+FrameBlock4a:
+ db $04
+ db $08,$18,$4c,$20
+ db $20,$08,$4b,$00
+ db $30,$20,$4c,$00
+ db $18,$30,$4b,$40
+
+FrameBlock4b:
+ db $04
+ db $00,$18,$4c,$00
+ db $20,$00,$4b,$40
+ db $38,$20,$4c,$20
+ db $18,$38,$4b,$00
+
+FrameBlock4c:
+ db $04
+ db $10,$08,$4a,$40
+ db $30,$10,$4a,$00
+ db $28,$30,$4a,$20
+ db $08,$28,$4a,$60
+
+FrameBlock4d:
+ db $04
+ db $08,$00,$4a,$20
+ db $38,$08,$4a,$60
+ db $30,$38,$4a,$40
+ db $00,$30,$4a,$00
+
+FrameBlock4e:
+ db $08
+ db $00,$30,$44,$00
+ db $00,$38,$44,$20
+ db $08,$30,$44,$40
+ db $08,$38,$44,$60
+ db $26,$0a,$44,$00
+ db $26,$12,$44,$20
+ db $2e,$0a,$44,$40
+ db $2e,$12,$44,$60
+
+FrameBlock4f:
+ db $0c
+ db $0e,$22,$44,$00
+ db $0e,$2a,$44,$20
+ db $16,$22,$44,$40
+ db $16,$2a,$44,$60
+ db $06,$32,$47,$00
+ db $00,$38,$47,$00
+ db $1a,$16,$44,$00
+ db $1a,$1e,$44,$20
+ db $22,$16,$44,$40
+ db $22,$1e,$44,$60
+ db $30,$08,$47,$00
+ db $2a,$0e,$47,$00
+
+FrameBlock50:
+ db $08
+ db $06,$32,$47,$00
+ db $00,$38,$47,$00
+ db $12,$26,$47,$00
+ db $0c,$2c,$47,$00
+ db $1e,$1a,$47,$00
+ db $18,$20,$47,$00
+ db $2a,$0e,$47,$00
+ db $24,$14,$47,$00
+
+FrameBlock51:
+ db $08
+ db $00,$00,$35,$20
+ db $08,$00,$35,$40
+ db $10,$00,$35,$00
+ db $18,$00,$35,$60
+ db $00,$40,$35,$00
+ db $08,$40,$35,$60
+ db $10,$40,$35,$20
+ db $18,$40,$35,$40
+
+FrameBlock52:
+ db $04
+ db $00,$00,$2a,$00
+ db $00,$08,$2b,$00
+ db $08,$00,$3a,$00
+ db $08,$08,$3b,$00
+
+FrameBlock53:
+ db $03
+ db $00,$00,$3f,$00
+ db $00,$08,$3f,$00
+ db $08,$06,$3f,$00
+
+FrameBlock54:
+ db $04
+ db $00,$00,$0e,$00
+ db $00,$08,$0e,$20
+ db $08,$00,$0f,$00
+ db $08,$08,$0f,$20
+
+FrameBlock55:
+ db $03
+ db $10,$00,$2c,$00
+ db $10,$08,$3c,$00
+ db $10,$10,$2d,$00
+
+FrameBlock56:
+ db $06
+ db $10,$10,$31,$00
+ db $10,$18,$31,$00
+ db $08,$10,$2c,$00
+ db $08,$18,$3c,$00
+ db $08,$20,$2d,$00
+ db $10,$20,$2d,$00
+
+FrameBlock57:
+ db $09
+ db $08,$20,$31,$00
+ db $10,$20,$31,$00
+ db $08,$28,$31,$00
+ db $10,$28,$31,$00
+ db $00,$20,$2c,$00
+ db $00,$28,$3c,$00
+ db $00,$30,$2d,$00
+ db $08,$30,$2d,$00
+ db $10,$30,$2d,$00
+
+FrameBlock58:
+ db $07
+ db $00,$00,$46,$00
+ db $08,$02,$47,$00
+ db $10,$03,$48,$00
+ db $18,$04,$48,$00
+ db $20,$05,$48,$00
+ db $28,$05,$48,$00
+ db $30,$05,$48,$00
+
+FrameBlock59:
+ db $01
+ db $00,$00,$42,$00
+
+FrameBlock5a:
+ db $0c
+ db $00,$00,$24,$00
+ db $00,$08,$25,$00
+ db $08,$00,$34,$00
+ db $00,$10,$25,$20
+ db $00,$18,$24,$20
+ db $08,$18,$34,$20
+ db $10,$00,$34,$40
+ db $18,$00,$24,$40
+ db $18,$08,$25,$40
+ db $10,$18,$34,$60
+ db $18,$10,$25,$60
+ db $18,$18,$24,$60
+
+FrameBlock5b:
+ db $04
+ db $00,$00,$43,$00
+ db $00,$08,$43,$20
+ db $08,$00,$43,$40
+ db $08,$08,$43,$60
+
+FrameBlock5c:
+ db $08
+ db $00,$00,$49,$00
+ db $02,$08,$49,$00
+ db $18,$00,$49,$00
+ db $10,$10,$49,$00
+ db $08,$00,$43,$00
+ db $08,$08,$43,$20
+ db $10,$00,$43,$40
+ db $10,$08,$43,$60
+
+FrameBlock5d:
+ db $0b
+ db $00,$00,$49,$00
+ db $18,$02,$49,$00
+ db $14,$10,$49,$00
+ db $08,$00,$43,$00
+ db $00,$08,$43,$20
+ db $10,$00,$43,$40
+ db $10,$08,$43,$60
+ db $04,$08,$43,$00
+ db $04,$10,$43,$20
+ db $0c,$08,$43,$40
+ db $0c,$10,$43,$60
+
+FrameBlock5e:
+ db $0f
+ db $00,$08,$49,$00
+ db $08,$10,$49,$00
+ db $20,$00,$49,$00
+ db $08,$00,$43,$00
+ db $08,$08,$43,$20
+ db $10,$00,$43,$40
+ db $10,$08,$43,$60
+ db $10,$10,$43,$00
+ db $10,$18,$43,$20
+ db $18,$10,$43,$40
+ db $18,$18,$43,$60
+ db $20,$08,$43,$00
+ db $20,$10,$43,$20
+ db $28,$08,$43,$40
+ db $28,$10,$43,$60
+
+FrameBlock5f:
+ db $04
+ db $00,$00,$49,$00
+ db $00,$10,$49,$00
+ db $00,$20,$49,$00
+ db $00,$30,$49,$00
+
+FrameBlock60:
+ db $08
+ db $00,$00,$49,$00
+ db $00,$10,$49,$00
+ db $00,$20,$49,$00
+ db $00,$30,$49,$00
+ db $08,$08,$49,$00
+ db $08,$18,$49,$00
+ db $08,$28,$49,$00
+ db $08,$38,$49,$00
+
+FrameBlock61:
+ db $0c
+ db $00,$00,$49,$00
+ db $00,$10,$49,$00
+ db $00,$20,$49,$00
+ db $00,$30,$49,$00
+ db $08,$08,$49,$00
+ db $08,$18,$49,$00
+ db $08,$28,$49,$00
+ db $08,$38,$49,$00
+ db $10,$00,$49,$00
+ db $10,$10,$49,$00
+ db $10,$20,$49,$00
+ db $10,$30,$49,$00
+
+FrameBlock62:
+ db $0f
+ db $00,$00,$49,$00
+ db $00,$10,$49,$00
+ db $00,$20,$49,$00
+ db $00,$30,$49,$00
+ db $08,$08,$49,$00
+ db $08,$18,$49,$00
+ db $08,$28,$49,$00
+ db $08,$38,$49,$00
+ db $10,$00,$49,$00
+ db $10,$10,$49,$00
+ db $10,$20,$49,$00
+ db $10,$30,$49,$00
+ db $18,$08,$49,$00
+ db $18,$18,$49,$00
+ db $18,$28,$49,$00
+ db $18,$38,$49,$00 ; unused
+
+FrameBlock63:
+ db $06
+ db $10,$00,$26,$00
+ db $10,$08,$27,$00
+ db $08,$10,$26,$00
+ db $08,$18,$27,$00
+ db $00,$20,$26,$00
+ db $00,$28,$27,$00
+
+FrameBlock64:
+ db $06
+ db $18,$00,$27,$00
+ db $10,$08,$26,$00
+ db $10,$10,$27,$00
+ db $08,$18,$26,$00
+ db $08,$20,$27,$00
+ db $00,$28,$26,$00
+
+FrameBlock65:
+ db $06
+ db $00,$00,$1c,$00
+ db $00,$08,$1d,$00
+ db $10,$00,$1c,$00
+ db $10,$08,$1d,$00
+ db $20,$00,$1c,$00
+ db $20,$08,$1d,$00
+
+FrameBlock66:
+ db $02
+ db $00,$00,$03,$00
+ db $08,$00,$13,$00
+
+FrameBlock67:
+ db $01
+ db $00,$00,$03,$00
+
+FrameBlock68:
+ db $04
+ db $00,$00,$03,$00
+ db $00,$08,$03,$20
+ db $08,$00,$13,$00
+ db $08,$08,$13,$20
+
+FrameBlock69:
+ db $01
+ db $00,$00,$06,$00
+
+FrameBlock6a:
+ db $08
+ db $00,$00,$2e,$00
+ db $00,$30,$2e,$20
+ db $30,$00,$2e,$40
+ db $30,$30,$2e,$60
+ db $00,$18,$2f,$00
+ db $30,$18,$2f,$40
+ db $18,$00,$3e,$00
+ db $18,$30,$3e,$20
+
+FrameBlock6b:
+ db $08
+ db $00,$00,$2e,$00
+ db $00,$20,$2e,$20
+ db $20,$00,$2e,$40
+ db $20,$20,$2e,$60
+ db $00,$10,$2f,$00
+ db $20,$10,$2f,$40
+ db $10,$00,$3e,$00
+ db $10,$20,$3e,$20
+
+FrameBlock6c:
+ db $08
+ db $00,$00,$2e,$00
+ db $00,$10,$2e,$20
+ db $10,$00,$2e,$40
+ db $10,$10,$2e,$60
+ db $00,$08,$2f,$00
+ db $10,$08,$2f,$40
+ db $08,$00,$3e,$00
+ db $08,$10,$3e,$20
+
+FrameBlock6d:
+ db $02
+ db $00,$00,$1e,$00
+ db $00,$08,$1f,$00
+
+FrameBlock6e:
+ db $04
+ db $00,$00,$48,$00
+ db $00,$08,$48,$20
+ db $08,$00,$12,$00
+ db $08,$08,$12,$20
+
+FrameBlock6f:
+ db $04
+ db $00,$00,$4a,$00
+ db $00,$08,$07,$00
+ db $08,$00,$16,$00
+ db $08,$08,$17,$00
+
+FrameBlock70:
+ db $04
+ db $00,$00,$07,$20
+ db $00,$08,$4a,$20
+ db $08,$00,$17,$20
+ db $08,$08,$16,$20
+
+FrameBlock76:
+ db $07
+ db $00,$10,$2f,$00
+ db $01,$08,$2f,$00
+ db $01,$18,$2f,$00
+ db $02,$00,$2e,$00
+ db $02,$20,$2e,$20
+ db $0a,$00,$3e,$00
+ db $0a,$20,$3e,$20
+
+FrameBlock77:
+ db $04
+ db $00,$02,$4b,$00
+ db $00,$0a,$4c,$00
+ db $08,$00,$4c,$60
+ db $08,$08,$4b,$60
+
+FrameBlock78:
+ db $01
+ db $00,$00,$4d,$00
+
+FrameBlock79:
+ db $01
+ db $00,$00,$4e,$00
+
+FrameBlockBaseCoords:
+ db $10,$68
+ db $10,$70
+ db $10,$78
+ db $10,$80
+ db $10,$88
+ db $10,$90
+ db $10,$98
+ db $18,$68
+ db $18,$70
+ db $18,$78
+ db $34,$28
+ db $18,$80
+ db $18,$88
+ db $18,$98
+ db $20,$68
+ db $20,$70
+ db $20,$78
+ db $20,$80
+ db $20,$88
+ db $20,$90
+ db $20,$98
+ db $28,$68
+ db $28,$70
+ db $28,$78
+ db $28,$80
+ db $28,$88
+ db $30,$68
+ db $30,$70
+ db $30,$78
+ db $30,$80
+ db $30,$90
+ db $30,$98
+ db $38,$68
+ db $38,$78
+ db $38,$80
+ db $38,$88
+ db $40,$68
+ db $40,$70
+ db $40,$78
+ db $40,$80
+ db $40,$88
+ db $40,$98
+ db $10,$60
+ db $18,$60
+ db $20,$60
+ db $28,$60
+ db $30,$60
+ db $40,$60
+ db $58,$28
+ db $43,$38
+ db $33,$48
+ db $20,$58
+ db $32,$78
+ db $58,$58
+ db $2C,$6C
+ db $34,$80
+ db $48,$70
+ db $42,$36
+ db $38,$44
+ db $40,$52
+ db $48,$60
+ db $3E,$6E
+ db $28,$7C
+ db $28,$8A
+ db $50,$3C
+ db $48,$50
+ db $40,$64
+ db $38,$38
+ db $50,$30
+ db $50,$38
+ db $50,$40
+ db $50,$48
+ db $50,$50
+ db $48,$58
+ db $50,$44
+ db $48,$48
+ db $48,$4C
+ db $40,$50
+ db $40,$54
+ db $38,$58
+ db $38,$5C
+ db $30,$64
+ db $48,$40
+ db $48,$39
+ db $24,$88
+ db $24,$70
+ db $1C,$70
+ db $1C,$88
+ db $34,$68
+ db $34,$88
+ db $68,$50
+ db $60,$50
+ db $68,$60
+ db $58,$50
+ db $60,$60
+ db $68,$40
+ db $40,$40
+ db $38,$40
+ db $0B,$60
+ db $44,$48
+ db $40,$14
+ db $48,$1C
+ db $50,$24
+ db $4C,$24
+ db $10,$62
+ db $12,$62
+ db $12,$60
+ db $20,$72
+ db $22,$72
+ db $22,$70
+ db $28,$62
+ db $50,$0A
+ db $52,$0A
+ db $38,$30
+ db $40,$48
+ db $30,$48
+ db $40,$30
+ db $30,$40
+ db $38,$48
+ db $40,$4A
+ db $48,$4B
+ db $50,$4C
+ db $58,$4D
+ db $60,$4D
+ db $68,$4D
+ db $38,$10
+ db $50,$10
+ db $38,$28
+ db $48,$18
+ db $40,$20
+ db $48,$20
+ db $40,$3C
+ db $38,$50
+ db $28,$64
+ db $1C,$90
+ db $24,$80
+ db $2C,$70
+ db $30,$38
+ db $10,$50
+ db $3C,$40
+ db $40,$58
+ db $30,$58
+ db $58,$48
+ db $50,$58
+ db $48,$68
+ db $40,$18
+ db $28,$58
+ db $40,$38
+ db $48,$38
+ db $08,$70
+ db $44,$1C
+ db $3C,$58
+ db $38,$60
+ db $08,$60
+ db $38,$70
+ db $38,$6C
+ db $38,$64
+ db $1C,$74
+ db $2E,$74
+ db $34,$50
+ db $2F,$60
+ db $31,$70
+ db $4C,$30
+ db $3B,$40
+ db $2D,$50
+ db $26,$60
+ db $2D,$70
+ db $28,$50
+ db $1E,$60
+ db $29,$70
+ db $16,$60
+ db $14,$58
+ db $12,$54
+ db $14,$50
+ db $18,$4C
+ db $1C,$48
+ db $48,$28
+
+FrameBlock00:
+ db $00,$00
--- /dev/null
+++ b/data/moves/effects_pointers.asm
@@ -1,0 +1,87 @@
+MoveEffectPointerTable:
+ dw SleepEffect ; unused effect
+ dw PoisonEffect ; POISON_SIDE_EFFECT1
+ dw DrainHPEffect ; DRAIN_HP_EFFECT
+ dw FreezeBurnParalyzeEffect ; BURN_SIDE_EFFECT1
+ dw FreezeBurnParalyzeEffect ; FREEZE_SIDE_EFFECT
+ dw FreezeBurnParalyzeEffect ; PARALYZE_SIDE_EFFECT1
+ dw ExplodeEffect ; EXPLODE_EFFECT
+ dw DrainHPEffect ; DREAM_EATER_EFFECT
+ dw NULL ; MIRROR_MOVE_EFFECT
+ dw StatModifierUpEffect ; ATTACK_UP1_EFFECT
+ dw StatModifierUpEffect ; DEFENSE_UP1_EFFECT
+ dw StatModifierUpEffect ; SPEED_UP1_EFFECT
+ dw StatModifierUpEffect ; SPECIAL_UP1_EFFECT
+ dw StatModifierUpEffect ; ACCURACY_UP1_EFFECT
+ dw StatModifierUpEffect ; EVASION_UP1_EFFECT
+ dw PayDayEffect ; PAY_DAY_EFFECT
+ dw NULL ; SWIFT_EFFECT
+ dw StatModifierDownEffect ; ATTACK_DOWN1_EFFECT
+ dw StatModifierDownEffect ; DEFENSE_DOWN1_EFFECT
+ dw StatModifierDownEffect ; SPEED_DOWN1_EFFECT
+ dw StatModifierDownEffect ; SPECIAL_DOWN1_EFFECT
+ dw StatModifierDownEffect ; ACCURACY_DOWN1_EFFECT
+ dw StatModifierDownEffect ; EVASION_DOWN1_EFFECT
+ dw ConversionEffect ; CONVERSION_EFFECT
+ dw HazeEffect ; HAZE_EFFECT
+ dw BideEffect ; BIDE_EFFECT
+ dw ThrashPetalDanceEffect ; THRASH_PETAL_DANCE_EFFECT
+ dw SwitchAndTeleportEffect ; SWITCH_AND_TELEPORT_EFFECT
+ dw TwoToFiveAttacksEffect ; TWO_TO_FIVE_ATTACKS_EFFECT
+ dw TwoToFiveAttacksEffect ; unused effect
+ dw FlinchSideEffect ; FLINCH_SIDE_EFFECT1
+ dw SleepEffect ; SLEEP_EFFECT
+ dw PoisonEffect ; POISON_SIDE_EFFECT2
+ dw FreezeBurnParalyzeEffect ; BURN_SIDE_EFFECT2
+ dw FreezeBurnParalyzeEffect ; unused effect
+ dw FreezeBurnParalyzeEffect ; PARALYZE_SIDE_EFFECT2
+ dw FlinchSideEffect ; FLINCH_SIDE_EFFECT2
+ dw OneHitKOEffect ; OHKO_EFFECT
+ dw ChargeEffect ; CHARGE_EFFECT
+ dw NULL ; SUPER_FANG_EFFECT
+ dw NULL ; SPECIAL_DAMAGE_EFFECT
+ dw TrappingEffect ; TRAPPING_EFFECT
+ dw ChargeEffect ; FLY_EFFECT
+ dw TwoToFiveAttacksEffect ; ATTACK_TWICE_EFFECT
+ dw NULL ; JUMP_KICK_EFFECT
+ dw MistEffect ; MIST_EFFECT
+ dw FocusEnergyEffect ; FOCUS_ENERGY_EFFECT
+ dw RecoilEffect ; RECOIL_EFFECT
+ dw ConfusionEffect ; CONFUSION_EFFECT
+ dw StatModifierUpEffect ; ATTACK_UP2_EFFECT
+ dw StatModifierUpEffect ; DEFENSE_UP2_EFFECT
+ dw StatModifierUpEffect ; SPEED_UP2_EFFECT
+ dw StatModifierUpEffect ; SPECIAL_UP2_EFFECT
+ dw StatModifierUpEffect ; ACCURACY_UP2_EFFECT
+ dw StatModifierUpEffect ; EVASION_UP2_EFFECT
+ dw HealEffect ; HEAL_EFFECT
+ dw TransformEffect ; TRANSFORM_EFFECT
+ dw StatModifierDownEffect ; ATTACK_DOWN2_EFFECT
+ dw StatModifierDownEffect ; DEFENSE_DOWN2_EFFECT
+ dw StatModifierDownEffect ; SPEED_DOWN2_EFFECT
+ dw StatModifierDownEffect ; SPECIAL_DOWN2_EFFECT
+ dw StatModifierDownEffect ; ACCURACY_DOWN2_EFFECT
+ dw StatModifierDownEffect ; EVASION_DOWN2_EFFECT
+ dw ReflectLightScreenEffect ; LIGHT_SCREEN_EFFECT
+ dw ReflectLightScreenEffect ; REFLECT_EFFECT
+ dw PoisonEffect ; POISON_EFFECT
+ dw ParalyzeEffect ; PARALYZE_EFFECT
+ dw StatModifierDownEffect ; ATTACK_DOWN_SIDE_EFFECT
+ dw StatModifierDownEffect ; DEFENSE_DOWN_SIDE_EFFECT
+ dw StatModifierDownEffect ; SPEED_DOWN_SIDE_EFFECT
+ dw StatModifierDownEffect ; SPECIAL_DOWN_SIDE_EFFECT
+ dw StatModifierDownEffect ; unused effect
+ dw StatModifierDownEffect ; unused effect
+ dw StatModifierDownEffect ; unused effect
+ dw StatModifierDownEffect ; unused effect
+ dw ConfusionSideEffect ; CONFUSION_SIDE_EFFECT
+ dw TwoToFiveAttacksEffect ; TWINEEDLE_EFFECT
+ dw NULL ; unused effect
+ dw SubstituteEffect ; SUBSTITUTE_EFFECT
+ dw HyperBeamEffect ; HYPER_BEAM_EFFECT
+ dw RageEffect ; RAGE_EFFECT
+ dw MimicEffect ; MIMIC_EFFECT
+ dw NULL ; METRONOME_EFFECT
+ dw LeechSeedEffect ; LEECH_SEED_EFFECT
+ dw SplashEffect ; SPLASH_EFFECT
+ dw DisableEffect ; DISABLE_EFFECT
--- /dev/null
+++ b/data/moves/grammar.asm
@@ -1,0 +1,14 @@
+ExclamationPointMoveSets:
+ db SWORDS_DANCE, GROWTH
+ db $00
+ db RECOVER, BIDE, SELFDESTRUCT, AMNESIA
+ db $00
+ db MEDITATE, AGILITY, TELEPORT, MIMIC, DOUBLE_TEAM, BARRAGE
+ db $00
+ db POUND, SCRATCH, VICEGRIP, WING_ATTACK, FLY, BIND, SLAM, HORN_ATTACK, BODY_SLAM
+ db WRAP, THRASH, TAIL_WHIP, LEER, BITE, GROWL, ROAR, SING, PECK, COUNTER
+ db STRENGTH, ABSORB, STRING_SHOT, EARTHQUAKE, FISSURE, DIG, TOXIC, SCREECH, HARDEN
+ db MINIMIZE, WITHDRAW, DEFENSE_CURL, METRONOME, LICK, CLAMP, CONSTRICT, POISON_GAS
+ db LEECH_LIFE, BUBBLE, FLASH, SPLASH, ACID_ARMOR, FURY_SWIPES, REST, SHARPEN, SLASH, SUBSTITUTE
+ db $00
+ db $FF ; terminator
--- /dev/null
+++ b/data/moves/hm_moves.asm
@@ -1,0 +1,10 @@
+; This file is INCLUDEd twice:
+; - for HMMoves in home/names.asm
+; - for HMMoveArray in engine/pokemon/bills_pc.asm
+
+ db CUT
+ db FLY
+ db SURF
+ db STRENGTH
+ db FLASH
+ db -1 ; end
--- /dev/null
+++ b/data/moves/moves.asm
@@ -1,0 +1,178 @@
+Moves:
+; Characteristics of each move.
+
+move: macro
+ db \1 ; animation (interchangeable with move id)
+ db \2 ; effect
+ db \3 ; power
+ db \4 ; type
+ db \5 percent ; accuracy
+ db \6 ; pp
+endm
+
+ move POUND, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
+MoveEnd:
+ move KARATE_CHOP, NO_ADDITIONAL_EFFECT, 50, NORMAL, 100, 25
+ move DOUBLESLAP, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 10
+ move COMET_PUNCH, TWO_TO_FIVE_ATTACKS_EFFECT, 18, NORMAL, 85, 15
+ move MEGA_PUNCH, NO_ADDITIONAL_EFFECT, 80, NORMAL, 85, 20
+ move PAY_DAY, PAY_DAY_EFFECT, 40, NORMAL, 100, 20
+ move FIRE_PUNCH, BURN_SIDE_EFFECT1, 75, FIRE, 100, 15
+ move ICE_PUNCH, FREEZE_SIDE_EFFECT, 75, ICE, 100, 15
+ move THUNDERPUNCH, PARALYZE_SIDE_EFFECT1, 75, ELECTRIC, 100, 15
+ move SCRATCH, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
+ move VICEGRIP, NO_ADDITIONAL_EFFECT, 55, NORMAL, 100, 30
+ move GUILLOTINE, OHKO_EFFECT, 1, NORMAL, 30, 5
+ move RAZOR_WIND, CHARGE_EFFECT, 80, NORMAL, 75, 10
+ move SWORDS_DANCE, ATTACK_UP2_EFFECT, 0, NORMAL, 100, 30
+ move CUT, NO_ADDITIONAL_EFFECT, 50, NORMAL, 95, 30
+ move GUST, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35
+ move WING_ATTACK, NO_ADDITIONAL_EFFECT, 35, FLYING, 100, 35
+ move WHIRLWIND, SWITCH_AND_TELEPORT_EFFECT, 0, NORMAL, 85, 20
+ move FLY, FLY_EFFECT, 70, FLYING, 95, 15
+ move BIND, TRAPPING_EFFECT, 15, NORMAL, 75, 20
+ move SLAM, NO_ADDITIONAL_EFFECT, 80, NORMAL, 75, 20
+ move VINE_WHIP, NO_ADDITIONAL_EFFECT, 35, GRASS, 100, 10
+ move STOMP, FLINCH_SIDE_EFFECT2, 65, NORMAL, 100, 20
+ move DOUBLE_KICK, ATTACK_TWICE_EFFECT, 30, FIGHTING, 100, 30
+ move MEGA_KICK, NO_ADDITIONAL_EFFECT, 120, NORMAL, 75, 5
+ move JUMP_KICK, JUMP_KICK_EFFECT, 70, FIGHTING, 95, 25
+ move ROLLING_KICK, FLINCH_SIDE_EFFECT2, 60, FIGHTING, 85, 15
+ move SAND_ATTACK, ACCURACY_DOWN1_EFFECT, 0, NORMAL, 100, 15
+ move HEADBUTT, FLINCH_SIDE_EFFECT2, 70, NORMAL, 100, 15
+ move HORN_ATTACK, NO_ADDITIONAL_EFFECT, 65, NORMAL, 100, 25
+ move FURY_ATTACK, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 20
+ move HORN_DRILL, OHKO_EFFECT, 1, NORMAL, 30, 5
+ move TACKLE, NO_ADDITIONAL_EFFECT, 35, NORMAL, 95, 35
+ move BODY_SLAM, PARALYZE_SIDE_EFFECT2, 85, NORMAL, 100, 15
+ move WRAP, TRAPPING_EFFECT, 15, NORMAL, 85, 20
+ move TAKE_DOWN, RECOIL_EFFECT, 90, NORMAL, 85, 20
+ move THRASH, THRASH_PETAL_DANCE_EFFECT, 90, NORMAL, 100, 20
+ move DOUBLE_EDGE, RECOIL_EFFECT, 100, NORMAL, 100, 15
+ move TAIL_WHIP, DEFENSE_DOWN1_EFFECT, 0, NORMAL, 100, 30
+ move POISON_STING, POISON_SIDE_EFFECT1, 15, POISON, 100, 35
+ move TWINEEDLE, TWINEEDLE_EFFECT, 25, BUG, 100, 20
+ move PIN_MISSILE, TWO_TO_FIVE_ATTACKS_EFFECT, 14, BUG, 85, 20
+ move LEER, DEFENSE_DOWN1_EFFECT, 0, NORMAL, 100, 30
+ move BITE, FLINCH_SIDE_EFFECT1, 60, NORMAL, 100, 25
+ move GROWL, ATTACK_DOWN1_EFFECT, 0, NORMAL, 100, 40
+ move ROAR, SWITCH_AND_TELEPORT_EFFECT, 0, NORMAL, 100, 20
+ move SING, SLEEP_EFFECT, 0, NORMAL, 55, 15
+ move SUPERSONIC, CONFUSION_EFFECT, 0, NORMAL, 55, 20
+ move SONICBOOM, SPECIAL_DAMAGE_EFFECT, 1, NORMAL, 90, 20
+ move DISABLE, DISABLE_EFFECT, 0, NORMAL, 55, 20
+ move ACID, DEFENSE_DOWN_SIDE_EFFECT, 40, POISON, 100, 30
+ move EMBER, BURN_SIDE_EFFECT1, 40, FIRE, 100, 25
+ move FLAMETHROWER, BURN_SIDE_EFFECT1, 95, FIRE, 100, 15
+ move MIST, MIST_EFFECT, 0, ICE, 100, 30
+ move WATER_GUN, NO_ADDITIONAL_EFFECT, 40, WATER, 100, 25
+ move HYDRO_PUMP, NO_ADDITIONAL_EFFECT, 120, WATER, 80, 5
+ move SURF, NO_ADDITIONAL_EFFECT, 95, WATER, 100, 15
+ move ICE_BEAM, FREEZE_SIDE_EFFECT, 95, ICE, 100, 10
+ move BLIZZARD, FREEZE_SIDE_EFFECT, 120, ICE, 90, 5
+ move PSYBEAM, CONFUSION_SIDE_EFFECT, 65, PSYCHIC, 100, 20
+ move BUBBLEBEAM, SPEED_DOWN_SIDE_EFFECT, 65, WATER, 100, 20
+ move AURORA_BEAM, ATTACK_DOWN_SIDE_EFFECT, 65, ICE, 100, 20
+ move HYPER_BEAM, HYPER_BEAM_EFFECT, 150, NORMAL, 90, 5
+ move PECK, NO_ADDITIONAL_EFFECT, 35, FLYING, 100, 35
+ move DRILL_PECK, NO_ADDITIONAL_EFFECT, 80, FLYING, 100, 20
+ move SUBMISSION, RECOIL_EFFECT, 80, FIGHTING, 80, 25
+ move LOW_KICK, FLINCH_SIDE_EFFECT2, 50, FIGHTING, 90, 20
+ move COUNTER, NO_ADDITIONAL_EFFECT, 1, FIGHTING, 100, 20
+ move SEISMIC_TOSS, SPECIAL_DAMAGE_EFFECT, 1, FIGHTING, 100, 20
+ move STRENGTH, NO_ADDITIONAL_EFFECT, 80, NORMAL, 100, 15
+ move ABSORB, DRAIN_HP_EFFECT, 20, GRASS, 100, 20
+ move MEGA_DRAIN, DRAIN_HP_EFFECT, 40, GRASS, 100, 10
+ move LEECH_SEED, LEECH_SEED_EFFECT, 0, GRASS, 90, 10
+ move GROWTH, SPECIAL_UP1_EFFECT, 0, NORMAL, 100, 40
+ move RAZOR_LEAF, NO_ADDITIONAL_EFFECT, 55, GRASS, 95, 25
+ move SOLARBEAM, CHARGE_EFFECT, 120, GRASS, 100, 10
+ move POISONPOWDER, POISON_EFFECT, 0, POISON, 75, 35
+ move STUN_SPORE, PARALYZE_EFFECT, 0, GRASS, 75, 30
+ move SLEEP_POWDER, SLEEP_EFFECT, 0, GRASS, 75, 15
+ move PETAL_DANCE, THRASH_PETAL_DANCE_EFFECT, 70, GRASS, 100, 20
+ move STRING_SHOT, SPEED_DOWN1_EFFECT, 0, BUG, 95, 40
+ move DRAGON_RAGE, SPECIAL_DAMAGE_EFFECT, 1, DRAGON, 100, 10
+ move FIRE_SPIN, TRAPPING_EFFECT, 15, FIRE, 70, 15
+ move THUNDERSHOCK, PARALYZE_SIDE_EFFECT1, 40, ELECTRIC, 100, 30
+ move THUNDERBOLT, PARALYZE_SIDE_EFFECT1, 95, ELECTRIC, 100, 15
+ move THUNDER_WAVE, PARALYZE_EFFECT, 0, ELECTRIC, 100, 20
+ move THUNDER, PARALYZE_SIDE_EFFECT1, 120, ELECTRIC, 70, 10
+ move ROCK_THROW, NO_ADDITIONAL_EFFECT, 50, ROCK, 65, 15
+ move EARTHQUAKE, NO_ADDITIONAL_EFFECT, 100, GROUND, 100, 10
+ move FISSURE, OHKO_EFFECT, 1, GROUND, 30, 5
+ move DIG, CHARGE_EFFECT, 100, GROUND, 100, 10
+ move TOXIC, POISON_EFFECT, 0, POISON, 85, 10
+ move CONFUSION, CONFUSION_SIDE_EFFECT, 50, PSYCHIC, 100, 25
+ move PSYCHIC_M, SPECIAL_DOWN_SIDE_EFFECT, 90, PSYCHIC, 100, 10
+ move HYPNOSIS, SLEEP_EFFECT, 0, PSYCHIC, 60, 20
+ move MEDITATE, ATTACK_UP1_EFFECT, 0, PSYCHIC, 100, 40
+ move AGILITY, SPEED_UP2_EFFECT, 0, PSYCHIC, 100, 30
+ move QUICK_ATTACK, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 30
+ move RAGE, RAGE_EFFECT, 20, NORMAL, 100, 20
+ move TELEPORT, SWITCH_AND_TELEPORT_EFFECT, 0, PSYCHIC, 100, 20
+ move NIGHT_SHADE, SPECIAL_DAMAGE_EFFECT, 0, GHOST, 100, 15
+ move MIMIC, MIMIC_EFFECT, 0, NORMAL, 100, 10
+ move SCREECH, DEFENSE_DOWN2_EFFECT, 0, NORMAL, 85, 40
+ move DOUBLE_TEAM, EVASION_UP1_EFFECT, 0, NORMAL, 100, 15
+ move RECOVER, HEAL_EFFECT, 0, NORMAL, 100, 20
+ move HARDEN, DEFENSE_UP1_EFFECT, 0, NORMAL, 100, 30
+ move MINIMIZE, EVASION_UP1_EFFECT, 0, NORMAL, 100, 20
+ move SMOKESCREEN, ACCURACY_DOWN1_EFFECT, 0, NORMAL, 100, 20
+ move CONFUSE_RAY, CONFUSION_EFFECT, 0, GHOST, 100, 10
+ move WITHDRAW, DEFENSE_UP1_EFFECT, 0, WATER, 100, 40
+ move DEFENSE_CURL, DEFENSE_UP1_EFFECT, 0, NORMAL, 100, 40
+ move BARRIER, DEFENSE_UP2_EFFECT, 0, PSYCHIC, 100, 30
+ move LIGHT_SCREEN, LIGHT_SCREEN_EFFECT, 0, PSYCHIC, 100, 30
+ move HAZE, HAZE_EFFECT, 0, ICE, 100, 30
+ move REFLECT, REFLECT_EFFECT, 0, PSYCHIC, 100, 20
+ move FOCUS_ENERGY, FOCUS_ENERGY_EFFECT, 0, NORMAL, 100, 30
+ move BIDE, BIDE_EFFECT, 0, NORMAL, 100, 10
+ move METRONOME, METRONOME_EFFECT, 0, NORMAL, 100, 10
+ move MIRROR_MOVE, MIRROR_MOVE_EFFECT, 0, FLYING, 100, 20
+ move SELFDESTRUCT, EXPLODE_EFFECT, 130, NORMAL, 100, 5
+ move EGG_BOMB, NO_ADDITIONAL_EFFECT, 100, NORMAL, 75, 10
+ move LICK, PARALYZE_SIDE_EFFECT2, 20, GHOST, 100, 30
+ move SMOG, POISON_SIDE_EFFECT2, 20, POISON, 70, 20
+ move SLUDGE, POISON_SIDE_EFFECT2, 65, POISON, 100, 20
+ move BONE_CLUB, FLINCH_SIDE_EFFECT1, 65, GROUND, 85, 20
+ move FIRE_BLAST, BURN_SIDE_EFFECT2, 120, FIRE, 85, 5
+ move WATERFALL, NO_ADDITIONAL_EFFECT, 80, WATER, 100, 15
+ move CLAMP, TRAPPING_EFFECT, 35, WATER, 75, 10
+ move SWIFT, SWIFT_EFFECT, 60, NORMAL, 100, 20
+ move SKULL_BASH, CHARGE_EFFECT, 100, NORMAL, 100, 15
+ move SPIKE_CANNON, TWO_TO_FIVE_ATTACKS_EFFECT, 20, NORMAL, 100, 15
+ move CONSTRICT, SPEED_DOWN_SIDE_EFFECT, 10, NORMAL, 100, 35
+ move AMNESIA, SPECIAL_UP2_EFFECT, 0, PSYCHIC, 100, 20
+ move KINESIS, ACCURACY_DOWN1_EFFECT, 0, PSYCHIC, 80, 15
+ move SOFTBOILED, HEAL_EFFECT, 0, NORMAL, 100, 10
+ move HI_JUMP_KICK, JUMP_KICK_EFFECT, 85, FIGHTING, 90, 20
+ move GLARE, PARALYZE_EFFECT, 0, NORMAL, 75, 30
+ move DREAM_EATER, DREAM_EATER_EFFECT, 100, PSYCHIC, 100, 15
+ move POISON_GAS, POISON_EFFECT, 0, POISON, 55, 40
+ move BARRAGE, TWO_TO_FIVE_ATTACKS_EFFECT, 15, NORMAL, 85, 20
+ move LEECH_LIFE, DRAIN_HP_EFFECT, 20, BUG, 100, 15
+ move LOVELY_KISS, SLEEP_EFFECT, 0, NORMAL, 75, 10
+ move SKY_ATTACK, CHARGE_EFFECT, 140, FLYING, 90, 5
+ move TRANSFORM, TRANSFORM_EFFECT, 0, NORMAL, 100, 10
+ move BUBBLE, SPEED_DOWN_SIDE_EFFECT, 20, WATER, 100, 30
+ move DIZZY_PUNCH, NO_ADDITIONAL_EFFECT, 70, NORMAL, 100, 10
+ move SPORE, SLEEP_EFFECT, 0, GRASS, 100, 15
+ move FLASH, ACCURACY_DOWN1_EFFECT, 0, NORMAL, 70, 20
+ move PSYWAVE, SPECIAL_DAMAGE_EFFECT, 1, PSYCHIC, 80, 15
+ move SPLASH, SPLASH_EFFECT, 0, NORMAL, 100, 40
+ move ACID_ARMOR, DEFENSE_UP2_EFFECT, 0, POISON, 100, 40
+ move CRABHAMMER, NO_ADDITIONAL_EFFECT, 90, WATER, 85, 10
+ move EXPLOSION, EXPLODE_EFFECT, 170, NORMAL, 100, 5
+ move FURY_SWIPES, TWO_TO_FIVE_ATTACKS_EFFECT, 18, NORMAL, 80, 15
+ move BONEMERANG, ATTACK_TWICE_EFFECT, 50, GROUND, 90, 10
+ move REST, HEAL_EFFECT, 0, PSYCHIC, 100, 10
+ move ROCK_SLIDE, NO_ADDITIONAL_EFFECT, 75, ROCK, 90, 10
+ move HYPER_FANG, FLINCH_SIDE_EFFECT1, 80, NORMAL, 90, 15
+ move SHARPEN, ATTACK_UP1_EFFECT, 0, NORMAL, 100, 30
+ move CONVERSION, CONVERSION_EFFECT, 0, NORMAL, 100, 30
+ move TRI_ATTACK, NO_ADDITIONAL_EFFECT, 80, NORMAL, 100, 10
+ move SUPER_FANG, SUPER_FANG_EFFECT, 1, NORMAL, 90, 10
+ move SLASH, NO_ADDITIONAL_EFFECT, 70, NORMAL, 100, 20
+ move SUBSTITUTE, SUBSTITUTE_EFFECT, 0, NORMAL, 100, 10
+ move STRUGGLE, RECOIL_EFFECT, 50, NORMAL, 100, 10
--- /dev/null
+++ b/data/moves/names.asm
@@ -1,0 +1,167 @@
+MoveNames::
+ db "POUND@"
+ db "KARATE CHOP@"
+ db "DOUBLESLAP@"
+ db "COMET PUNCH@"
+ db "MEGA PUNCH@"
+ db "PAY DAY@"
+ db "FIRE PUNCH@"
+ db "ICE PUNCH@"
+ db "THUNDERPUNCH@"
+ db "SCRATCH@"
+ db "VICEGRIP@"
+ db "GUILLOTINE@"
+ db "RAZOR WIND@"
+ db "SWORDS DANCE@"
+ db "CUT@"
+ db "GUST@"
+ db "WING ATTACK@"
+ db "WHIRLWIND@"
+ db "FLY@"
+ db "BIND@"
+ db "SLAM@"
+ db "VINE WHIP@"
+ db "STOMP@"
+ db "DOUBLE KICK@"
+ db "MEGA KICK@"
+ db "JUMP KICK@"
+ db "ROLLING KICK@"
+ db "SAND-ATTACK@"
+ db "HEADBUTT@"
+ db "HORN ATTACK@"
+ db "FURY ATTACK@"
+ db "HORN DRILL@"
+ db "TACKLE@"
+ db "BODY SLAM@"
+ db "WRAP@"
+ db "TAKE DOWN@"
+ db "THRASH@"
+ db "DOUBLE-EDGE@"
+ db "TAIL WHIP@"
+ db "POISON STING@"
+ db "TWINEEDLE@"
+ db "PIN MISSILE@"
+ db "LEER@"
+ db "BITE@"
+ db "GROWL@"
+ db "ROAR@"
+ db "SING@"
+ db "SUPERSONIC@"
+ db "SONICBOOM@"
+ db "DISABLE@"
+ db "ACID@"
+ db "EMBER@"
+ db "FLAMETHROWER@"
+ db "MIST@"
+ db "WATER GUN@"
+ db "HYDRO PUMP@"
+ db "SURF@"
+ db "ICE BEAM@"
+ db "BLIZZARD@"
+ db "PSYBEAM@"
+ db "BUBBLEBEAM@"
+ db "AURORA BEAM@"
+ db "HYPER BEAM@"
+ db "PECK@"
+ db "DRILL PECK@"
+ db "SUBMISSION@"
+ db "LOW KICK@"
+ db "COUNTER@"
+ db "SEISMIC TOSS@"
+ db "STRENGTH@"
+ db "ABSORB@"
+ db "MEGA DRAIN@"
+ db "LEECH SEED@"
+ db "GROWTH@"
+ db "RAZOR LEAF@"
+ db "SOLARBEAM@"
+ db "POISONPOWDER@"
+ db "STUN SPORE@"
+ db "SLEEP POWDER@"
+ db "PETAL DANCE@"
+ db "STRING SHOT@"
+ db "DRAGON RAGE@"
+ db "FIRE SPIN@"
+ db "THUNDERSHOCK@"
+ db "THUNDERBOLT@"
+ db "THUNDER WAVE@"
+ db "THUNDER@"
+ db "ROCK THROW@"
+ db "EARTHQUAKE@"
+ db "FISSURE@"
+ db "DIG@"
+ db "TOXIC@"
+ db "CONFUSION@"
+ db "PSYCHIC@"
+ db "HYPNOSIS@"
+ db "MEDITATE@"
+ db "AGILITY@"
+ db "QUICK ATTACK@"
+ db "RAGE@"
+ db "TELEPORT@"
+ db "NIGHT SHADE@"
+ db "MIMIC@"
+ db "SCREECH@"
+ db "DOUBLE TEAM@"
+ db "RECOVER@"
+ db "HARDEN@"
+ db "MINIMIZE@"
+ db "SMOKESCREEN@"
+ db "CONFUSE RAY@"
+ db "WITHDRAW@"
+ db "DEFENSE CURL@"
+ db "BARRIER@"
+ db "LIGHT SCREEN@"
+ db "HAZE@"
+ db "REFLECT@"
+ db "FOCUS ENERGY@"
+ db "BIDE@"
+ db "METRONOME@"
+ db "MIRROR MOVE@"
+ db "SELFDESTRUCT@"
+ db "EGG BOMB@"
+ db "LICK@"
+ db "SMOG@"
+ db "SLUDGE@"
+ db "BONE CLUB@"
+ db "FIRE BLAST@"
+ db "WATERFALL@"
+ db "CLAMP@"
+ db "SWIFT@"
+ db "SKULL BASH@"
+ db "SPIKE CANNON@"
+ db "CONSTRICT@"
+ db "AMNESIA@"
+ db "KINESIS@"
+ db "SOFTBOILED@"
+ db "HI JUMP KICK@"
+ db "GLARE@"
+ db "DREAM EATER@"
+ db "POISON GAS@"
+ db "BARRAGE@"
+ db "LEECH LIFE@"
+ db "LOVELY KISS@"
+ db "SKY ATTACK@"
+ db "TRANSFORM@"
+ db "BUBBLE@"
+ db "DIZZY PUNCH@"
+ db "SPORE@"
+ db "FLASH@"
+ db "PSYWAVE@"
+ db "SPLASH@"
+ db "ACID ARMOR@"
+ db "CRABHAMMER@"
+ db "EXPLOSION@"
+ db "FURY SWIPES@"
+ db "BONEMERANG@"
+ db "REST@"
+ db "ROCK SLIDE@"
+ db "HYPER FANG@"
+ db "SHARPEN@"
+ db "CONVERSION@"
+ db "TRI ATTACK@"
+ db "SUPER FANG@"
+ db "SLASH@"
+ db "SUBSTITUTE@"
+ db "STRUGGLE@"
+
--- /dev/null
+++ b/data/moves/sfx.asm
@@ -1,0 +1,168 @@
+MoveSoundTable:
+ ; ID, pitch mod, tempo mod
+ db SFX_POUND, $00,$80 ; POUND
+ db SFX_BATTLE_0C, $10,$80 ; KARATE_CHOP
+ db SFX_DOUBLESLAP, $00,$80 ; DOUBLESLAP
+ db SFX_BATTLE_0B, $01,$80 ; COMET_PUNCH
+ db SFX_BATTLE_0D, $00,$40 ; MEGA_PUNCH
+ db SFX_SILPH_SCOPE, $00,$ff ; PAY_DAY
+ db SFX_BATTLE_0D, $10,$60 ; FIRE_PUNCH
+ db SFX_BATTLE_0D, $20,$80 ; ICE_PUNCH
+ db SFX_BATTLE_0D, $00,$a0 ; THUNDERPUNCH
+ db SFX_DAMAGE, $00,$80 ; SCRATCH
+ db SFX_BATTLE_0F, $20,$40 ; VICEGRIP
+ db SFX_BATTLE_0F, $00,$80 ; GUILLOTINE
+ db SFX_BATTLE_0E, $00,$a0 ; RAZOR_WIND
+ db SFX_NOT_VERY_EFFECTIVE,$10,$c0 ; SWORDS_DANCE
+ db SFX_NOT_VERY_EFFECTIVE,$00,$a0 ; CUT
+ db SFX_BATTLE_12, $00,$c0 ; GUST
+ db SFX_BATTLE_12, $10,$a0 ; WING_ATTACK
+ db SFX_BATTLE_13, $00,$e0 ; WHIRLWIND
+ db SFX_NOT_VERY_EFFECTIVE,$20,$c0 ; FLY
+ db SFX_BATTLE_14, $00,$80 ; BIND
+ db SFX_BATTLE_22, $00,$80 ; SLAM
+ db SFX_VINE_WHIP, $01,$80 ; VINE_WHIP
+ db SFX_BATTLE_20, $00,$80 ; STOMP
+ db SFX_BATTLE_17, $f0,$40 ; DOUBLE_KICK
+ db SFX_SUPER_EFFECTIVE, $00,$80 ; MEGA_KICK
+ db SFX_BATTLE_17, $00,$80 ; JUMP_KICK
+ db SFX_BATTLE_21, $10,$80 ; ROLLING_KICK
+ db SFX_BATTLE_1B, $01,$a0 ; SAND_ATTACK
+ db SFX_BATTLE_18, $00,$80 ; HEADBUTT
+ db SFX_BATTLE_1E, $00,$60 ; HORN_ATTACK
+ db SFX_BATTLE_1E, $01,$40 ; FURY_ATTACK
+ db SFX_HORN_DRILL, $00,$a0 ; HORN_DRILL
+ db SFX_SUPER_EFFECTIVE, $10,$a0 ; TACKLE
+ db SFX_BATTLE_20, $00,$c0 ; BODY_SLAM
+ db SFX_BATTLE_14, $10,$60 ; WRAP
+ db SFX_SUPER_EFFECTIVE, $00,$a0 ; TAKE_DOWN
+ db SFX_BATTLE_22, $11,$c0 ; THRASH
+ db SFX_SUPER_EFFECTIVE, $20,$c0 ; DOUBLE_EDGE
+ db SFX_BATTLE_21, $00,$80 ; TAIL_WHIP
+ db SFX_BATTLE_1B, $00,$80 ; POISON_STING
+ db SFX_BATTLE_1B, $20,$c0 ; TWINEEDLE
+ db SFX_BATTLE_19, $00,$80 ; PIN_MISSILE
+ db SFX_BATTLE_31, $ff,$40 ; LEER
+ db SFX_BATTLE_1E, $00,$80 ; BITE
+ db SFX_BATTLE_0B, $00,$c0 ; GROWL
+ db SFX_BATTLE_0B, $00,$40 ; ROAR
+ db SFX_BATTLE_35, $00,$80 ; SING
+ db SFX_BATTLE_27, $40,$60 ; SUPERSONIC
+ db SFX_BATTLE_27, $00,$80 ; SONICBOOM
+ db SFX_BATTLE_27, $ff,$40 ; DISABLE
+ db SFX_BATTLE_2A, $80,$c0 ; ACID
+ db SFX_BATTLE_19, $10,$a0 ; EMBER
+ db SFX_BATTLE_19, $21,$e0 ; FLAMETHROWER
+ db SFX_BATTLE_29, $00,$80 ; MIST
+ db SFX_BATTLE_24, $20,$60 ; WATER_GUN
+ db SFX_BATTLE_2A, $00,$80 ; HYDRO_PUMP
+ db SFX_BATTLE_2C, $00,$80 ; SURF
+ db SFX_BATTLE_28, $40,$80 ; ICE_BEAM
+ db SFX_BATTLE_29, $f0,$e0 ; BLIZZARD
+ db SFX_PSYBEAM, $00,$80 ; PSYBEAM
+ db SFX_BATTLE_2A, $f0,$60 ; BUBBLEBEAM
+ db SFX_BATTLE_28, $00,$80 ; AURORA_BEAM
+ db SFX_BATTLE_36, $00,$80 ; HYPER_BEAM
+ db SFX_PECK, $01,$a0 ; PECK
+ db SFX_BATTLE_13, $f0,$20 ; DRILL_PECK
+ db SFX_BATTLE_23, $01,$c0 ; SUBMISSION
+ db SFX_BATTLE_23, $00,$80 ; LOW_KICK
+ db SFX_SUPER_EFFECTIVE, $00,$e0 ; COUNTER
+ db SFX_BATTLE_26, $01,$60 ; SEISMIC_TOSS
+ db SFX_BATTLE_26, $20,$40 ; STRENGTH
+ db SFX_BATTLE_24, $00,$80 ; ABSORB
+ db SFX_BATTLE_24, $40,$c0 ; MEGA_DRAIN
+ db SFX_BATTLE_1B, $03,$60 ; LEECH_SEED
+ db SFX_BATTLE_25, $11,$e0 ; GROWTH
+ db SFX_BATTLE_12, $20,$e0 ; RAZOR_LEAF
+ db SFX_BATTLE_2E, $00,$80 ; SOLARBEAM
+ db SFX_BATTLE_1C, $00,$80 ; POISONPOWDER
+ db SFX_BATTLE_1C, $11,$a0 ; STUN_SPORE
+ db SFX_BATTLE_1C, $01,$c0 ; SLEEP_POWDER
+ db SFX_BATTLE_13, $14,$c0 ; PETAL_DANCE
+ db SFX_BATTLE_1B, $02,$a0 ; STRING_SHOT
+ db SFX_BATTLE_29, $f0,$80 ; DRAGON_RAGE
+ db SFX_BATTLE_29, $20,$c0 ; FIRE_SPIN
+ db SFX_BATTLE_2F, $00,$20 ; THUNDERSHOCK
+ db SFX_BATTLE_2F, $20,$80 ; THUNDERBOLT
+ db SFX_BATTLE_2E, $12,$60 ; THUNDER_WAVE
+ db SFX_BATTLE_26, $00,$80 ; THUNDER
+ db SFX_BATTLE_14, $01,$e0 ; ROCK_THROW
+ db SFX_BATTLE_29, $0f,$e0 ; EARTHQUAKE
+ db SFX_BATTLE_29, $11,$20 ; FISSURE
+ db SFX_DAMAGE, $10,$40 ; DIG
+ db SFX_BATTLE_0F, $10,$c0 ; TOXIC
+ db SFX_BATTLE_14, $00,$20 ; CONFUSION
+ db SFX_PSYCHIC_M, $00,$80 ; PSYCHIC_M
+ db SFX_BATTLE_35, $11,$18 ; HYPNOSIS
+ db SFX_BATTLE_09, $20,$c0 ; MEDITATE
+ db SFX_FAINT_FALL, $20,$c0 ; AGILITY
+ db SFX_BATTLE_25, $00,$10 ; QUICK_ATTACK
+ db SFX_BATTLE_26, $f0,$20 ; RAGE
+ db SFX_BATTLE_33, $f0,$c0 ; TELEPORT
+ db SFX_NOT_VERY_EFFECTIVE,$f0,$e0 ; NIGHT_SHADE
+ db SFX_BATTLE_09, $f0,$40 ; MIMIC
+ db SFX_BATTLE_31, $00,$80 ; SCREECH
+ db SFX_BATTLE_33, $80,$40 ; DOUBLE_TEAM
+ db SFX_BATTLE_33, $00,$80 ; RECOVER
+ db SFX_BATTLE_14, $11,$20 ; HARDEN
+ db SFX_BATTLE_14, $22,$10 ; MINIMIZE
+ db SFX_BATTLE_1B, $f1,$ff ; SMOKESCREEN
+ db SFX_BATTLE_13, $f1,$ff ; CONFUSE_RAY
+ db SFX_BATTLE_14, $33,$30 ; WITHDRAW
+ db SFX_BATTLE_32, $40,$c0 ; DEFENSE_CURL
+ db SFX_BATTLE_0E, $20,$20 ; BARRIER
+ db SFX_BATTLE_0E, $f0,$10 ; LIGHT_SCREEN
+ db SFX_BATTLE_0F, $f8,$10 ; HAZE
+ db SFX_NOT_VERY_EFFECTIVE,$f0,$10 ; REFLECT
+ db SFX_BATTLE_25, $00,$80 ; FOCUS_ENERGY
+ db SFX_BATTLE_18, $00,$c0 ; BIDE
+ db SFX_BATTLE_32, $c0,$ff ; METRONOME
+ db SFX_BATTLE_09, $f2,$20 ; MIRROR_MOVE
+ db SFX_BATTLE_34, $00,$80 ; SELFDESTRUCT
+ db SFX_BATTLE_34, $00,$40 ; EGG_BOMB
+ db SFX_BATTLE_09, $00,$40 ; LICK
+ db SFX_NOT_VERY_EFFECTIVE,$10,$ff ; SMOG
+ db SFX_BATTLE_2A, $20,$20 ; SLUDGE
+ db SFX_BATTLE_32, $00,$80 ; BONE_CLUB
+ db SFX_BATTLE_29, $1f,$20 ; FIRE_BLAST
+ db SFX_BATTLE_25, $2f,$80 ; WATERFALL
+ db SFX_BATTLE_0F, $1f,$ff ; CLAMP
+ db SFX_BATTLE_2B, $1f,$60 ; SWIFT
+ db SFX_BATTLE_26, $1e,$20 ; SKULL_BASH
+ db SFX_BATTLE_26, $1f,$18 ; SPIKE_CANNON
+ db SFX_BATTLE_14, $0f,$80 ; CONSTRICT
+ db SFX_BATTLE_09, $f8,$10 ; AMNESIA
+ db SFX_FAINT_FALL, $18,$20 ; KINESIS
+ db SFX_BATTLE_32, $08,$40 ; SOFTBOILED
+ db SFX_BATTLE_17, $01,$e0 ; HI_JUMP_KICK
+ db SFX_NOT_VERY_EFFECTIVE,$09,$ff ; GLARE
+ db SFX_BATTLE_35, $42,$01 ; DREAM_EATER
+ db SFX_BATTLE_1C, $00,$ff ; POISON_GAS
+ db SFX_BATTLE_32, $08,$e0 ; BARRAGE
+ db SFX_BATTLE_24, $00,$80 ; LEECH_LIFE
+ db SFX_BATTLE_09, $88,$10 ; LOVELY_KISS
+ db SFX_BATTLE_25, $48,$ff ; SKY_ATTACK
+ db SFX_FAINT_FALL, $ff,$ff ; TRANSFORM
+ db SFX_BATTLE_24, $ff,$10 ; BUBBLE
+ db SFX_FAINT_FALL, $ff,$04 ; DIZZY_PUNCH
+ db SFX_BATTLE_1C, $01,$ff ; SPORE
+ db SFX_BATTLE_13, $f8,$ff ; FLASH
+ db SFX_BATTLE_0C, $f0,$f0 ; PSYWAVE
+ db SFX_BATTLE_0F, $08,$10 ; SPLASH
+ db SFX_BATTLE_0D, $f0,$ff ; ACID_ARMOR
+ db SFX_SUPER_EFFECTIVE, $f0,$ff ; CRABHAMMER
+ db SFX_BATTLE_34, $10,$ff ; EXPLOSION
+ db SFX_BATTLE_0E, $f0,$20 ; FURY_SWIPES
+ db SFX_BATTLE_2B, $f0,$60 ; BONEMERANG
+ db SFX_BATTLE_21, $12,$10 ; REST
+ db SFX_BATTLE_36, $f0,$20 ; ROCK_SLIDE
+ db SFX_BATTLE_1E, $12,$ff ; HYPER_FANG
+ db SFX_BATTLE_31, $80,$04 ; SHARPEN
+ db SFX_BATTLE_33, $f0,$10 ; CONVERSION
+ db SFX_BATTLE_29, $f8,$ff ; TRI_ATTACK
+ db SFX_BATTLE_26, $f0,$ff ; SUPER_FANG
+ db SFX_NOT_VERY_EFFECTIVE,$01,$ff ; SLASH
+ db SFX_BATTLE_2C, $d8,$04 ; SUBSTITUTE
+ db SFX_BATTLE_0B, $00,$80 ; STRUGGLE
+ db SFX_BATTLE_0B, $00,$80
--- /dev/null
+++ b/data/moves/tmhm_moves.asm
@@ -1,0 +1,56 @@
+TechnicalMachines:
+ db MEGA_PUNCH
+ db RAZOR_WIND
+ db SWORDS_DANCE
+ db WHIRLWIND
+ db MEGA_KICK
+ db TOXIC
+ db HORN_DRILL
+ db BODY_SLAM
+ db TAKE_DOWN
+ db DOUBLE_EDGE
+ db BUBBLEBEAM
+ db WATER_GUN
+ db ICE_BEAM
+ db BLIZZARD
+ db HYPER_BEAM
+ db PAY_DAY
+ db SUBMISSION
+ db COUNTER
+ db SEISMIC_TOSS
+ db RAGE
+ db MEGA_DRAIN
+ db SOLARBEAM
+ db DRAGON_RAGE
+ db THUNDERBOLT
+ db THUNDER
+ db EARTHQUAKE
+ db FISSURE
+ db DIG
+ db PSYCHIC_M
+ db TELEPORT
+ db MIMIC
+ db DOUBLE_TEAM
+ db REFLECT
+ db BIDE
+ db METRONOME
+ db SELFDESTRUCT
+ db EGG_BOMB
+ db FIRE_BLAST
+ db SWIFT
+ db SKULL_BASH
+ db SOFTBOILED
+ db DREAM_EATER
+ db SKY_ATTACK
+ db REST
+ db THUNDER_WAVE
+ db PSYWAVE
+ db EXPLOSION
+ db ROCK_SLIDE
+ db TRI_ATTACK
+ db SUBSTITUTE
+ db CUT
+ db FLY
+ db SURF
+ db STRENGTH
+ db FLASH
--- a/data/overworld_items.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-; items which close the item menu when used
-UsableItems_CloseMenu:
- db ESCAPE_ROPE
- db ITEMFINDER
- db POKE_FLUTE
- db OLD_ROD
- db GOOD_ROD
- db SUPER_ROD
- db $ff
--- a/data/party_items.asm
+++ /dev/null
@@ -1,39 +1,0 @@
-; items which bring up the party menu when used
-UsableItems_PartyMenu:
- db MOON_STONE
- db ANTIDOTE
- db BURN_HEAL
- db ICE_HEAL
- db AWAKENING
- db PARLYZ_HEAL
- db FULL_RESTORE
- db MAX_POTION
- db HYPER_POTION
- db SUPER_POTION
- db POTION
- db FIRE_STONE
- db THUNDER_STONE
- db WATER_STONE
- db HP_UP
- db PROTEIN
- db IRON
- db CARBOS
- db CALCIUM
- db RARE_CANDY
- db LEAF_STONE
- db FULL_HEAL
- db REVIVE
- db MAX_REVIVE
- db FRESH_WATER
- db SODA_POP
- db LEMONADE
- db X_ATTACK
- db X_DEFEND
- db X_SPEED
- db X_SPECIAL
- db PP_UP
- db ETHER
- db MAX_ETHER
- db ELIXER
- db MAX_ELIXER
- db $ff
--- /dev/null
+++ b/data/player_names.asm
@@ -1,0 +1,31 @@
+IF DEF(_RED)
+DefaultNamesPlayer:
+ db "NEW NAME"
+ next "RED"
+ next "ASH"
+ next "JACK"
+ db "@"
+
+DefaultNamesRival:
+ db "NEW NAME"
+ next "BLUE"
+ next "GARY"
+ next "JOHN"
+ db "@"
+ENDC
+
+IF DEF(_BLUE)
+DefaultNamesPlayer:
+ db "NEW NAME"
+ next "BLUE"
+ next "GARY"
+ next "JOHN"
+ db "@"
+
+DefaultNamesRival:
+ db "NEW NAME"
+ next "RED"
+ next "ASH"
+ next "JACK"
+ db "@"
+ENDC
--- /dev/null
+++ b/data/player_names_list.asm
@@ -1,0 +1,27 @@
+IF DEF(_RED)
+DefaultNamesPlayerList:
+ db "NEW NAME@"
+ db "RED@"
+ db "ASH@"
+ db "JACK@"
+
+DefaultNamesRivalList:
+ db "NEW NAME@"
+ db "BLUE@"
+ db "GARY@"
+ db "JOHN@"
+ENDC
+
+IF DEF(_BLUE)
+DefaultNamesPlayerList:
+ db "NEW NAME@"
+ db "BLUE@"
+ db "GARY@"
+ db "JOHN@"
+
+DefaultNamesRivalList:
+ db "NEW NAME@"
+ db "RED@"
+ db "ASH@"
+ db "JACK@"
+ENDC
--- a/data/pokedex_entries.asm
+++ /dev/null
@@ -1,1259 +1,0 @@
-PokedexEntryPointers:
- dw RhydonDexEntry
- dw KangaskhanDexEntry
- dw NidoranMDexEntry
- dw ClefairyDexEntry
- dw SpearowDexEntry
- dw VoltorbDexEntry
- dw NidokingDexEntry
- dw SlowbroDexEntry
- dw IvysaurDexEntry
- dw ExeggutorDexEntry
- dw LickitungDexEntry
- dw ExeggcuteDexEntry
- dw GrimerDexEntry
- dw GengarDexEntry
- dw NidoranFDexEntry
- dw NidoqueenDexEntry
- dw CuboneDexEntry
- dw RhyhornDexEntry
- dw LaprasDexEntry
- dw ArcanineDexEntry
- dw MewDexEntry
- dw GyaradosDexEntry
- dw ShellderDexEntry
- dw TentacoolDexEntry
- dw GastlyDexEntry
- dw ScytherDexEntry
- dw StaryuDexEntry
- dw BlastoiseDexEntry
- dw PinsirDexEntry
- dw TangelaDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw GrowlitheDexEntry
- dw OnixDexEntry
- dw FearowDexEntry
- dw PidgeyDexEntry
- dw SlowpokeDexEntry
- dw KadabraDexEntry
- dw GravelerDexEntry
- dw ChanseyDexEntry
- dw MachokeDexEntry
- dw MrMimeDexEntry
- dw HitmonleeDexEntry
- dw HitmonchanDexEntry
- dw ArbokDexEntry
- dw ParasectDexEntry
- dw PsyduckDexEntry
- dw DrowzeeDexEntry
- dw GolemDexEntry
- dw MissingNoDexEntry
- dw MagmarDexEntry
- dw MissingNoDexEntry
- dw ElectabuzzDexEntry
- dw MagnetonDexEntry
- dw KoffingDexEntry
- dw MissingNoDexEntry
- dw MankeyDexEntry
- dw SeelDexEntry
- dw DiglettDexEntry
- dw TaurosDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw FarfetchdDexEntry
- dw VenonatDexEntry
- dw DragoniteDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw DoduoDexEntry
- dw PoliwagDexEntry
- dw JynxDexEntry
- dw MoltresDexEntry
- dw ArticunoDexEntry
- dw ZapdosDexEntry
- dw DittoDexEntry
- dw MeowthDexEntry
- dw KrabbyDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw VulpixDexEntry
- dw NinetalesDexEntry
- dw PikachuDexEntry
- dw RaichuDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw DratiniDexEntry
- dw DragonairDexEntry
- dw KabutoDexEntry
- dw KabutopsDexEntry
- dw HorseaDexEntry
- dw SeadraDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw SandshrewDexEntry
- dw SandslashDexEntry
- dw OmanyteDexEntry
- dw OmastarDexEntry
- dw JigglypuffDexEntry
- dw WigglytuffDexEntry
- dw EeveeDexEntry
- dw FlareonDexEntry
- dw JolteonDexEntry
- dw VaporeonDexEntry
- dw MachopDexEntry
- dw ZubatDexEntry
- dw EkansDexEntry
- dw ParasDexEntry
- dw PoliwhirlDexEntry
- dw PoliwrathDexEntry
- dw WeedleDexEntry
- dw KakunaDexEntry
- dw BeedrillDexEntry
- dw MissingNoDexEntry
- dw DodrioDexEntry
- dw PrimeapeDexEntry
- dw DugtrioDexEntry
- dw VenomothDexEntry
- dw DewgongDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw CaterpieDexEntry
- dw MetapodDexEntry
- dw ButterfreeDexEntry
- dw MachampDexEntry
- dw MissingNoDexEntry
- dw GolduckDexEntry
- dw HypnoDexEntry
- dw GolbatDexEntry
- dw MewtwoDexEntry
- dw SnorlaxDexEntry
- dw MagikarpDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MukDexEntry
- dw MissingNoDexEntry
- dw KinglerDexEntry
- dw CloysterDexEntry
- dw MissingNoDexEntry
- dw ElectrodeDexEntry
- dw ClefableDexEntry
- dw WeezingDexEntry
- dw PersianDexEntry
- dw MarowakDexEntry
- dw MissingNoDexEntry
- dw HaunterDexEntry
- dw AbraDexEntry
- dw AlakazamDexEntry
- dw PidgeottoDexEntry
- dw PidgeotDexEntry
- dw StarmieDexEntry
- dw BulbasaurDexEntry
- dw VenusaurDexEntry
- dw TentacruelDexEntry
- dw MissingNoDexEntry
- dw GoldeenDexEntry
- dw SeakingDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw PonytaDexEntry
- dw RapidashDexEntry
- dw RattataDexEntry
- dw RaticateDexEntry
- dw NidorinoDexEntry
- dw NidorinaDexEntry
- dw GeodudeDexEntry
- dw PorygonDexEntry
- dw AerodactylDexEntry
- dw MissingNoDexEntry
- dw MagnemiteDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw CharmanderDexEntry
- dw SquirtleDexEntry
- dw CharmeleonDexEntry
- dw WartortleDexEntry
- dw CharizardDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw MissingNoDexEntry
- dw OddishDexEntry
- dw GloomDexEntry
- dw VileplumeDexEntry
- dw BellsproutDexEntry
- dw WeepinbellDexEntry
- dw VictreebelDexEntry
-
-; string: species name
-; height in feet, inches
-; weight in pounds
-; text entry
-
-RhydonDexEntry:
- db "DRILL@"
- db 6,3
- dw 2650
- TX_FAR _RhydonDexEntry
- db "@"
-
-KangaskhanDexEntry:
- db "PARENT@"
- db 7,3
- dw 1760
- TX_FAR _KangaskhanDexEntry
- db "@"
-
-NidoranMDexEntry:
- db "POISON PIN@"
- db 1,8
- dw 200
- TX_FAR _NidoranMDexEntry
- db "@"
-
-ClefairyDexEntry:
- db "FAIRY@"
- db 2,0
- dw 170
- TX_FAR _ClefairyDexEntry
- db "@"
-
-SpearowDexEntry:
- db "TINY BIRD@"
- db 1,0
- dw 40
- TX_FAR _SpearowDexEntry
- db "@"
-
-VoltorbDexEntry:
- db "BALL@"
- db 1,8
- dw 230
- TX_FAR _VoltorbDexEntry
- db "@"
-
-NidokingDexEntry:
- db "DRILL@"
- db 4,7
- dw 1370
- TX_FAR _NidokingDexEntry
- db "@"
-
-SlowbroDexEntry:
- db "HERMITCRAB@"
- db 5,3
- dw 1730
- TX_FAR _SlowbroDexEntry
- db "@"
-
-IvysaurDexEntry:
- db "SEED@"
- db 3,3
- dw 290
- TX_FAR _IvysaurDexEntry
- db "@"
-
-ExeggutorDexEntry:
- db "COCONUT@"
- db 6,7
- dw 2650
- TX_FAR _ExeggutorDexEntry
- db "@"
-
-LickitungDexEntry:
- db "LICKING@"
- db 3,11
- dw 1440
- TX_FAR _LickitungDexEntry
- db "@"
-
-ExeggcuteDexEntry:
- db "EGG@"
- db 1,4
- dw 60
- TX_FAR _ExeggcuteDexEntry
- db "@"
-
-GrimerDexEntry:
- db "SLUDGE@"
- db 2,11
- dw 660
- TX_FAR _GrimerDexEntry
- db "@"
-
-GengarDexEntry:
- db "SHADOW@"
- db 4,11
- dw 890
- TX_FAR _GengarDexEntry
- db "@"
-
-NidoranFDexEntry:
- db "POISON PIN@"
- db 1,4
- dw 150
- TX_FAR _NidoranFDexEntry
- db "@"
-
-NidoqueenDexEntry:
- db "DRILL@"
- db 4,3
- dw 1320
- TX_FAR _NidoqueenDexEntry
- db "@"
-
-CuboneDexEntry:
- db "LONELY@"
- db 1,4
- dw 140
- TX_FAR _CuboneDexEntry
- db "@"
-
-RhyhornDexEntry:
- db "SPIKES@"
- db 3,3
- dw 2540
- TX_FAR _RhyhornDexEntry
- db "@"
-
-LaprasDexEntry:
- db "TRANSPORT@"
- db 8,2
- dw 4850
- TX_FAR _LaprasDexEntry
- db "@"
-
-ArcanineDexEntry:
- db "LEGENDARY@"
- db 6,3
- dw 3420
- TX_FAR _ArcanineDexEntry
- db "@"
-
-MewDexEntry:
- db "NEW SPECIE@"
- db 1,4
- dw 90
- TX_FAR _MewDexEntry
- db "@"
-
-GyaradosDexEntry:
- db "ATROCIOUS@"
- db 21,4
- dw 5180
- TX_FAR _GyaradosDexEntry
- db "@"
-
-ShellderDexEntry:
- db "BIVALVE@"
- db 1,0
- dw 90
- TX_FAR _ShellderDexEntry
- db "@"
-
-TentacoolDexEntry:
- db "JELLYFISH@"
- db 2,11
- dw 1000
- TX_FAR _TentacoolDexEntry
- db "@"
-
-GastlyDexEntry:
- db "GAS@"
- db 4,3
- dw 2
- TX_FAR _GastlyDexEntry
- db "@"
-
-ScytherDexEntry:
- db "MANTIS@"
- db 4,11
- dw 1230
- TX_FAR _ScytherDexEntry
- db "@"
-
-StaryuDexEntry:
- db "STARSHAPE@"
- db 2,7
- dw 760
- TX_FAR _StaryuDexEntry
- db "@"
-
-BlastoiseDexEntry:
- db "SHELLFISH@"
- db 5,3
- dw 1890
- TX_FAR _BlastoiseDexEntry
- db "@"
-
-PinsirDexEntry:
- db "STAGBEETLE@"
- db 4,11
- dw 1210
- TX_FAR _PinsirDexEntry
- db "@"
-
-TangelaDexEntry:
- db "VINE@"
- db 3,3
- dw 770
- TX_FAR _TangelaDexEntry
- db "@"
-
-GrowlitheDexEntry:
- db "PUPPY@"
- db 2,4
- dw 420
- TX_FAR _GrowlitheDexEntry
- db "@"
-
-OnixDexEntry:
- db "ROCK SNAKE@"
- db 28,10
- dw 4630
- TX_FAR _OnixDexEntry
- db "@"
-
-FearowDexEntry:
- db "BEAK@"
- db 3,11
- dw 840
- TX_FAR _FearowDexEntry
- db "@"
-
-PidgeyDexEntry:
- db "TINY BIRD@"
- db 1,0
- dw 40
- TX_FAR _PidgeyDexEntry
- db "@"
-
-SlowpokeDexEntry:
- db "DOPEY@"
- db 3,11
- dw 790
- TX_FAR _SlowpokeDexEntry
- db "@"
-
-KadabraDexEntry:
- db "PSI@"
- db 4,3
- dw 1250
- TX_FAR _KadabraDexEntry
- db "@"
-
-GravelerDexEntry:
- db "ROCK@"
- db 3,3
- dw 2320
- TX_FAR _GravelerDexEntry
- db "@"
-
-ChanseyDexEntry:
- db "EGG@"
- db 3,7
- dw 760
- TX_FAR _ChanseyDexEntry
- db "@"
-
-MachokeDexEntry:
- db "SUPERPOWER@"
- db 4,11
- dw 1550
- TX_FAR _MachokeDexEntry
- db "@"
-
-MrMimeDexEntry:
- db "BARRIER@"
- db 4,3
- dw 1200
- TX_FAR _MrMimeDexEntry
- db "@"
-
-HitmonleeDexEntry:
- db "KICKING@"
- db 4,11
- dw 1100
- TX_FAR _HitmonleeDexEntry
- db "@"
-
-HitmonchanDexEntry:
- db "PUNCHING@"
- db 4,7
- dw 1110
- TX_FAR _HitmonchanDexEntry
- db "@"
-
-ArbokDexEntry:
- db "COBRA@"
- db 11,6
- dw 1430
- TX_FAR _ArbokDexEntry
- db "@"
-
-ParasectDexEntry:
- db "MUSHROOM@"
- db 3,3
- dw 650
- TX_FAR _ParasectDexEntry
- db "@"
-
-PsyduckDexEntry:
- db "DUCK@"
- db 2,7
- dw 430
- TX_FAR _PsyduckDexEntry
- db "@"
-
-DrowzeeDexEntry:
- db "HYPNOSIS@"
- db 3,3
- dw 710
- TX_FAR _DrowzeeDexEntry
- db "@"
-
-GolemDexEntry:
- db "MEGATON@"
- db 4,7
- dw 6620
- TX_FAR _GolemDexEntry
- db "@"
-
-MagmarDexEntry:
- db "SPITFIRE@"
- db 4,3
- dw 980
- TX_FAR _MagmarDexEntry
- db "@"
-
-ElectabuzzDexEntry:
- db "ELECTRIC@"
- db 3,7
- dw 660
- TX_FAR _ElectabuzzDexEntry
- db "@"
-
-MagnetonDexEntry:
- db "MAGNET@"
- db 3,3
- dw 1320
- TX_FAR _MagnetonDexEntry
- db "@"
-
-KoffingDexEntry:
- db "POISON GAS@"
- db 2,0
- dw 20
- TX_FAR _KoffingDexEntry
- db "@"
-
-MankeyDexEntry:
- db "PIG MONKEY@"
- db 1,8
- dw 620
- TX_FAR _MankeyDexEntry
- db "@"
-
-SeelDexEntry:
- db "SEA LION@"
- db 3,7
- dw 1980
- TX_FAR _SeelDexEntry
- db "@"
-
-DiglettDexEntry:
- db "MOLE@"
- db 0,8
- dw 20
- TX_FAR _DiglettDexEntry
- db "@"
-
-TaurosDexEntry:
- db "WILD BULL@"
- db 4,7
- dw 1950
- TX_FAR _TaurosDexEntry
- db "@"
-
-FarfetchdDexEntry:
- db "WILD DUCK@"
- db 2,7
- dw 330
- TX_FAR _FarfetchdDexEntry
- db "@"
-
-VenonatDexEntry:
- db "INSECT@"
- db 3,3
- dw 660
- TX_FAR _VenonatDexEntry
- db "@"
-
-DragoniteDexEntry:
- db "DRAGON@"
- db 7,3
- dw 4630
- TX_FAR _DragoniteDexEntry
- db "@"
-
-DoduoDexEntry:
- db "TWIN BIRD@"
- db 4,7
- dw 860
- TX_FAR _DoduoDexEntry
- db "@"
-
-PoliwagDexEntry:
- db "TADPOLE@"
- db 2,0
- dw 270
- TX_FAR _PoliwagDexEntry
- db "@"
-
-JynxDexEntry:
- db "HUMANSHAPE@"
- db 4,7
- dw 900
- TX_FAR _JynxDexEntry
- db "@"
-
-MoltresDexEntry:
- db "FLAME@"
- db 6,7
- dw 1320
- TX_FAR _MoltresDexEntry
- db "@"
-
-ArticunoDexEntry:
- db "FREEZE@"
- db 5,7
- dw 1220
- TX_FAR _ArticunoDexEntry
- db "@"
-
-ZapdosDexEntry:
- db "ELECTRIC@"
- db 5,3
- dw 1160
- TX_FAR _ZapdosDexEntry
- db "@"
-
-DittoDexEntry:
- db "TRANSFORM@"
- db 1,0
- dw 90
- TX_FAR _DittoDexEntry
- db "@"
-
-MeowthDexEntry:
- db "SCRATCHCAT@"
- db 1,4
- dw 90
- TX_FAR _MeowthDexEntry
- db "@"
-
-KrabbyDexEntry:
- db "RIVER CRAB@"
- db 1,4
- dw 140
- TX_FAR _KrabbyDexEntry
- db "@"
-
-VulpixDexEntry:
- db "FOX@"
- db 2,0
- dw 220
- TX_FAR _VulpixDexEntry
- db "@"
-
-NinetalesDexEntry:
- db "FOX@"
- db 3,7
- dw 440
- TX_FAR _NinetalesDexEntry
- db "@"
-
-PikachuDexEntry:
- db "MOUSE@"
- db 1,4
- dw 130
- TX_FAR _PikachuDexEntry
- db "@"
-
-RaichuDexEntry:
- db "MOUSE@"
- db 2,7
- dw 660
- TX_FAR _RaichuDexEntry
- db "@"
-
-DratiniDexEntry:
- db "DRAGON@"
- db 5,11
- dw 70
- TX_FAR _DratiniDexEntry
- db "@"
-
-DragonairDexEntry:
- db "DRAGON@"
- db 13,1
- dw 360
- TX_FAR _DragonairDexEntry
- db "@"
-
-KabutoDexEntry:
- db "SHELLFISH@"
- db 1,8
- dw 250
- TX_FAR _KabutoDexEntry
- db "@"
-
-KabutopsDexEntry:
- db "SHELLFISH@"
- db 4,3
- dw 890
- TX_FAR _KabutopsDexEntry
- db "@"
-
-HorseaDexEntry:
- db "DRAGON@"
- db 1,4
- dw 180
- TX_FAR _HorseaDexEntry
- db "@"
-
-SeadraDexEntry:
- db "DRAGON@"
- db 3,11
- dw 550
- TX_FAR _SeadraDexEntry
- db "@"
-
-SandshrewDexEntry:
- db "MOUSE@"
- db 2,0
- dw 260
- TX_FAR _SandshrewDexEntry
- db "@"
-
-SandslashDexEntry:
- db "MOUSE@"
- db 3,3
- dw 650
- TX_FAR _SandslashDexEntry
- db "@"
-
-OmanyteDexEntry:
- db "SPIRAL@"
- db 1,4
- dw 170
- TX_FAR _OmanyteDexEntry
- db "@"
-
-OmastarDexEntry:
- db "SPIRAL@"
- db 3,3
- dw 770
- TX_FAR _OmastarDexEntry
- db "@"
-
-JigglypuffDexEntry:
- db "BALLOON@"
- db 1,8
- dw 120
- TX_FAR _JigglypuffDexEntry
- db "@"
-
-WigglytuffDexEntry:
- db "BALLOON@"
- db 3,3
- dw 260
- TX_FAR _WigglytuffDexEntry
- db "@"
-
-EeveeDexEntry:
- db "EVOLUTION@"
- db 1,0
- dw 140
- TX_FAR _EeveeDexEntry
- db "@"
-
-FlareonDexEntry:
- db "FLAME@"
- db 2,11
- dw 550
- TX_FAR _FlareonDexEntry
- db "@"
-
-JolteonDexEntry:
- db "LIGHTNING@"
- db 2,7
- dw 540
- TX_FAR _JolteonDexEntry
- db "@"
-
-VaporeonDexEntry:
- db "BUBBLE JET@"
- db 3,3
- dw 640
- TX_FAR _VaporeonDexEntry
- db "@"
-
-MachopDexEntry:
- db "SUPERPOWER@"
- db 2,7
- dw 430
- TX_FAR _MachopDexEntry
- db "@"
-
-ZubatDexEntry:
- db "BAT@"
- db 2,7
- dw 170
- TX_FAR _ZubatDexEntry
- db "@"
-
-EkansDexEntry:
- db "SNAKE@"
- db 6,7
- dw 150
- TX_FAR _EkansDexEntry
- db "@"
-
-ParasDexEntry:
- db "MUSHROOM@"
- db 1,0
- dw 120
- TX_FAR _ParasDexEntry
- db "@"
-
-PoliwhirlDexEntry:
- db "TADPOLE@"
- db 3,3
- dw 440
- TX_FAR _PoliwhirlDexEntry
- db "@"
-
-PoliwrathDexEntry:
- db "TADPOLE@"
- db 4,3
- dw 1190
- TX_FAR _PoliwrathDexEntry
- db "@"
-
-WeedleDexEntry:
- db "HAIRY BUG@"
- db 1,0
- dw 70
- TX_FAR _WeedleDexEntry
- db "@"
-
-KakunaDexEntry:
- db "COCOON@"
- db 2,0
- dw 220
- TX_FAR _KakunaDexEntry
- db "@"
-
-BeedrillDexEntry:
- db "POISON BEE@"
- db 3,3
- dw 650
- TX_FAR _BeedrillDexEntry
- db "@"
-
-DodrioDexEntry:
- db "TRIPLEBIRD@"
- db 5,11
- dw 1880
- TX_FAR _DodrioDexEntry
- db "@"
-
-PrimeapeDexEntry:
- db "PIG MONKEY@"
- db 3,3
- dw 710
- TX_FAR _PrimeapeDexEntry
- db "@"
-
-DugtrioDexEntry:
- db "MOLE@"
- db 2,4
- dw 730
- TX_FAR _DugtrioDexEntry
- db "@"
-
-VenomothDexEntry:
- db "POISONMOTH@"
- db 4,11
- dw 280
- TX_FAR _VenomothDexEntry
- db "@"
-
-DewgongDexEntry:
- db "SEA LION@"
- db 5,7
- dw 2650
- TX_FAR _DewgongDexEntry
- db "@"
-
-CaterpieDexEntry:
- db "WORM@"
- db 1,0
- dw 60
- TX_FAR _CaterpieDexEntry
- db "@"
-
-MetapodDexEntry:
- db "COCOON@"
- db 2,4
- dw 220
- TX_FAR _MetapodDexEntry
- db "@"
-
-ButterfreeDexEntry:
- db "BUTTERFLY@"
- db 3,7
- dw 710
- TX_FAR _ButterfreeDexEntry
- db "@"
-
-MachampDexEntry:
- db "SUPERPOWER@"
- db 5,3
- dw 2870
- TX_FAR _MachampDexEntry
- db "@"
-
-GolduckDexEntry:
- db "DUCK@"
- db 5,7
- dw 1690
- TX_FAR _GolduckDexEntry
- db "@"
-
-HypnoDexEntry:
- db "HYPNOSIS@"
- db 5,3
- dw 1670
- TX_FAR _HypnoDexEntry
- db "@"
-
-GolbatDexEntry:
- db "BAT@"
- db 5,3
- dw 1210
- TX_FAR _GolbatDexEntry
- db "@"
-
-MewtwoDexEntry:
- db "GENETIC@"
- db 6,7
- dw 2690
- TX_FAR _MewtwoDexEntry
- db "@"
-
-SnorlaxDexEntry:
- db "SLEEPING@"
- db 6,11
- dw 10140
- TX_FAR _SnorlaxDexEntry
- db "@"
-
-MagikarpDexEntry:
- db "FISH@"
- db 2,11
- dw 220
- TX_FAR _MagikarpDexEntry
- db "@"
-
-MukDexEntry:
- db "SLUDGE@"
- db 3,11
- dw 660
- TX_FAR _MukDexEntry
- db "@"
-
-KinglerDexEntry:
- db "PINCER@"
- db 4,3
- dw 1320
- TX_FAR _KinglerDexEntry
- db "@"
-
-CloysterDexEntry:
- db "BIVALVE@"
- db 4,11
- dw 2920
- TX_FAR _CloysterDexEntry
- db "@"
-
-ElectrodeDexEntry:
- db "BALL@"
- db 3,11
- dw 1470
- TX_FAR _ElectrodeDexEntry
- db "@"
-
-ClefableDexEntry:
- db "FAIRY@"
- db 4,3
- dw 880
- TX_FAR _ClefableDexEntry
- db "@"
-
-WeezingDexEntry:
- db "POISON GAS@"
- db 3,11
- dw 210
- TX_FAR _WeezingDexEntry
- db "@"
-
-PersianDexEntry:
- db "CLASSY CAT@"
- db 3,3
- dw 710
- TX_FAR _PersianDexEntry
- db "@"
-
-MarowakDexEntry:
- db "BONEKEEPER@"
- db 3,3
- dw 990
- TX_FAR _MarowakDexEntry
- db "@"
-
-HaunterDexEntry:
- db "GAS@"
- db 5,3
- dw 2
- TX_FAR _HaunterDexEntry
- db "@"
-
-AbraDexEntry:
- db "PSI@"
- db 2,11
- dw 430
- TX_FAR _AbraDexEntry
- db "@"
-
-AlakazamDexEntry:
- db "PSI@"
- db 4,11
- dw 1060
- TX_FAR _AlakazamDexEntry
- db "@"
-
-PidgeottoDexEntry:
- db "BIRD@"
- db 3,7
- dw 660
- TX_FAR _PidgeottoDexEntry
- db "@"
-
-PidgeotDexEntry:
- db "BIRD@"
- db 4,11
- dw 870
- TX_FAR _PidgeotDexEntry
- db "@"
-
-StarmieDexEntry:
- db "MYSTERIOUS@"
- db 3,7
- dw 1760
- TX_FAR _StarmieDexEntry
- db "@"
-
-BulbasaurDexEntry:
- db "SEED@"
- db 2,4
- dw 150
- TX_FAR _BulbasaurDexEntry
- db "@"
-
-VenusaurDexEntry:
- db "SEED@"
- db 6,7
- dw 2210
- TX_FAR _VenusaurDexEntry
- db "@"
-
-TentacruelDexEntry:
- db "JELLYFISH@"
- db 5,3
- dw 1210
- TX_FAR _TentacruelDexEntry
- db "@"
-
-GoldeenDexEntry:
- db "GOLDFISH@"
- db 2,0
- dw 330
- TX_FAR _GoldeenDexEntry
- db "@"
-
-SeakingDexEntry:
- db "GOLDFISH@"
- db 4,3
- dw 860
- TX_FAR _SeakingDexEntry
- db "@"
-
-PonytaDexEntry:
- db "FIRE HORSE@"
- db 3,3
- dw 660
- TX_FAR _PonytaDexEntry
- db "@"
-
-RapidashDexEntry:
- db "FIRE HORSE@"
- db 5,7
- dw 2090
- TX_FAR _RapidashDexEntry
- db "@"
-
-RattataDexEntry:
- db "RAT@"
- db 1,0
- dw 80
- TX_FAR _RattataDexEntry
- db "@"
-
-RaticateDexEntry:
- db "RAT@"
- db 2,4
- dw 410
- TX_FAR _RaticateDexEntry
- db "@"
-
-NidorinoDexEntry:
- db "POISON PIN@"
- db 2,11
- dw 430
- TX_FAR _NidorinoDexEntry
- db "@"
-
-NidorinaDexEntry:
- db "POISON PIN@"
- db 2,7
- dw 440
- TX_FAR _NidorinaDexEntry
- db "@"
-
-GeodudeDexEntry:
- db "ROCK@"
- db 1,4
- dw 440
- TX_FAR _GeodudeDexEntry
- db "@"
-
-PorygonDexEntry:
- db "VIRTUAL@"
- db 2,7
- dw 800
- TX_FAR _PorygonDexEntry
- db "@"
-
-AerodactylDexEntry:
- db "FOSSIL@"
- db 5,11
- dw 1300
- TX_FAR _AerodactylDexEntry
- db "@"
-
-MagnemiteDexEntry:
- db "MAGNET@"
- db 1,0
- dw 130
- TX_FAR _MagnemiteDexEntry
- db "@"
-
-CharmanderDexEntry:
- db "LIZARD@"
- db 2,0
- dw 190
- TX_FAR _CharmanderDexEntry
- db "@"
-
-SquirtleDexEntry:
- db "TINYTURTLE@"
- db 1,8
- dw 200
- TX_FAR _SquirtleDexEntry
- db "@"
-
-CharmeleonDexEntry:
- db "FLAME@"
- db 3,7
- dw 420
- TX_FAR _CharmeleonDexEntry
- db "@"
-
-WartortleDexEntry:
- db "TURTLE@"
- db 3,3
- dw 500
- TX_FAR _WartortleDexEntry
- db "@"
-
-CharizardDexEntry:
- db "FLAME@"
- db 5,7
- dw 2000
- TX_FAR _CharizardDexEntry
- db "@"
-
-OddishDexEntry:
- db "WEED@"
- db 1,8
- dw 120
- TX_FAR _OddishDexEntry
- db "@"
-
-GloomDexEntry:
- db "WEED@"
- db 2,7
- dw 190
- TX_FAR _GloomDexEntry
- db "@"
-
-VileplumeDexEntry:
- db "FLOWER@"
- db 3,11
- dw 410
- TX_FAR _VileplumeDexEntry
- db "@"
-
-BellsproutDexEntry:
- db "FLOWER@"
- db 2,4
- dw 90
- TX_FAR _BellsproutDexEntry
- db "@"
-
-WeepinbellDexEntry:
- db "FLYCATCHER@"
- db 3,3
- dw 140
- TX_FAR _WeepinbellDexEntry
- db "@"
-
-VictreebelDexEntry:
- db "FLYCATCHER@"
- db 5,7
- dw 340
- TX_FAR _VictreebelDexEntry
- db "@"
-
-MissingNoDexEntry:
- db "???@"
- db 10 ; 1.0 m
- db 100 ; 10.0 kg
- text "コメント さくせいちゅう@" ; コメント作成中 (Comment to be written)
--- a/data/pokedex_order.asm
+++ /dev/null
@@ -1,191 +1,0 @@
-PokedexOrder:
- db DEX_RHYDON
- db DEX_KANGASKHAN
- db DEX_NIDORAN_M
- db DEX_CLEFAIRY
- db DEX_SPEAROW
- db DEX_VOLTORB
- db DEX_NIDOKING
- db DEX_SLOWBRO
- db DEX_IVYSAUR
- db DEX_EXEGGUTOR
- db DEX_LICKITUNG
- db DEX_EXEGGCUTE
- db DEX_GRIMER
- db DEX_GENGAR
- db DEX_NIDORAN_F
- db DEX_NIDOQUEEN
- db DEX_CUBONE
- db DEX_RHYHORN
- db DEX_LAPRAS
- db DEX_ARCANINE
- db DEX_MEW
- db DEX_GYARADOS
- db DEX_SHELLDER
- db DEX_TENTACOOL
- db DEX_GASTLY
- db DEX_SCYTHER
- db DEX_STARYU
- db DEX_BLASTOISE
- db DEX_PINSIR
- db DEX_TANGELA
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_GROWLITHE
- db DEX_ONIX
- db DEX_FEAROW
- db DEX_PIDGEY
- db DEX_SLOWPOKE
- db DEX_KADABRA
- db DEX_GRAVELER
- db DEX_CHANSEY
- db DEX_MACHOKE
- db DEX_MR_MIME
- db DEX_HITMONLEE
- db DEX_HITMONCHAN
- db DEX_ARBOK
- db DEX_PARASECT
- db DEX_PSYDUCK
- db DEX_DROWZEE
- db DEX_GOLEM
- db 0 ; MISSINGNO.
- db DEX_MAGMAR
- db 0 ; MISSINGNO.
- db DEX_ELECTABUZZ
- db DEX_MAGNETON
- db DEX_KOFFING
- db 0 ; MISSINGNO.
- db DEX_MANKEY
- db DEX_SEEL
- db DEX_DIGLETT
- db DEX_TAUROS
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_FARFETCHD
- db DEX_VENONAT
- db DEX_DRAGONITE
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_DODUO
- db DEX_POLIWAG
- db DEX_JYNX
- db DEX_MOLTRES
- db DEX_ARTICUNO
- db DEX_ZAPDOS
- db DEX_DITTO
- db DEX_MEOWTH
- db DEX_KRABBY
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_VULPIX
- db DEX_NINETALES
- db DEX_PIKACHU
- db DEX_RAICHU
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_DRATINI
- db DEX_DRAGONAIR
- db DEX_KABUTO
- db DEX_KABUTOPS
- db DEX_HORSEA
- db DEX_SEADRA
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_SANDSHREW
- db DEX_SANDSLASH
- db DEX_OMANYTE
- db DEX_OMASTAR
- db DEX_JIGGLYPUFF
- db DEX_WIGGLYTUFF
- db DEX_EEVEE
- db DEX_FLAREON
- db DEX_JOLTEON
- db DEX_VAPOREON
- db DEX_MACHOP
- db DEX_ZUBAT
- db DEX_EKANS
- db DEX_PARAS
- db DEX_POLIWHIRL
- db DEX_POLIWRATH
- db DEX_WEEDLE
- db DEX_KAKUNA
- db DEX_BEEDRILL
- db 0 ; MISSINGNO.
- db DEX_DODRIO
- db DEX_PRIMEAPE
- db DEX_DUGTRIO
- db DEX_VENOMOTH
- db DEX_DEWGONG
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_CATERPIE
- db DEX_METAPOD
- db DEX_BUTTERFREE
- db DEX_MACHAMP
- db 0 ; MISSINGNO.
- db DEX_GOLDUCK
- db DEX_HYPNO
- db DEX_GOLBAT
- db DEX_MEWTWO
- db DEX_SNORLAX
- db DEX_MAGIKARP
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_MUK
- db 0 ; MISSINGNO.
- db DEX_KINGLER
- db DEX_CLOYSTER
- db 0 ; MISSINGNO.
- db DEX_ELECTRODE
- db DEX_CLEFABLE
- db DEX_WEEZING
- db DEX_PERSIAN
- db DEX_MAROWAK
- db 0 ; MISSINGNO.
- db DEX_HAUNTER
- db DEX_ABRA
- db DEX_ALAKAZAM
- db DEX_PIDGEOTTO
- db DEX_PIDGEOT
- db DEX_STARMIE
- db DEX_BULBASAUR
- db DEX_VENUSAUR
- db DEX_TENTACRUEL
- db 0 ; MISSINGNO.
- db DEX_GOLDEEN
- db DEX_SEAKING
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_PONYTA
- db DEX_RAPIDASH
- db DEX_RATTATA
- db DEX_RATICATE
- db DEX_NIDORINO
- db DEX_NIDORINA
- db DEX_GEODUDE
- db DEX_PORYGON
- db DEX_AERODACTYL
- db 0 ; MISSINGNO.
- db DEX_MAGNEMITE
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_CHARMANDER
- db DEX_SQUIRTLE
- db DEX_CHARMELEON
- db DEX_WARTORTLE
- db DEX_CHARIZARD
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db 0 ; MISSINGNO.
- db DEX_ODDISH
- db DEX_GLOOM
- db DEX_VILEPLUME
- db DEX_BELLSPROUT
- db DEX_WEEPINBELL
- db DEX_VICTREEBEL
--- /dev/null
+++ b/data/pokemon/base_stats.asm
@@ -1,0 +1,153 @@
+BaseStats::
+MonBaseStats::
+INCLUDE "data/pokemon/base_stats/bulbasaur.asm"
+MonBaseStatsEnd::
+INCLUDE "data/pokemon/base_stats/ivysaur.asm"
+INCLUDE "data/pokemon/base_stats/venusaur.asm"
+INCLUDE "data/pokemon/base_stats/charmander.asm"
+INCLUDE "data/pokemon/base_stats/charmeleon.asm"
+INCLUDE "data/pokemon/base_stats/charizard.asm"
+INCLUDE "data/pokemon/base_stats/squirtle.asm"
+INCLUDE "data/pokemon/base_stats/wartortle.asm"
+INCLUDE "data/pokemon/base_stats/blastoise.asm"
+INCLUDE "data/pokemon/base_stats/caterpie.asm"
+INCLUDE "data/pokemon/base_stats/metapod.asm"
+INCLUDE "data/pokemon/base_stats/butterfree.asm"
+INCLUDE "data/pokemon/base_stats/weedle.asm"
+INCLUDE "data/pokemon/base_stats/kakuna.asm"
+INCLUDE "data/pokemon/base_stats/beedrill.asm"
+INCLUDE "data/pokemon/base_stats/pidgey.asm"
+INCLUDE "data/pokemon/base_stats/pidgeotto.asm"
+INCLUDE "data/pokemon/base_stats/pidgeot.asm"
+INCLUDE "data/pokemon/base_stats/rattata.asm"
+INCLUDE "data/pokemon/base_stats/raticate.asm"
+INCLUDE "data/pokemon/base_stats/spearow.asm"
+INCLUDE "data/pokemon/base_stats/fearow.asm"
+INCLUDE "data/pokemon/base_stats/ekans.asm"
+INCLUDE "data/pokemon/base_stats/arbok.asm"
+INCLUDE "data/pokemon/base_stats/pikachu.asm"
+INCLUDE "data/pokemon/base_stats/raichu.asm"
+INCLUDE "data/pokemon/base_stats/sandshrew.asm"
+INCLUDE "data/pokemon/base_stats/sandslash.asm"
+INCLUDE "data/pokemon/base_stats/nidoranf.asm"
+INCLUDE "data/pokemon/base_stats/nidorina.asm"
+INCLUDE "data/pokemon/base_stats/nidoqueen.asm"
+INCLUDE "data/pokemon/base_stats/nidoranm.asm"
+INCLUDE "data/pokemon/base_stats/nidorino.asm"
+INCLUDE "data/pokemon/base_stats/nidoking.asm"
+INCLUDE "data/pokemon/base_stats/clefairy.asm"
+INCLUDE "data/pokemon/base_stats/clefable.asm"
+INCLUDE "data/pokemon/base_stats/vulpix.asm"
+INCLUDE "data/pokemon/base_stats/ninetales.asm"
+INCLUDE "data/pokemon/base_stats/jigglypuff.asm"
+INCLUDE "data/pokemon/base_stats/wigglytuff.asm"
+INCLUDE "data/pokemon/base_stats/zubat.asm"
+INCLUDE "data/pokemon/base_stats/golbat.asm"
+INCLUDE "data/pokemon/base_stats/oddish.asm"
+INCLUDE "data/pokemon/base_stats/gloom.asm"
+INCLUDE "data/pokemon/base_stats/vileplume.asm"
+INCLUDE "data/pokemon/base_stats/paras.asm"
+INCLUDE "data/pokemon/base_stats/parasect.asm"
+INCLUDE "data/pokemon/base_stats/venonat.asm"
+INCLUDE "data/pokemon/base_stats/venomoth.asm"
+INCLUDE "data/pokemon/base_stats/diglett.asm"
+INCLUDE "data/pokemon/base_stats/dugtrio.asm"
+INCLUDE "data/pokemon/base_stats/meowth.asm"
+INCLUDE "data/pokemon/base_stats/persian.asm"
+INCLUDE "data/pokemon/base_stats/psyduck.asm"
+INCLUDE "data/pokemon/base_stats/golduck.asm"
+INCLUDE "data/pokemon/base_stats/mankey.asm"
+INCLUDE "data/pokemon/base_stats/primeape.asm"
+INCLUDE "data/pokemon/base_stats/growlithe.asm"
+INCLUDE "data/pokemon/base_stats/arcanine.asm"
+INCLUDE "data/pokemon/base_stats/poliwag.asm"
+INCLUDE "data/pokemon/base_stats/poliwhirl.asm"
+INCLUDE "data/pokemon/base_stats/poliwrath.asm"
+INCLUDE "data/pokemon/base_stats/abra.asm"
+INCLUDE "data/pokemon/base_stats/kadabra.asm"
+INCLUDE "data/pokemon/base_stats/alakazam.asm"
+INCLUDE "data/pokemon/base_stats/machop.asm"
+INCLUDE "data/pokemon/base_stats/machoke.asm"
+INCLUDE "data/pokemon/base_stats/machamp.asm"
+INCLUDE "data/pokemon/base_stats/bellsprout.asm"
+INCLUDE "data/pokemon/base_stats/weepinbell.asm"
+INCLUDE "data/pokemon/base_stats/victreebel.asm"
+INCLUDE "data/pokemon/base_stats/tentacool.asm"
+INCLUDE "data/pokemon/base_stats/tentacruel.asm"
+INCLUDE "data/pokemon/base_stats/geodude.asm"
+INCLUDE "data/pokemon/base_stats/graveler.asm"
+INCLUDE "data/pokemon/base_stats/golem.asm"
+INCLUDE "data/pokemon/base_stats/ponyta.asm"
+INCLUDE "data/pokemon/base_stats/rapidash.asm"
+INCLUDE "data/pokemon/base_stats/slowpoke.asm"
+INCLUDE "data/pokemon/base_stats/slowbro.asm"
+INCLUDE "data/pokemon/base_stats/magnemite.asm"
+INCLUDE "data/pokemon/base_stats/magneton.asm"
+INCLUDE "data/pokemon/base_stats/farfetchd.asm"
+INCLUDE "data/pokemon/base_stats/doduo.asm"
+INCLUDE "data/pokemon/base_stats/dodrio.asm"
+INCLUDE "data/pokemon/base_stats/seel.asm"
+INCLUDE "data/pokemon/base_stats/dewgong.asm"
+INCLUDE "data/pokemon/base_stats/grimer.asm"
+INCLUDE "data/pokemon/base_stats/muk.asm"
+INCLUDE "data/pokemon/base_stats/shellder.asm"
+INCLUDE "data/pokemon/base_stats/cloyster.asm"
+INCLUDE "data/pokemon/base_stats/gastly.asm"
+INCLUDE "data/pokemon/base_stats/haunter.asm"
+INCLUDE "data/pokemon/base_stats/gengar.asm"
+INCLUDE "data/pokemon/base_stats/onix.asm"
+INCLUDE "data/pokemon/base_stats/drowzee.asm"
+INCLUDE "data/pokemon/base_stats/hypno.asm"
+INCLUDE "data/pokemon/base_stats/krabby.asm"
+INCLUDE "data/pokemon/base_stats/kingler.asm"
+INCLUDE "data/pokemon/base_stats/voltorb.asm"
+INCLUDE "data/pokemon/base_stats/electrode.asm"
+INCLUDE "data/pokemon/base_stats/exeggcute.asm"
+INCLUDE "data/pokemon/base_stats/exeggutor.asm"
+INCLUDE "data/pokemon/base_stats/cubone.asm"
+INCLUDE "data/pokemon/base_stats/marowak.asm"
+INCLUDE "data/pokemon/base_stats/hitmonlee.asm"
+INCLUDE "data/pokemon/base_stats/hitmonchan.asm"
+INCLUDE "data/pokemon/base_stats/lickitung.asm"
+INCLUDE "data/pokemon/base_stats/koffing.asm"
+INCLUDE "data/pokemon/base_stats/weezing.asm"
+INCLUDE "data/pokemon/base_stats/rhyhorn.asm"
+INCLUDE "data/pokemon/base_stats/rhydon.asm"
+INCLUDE "data/pokemon/base_stats/chansey.asm"
+INCLUDE "data/pokemon/base_stats/tangela.asm"
+INCLUDE "data/pokemon/base_stats/kangaskhan.asm"
+INCLUDE "data/pokemon/base_stats/horsea.asm"
+INCLUDE "data/pokemon/base_stats/seadra.asm"
+INCLUDE "data/pokemon/base_stats/goldeen.asm"
+INCLUDE "data/pokemon/base_stats/seaking.asm"
+INCLUDE "data/pokemon/base_stats/staryu.asm"
+INCLUDE "data/pokemon/base_stats/starmie.asm"
+INCLUDE "data/pokemon/base_stats/mrmime.asm"
+INCLUDE "data/pokemon/base_stats/scyther.asm"
+INCLUDE "data/pokemon/base_stats/jynx.asm"
+INCLUDE "data/pokemon/base_stats/electabuzz.asm"
+INCLUDE "data/pokemon/base_stats/magmar.asm"
+INCLUDE "data/pokemon/base_stats/pinsir.asm"
+INCLUDE "data/pokemon/base_stats/tauros.asm"
+INCLUDE "data/pokemon/base_stats/magikarp.asm"
+INCLUDE "data/pokemon/base_stats/gyarados.asm"
+INCLUDE "data/pokemon/base_stats/lapras.asm"
+INCLUDE "data/pokemon/base_stats/ditto.asm"
+INCLUDE "data/pokemon/base_stats/eevee.asm"
+INCLUDE "data/pokemon/base_stats/vaporeon.asm"
+INCLUDE "data/pokemon/base_stats/jolteon.asm"
+INCLUDE "data/pokemon/base_stats/flareon.asm"
+INCLUDE "data/pokemon/base_stats/porygon.asm"
+INCLUDE "data/pokemon/base_stats/omanyte.asm"
+INCLUDE "data/pokemon/base_stats/omastar.asm"
+INCLUDE "data/pokemon/base_stats/kabuto.asm"
+INCLUDE "data/pokemon/base_stats/kabutops.asm"
+INCLUDE "data/pokemon/base_stats/aerodactyl.asm"
+INCLUDE "data/pokemon/base_stats/snorlax.asm"
+INCLUDE "data/pokemon/base_stats/articuno.asm"
+INCLUDE "data/pokemon/base_stats/zapdos.asm"
+INCLUDE "data/pokemon/base_stats/moltres.asm"
+INCLUDE "data/pokemon/base_stats/dratini.asm"
+INCLUDE "data/pokemon/base_stats/dragonair.asm"
+INCLUDE "data/pokemon/base_stats/dragonite.asm"
+INCLUDE "data/pokemon/base_stats/mewtwo.asm"
--- /dev/null
+++ b/data/pokemon/base_stats/abra.asm
@@ -1,0 +1,28 @@
+db DEX_ABRA ; pokedex id
+db 25 ; base hp
+db 20 ; base attack
+db 15 ; base defense
+db 90 ; base speed
+db 105 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 200 ; catch rate
+db 73 ; base exp yield
+INCBIN "gfx/pokemon/front/abra.pic",0,1 ; 55, sprite dimensions
+dw AbraPicFront
+dw AbraPicBack
+; attacks known at lvl 0
+db TELEPORT
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 44,45,46
+ tmlearn 49,50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/aerodactyl.asm
@@ -1,0 +1,28 @@
+db DEX_AERODACTYL ; pokedex id
+db 80 ; base hp
+db 105 ; base attack
+db 65 ; base defense
+db 130 ; base speed
+db 60 ; base special
+db ROCK ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 202 ; base exp yield
+INCBIN "gfx/pokemon/front/aerodactyl.pic",0,1 ; 77, sprite dimensions
+dw AerodactylPicFront
+dw AerodactylPicBack
+; attacks known at lvl 0
+db WING_ATTACK
+db AGILITY
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20,23
+ tmlearn 31,32
+ tmlearn 33,34,38,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/alakazam.asm
@@ -1,0 +1,28 @@
+db DEX_ALAKAZAM ; pokedex id
+db 55 ; base hp
+db 50 ; base attack
+db 45 ; base defense
+db 120 ; base speed
+db 135 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 50 ; catch rate
+db 186 ; base exp yield
+INCBIN "gfx/pokemon/front/alakazam.pic",0,1 ; 77, sprite dimensions
+dw AlakazamPicFront
+dw AlakazamPicBack
+; attacks known at lvl 0
+db TELEPORT
+db CONFUSION
+db DISABLE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20
+ tmlearn 28,29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 44,45,46
+ tmlearn 49,50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/arbok.asm
@@ -1,0 +1,28 @@
+db DEX_ARBOK ; pokedex id
+db 60 ; base hp
+db 85 ; base attack
+db 69 ; base defense
+db 80 ; base speed
+db 65 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 90 ; catch rate
+db 147 ; base exp yield
+INCBIN "gfx/pokemon/front/arbok.pic",0,1 ; 77, sprite dimensions
+dw ArbokPicFront
+dw ArbokPicBack
+; attacks known at lvl 0
+db WRAP
+db LEER
+db POISON_STING
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,15
+ tmlearn 20,21
+ tmlearn 26,27,28,31,32
+ tmlearn 34,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/arcanine.asm
@@ -1,0 +1,28 @@
+db DEX_ARCANINE ; pokedex id
+db 90 ; base hp
+db 110 ; base attack
+db 80 ; base defense
+db 95 ; base speed
+db 80 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 75 ; catch rate
+db 213 ; base exp yield
+INCBIN "gfx/pokemon/front/arcanine.pic",0,1 ; 77, sprite dimensions
+dw ArcaninePicFront
+dw ArcaninePicBack
+; attacks known at lvl 0
+db ROAR
+db EMBER
+db LEER
+db TAKE_DOWN
+db 5 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,15
+ tmlearn 20,23
+ tmlearn 28,30,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/articuno.asm
@@ -1,0 +1,28 @@
+db DEX_ARTICUNO ; pokedex id
+db 90 ; base hp
+db 85 ; base attack
+db 100 ; base defense
+db 85 ; base speed
+db 125 ; base special
+db ICE ; species type 1
+db FLYING ; species type 2
+db 3 ; catch rate
+db 215 ; base exp yield
+INCBIN "gfx/pokemon/front/articuno.pic",0,1 ; 77, sprite dimensions
+dw ArticunoPicFront
+dw ArticunoPicBack
+; attacks known at lvl 0
+db PECK
+db ICE_BEAM
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/beedrill.asm
@@ -1,0 +1,28 @@
+db DEX_BEEDRILL ; pokedex id
+db 65 ; base hp
+db 80 ; base attack
+db 40 ; base defense
+db 75 ; base speed
+db 45 ; base special
+db BUG ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 159 ; base exp yield
+INCBIN "gfx/pokemon/front/beedrill.pic",0,1 ; 77, sprite dimensions
+dw BeedrillPicFront
+dw BeedrillPicBack
+; attacks known at lvl 0
+db FURY_ATTACK
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10,15
+ tmlearn 20,21
+ tmlearn 31,32
+ tmlearn 33,34,39,40
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/bellsprout.asm
@@ -1,0 +1,28 @@
+db DEX_BELLSPROUT ; pokedex id
+db 50 ; base hp
+db 75 ; base attack
+db 35 ; base defense
+db 40 ; base speed
+db 70 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 255 ; catch rate
+db 84 ; base exp yield
+INCBIN "gfx/pokemon/front/bellsprout.pic",0,1 ; 55, sprite dimensions
+dw BellsproutPicFront
+dw BellsproutPicBack
+; attacks known at lvl 0
+db VINE_WHIP
+db GROWTH
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/blastoise.asm
@@ -1,0 +1,28 @@
+db DEX_BLASTOISE ; pokedex id
+db 79 ; base hp
+db 83 ; base attack
+db 100 ; base defense
+db 78 ; base speed
+db 85 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 210 ; base exp yield
+INCBIN "gfx/pokemon/front/blastoise.pic",0,1 ; 77, sprite dimensions
+dw BlastoisePicFront
+dw BlastoisePicBack
+; attacks known at lvl 0
+db TACKLE
+db TAIL_WHIP
+db BUBBLE
+db WATER_GUN
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/bulbasaur.asm
@@ -1,0 +1,28 @@
+db DEX_BULBASAUR ; pokedex id
+db 45 ; base hp
+db 49 ; base attack
+db 49 ; base defense
+db 45 ; base speed
+db 65 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 64 ; base exp yield
+INCBIN "gfx/pokemon/front/bulbasaur.pic",0,1 ; 55, sprite dimensions
+dw BulbasaurPicFront
+dw BulbasaurPicBack
+; attacks known at lvl 0
+db TACKLE
+db GROWL
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/butterfree.asm
@@ -1,0 +1,28 @@
+db DEX_BUTTERFREE ; pokedex id
+db 60 ; base hp
+db 45 ; base attack
+db 50 ; base defense
+db 70 ; base speed
+db 80 ; base special
+db BUG ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 160 ; base exp yield
+INCBIN "gfx/pokemon/front/butterfree.pic",0,1 ; 77, sprite dimensions
+dw ButterfreePicFront
+dw ButterfreePicBack
+; attacks known at lvl 0
+db CONFUSION
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 29,30,31,32
+ tmlearn 33,34,39
+ tmlearn 44,46
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/caterpie.asm
@@ -1,0 +1,28 @@
+db DEX_CATERPIE ; pokedex id
+db 45 ; base hp
+db 30 ; base attack
+db 35 ; base defense
+db 45 ; base speed
+db 20 ; base special
+db BUG ; species type 1
+db BUG ; species type 2
+db 255 ; catch rate
+db 53 ; base exp yield
+INCBIN "gfx/pokemon/front/caterpie.pic",0,1 ; 55, sprite dimensions
+dw CaterpiePicFront
+dw CaterpiePicBack
+; attacks known at lvl 0
+db TACKLE
+db STRING_SHOT
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/chansey.asm
@@ -1,0 +1,28 @@
+db DEX_CHANSEY ; pokedex id
+db 250 ; base hp
+db 5 ; base attack
+db 5 ; base defense
+db 50 ; base speed
+db 105 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 30 ; catch rate
+db 255 ; base exp yield
+INCBIN "gfx/pokemon/front/chansey.pic",0,1 ; 66, sprite dimensions
+dw ChanseyPicFront
+dw ChanseyPicBack
+; attacks known at lvl 0
+db POUND
+db DOUBLESLAP
+db 0
+db 0
+db 4 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,35,37,38,40
+ tmlearn 41,44,45,46
+ tmlearn 49,50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/charizard.asm
@@ -1,0 +1,28 @@
+db DEX_CHARIZARD ; pokedex id
+db 78 ; base hp
+db 84 ; base attack
+db 78 ; base defense
+db 100 ; base speed
+db 85 ; base special
+db FIRE ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 209 ; base exp yield
+INCBIN "gfx/pokemon/front/charizard.pic",0,1 ; 77, sprite dimensions
+dw CharizardPicFront
+dw CharizardPicBack
+; attacks known at lvl 0
+db SCRATCH
+db GROWL
+db EMBER
+db LEER
+db 3 ; growth rate
+; learnset
+ tmlearn 1,3,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20,23
+ tmlearn 26,27,28,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50,51,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/charmander.asm
@@ -1,0 +1,28 @@
+db DEX_CHARMANDER ; pokedex id
+db 39 ; base hp
+db 52 ; base attack
+db 43 ; base defense
+db 65 ; base speed
+db 50 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 45 ; catch rate
+db 65 ; base exp yield
+INCBIN "gfx/pokemon/front/charmander.pic",0,1 ; 55, sprite dimensions
+dw CharmanderPicFront
+dw CharmanderPicBack
+; attacks known at lvl 0
+db SCRATCH
+db GROWL
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,3,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20,23
+ tmlearn 28,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50,51,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/charmeleon.asm
@@ -1,0 +1,28 @@
+db DEX_CHARMELEON ; pokedex id
+db 58 ; base hp
+db 64 ; base attack
+db 58 ; base defense
+db 80 ; base speed
+db 65 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 45 ; catch rate
+db 142 ; base exp yield
+INCBIN "gfx/pokemon/front/charmeleon.pic",0,1 ; 66, sprite dimensions
+dw CharmeleonPicFront
+dw CharmeleonPicBack
+; attacks known at lvl 0
+db SCRATCH
+db GROWL
+db EMBER
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,3,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20,23
+ tmlearn 28,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50,51,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/clefable.asm
@@ -1,0 +1,28 @@
+db DEX_CLEFABLE ; pokedex id
+db 95 ; base hp
+db 70 ; base attack
+db 73 ; base defense
+db 60 ; base speed
+db 85 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 25 ; catch rate
+db 129 ; base exp yield
+INCBIN "gfx/pokemon/front/clefable.pic",0,1 ; 66, sprite dimensions
+dw ClefablePicFront
+dw ClefablePicBack
+; attacks known at lvl 0
+db SING
+db DOUBLESLAP
+db MINIMIZE
+db METRONOME
+db 4 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,35,38,40
+ tmlearn 44,45,46
+ tmlearn 49,50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/clefairy.asm
@@ -1,0 +1,28 @@
+db DEX_CLEFAIRY ; pokedex id
+db 70 ; base hp
+db 45 ; base attack
+db 48 ; base defense
+db 35 ; base speed
+db 60 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 150 ; catch rate
+db 68 ; base exp yield
+INCBIN "gfx/pokemon/front/clefairy.pic",0,1 ; 55, sprite dimensions
+dw ClefairyPicFront
+dw ClefairyPicBack
+; attacks known at lvl 0
+db POUND
+db GROWL
+db 0
+db 0
+db 4 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,35,38,40
+ tmlearn 44,45,46
+ tmlearn 49,50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/cloyster.asm
@@ -1,0 +1,28 @@
+db DEX_CLOYSTER ; pokedex id
+db 50 ; base hp
+db 95 ; base attack
+db 180 ; base defense
+db 70 ; base speed
+db 85 ; base special
+db WATER ; species type 1
+db ICE ; species type 2
+db 60 ; catch rate
+db 203 ; base exp yield
+INCBIN "gfx/pokemon/front/cloyster.pic",0,1 ; 77, sprite dimensions
+dw CloysterPicFront
+dw CloysterPicBack
+; attacks known at lvl 0
+db WITHDRAW
+db SUPERSONIC
+db CLAMP
+db AURORA_BEAM
+db 5 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20
+ tmlearn 30,31,32
+ tmlearn 33,34,36,39
+ tmlearn 44,47
+ tmlearn 49,50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/cubone.asm
@@ -1,0 +1,28 @@
+db DEX_CUBONE ; pokedex id
+db 50 ; base hp
+db 50 ; base attack
+db 95 ; base defense
+db 35 ; base speed
+db 40 ; base special
+db GROUND ; species type 1
+db GROUND ; species type 2
+db 190 ; catch rate
+db 87 ; base exp yield
+INCBIN "gfx/pokemon/front/cubone.pic",0,1 ; 55, sprite dimensions
+dw CubonePicFront
+dw CubonePicBack
+; attacks known at lvl 0
+db BONE_CLUB
+db GROWL
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,38,40
+ tmlearn 44
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/dewgong.asm
@@ -1,0 +1,28 @@
+db DEX_DEWGONG ; pokedex id
+db 90 ; base hp
+db 70 ; base attack
+db 80 ; base defense
+db 70 ; base speed
+db 95 ; base special
+db WATER ; species type 1
+db ICE ; species type 2
+db 75 ; catch rate
+db 176 ; base exp yield
+INCBIN "gfx/pokemon/front/dewgong.pic",0,1 ; 66, sprite dimensions
+dw DewgongPicFront
+dw DewgongPicBack
+; attacks known at lvl 0
+db HEADBUTT
+db GROWL
+db AURORA_BEAM
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/diglett.asm
@@ -1,0 +1,28 @@
+db DEX_DIGLETT ; pokedex id
+db 10 ; base hp
+db 55 ; base attack
+db 25 ; base defense
+db 95 ; base speed
+db 45 ; base special
+db GROUND ; species type 1
+db GROUND ; species type 2
+db 255 ; catch rate
+db 81 ; base exp yield
+INCBIN "gfx/pokemon/front/diglett.pic",0,1 ; 55, sprite dimensions
+dw DiglettPicFront
+dw DiglettPicBack
+; attacks known at lvl 0
+db SCRATCH
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 26,27,28,31,32
+ tmlearn 34
+ tmlearn 44,48
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/ditto.asm
@@ -1,0 +1,28 @@
+db DEX_DITTO ; pokedex id
+db 48 ; base hp
+db 48 ; base attack
+db 48 ; base defense
+db 48 ; base speed
+db 48 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 35 ; catch rate
+db 61 ; base exp yield
+INCBIN "gfx/pokemon/front/ditto.pic",0,1 ; 55, sprite dimensions
+dw DittoPicFront
+dw DittoPicBack
+; attacks known at lvl 0
+db TRANSFORM
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/dodrio.asm
@@ -1,0 +1,28 @@
+db DEX_DODRIO ; pokedex id
+db 60 ; base hp
+db 110 ; base attack
+db 70 ; base defense
+db 100 ; base speed
+db 60 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 158 ; base exp yield
+INCBIN "gfx/pokemon/front/dodrio.pic",0,1 ; 77, sprite dimensions
+dw DodrioPicFront
+dw DodrioPicBack
+; attacks known at lvl 0
+db PECK
+db GROWL
+db FURY_ATTACK
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 4,6,8
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,40
+ tmlearn 43,44
+ tmlearn 49,50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/doduo.asm
@@ -1,0 +1,28 @@
+db DEX_DODUO ; pokedex id
+db 35 ; base hp
+db 85 ; base attack
+db 45 ; base defense
+db 75 ; base speed
+db 35 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 190 ; catch rate
+db 96 ; base exp yield
+INCBIN "gfx/pokemon/front/doduo.pic",0,1 ; 55, sprite dimensions
+dw DoduoPicFront
+dw DoduoPicBack
+; attacks known at lvl 0
+db PECK
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 4,6,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,40
+ tmlearn 43,44
+ tmlearn 49,50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/dragonair.asm
@@ -1,0 +1,28 @@
+db DEX_DRAGONAIR ; pokedex id
+db 61 ; base hp
+db 84 ; base attack
+db 65 ; base defense
+db 70 ; base speed
+db 70 ; base special
+db DRAGON ; species type 1
+db DRAGON ; species type 2
+db 45 ; catch rate
+db 144 ; base exp yield
+INCBIN "gfx/pokemon/front/dragonair.pic",0,1 ; 66, sprite dimensions
+dw DragonairPicFront
+dw DragonairPicBack
+; attacks known at lvl 0
+db WRAP
+db LEER
+db THUNDER_WAVE
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20,23,24
+ tmlearn 25,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44,45
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/dragonite.asm
@@ -1,0 +1,28 @@
+db DEX_DRAGONITE ; pokedex id
+db 91 ; base hp
+db 134 ; base attack
+db 95 ; base defense
+db 80 ; base speed
+db 100 ; base special
+db DRAGON ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 218 ; base exp yield
+INCBIN "gfx/pokemon/front/dragonite.pic",0,1 ; 77, sprite dimensions
+dw DragonitePicFront
+dw DragonitePicBack
+; attacks known at lvl 0
+db WRAP
+db LEER
+db THUNDER_WAVE
+db AGILITY
+db 5 ; growth rate
+; learnset
+ tmlearn 2,6,7,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20,23,24
+ tmlearn 25,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44,45
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/dratini.asm
@@ -1,0 +1,28 @@
+db DEX_DRATINI ; pokedex id
+db 41 ; base hp
+db 64 ; base attack
+db 45 ; base defense
+db 50 ; base speed
+db 50 ; base special
+db DRAGON ; species type 1
+db DRAGON ; species type 2
+db 45 ; catch rate
+db 67 ; base exp yield
+INCBIN "gfx/pokemon/front/dratini.pic",0,1 ; 55, sprite dimensions
+dw DratiniPicFront
+dw DratiniPicBack
+; attacks known at lvl 0
+db WRAP
+db LEER
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20,23,24
+ tmlearn 25,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44,45
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/drowzee.asm
@@ -1,0 +1,28 @@
+db DEX_DROWZEE ; pokedex id
+db 60 ; base hp
+db 48 ; base attack
+db 45 ; base defense
+db 42 ; base speed
+db 90 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 190 ; catch rate
+db 102 ; base exp yield
+INCBIN "gfx/pokemon/front/drowzee.pic",0,1 ; 66, sprite dimensions
+dw DrowzeePicFront
+dw DrowzeePicBack
+; attacks known at lvl 0
+db POUND
+db HYPNOSIS
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 42,44,45,46
+ tmlearn 49,50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/dugtrio.asm
@@ -1,0 +1,28 @@
+db DEX_DUGTRIO ; pokedex id
+db 35 ; base hp
+db 80 ; base attack
+db 50 ; base defense
+db 120 ; base speed
+db 70 ; base special
+db GROUND ; species type 1
+db GROUND ; species type 2
+db 50 ; catch rate
+db 153 ; base exp yield
+INCBIN "gfx/pokemon/front/dugtrio.pic",0,1 ; 66, sprite dimensions
+dw DugtrioPicFront
+dw DugtrioPicBack
+; attacks known at lvl 0
+db SCRATCH
+db GROWL
+db DIG
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 26,27,28,31,32
+ tmlearn 34
+ tmlearn 44,48
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/eevee.asm
@@ -1,0 +1,28 @@
+db DEX_EEVEE ; pokedex id
+db 55 ; base hp
+db 55 ; base attack
+db 50 ; base defense
+db 55 ; base speed
+db 65 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 45 ; catch rate
+db 92 ; base exp yield
+INCBIN "gfx/pokemon/front/eevee.pic",0,1 ; 55, sprite dimensions
+dw EeveePicFront
+dw EeveePicBack
+; attacks known at lvl 0
+db TACKLE
+db SAND_ATTACK
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/ekans.asm
@@ -1,0 +1,28 @@
+db DEX_EKANS ; pokedex id
+db 35 ; base hp
+db 60 ; base attack
+db 44 ; base defense
+db 55 ; base speed
+db 40 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 255 ; catch rate
+db 62 ; base exp yield
+INCBIN "gfx/pokemon/front/ekans.pic",0,1 ; 55, sprite dimensions
+dw EkansPicFront
+dw EkansPicBack
+; attacks known at lvl 0
+db WRAP
+db LEER
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10
+ tmlearn 20,21
+ tmlearn 26,27,28,31,32
+ tmlearn 34,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/electabuzz.asm
@@ -1,0 +1,28 @@
+db DEX_ELECTABUZZ ; pokedex id
+db 65 ; base hp
+db 83 ; base attack
+db 57 ; base defense
+db 105 ; base speed
+db 85 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 45 ; catch rate
+db 156 ; base exp yield
+INCBIN "gfx/pokemon/front/electabuzz.pic",0,1 ; 66, sprite dimensions
+dw ElectabuzzPicFront
+dw ElectabuzzPicBack
+; attacks known at lvl 0
+db QUICK_ATTACK
+db LEER
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,35,39,40
+ tmlearn 44,45,46
+ tmlearn 50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/electrode.asm
@@ -1,0 +1,28 @@
+db DEX_ELECTRODE ; pokedex id
+db 60 ; base hp
+db 50 ; base attack
+db 70 ; base defense
+db 140 ; base speed
+db 80 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 60 ; catch rate
+db 150 ; base exp yield
+INCBIN "gfx/pokemon/front/electrode.pic",0,1 ; 55, sprite dimensions
+dw ElectrodePicFront
+dw ElectrodePicBack
+; attacks known at lvl 0
+db TACKLE
+db SCREECH
+db SONICBOOM
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,15
+ tmlearn 20,24
+ tmlearn 25,30,31,32
+ tmlearn 33,34,36,39,40
+ tmlearn 44,45,47
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/exeggcute.asm
@@ -1,0 +1,28 @@
+db DEX_EXEGGCUTE ; pokedex id
+db 60 ; base hp
+db 40 ; base attack
+db 80 ; base defense
+db 40 ; base speed
+db 60 ; base special
+db GRASS ; species type 1
+db PSYCHIC ; species type 2
+db 90 ; catch rate
+db 98 ; base exp yield
+INCBIN "gfx/pokemon/front/exeggcute.pic",0,1 ; 77, sprite dimensions
+dw ExeggcutePicFront
+dw ExeggcutePicBack
+; attacks known at lvl 0
+db BARRAGE
+db HYPNOSIS
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 29,30,31,32
+ tmlearn 33,34,36,37
+ tmlearn 44,46,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/exeggutor.asm
@@ -1,0 +1,28 @@
+db DEX_EXEGGUTOR ; pokedex id
+db 95 ; base hp
+db 95 ; base attack
+db 85 ; base defense
+db 55 ; base speed
+db 125 ; base special
+db GRASS ; species type 1
+db PSYCHIC ; species type 2
+db 45 ; catch rate
+db 212 ; base exp yield
+INCBIN "gfx/pokemon/front/exeggutor.pic",0,1 ; 77, sprite dimensions
+dw ExeggutorPicFront
+dw ExeggutorPicBack
+; attacks known at lvl 0
+db BARRAGE
+db HYPNOSIS
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 29,30,31,32
+ tmlearn 33,34,36,37
+ tmlearn 44,46,47
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/farfetchd.asm
@@ -1,0 +1,28 @@
+db DEX_FARFETCHD ; pokedex id
+db 52 ; base hp
+db 65 ; base attack
+db 55 ; base defense
+db 60 ; base speed
+db 58 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 94 ; base exp yield
+INCBIN "gfx/pokemon/front/farfetchd.pic",0,1 ; 66, sprite dimensions
+dw FarfetchdPicFront
+dw FarfetchdPicBack
+; attacks known at lvl 0
+db PECK
+db SAND_ATTACK
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,3,4,6,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39,40
+ tmlearn 44
+ tmlearn 50,51,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/fearow.asm
@@ -1,0 +1,28 @@
+db DEX_FEAROW ; pokedex id
+db 65 ; base hp
+db 90 ; base attack
+db 65 ; base defense
+db 100 ; base speed
+db 61 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 90 ; catch rate
+db 162 ; base exp yield
+INCBIN "gfx/pokemon/front/fearow.pic",0,1 ; 77, sprite dimensions
+dw FearowPicFront
+dw FearowPicBack
+; attacks known at lvl 0
+db PECK
+db GROWL
+db LEER
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/flareon.asm
@@ -1,0 +1,28 @@
+db DEX_FLAREON ; pokedex id
+db 65 ; base hp
+db 130 ; base attack
+db 60 ; base defense
+db 65 ; base speed
+db 110 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 45 ; catch rate
+db 198 ; base exp yield
+INCBIN "gfx/pokemon/front/flareon.pic",0,1 ; 66, sprite dimensions
+dw FlareonPicFront
+dw FlareonPicBack
+; attacks known at lvl 0
+db TACKLE
+db SAND_ATTACK
+db QUICK_ATTACK
+db EMBER
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/gastly.asm
@@ -1,0 +1,28 @@
+db DEX_GASTLY ; pokedex id
+db 30 ; base hp
+db 35 ; base attack
+db 30 ; base defense
+db 80 ; base speed
+db 100 ; base special
+db GHOST ; species type 1
+db POISON ; species type 2
+db 190 ; catch rate
+db 95 ; base exp yield
+INCBIN "gfx/pokemon/front/gastly.pic",0,1 ; 77, sprite dimensions
+dw GastlyPicFront
+dw GastlyPicBack
+; attacks known at lvl 0
+db LICK
+db CONFUSE_RAY
+db NIGHT_SHADE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 0
+ tmlearn 20,21,24
+ tmlearn 25,29,31,32
+ tmlearn 34,36
+ tmlearn 42,44,46,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/gengar.asm
@@ -1,0 +1,28 @@
+db DEX_GENGAR ; pokedex id
+db 60 ; base hp
+db 65 ; base attack
+db 60 ; base defense
+db 110 ; base speed
+db 130 ; base special
+db GHOST ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 190 ; base exp yield
+INCBIN "gfx/pokemon/front/gengar.pic",0,1 ; 66, sprite dimensions
+dw GengarPicFront
+dw GengarPicBack
+; attacks known at lvl 0
+db LICK
+db CONFUSE_RAY
+db NIGHT_SHADE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20,21,24
+ tmlearn 25,29,31,32
+ tmlearn 34,35,36,40
+ tmlearn 42,44,46,47
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/geodude.asm
@@ -1,0 +1,28 @@
+db DEX_GEODUDE ; pokedex id
+db 40 ; base hp
+db 80 ; base attack
+db 100 ; base defense
+db 20 ; base speed
+db 30 ; base special
+db ROCK ; species type 1
+db GROUND ; species type 2
+db 255 ; catch rate
+db 86 ; base exp yield
+INCBIN "gfx/pokemon/front/geodude.pic",0,1 ; 55, sprite dimensions
+dw GeodudePicFront
+dw GeodudePicBack
+; attacks known at lvl 0
+db TACKLE
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,35,36,38
+ tmlearn 44,47,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/gloom.asm
@@ -1,0 +1,28 @@
+db DEX_GLOOM ; pokedex id
+db 60 ; base hp
+db 65 ; base attack
+db 70 ; base defense
+db 40 ; base speed
+db 85 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 120 ; catch rate
+db 132 ; base exp yield
+INCBIN "gfx/pokemon/front/gloom.pic",0,1 ; 66, sprite dimensions
+dw GloomPicFront
+dw GloomPicBack
+; attacks known at lvl 0
+db ABSORB
+db POISONPOWDER
+db STUN_SPORE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/golbat.asm
@@ -1,0 +1,28 @@
+db DEX_GOLBAT ; pokedex id
+db 75 ; base hp
+db 80 ; base attack
+db 70 ; base defense
+db 90 ; base speed
+db 75 ; base special
+db POISON ; species type 1
+db FLYING ; species type 2
+db 90 ; catch rate
+db 171 ; base exp yield
+INCBIN "gfx/pokemon/front/golbat.pic",0,1 ; 77, sprite dimensions
+dw GolbatPicFront
+dw GolbatPicBack
+; attacks known at lvl 0
+db LEECH_LIFE
+db SCREECH
+db BITE
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20,21
+ tmlearn 31,32
+ tmlearn 34,39
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/goldeen.asm
@@ -1,0 +1,28 @@
+db DEX_GOLDEEN ; pokedex id
+db 45 ; base hp
+db 67 ; base attack
+db 60 ; base defense
+db 63 ; base speed
+db 50 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 225 ; catch rate
+db 111 ; base exp yield
+INCBIN "gfx/pokemon/front/goldeen.pic",0,1 ; 66, sprite dimensions
+dw GoldeenPicFront
+dw GoldeenPicBack
+; attacks known at lvl 0
+db PECK
+db TAIL_WHIP
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/golduck.asm
@@ -1,0 +1,28 @@
+db DEX_GOLDUCK ; pokedex id
+db 80 ; base hp
+db 82 ; base attack
+db 78 ; base defense
+db 85 ; base speed
+db 80 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 75 ; catch rate
+db 174 ; base exp yield
+INCBIN "gfx/pokemon/front/golduck.pic",0,1 ; 77, sprite dimensions
+dw GolduckPicFront
+dw GolduckPicBack
+; attacks known at lvl 0
+db SCRATCH
+db TAIL_WHIP
+db DISABLE
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20
+ tmlearn 28,31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/golem.asm
@@ -1,0 +1,28 @@
+db DEX_GOLEM ; pokedex id
+db 80 ; base hp
+db 110 ; base attack
+db 130 ; base defense
+db 45 ; base speed
+db 55 ; base special
+db ROCK ; species type 1
+db GROUND ; species type 2
+db 45 ; catch rate
+db 177 ; base exp yield
+INCBIN "gfx/pokemon/front/golem.pic",0,1 ; 66, sprite dimensions
+dw GolemPicFront
+dw GolemPicBack
+; attacks known at lvl 0
+db TACKLE
+db DEFENSE_CURL
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,35,36,38
+ tmlearn 44,47,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/graveler.asm
@@ -1,0 +1,28 @@
+db DEX_GRAVELER ; pokedex id
+db 55 ; base hp
+db 95 ; base attack
+db 115 ; base defense
+db 35 ; base speed
+db 45 ; base special
+db ROCK ; species type 1
+db GROUND ; species type 2
+db 120 ; catch rate
+db 134 ; base exp yield
+INCBIN "gfx/pokemon/front/graveler.pic",0,1 ; 66, sprite dimensions
+dw GravelerPicFront
+dw GravelerPicBack
+; attacks known at lvl 0
+db TACKLE
+db DEFENSE_CURL
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,35,36,38
+ tmlearn 44,47,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/grimer.asm
@@ -1,0 +1,28 @@
+db DEX_GRIMER ; pokedex id
+db 80 ; base hp
+db 80 ; base attack
+db 50 ; base defense
+db 25 ; base speed
+db 40 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 190 ; catch rate
+db 90 ; base exp yield
+INCBIN "gfx/pokemon/front/grimer.pic",0,1 ; 55, sprite dimensions
+dw GrimerPicFront
+dw GrimerPicBack
+; attacks known at lvl 0
+db POUND
+db DISABLE
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 0
+ tmlearn 20,21,24
+ tmlearn 25,31,32
+ tmlearn 34,36,38
+ tmlearn 44,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/growlithe.asm
@@ -1,0 +1,28 @@
+db DEX_GROWLITHE ; pokedex id
+db 55 ; base hp
+db 70 ; base attack
+db 45 ; base defense
+db 60 ; base speed
+db 50 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 190 ; catch rate
+db 91 ; base exp yield
+INCBIN "gfx/pokemon/front/growlithe.pic",0,1 ; 55, sprite dimensions
+dw GrowlithePicFront
+dw GrowlithePicBack
+; attacks known at lvl 0
+db BITE
+db ROAR
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10
+ tmlearn 20,23
+ tmlearn 28,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/gyarados.asm
@@ -1,0 +1,28 @@
+db DEX_GYARADOS ; pokedex id
+db 95 ; base hp
+db 125 ; base attack
+db 79 ; base defense
+db 81 ; base speed
+db 100 ; base special
+db WATER ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 214 ; base exp yield
+INCBIN "gfx/pokemon/front/gyarados.pic",0,1 ; 77, sprite dimensions
+dw GyaradosPicFront
+dw GyaradosPicBack
+; attacks known at lvl 0
+db BITE
+db DRAGON_RAGE
+db LEER
+db HYDRO_PUMP
+db 5 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20,23,24
+ tmlearn 25,31,32
+ tmlearn 33,34,38,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/haunter.asm
@@ -1,0 +1,28 @@
+db DEX_HAUNTER ; pokedex id
+db 45 ; base hp
+db 50 ; base attack
+db 45 ; base defense
+db 95 ; base speed
+db 115 ; base special
+db GHOST ; species type 1
+db POISON ; species type 2
+db 90 ; catch rate
+db 126 ; base exp yield
+INCBIN "gfx/pokemon/front/haunter.pic",0,1 ; 66, sprite dimensions
+dw HaunterPicFront
+dw HaunterPicBack
+; attacks known at lvl 0
+db LICK
+db CONFUSE_RAY
+db NIGHT_SHADE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 0
+ tmlearn 20,21,24
+ tmlearn 25,29,31,32
+ tmlearn 34,36
+ tmlearn 42,44,46,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/hitmonchan.asm
@@ -1,0 +1,28 @@
+db DEX_HITMONCHAN ; pokedex id
+db 50 ; base hp
+db 105 ; base attack
+db 79 ; base defense
+db 76 ; base speed
+db 35 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 45 ; catch rate
+db 140 ; base exp yield
+INCBIN "gfx/pokemon/front/hitmonchan.pic",0,1 ; 66, sprite dimensions
+dw HitmonchanPicFront
+dw HitmonchanPicBack
+; attacks known at lvl 0
+db COMET_PUNCH
+db AGILITY
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 31,32
+ tmlearn 34,35,39,40
+ tmlearn 44
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/hitmonlee.asm
@@ -1,0 +1,28 @@
+db DEX_HITMONLEE ; pokedex id
+db 50 ; base hp
+db 120 ; base attack
+db 53 ; base defense
+db 87 ; base speed
+db 35 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 45 ; catch rate
+db 139 ; base exp yield
+INCBIN "gfx/pokemon/front/hitmonlee.pic",0,1 ; 77, sprite dimensions
+dw HitmonleePicFront
+dw HitmonleePicBack
+; attacks known at lvl 0
+db DOUBLE_KICK
+db MEDITATE
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 31,32
+ tmlearn 34,35,39,40
+ tmlearn 44
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/horsea.asm
@@ -1,0 +1,28 @@
+db DEX_HORSEA ; pokedex id
+db 30 ; base hp
+db 40 ; base attack
+db 70 ; base defense
+db 60 ; base speed
+db 70 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 225 ; catch rate
+db 83 ; base exp yield
+INCBIN "gfx/pokemon/front/horsea.pic",0,1 ; 55, sprite dimensions
+dw HorseaPicFront
+dw HorseaPicBack
+; attacks known at lvl 0
+db BUBBLE
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/hypno.asm
@@ -1,0 +1,28 @@
+db DEX_HYPNO ; pokedex id
+db 85 ; base hp
+db 73 ; base attack
+db 70 ; base defense
+db 67 ; base speed
+db 115 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 75 ; catch rate
+db 165 ; base exp yield
+INCBIN "gfx/pokemon/front/hypno.pic",0,1 ; 77, sprite dimensions
+dw HypnoPicFront
+dw HypnoPicBack
+; attacks known at lvl 0
+db POUND
+db HYPNOSIS
+db DISABLE
+db CONFUSION
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20
+ tmlearn 29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 42,44,45,46
+ tmlearn 49,50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/ivysaur.asm
@@ -1,0 +1,28 @@
+db DEX_IVYSAUR ; pokedex id
+db 60 ; base hp
+db 62 ; base attack
+db 63 ; base defense
+db 60 ; base speed
+db 80 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 141 ; base exp yield
+INCBIN "gfx/pokemon/front/ivysaur.pic",0,1 ; 66, sprite dimensions
+dw IvysaurPicFront
+dw IvysaurPicBack
+; attacks known at lvl 0
+db TACKLE
+db GROWL
+db LEECH_SEED
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/jigglypuff.asm
@@ -1,0 +1,28 @@
+db DEX_JIGGLYPUFF ; pokedex id
+db 115 ; base hp
+db 45 ; base attack
+db 20 ; base defense
+db 20 ; base speed
+db 25 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 170 ; catch rate
+db 76 ; base exp yield
+INCBIN "gfx/pokemon/front/jigglypuff.pic",0,1 ; 55, sprite dimensions
+dw JigglypuffPicFront
+dw JigglypuffPicBack
+; attacks known at lvl 0
+db SING
+db 0
+db 0
+db 0
+db 4 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,38,40
+ tmlearn 44,45,46
+ tmlearn 49,50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/jolteon.asm
@@ -1,0 +1,28 @@
+db DEX_JOLTEON ; pokedex id
+db 65 ; base hp
+db 65 ; base attack
+db 60 ; base defense
+db 130 ; base speed
+db 110 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 45 ; catch rate
+db 197 ; base exp yield
+INCBIN "gfx/pokemon/front/jolteon.pic",0,1 ; 66, sprite dimensions
+dw JolteonPicFront
+dw JolteonPicBack
+; attacks known at lvl 0
+db TACKLE
+db SAND_ATTACK
+db QUICK_ATTACK
+db THUNDERSHOCK
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,15
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,39,40
+ tmlearn 44,45
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/jynx.asm
@@ -1,0 +1,28 @@
+db DEX_JYNX ; pokedex id
+db 65 ; base hp
+db 50 ; base attack
+db 35 ; base defense
+db 95 ; base speed
+db 95 ; base special
+db ICE ; species type 1
+db PSYCHIC ; species type 2
+db 45 ; catch rate
+db 137 ; base exp yield
+INCBIN "gfx/pokemon/front/jynx.pic",0,1 ; 66, sprite dimensions
+dw JynxPicFront
+dw JynxPicBack
+; attacks known at lvl 0
+db POUND
+db LOVELY_KISS
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20
+ tmlearn 29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 44,46
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/kabuto.asm
@@ -1,0 +1,28 @@
+db DEX_KABUTO ; pokedex id
+db 30 ; base hp
+db 80 ; base attack
+db 90 ; base defense
+db 55 ; base speed
+db 45 ; base special
+db ROCK ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 119 ; base exp yield
+INCBIN "gfx/pokemon/front/kabuto.pic",0,1 ; 55, sprite dimensions
+dw KabutoPicFront
+dw KabutoPicBack
+; attacks known at lvl 0
+db SCRATCH
+db HARDEN
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/kabutops.asm
@@ -1,0 +1,28 @@
+db DEX_KABUTOPS ; pokedex id
+db 60 ; base hp
+db 115 ; base attack
+db 105 ; base defense
+db 80 ; base speed
+db 70 ; base special
+db ROCK ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 201 ; base exp yield
+INCBIN "gfx/pokemon/front/kabutops.pic",0,1 ; 66, sprite dimensions
+dw KabutopsPicFront
+dw KabutopsPicBack
+; attacks known at lvl 0
+db SCRATCH
+db HARDEN
+db ABSORB
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,3,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,19,20
+ tmlearn 31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/kadabra.asm
@@ -1,0 +1,28 @@
+db DEX_KADABRA ; pokedex id
+db 40 ; base hp
+db 35 ; base attack
+db 30 ; base defense
+db 105 ; base speed
+db 120 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 100 ; catch rate
+db 145 ; base exp yield
+INCBIN "gfx/pokemon/front/kadabra.pic",0,1 ; 66, sprite dimensions
+dw KadabraPicFront
+dw KadabraPicBack
+; attacks known at lvl 0
+db TELEPORT
+db CONFUSION
+db DISABLE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 28,29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 44,45,46
+ tmlearn 49,50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/kakuna.asm
@@ -1,0 +1,28 @@
+db DEX_KAKUNA ; pokedex id
+db 45 ; base hp
+db 25 ; base attack
+db 50 ; base defense
+db 35 ; base speed
+db 25 ; base special
+db BUG ; species type 1
+db POISON ; species type 2
+db 120 ; catch rate
+db 71 ; base exp yield
+INCBIN "gfx/pokemon/front/kakuna.pic",0,1 ; 55, sprite dimensions
+dw KakunaPicFront
+dw KakunaPicBack
+; attacks known at lvl 0
+db HARDEN
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/kangaskhan.asm
@@ -1,0 +1,28 @@
+db DEX_KANGASKHAN ; pokedex id
+db 105 ; base hp
+db 95 ; base attack
+db 80 ; base defense
+db 90 ; base speed
+db 40 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 45 ; catch rate
+db 175 ; base exp yield
+INCBIN "gfx/pokemon/front/kangaskhan.pic",0,1 ; 77, sprite dimensions
+dw KangaskhanPicFront
+dw KangaskhanPicBack
+; attacks known at lvl 0
+db COMET_PUNCH
+db RAGE
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20,24
+ tmlearn 25,26,27,31,32
+ tmlearn 34,38,40
+ tmlearn 44,48
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/kingler.asm
@@ -1,0 +1,28 @@
+db DEX_KINGLER ; pokedex id
+db 55 ; base hp
+db 130 ; base attack
+db 115 ; base defense
+db 75 ; base speed
+db 50 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 60 ; catch rate
+db 206 ; base exp yield
+INCBIN "gfx/pokemon/front/kingler.pic",0,1 ; 77, sprite dimensions
+dw KinglerPicFront
+dw KinglerPicBack
+; attacks known at lvl 0
+db BUBBLE
+db LEER
+db VICEGRIP
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34
+ tmlearn 44
+ tmlearn 50,51,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/koffing.asm
@@ -1,0 +1,28 @@
+db DEX_KOFFING ; pokedex id
+db 40 ; base hp
+db 65 ; base attack
+db 95 ; base defense
+db 35 ; base speed
+db 60 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 190 ; catch rate
+db 114 ; base exp yield
+INCBIN "gfx/pokemon/front/koffing.pic",0,1 ; 66, sprite dimensions
+dw KoffingPicFront
+dw KoffingPicBack
+; attacks known at lvl 0
+db TACKLE
+db SMOG
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 0
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 34,36,38
+ tmlearn 44,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/krabby.asm
@@ -1,0 +1,28 @@
+db DEX_KRABBY ; pokedex id
+db 30 ; base hp
+db 105 ; base attack
+db 90 ; base defense
+db 50 ; base speed
+db 25 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 225 ; catch rate
+db 115 ; base exp yield
+INCBIN "gfx/pokemon/front/krabby.pic",0,1 ; 55, sprite dimensions
+dw KrabbyPicFront
+dw KrabbyPicBack
+; attacks known at lvl 0
+db BUBBLE
+db LEER
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34
+ tmlearn 44
+ tmlearn 50,51,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/lapras.asm
@@ -1,0 +1,28 @@
+db DEX_LAPRAS ; pokedex id
+db 130 ; base hp
+db 85 ; base attack
+db 80 ; base defense
+db 60 ; base speed
+db 95 ; base special
+db WATER ; species type 1
+db ICE ; species type 2
+db 45 ; catch rate
+db 219 ; base exp yield
+INCBIN "gfx/pokemon/front/lapras.pic",0,1 ; 77, sprite dimensions
+dw LaprasPicFront
+dw LaprasPicBack
+; attacks known at lvl 0
+db WATER_GUN
+db GROWL
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20,22,23,24
+ tmlearn 25,29,31,32
+ tmlearn 33,34,40
+ tmlearn 44,46
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/lickitung.asm
@@ -1,0 +1,28 @@
+db DEX_LICKITUNG ; pokedex id
+db 90 ; base hp
+db 55 ; base attack
+db 75 ; base defense
+db 30 ; base speed
+db 60 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 45 ; catch rate
+db 127 ; base exp yield
+INCBIN "gfx/pokemon/front/lickitung.pic",0,1 ; 77, sprite dimensions
+dw LickitungPicFront
+dw LickitungPicBack
+; attacks known at lvl 0
+db WRAP
+db SUPERSONIC
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,3,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20,24
+ tmlearn 25,26,27,31,32
+ tmlearn 34,38,40
+ tmlearn 44
+ tmlearn 50,51,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/machamp.asm
@@ -1,0 +1,28 @@
+db DEX_MACHAMP ; pokedex id
+db 90 ; base hp
+db 130 ; base attack
+db 80 ; base defense
+db 55 ; base speed
+db 65 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 45 ; catch rate
+db 193 ; base exp yield
+INCBIN "gfx/pokemon/front/machamp.pic",0,1 ; 77, sprite dimensions
+dw MachampPicFront
+dw MachampPicBack
+; attacks known at lvl 0
+db KARATE_CHOP
+db LOW_KICK
+db LEER
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,35,38,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/machoke.asm
@@ -1,0 +1,28 @@
+db DEX_MACHOKE ; pokedex id
+db 80 ; base hp
+db 100 ; base attack
+db 70 ; base defense
+db 45 ; base speed
+db 50 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 90 ; catch rate
+db 146 ; base exp yield
+INCBIN "gfx/pokemon/front/machoke.pic",0,1 ; 77, sprite dimensions
+dw MachokePicFront
+dw MachokePicBack
+; attacks known at lvl 0
+db KARATE_CHOP
+db LOW_KICK
+db LEER
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,35,38,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/machop.asm
@@ -1,0 +1,28 @@
+db DEX_MACHOP ; pokedex id
+db 70 ; base hp
+db 80 ; base attack
+db 50 ; base defense
+db 35 ; base speed
+db 35 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 180 ; catch rate
+db 88 ; base exp yield
+INCBIN "gfx/pokemon/front/machop.pic",0,1 ; 55, sprite dimensions
+dw MachopPicFront
+dw MachopPicBack
+; attacks known at lvl 0
+db KARATE_CHOP
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,35,38,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/magikarp.asm
@@ -1,0 +1,28 @@
+db DEX_MAGIKARP ; pokedex id
+db 20 ; base hp
+db 10 ; base attack
+db 55 ; base defense
+db 80 ; base speed
+db 20 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 255 ; catch rate
+db 20 ; base exp yield
+INCBIN "gfx/pokemon/front/magikarp.pic",0,1 ; 66, sprite dimensions
+dw MagikarpPicFront
+dw MagikarpPicBack
+; attacks known at lvl 0
+db SPLASH
+db 0
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/magmar.asm
@@ -1,0 +1,28 @@
+db DEX_MAGMAR ; pokedex id
+db 65 ; base hp
+db 95 ; base attack
+db 57 ; base defense
+db 93 ; base speed
+db 85 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 45 ; catch rate
+db 167 ; base exp yield
+INCBIN "gfx/pokemon/front/magmar.pic",0,1 ; 66, sprite dimensions
+dw MagmarPicFront
+dw MagmarPicBack
+; attacks known at lvl 0
+db EMBER
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20
+ tmlearn 29,30,31,32
+ tmlearn 34,35,38,40
+ tmlearn 44,46
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/magnemite.asm
@@ -1,0 +1,28 @@
+db DEX_MAGNEMITE ; pokedex id
+db 25 ; base hp
+db 35 ; base attack
+db 70 ; base defense
+db 45 ; base speed
+db 95 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 190 ; catch rate
+db 89 ; base exp yield
+INCBIN "gfx/pokemon/front/magnemite.pic",0,1 ; 55, sprite dimensions
+dw MagnemitePicFront
+dw MagnemitePicBack
+; attacks known at lvl 0
+db TACKLE
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10
+ tmlearn 20,24
+ tmlearn 25,30,31,32
+ tmlearn 33,34,39
+ tmlearn 44,45
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/magneton.asm
@@ -1,0 +1,28 @@
+db DEX_MAGNETON ; pokedex id
+db 50 ; base hp
+db 60 ; base attack
+db 95 ; base defense
+db 70 ; base speed
+db 120 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 60 ; catch rate
+db 161 ; base exp yield
+INCBIN "gfx/pokemon/front/magneton.pic",0,1 ; 66, sprite dimensions
+dw MagnetonPicFront
+dw MagnetonPicBack
+; attacks known at lvl 0
+db TACKLE
+db SONICBOOM
+db THUNDERSHOCK
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,15
+ tmlearn 20,24
+ tmlearn 25,30,31,32
+ tmlearn 33,34,39
+ tmlearn 44,45
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/mankey.asm
@@ -1,0 +1,28 @@
+db DEX_MANKEY ; pokedex id
+db 40 ; base hp
+db 80 ; base attack
+db 35 ; base defense
+db 70 ; base speed
+db 35 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 190 ; catch rate
+db 74 ; base exp yield
+INCBIN "gfx/pokemon/front/mankey.pic",0,1 ; 55, sprite dimensions
+dw MankeyPicFront
+dw MankeyPicBack
+; attacks known at lvl 0
+db SCRATCH
+db LEER
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,16
+ tmlearn 17,18,19,20,24
+ tmlearn 25,28,31,32
+ tmlearn 34,35,39,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/marowak.asm
@@ -1,0 +1,28 @@
+db DEX_MAROWAK ; pokedex id
+db 60 ; base hp
+db 80 ; base attack
+db 110 ; base defense
+db 45 ; base speed
+db 50 ; base special
+db GROUND ; species type 1
+db GROUND ; species type 2
+db 75 ; catch rate
+db 124 ; base exp yield
+INCBIN "gfx/pokemon/front/marowak.pic",0,1 ; 66, sprite dimensions
+dw MarowakPicFront
+dw MarowakPicBack
+; attacks known at lvl 0
+db BONE_CLUB
+db GROWL
+db LEER
+db FOCUS_ENERGY
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,38,40
+ tmlearn 44
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/meowth.asm
@@ -1,0 +1,28 @@
+db DEX_MEOWTH ; pokedex id
+db 40 ; base hp
+db 45 ; base attack
+db 35 ; base defense
+db 90 ; base speed
+db 40 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 255 ; catch rate
+db 69 ; base exp yield
+INCBIN "gfx/pokemon/front/meowth.pic",0,1 ; 55, sprite dimensions
+dw MeowthPicFront
+dw MeowthPicBack
+; attacks known at lvl 0
+db SCRATCH
+db GROWL
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,16
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/metapod.asm
@@ -1,0 +1,28 @@
+db DEX_METAPOD ; pokedex id
+db 50 ; base hp
+db 20 ; base attack
+db 55 ; base defense
+db 30 ; base speed
+db 25 ; base special
+db BUG ; species type 1
+db BUG ; species type 2
+db 120 ; catch rate
+db 72 ; base exp yield
+INCBIN "gfx/pokemon/front/metapod.pic",0,1 ; 55, sprite dimensions
+dw MetapodPicFront
+dw MetapodPicBack
+; attacks known at lvl 0
+db HARDEN
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/mew.asm
@@ -1,0 +1,29 @@
+MewBaseStats::
+db DEX_MEW ; pokedex id
+db 100 ; base hp
+db 100 ; base attack
+db 100 ; base defense
+db 100 ; base speed
+db 100 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 45 ; catch rate
+db 64 ; base exp yield
+INCBIN "gfx/pokemon/front/mew.pic",0,1 ; 55, sprite dimensions
+dw MewPicFront
+dw MewPicBack
+; attacks known at lvl 0
+db POUND
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,2,3,4,5,6,7,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20,21,22,23,24
+ tmlearn 25,26,27,28,29,30,31,32
+ tmlearn 33,34,35,36,37,38,39,40
+ tmlearn 41,42,43,44,45,46,47,48
+ tmlearn 49,50,51,52,53,54,55,56
+db %11111111 ; usually spacing
--- /dev/null
+++ b/data/pokemon/base_stats/mewtwo.asm
@@ -1,0 +1,28 @@
+db DEX_MEWTWO ; pokedex id
+db 106 ; base hp
+db 110 ; base attack
+db 90 ; base defense
+db 130 ; base speed
+db 154 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 3 ; catch rate
+db 220 ; base exp yield
+INCBIN "gfx/pokemon/front/mewtwo.pic",0,1 ; 77, sprite dimensions
+dw MewtwoPicFront
+dw MewtwoPicBack
+; attacks known at lvl 0
+db CONFUSION
+db DISABLE
+db SWIFT
+db PSYCHIC_M
+db 5 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,35,36,38,40
+ tmlearn 44,45,46
+ tmlearn 49,50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/moltres.asm
@@ -1,0 +1,28 @@
+db DEX_MOLTRES ; pokedex id
+db 90 ; base hp
+db 100 ; base attack
+db 90 ; base defense
+db 90 ; base speed
+db 125 ; base special
+db FIRE ; species type 1
+db FLYING ; species type 2
+db 3 ; catch rate
+db 217 ; base exp yield
+INCBIN "gfx/pokemon/front/moltres.pic",0,1 ; 77, sprite dimensions
+dw MoltresPicFront
+dw MoltresPicBack
+; attacks known at lvl 0
+db PECK
+db FIRE_SPIN
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,38,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/mrmime.asm
@@ -1,0 +1,28 @@
+db DEX_MR_MIME ; pokedex id
+db 40 ; base hp
+db 45 ; base attack
+db 65 ; base defense
+db 90 ; base speed
+db 100 ; base special
+db PSYCHIC ; species type 1
+db PSYCHIC ; species type 2
+db 45 ; catch rate
+db 136 ; base exp yield
+INCBIN "gfx/pokemon/front/mr.mime.pic",0,1 ; 66, sprite dimensions
+dw MrMimePicFront
+dw MrMimePicBack
+; attacks known at lvl 0
+db CONFUSION
+db BARRIER
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,35,40
+ tmlearn 44,45,46
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/muk.asm
@@ -1,0 +1,28 @@
+db DEX_MUK ; pokedex id
+db 105 ; base hp
+db 105 ; base attack
+db 75 ; base defense
+db 50 ; base speed
+db 65 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 75 ; catch rate
+db 157 ; base exp yield
+INCBIN "gfx/pokemon/front/muk.pic",0,1 ; 77, sprite dimensions
+dw MukPicFront
+dw MukPicBack
+; attacks known at lvl 0
+db POUND
+db DISABLE
+db POISON_GAS
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 15
+ tmlearn 20,21,24
+ tmlearn 25,31,32
+ tmlearn 34,36,38
+ tmlearn 44,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/nidoking.asm
@@ -1,0 +1,28 @@
+db DEX_NIDOKING ; pokedex id
+db 81 ; base hp
+db 92 ; base attack
+db 77 ; base defense
+db 85 ; base speed
+db 75 ; base special
+db POISON ; species type 1
+db GROUND ; species type 2
+db 45 ; catch rate
+db 195 ; base exp yield
+INCBIN "gfx/pokemon/front/nidoking.pic",0,1 ; 77, sprite dimensions
+dw NidokingPicFront
+dw NidokingPicBack
+; attacks known at lvl 0
+db TACKLE
+db HORN_ATTACK
+db POISON_STING
+db THRASH
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,7,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20,24
+ tmlearn 25,26,27,31,32
+ tmlearn 33,34,38,40
+ tmlearn 44,48
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/nidoqueen.asm
@@ -1,0 +1,28 @@
+db DEX_NIDOQUEEN ; pokedex id
+db 90 ; base hp
+db 82 ; base attack
+db 87 ; base defense
+db 76 ; base speed
+db 75 ; base special
+db POISON ; species type 1
+db GROUND ; species type 2
+db 45 ; catch rate
+db 194 ; base exp yield
+INCBIN "gfx/pokemon/front/nidoqueen.pic",0,1 ; 77, sprite dimensions
+dw NidoqueenPicFront
+dw NidoqueenPicBack
+; attacks known at lvl 0
+db TACKLE
+db SCRATCH
+db TAIL_WHIP
+db BODY_SLAM
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,7,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20,24
+ tmlearn 25,26,27,31,32
+ tmlearn 33,34,38,40
+ tmlearn 44,48
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/nidoranf.asm
@@ -1,0 +1,28 @@
+db DEX_NIDORAN_F ; pokedex id
+db 55 ; base hp
+db 47 ; base attack
+db 52 ; base defense
+db 41 ; base speed
+db 40 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 235 ; catch rate
+db 59 ; base exp yield
+INCBIN "gfx/pokemon/front/nidoranf.pic",0,1 ; 55, sprite dimensions
+dw NidoranFPicFront
+dw NidoranFPicBack
+; attacks known at lvl 0
+db GROWL
+db TACKLE
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,14
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/nidoranm.asm
@@ -1,0 +1,28 @@
+db DEX_NIDORAN_M ; pokedex id
+db 46 ; base hp
+db 57 ; base attack
+db 40 ; base defense
+db 50 ; base speed
+db 40 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 235 ; catch rate
+db 60 ; base exp yield
+INCBIN "gfx/pokemon/front/nidoranm.pic",0,1 ; 55, sprite dimensions
+dw NidoranMPicFront
+dw NidoranMPicBack
+; attacks known at lvl 0
+db LEER
+db TACKLE
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,14
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/nidorina.asm
@@ -1,0 +1,28 @@
+db DEX_NIDORINA ; pokedex id
+db 70 ; base hp
+db 62 ; base attack
+db 67 ; base defense
+db 56 ; base speed
+db 55 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 120 ; catch rate
+db 117 ; base exp yield
+INCBIN "gfx/pokemon/front/nidorina.pic",0,1 ; 66, sprite dimensions
+dw NidorinaPicFront
+dw NidorinaPicBack
+; attacks known at lvl 0
+db GROWL
+db TACKLE
+db SCRATCH
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/nidorino.asm
@@ -1,0 +1,28 @@
+db DEX_NIDORINO ; pokedex id
+db 61 ; base hp
+db 72 ; base attack
+db 57 ; base defense
+db 65 ; base speed
+db 55 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 120 ; catch rate
+db 118 ; base exp yield
+INCBIN "gfx/pokemon/front/nidorino.pic",0,1 ; 66, sprite dimensions
+dw NidorinoPicFront
+dw NidorinoPicBack
+; attacks known at lvl 0
+db LEER
+db TACKLE
+db HORN_ATTACK
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/ninetales.asm
@@ -1,0 +1,28 @@
+db DEX_NINETALES ; pokedex id
+db 73 ; base hp
+db 76 ; base attack
+db 75 ; base defense
+db 100 ; base speed
+db 100 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 75 ; catch rate
+db 178 ; base exp yield
+INCBIN "gfx/pokemon/front/ninetales.pic",0,1 ; 77, sprite dimensions
+dw NinetalesPicFront
+dw NinetalesPicBack
+; attacks known at lvl 0
+db EMBER
+db TAIL_WHIP
+db QUICK_ATTACK
+db ROAR
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 28,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/oddish.asm
@@ -1,0 +1,28 @@
+db DEX_ODDISH ; pokedex id
+db 45 ; base hp
+db 50 ; base attack
+db 55 ; base defense
+db 30 ; base speed
+db 75 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 255 ; catch rate
+db 78 ; base exp yield
+INCBIN "gfx/pokemon/front/oddish.pic",0,1 ; 55, sprite dimensions
+dw OddishPicFront
+dw OddishPicBack
+; attacks known at lvl 0
+db ABSORB
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/omanyte.asm
@@ -1,0 +1,28 @@
+db DEX_OMANYTE ; pokedex id
+db 35 ; base hp
+db 40 ; base attack
+db 100 ; base defense
+db 35 ; base speed
+db 90 ; base special
+db ROCK ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 120 ; base exp yield
+INCBIN "gfx/pokemon/front/omanyte.pic",0,1 ; 55, sprite dimensions
+dw OmanytePicFront
+dw OmanytePicBack
+; attacks known at lvl 0
+db WATER_GUN
+db WITHDRAW
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/omastar.asm
@@ -1,0 +1,28 @@
+db DEX_OMASTAR ; pokedex id
+db 70 ; base hp
+db 60 ; base attack
+db 125 ; base defense
+db 55 ; base speed
+db 115 ; base special
+db ROCK ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 199 ; base exp yield
+INCBIN "gfx/pokemon/front/omastar.pic",0,1 ; 66, sprite dimensions
+dw OmastarPicFront
+dw OmastarPicBack
+; attacks known at lvl 0
+db WATER_GUN
+db WITHDRAW
+db HORN_ATTACK
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,19,20
+ tmlearn 31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/onix.asm
@@ -1,0 +1,28 @@
+db DEX_ONIX ; pokedex id
+db 35 ; base hp
+db 45 ; base attack
+db 160 ; base defense
+db 70 ; base speed
+db 30 ; base special
+db ROCK ; species type 1
+db GROUND ; species type 2
+db 45 ; catch rate
+db 108 ; base exp yield
+INCBIN "gfx/pokemon/front/onix.pic",0,1 ; 77, sprite dimensions
+dw OnixPicFront
+dw OnixPicBack
+; attacks known at lvl 0
+db TACKLE
+db SCREECH
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,36,40
+ tmlearn 44,47,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/paras.asm
@@ -1,0 +1,28 @@
+db DEX_PARAS ; pokedex id
+db 35 ; base hp
+db 70 ; base attack
+db 55 ; base defense
+db 25 ; base speed
+db 55 ; base special
+db BUG ; species type 1
+db GRASS ; species type 2
+db 190 ; catch rate
+db 70 ; base exp yield
+INCBIN "gfx/pokemon/front/paras.pic",0,1 ; 55, sprite dimensions
+dw ParasPicFront
+dw ParasPicBack
+; attacks known at lvl 0
+db SCRATCH
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 28,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/parasect.asm
@@ -1,0 +1,28 @@
+db DEX_PARASECT ; pokedex id
+db 60 ; base hp
+db 95 ; base attack
+db 80 ; base defense
+db 30 ; base speed
+db 80 ; base special
+db BUG ; species type 1
+db GRASS ; species type 2
+db 75 ; catch rate
+db 128 ; base exp yield
+INCBIN "gfx/pokemon/front/parasect.pic",0,1 ; 77, sprite dimensions
+dw ParasectPicFront
+dw ParasectPicBack
+; attacks known at lvl 0
+db SCRATCH
+db STUN_SPORE
+db LEECH_LIFE
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 28,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/persian.asm
@@ -1,0 +1,28 @@
+db DEX_PERSIAN ; pokedex id
+db 65 ; base hp
+db 70 ; base attack
+db 60 ; base defense
+db 115 ; base speed
+db 65 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 90 ; catch rate
+db 148 ; base exp yield
+INCBIN "gfx/pokemon/front/persian.pic",0,1 ; 77, sprite dimensions
+dw PersianPicFront
+dw PersianPicBack
+; attacks known at lvl 0
+db SCRATCH
+db GROWL
+db BITE
+db SCREECH
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,15,16
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/pidgeot.asm
@@ -1,0 +1,28 @@
+db DEX_PIDGEOT ; pokedex id
+db 83 ; base hp
+db 80 ; base attack
+db 75 ; base defense
+db 91 ; base speed
+db 70 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 172 ; base exp yield
+INCBIN "gfx/pokemon/front/pidgeot.pic",0,1 ; 77, sprite dimensions
+dw PidgeotPicFront
+dw PidgeotPicBack
+; attacks known at lvl 0
+db GUST
+db SAND_ATTACK
+db QUICK_ATTACK
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/pidgeotto.asm
@@ -1,0 +1,28 @@
+db DEX_PIDGEOTTO ; pokedex id
+db 63 ; base hp
+db 60 ; base attack
+db 55 ; base defense
+db 71 ; base speed
+db 50 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 120 ; catch rate
+db 113 ; base exp yield
+INCBIN "gfx/pokemon/front/pidgeotto.pic",0,1 ; 66, sprite dimensions
+dw PidgeottoPicFront
+dw PidgeottoPicBack
+; attacks known at lvl 0
+db GUST
+db SAND_ATTACK
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/pidgey.asm
@@ -1,0 +1,28 @@
+db DEX_PIDGEY ; pokedex id
+db 40 ; base hp
+db 45 ; base attack
+db 40 ; base defense
+db 56 ; base speed
+db 35 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 255 ; catch rate
+db 55 ; base exp yield
+INCBIN "gfx/pokemon/front/pidgey.pic",0,1 ; 55, sprite dimensions
+dw PidgeyPicFront
+dw PidgeyPicBack
+; attacks known at lvl 0
+db GUST
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/pikachu.asm
@@ -1,0 +1,28 @@
+db DEX_PIKACHU ; pokedex id
+db 35 ; base hp
+db 55 ; base attack
+db 30 ; base defense
+db 90 ; base speed
+db 50 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 190 ; catch rate
+db 82 ; base exp yield
+INCBIN "gfx/pokemon/front/pikachu.pic",0,1 ; 55, sprite dimensions
+dw PikachuPicFront
+dw PikachuPicBack
+; attacks known at lvl 0
+db THUNDERSHOCK
+db GROWL
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,16
+ tmlearn 17,19,20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,39,40
+ tmlearn 44,45
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/pinsir.asm
@@ -1,0 +1,28 @@
+db DEX_PINSIR ; pokedex id
+db 65 ; base hp
+db 125 ; base attack
+db 100 ; base defense
+db 85 ; base speed
+db 55 ; base special
+db BUG ; species type 1
+db BUG ; species type 2
+db 45 ; catch rate
+db 200 ; base exp yield
+INCBIN "gfx/pokemon/front/pinsir.pic",0,1 ; 77, sprite dimensions
+dw PinsirPicFront
+dw PinsirPicBack
+; attacks known at lvl 0
+db VICEGRIP
+db 0
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 17,19,20
+ tmlearn 31,32
+ tmlearn 34
+ tmlearn 44
+ tmlearn 50,51,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/poliwag.asm
@@ -1,0 +1,28 @@
+db DEX_POLIWAG ; pokedex id
+db 40 ; base hp
+db 50 ; base attack
+db 40 ; base defense
+db 90 ; base speed
+db 40 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 255 ; catch rate
+db 77 ; base exp yield
+INCBIN "gfx/pokemon/front/poliwag.pic",0,1 ; 55, sprite dimensions
+dw PoliwagPicFront
+dw PoliwagPicBack
+; attacks known at lvl 0
+db BUBBLE
+db 0
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 29,31,32
+ tmlearn 34,40
+ tmlearn 44,46
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/poliwhirl.asm
@@ -1,0 +1,28 @@
+db DEX_POLIWHIRL ; pokedex id
+db 65 ; base hp
+db 65 ; base attack
+db 65 ; base defense
+db 90 ; base speed
+db 50 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 120 ; catch rate
+db 131 ; base exp yield
+INCBIN "gfx/pokemon/front/poliwhirl.pic",0,1 ; 66, sprite dimensions
+dw PoliwhirlPicFront
+dw PoliwhirlPicBack
+; attacks known at lvl 0
+db BUBBLE
+db HYPNOSIS
+db WATER_GUN
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 17,18,19,20
+ tmlearn 26,27,29,31,32
+ tmlearn 34,35,40
+ tmlearn 44,46
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/poliwrath.asm
@@ -1,0 +1,28 @@
+db DEX_POLIWRATH ; pokedex id
+db 90 ; base hp
+db 85 ; base attack
+db 95 ; base defense
+db 70 ; base speed
+db 70 ; base special
+db WATER ; species type 1
+db FIGHTING ; species type 2
+db 45 ; catch rate
+db 185 ; base exp yield
+INCBIN "gfx/pokemon/front/poliwrath.pic",0,1 ; 77, sprite dimensions
+dw PoliwrathPicFront
+dw PoliwrathPicBack
+; attacks known at lvl 0
+db HYPNOSIS
+db WATER_GUN
+db DOUBLESLAP
+db BODY_SLAM
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20
+ tmlearn 26,27,29,31,32
+ tmlearn 34,35,40
+ tmlearn 44,46
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/ponyta.asm
@@ -1,0 +1,28 @@
+db DEX_PONYTA ; pokedex id
+db 50 ; base hp
+db 85 ; base attack
+db 55 ; base defense
+db 90 ; base speed
+db 65 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 190 ; catch rate
+db 152 ; base exp yield
+INCBIN "gfx/pokemon/front/ponyta.pic",0,1 ; 66, sprite dimensions
+dw PonytaPicFront
+dw PonytaPicBack
+; attacks known at lvl 0
+db EMBER
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/porygon.asm
@@ -1,0 +1,28 @@
+db DEX_PORYGON ; pokedex id
+db 65 ; base hp
+db 60 ; base attack
+db 70 ; base defense
+db 40 ; base speed
+db 75 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 45 ; catch rate
+db 130 ; base exp yield
+INCBIN "gfx/pokemon/front/porygon.pic",0,1 ; 66, sprite dimensions
+dw PorygonPicFront
+dw PorygonPicBack
+; attacks known at lvl 0
+db TACKLE
+db SHARPEN
+db CONVERSION
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,13,14,15
+ tmlearn 20,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,39,40
+ tmlearn 44,45,46
+ tmlearn 49,50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/primeape.asm
@@ -1,0 +1,28 @@
+db DEX_PRIMEAPE ; pokedex id
+db 65 ; base hp
+db 105 ; base attack
+db 60 ; base defense
+db 95 ; base speed
+db 60 ; base special
+db FIGHTING ; species type 1
+db FIGHTING ; species type 2
+db 75 ; catch rate
+db 149 ; base exp yield
+INCBIN "gfx/pokemon/front/primeape.pic",0,1 ; 77, sprite dimensions
+dw PrimeapePicFront
+dw PrimeapePicBack
+; attacks known at lvl 0
+db SCRATCH
+db LEER
+db KARATE_CHOP
+db FURY_SWIPES
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15,16
+ tmlearn 17,18,19,20,24
+ tmlearn 25,28,31,32
+ tmlearn 34,35,39,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/psyduck.asm
@@ -1,0 +1,28 @@
+db DEX_PSYDUCK ; pokedex id
+db 50 ; base hp
+db 52 ; base attack
+db 48 ; base defense
+db 55 ; base speed
+db 50 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 190 ; catch rate
+db 80 ; base exp yield
+INCBIN "gfx/pokemon/front/psyduck.pic",0,1 ; 55, sprite dimensions
+dw PsyduckPicFront
+dw PsyduckPicBack
+; attacks known at lvl 0
+db SCRATCH
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,16
+ tmlearn 17,18,19,20
+ tmlearn 28,31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/raichu.asm
@@ -1,0 +1,28 @@
+db DEX_RAICHU ; pokedex id
+db 60 ; base hp
+db 90 ; base attack
+db 55 ; base defense
+db 100 ; base speed
+db 90 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 75 ; catch rate
+db 122 ; base exp yield
+INCBIN "gfx/pokemon/front/raichu.pic",0,1 ; 77, sprite dimensions
+dw RaichuPicFront
+dw RaichuPicBack
+; attacks known at lvl 0
+db THUNDERSHOCK
+db GROWL
+db THUNDER_WAVE
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,15,16
+ tmlearn 17,19,20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,39,40
+ tmlearn 44,45
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/rapidash.asm
@@ -1,0 +1,28 @@
+db DEX_RAPIDASH ; pokedex id
+db 65 ; base hp
+db 100 ; base attack
+db 70 ; base defense
+db 105 ; base speed
+db 80 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 60 ; catch rate
+db 192 ; base exp yield
+INCBIN "gfx/pokemon/front/rapidash.pic",0,1 ; 77, sprite dimensions
+dw RapidashPicFront
+dw RapidashPicBack
+; attacks known at lvl 0
+db EMBER
+db TAIL_WHIP
+db STOMP
+db GROWL
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/raticate.asm
@@ -1,0 +1,28 @@
+db DEX_RATICATE ; pokedex id
+db 55 ; base hp
+db 81 ; base attack
+db 60 ; base defense
+db 97 ; base speed
+db 50 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 90 ; catch rate
+db 116 ; base exp yield
+INCBIN "gfx/pokemon/front/raticate.pic",0,1 ; 66, sprite dimensions
+dw RaticatePicFront
+dw RaticatePicBack
+; attacks known at lvl 0
+db TACKLE
+db TAIL_WHIP
+db QUICK_ATTACK
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20,24
+ tmlearn 25,28,31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/rattata.asm
@@ -1,0 +1,28 @@
+db DEX_RATTATA ; pokedex id
+db 30 ; base hp
+db 56 ; base attack
+db 35 ; base defense
+db 72 ; base speed
+db 25 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 255 ; catch rate
+db 57 ; base exp yield
+INCBIN "gfx/pokemon/front/rattata.pic",0,1 ; 55, sprite dimensions
+dw RattataPicFront
+dw RattataPicBack
+; attacks known at lvl 0
+db TACKLE
+db TAIL_WHIP
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,14
+ tmlearn 20,24
+ tmlearn 25,28,31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/rhydon.asm
@@ -1,0 +1,28 @@
+db DEX_RHYDON ; pokedex id
+db 105 ; base hp
+db 130 ; base attack
+db 120 ; base defense
+db 40 ; base speed
+db 45 ; base special
+db GROUND ; species type 1
+db ROCK ; species type 2
+db 60 ; catch rate
+db 204 ; base exp yield
+INCBIN "gfx/pokemon/front/rhydon.pic",0,1 ; 77, sprite dimensions
+dw RhydonPicFront
+dw RhydonPicBack
+; attacks known at lvl 0
+db HORN_ATTACK
+db STOMP
+db TAIL_WHIP
+db FURY_ATTACK
+db 5 ; growth rate
+; learnset
+ tmlearn 1,5,6,7,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20,24
+ tmlearn 25,26,27,28,31,32
+ tmlearn 34,38,40
+ tmlearn 44,48
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/rhyhorn.asm
@@ -1,0 +1,28 @@
+db DEX_RHYHORN ; pokedex id
+db 80 ; base hp
+db 85 ; base attack
+db 95 ; base defense
+db 25 ; base speed
+db 30 ; base special
+db GROUND ; species type 1
+db ROCK ; species type 2
+db 120 ; catch rate
+db 135 ; base exp yield
+INCBIN "gfx/pokemon/front/rhyhorn.pic",0,1 ; 77, sprite dimensions
+dw RhyhornPicFront
+dw RhyhornPicBack
+; attacks known at lvl 0
+db HORN_ATTACK
+db 0
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10
+ tmlearn 20,24
+ tmlearn 25,26,27,28,31,32
+ tmlearn 34,38,40
+ tmlearn 44,48
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/sandshrew.asm
@@ -1,0 +1,28 @@
+db DEX_SANDSHREW ; pokedex id
+db 50 ; base hp
+db 75 ; base attack
+db 85 ; base defense
+db 40 ; base speed
+db 30 ; base special
+db GROUND ; species type 1
+db GROUND ; species type 2
+db 255 ; catch rate
+db 93 ; base exp yield
+INCBIN "gfx/pokemon/front/sandshrew.pic",0,1 ; 55, sprite dimensions
+dw SandshrewPicFront
+dw SandshrewPicBack
+; attacks known at lvl 0
+db SCRATCH
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10
+ tmlearn 17,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,39,40
+ tmlearn 44,48
+ tmlearn 50,51,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/sandslash.asm
@@ -1,0 +1,28 @@
+db DEX_SANDSLASH ; pokedex id
+db 75 ; base hp
+db 100 ; base attack
+db 110 ; base defense
+db 65 ; base speed
+db 55 ; base special
+db GROUND ; species type 1
+db GROUND ; species type 2
+db 90 ; catch rate
+db 163 ; base exp yield
+INCBIN "gfx/pokemon/front/sandslash.pic",0,1 ; 66, sprite dimensions
+dw SandslashPicFront
+dw SandslashPicBack
+; attacks known at lvl 0
+db SCRATCH
+db SAND_ATTACK
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 17,19,20
+ tmlearn 26,27,28,31,32
+ tmlearn 34,39,40
+ tmlearn 44,48
+ tmlearn 50,51,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/scyther.asm
@@ -1,0 +1,28 @@
+db DEX_SCYTHER ; pokedex id
+db 70 ; base hp
+db 110 ; base attack
+db 80 ; base defense
+db 105 ; base speed
+db 55 ; base special
+db BUG ; species type 1
+db FLYING ; species type 2
+db 45 ; catch rate
+db 187 ; base exp yield
+INCBIN "gfx/pokemon/front/scyther.pic",0,1 ; 77, sprite dimensions
+dw ScytherPicFront
+dw ScytherPicBack
+; attacks known at lvl 0
+db QUICK_ATTACK
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/seadra.asm
@@ -1,0 +1,28 @@
+db DEX_SEADRA ; pokedex id
+db 55 ; base hp
+db 65 ; base attack
+db 95 ; base defense
+db 85 ; base speed
+db 95 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 75 ; catch rate
+db 155 ; base exp yield
+INCBIN "gfx/pokemon/front/seadra.pic",0,1 ; 66, sprite dimensions
+dw SeadraPicFront
+dw SeadraPicBack
+; attacks known at lvl 0
+db BUBBLE
+db SMOKESCREEN
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/seaking.asm
@@ -1,0 +1,28 @@
+db DEX_SEAKING ; pokedex id
+db 80 ; base hp
+db 92 ; base attack
+db 65 ; base defense
+db 68 ; base speed
+db 80 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 60 ; catch rate
+db 170 ; base exp yield
+INCBIN "gfx/pokemon/front/seaking.pic",0,1 ; 77, sprite dimensions
+dw SeakingPicFront
+dw SeakingPicBack
+; attacks known at lvl 0
+db PECK
+db TAIL_WHIP
+db SUPERSONIC
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/seel.asm
@@ -1,0 +1,28 @@
+db DEX_SEEL ; pokedex id
+db 65 ; base hp
+db 45 ; base attack
+db 55 ; base defense
+db 45 ; base speed
+db 70 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 190 ; catch rate
+db 100 ; base exp yield
+INCBIN "gfx/pokemon/front/seel.pic",0,1 ; 66, sprite dimensions
+dw SeelPicFront
+dw SeelPicBack
+; attacks known at lvl 0
+db HEADBUTT
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,11,12,13,14,16
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/shellder.asm
@@ -1,0 +1,28 @@
+db DEX_SHELLDER ; pokedex id
+db 30 ; base hp
+db 65 ; base attack
+db 100 ; base defense
+db 40 ; base speed
+db 45 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 190 ; catch rate
+db 97 ; base exp yield
+INCBIN "gfx/pokemon/front/shellder.pic",0,1 ; 55, sprite dimensions
+dw ShellderPicFront
+dw ShellderPicBack
+; attacks known at lvl 0
+db TACKLE
+db WITHDRAW
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20
+ tmlearn 30,31,32
+ tmlearn 33,34,36,39
+ tmlearn 44,47
+ tmlearn 49,50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/slowbro.asm
@@ -1,0 +1,28 @@
+db DEX_SLOWBRO ; pokedex id
+db 95 ; base hp
+db 75 ; base attack
+db 110 ; base defense
+db 30 ; base speed
+db 80 ; base special
+db WATER ; species type 1
+db PSYCHIC ; species type 2
+db 75 ; catch rate
+db 164 ; base exp yield
+INCBIN "gfx/pokemon/front/slowbro.pic",0,1 ; 77, sprite dimensions
+dw SlowbroPicFront
+dw SlowbroPicBack
+; attacks known at lvl 0
+db CONFUSION
+db DISABLE
+db HEADBUTT
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20
+ tmlearn 26,27,28,29,30,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44,45,46
+ tmlearn 49,50,53,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/slowpoke.asm
@@ -1,0 +1,28 @@
+db DEX_SLOWPOKE ; pokedex id
+db 90 ; base hp
+db 65 ; base attack
+db 65 ; base defense
+db 15 ; base speed
+db 40 ; base special
+db WATER ; species type 1
+db PSYCHIC ; species type 2
+db 190 ; catch rate
+db 99 ; base exp yield
+INCBIN "gfx/pokemon/front/slowpoke.pic",0,1 ; 55, sprite dimensions
+dw SlowpokePicFront
+dw SlowpokePicBack
+; attacks known at lvl 0
+db CONFUSION
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14,16
+ tmlearn 20
+ tmlearn 26,27,28,29,30,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44,45,46
+ tmlearn 49,50,53,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/snorlax.asm
@@ -1,0 +1,28 @@
+db DEX_SNORLAX ; pokedex id
+db 160 ; base hp
+db 110 ; base attack
+db 65 ; base defense
+db 30 ; base speed
+db 65 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 25 ; catch rate
+db 154 ; base exp yield
+INCBIN "gfx/pokemon/front/snorlax.pic",0,1 ; 77, sprite dimensions
+dw SnorlaxPicFront
+dw SnorlaxPicBack
+; attacks known at lvl 0
+db HEADBUTT
+db AMNESIA
+db REST
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15,16
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,26,27,29,31,32
+ tmlearn 33,34,35,36,38,40
+ tmlearn 44,46,48
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/spearow.asm
@@ -1,0 +1,28 @@
+db DEX_SPEAROW ; pokedex id
+db 40 ; base hp
+db 60 ; base attack
+db 30 ; base defense
+db 70 ; base speed
+db 31 ; base special
+db NORMAL ; species type 1
+db FLYING ; species type 2
+db 255 ; catch rate
+db 58 ; base exp yield
+INCBIN "gfx/pokemon/front/spearow.pic",0,1 ; 55, sprite dimensions
+dw SpearowPicFront
+dw SpearowPicBack
+; attacks known at lvl 0
+db PECK
+db GROWL
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 34,39
+ tmlearn 43,44
+ tmlearn 50,52
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/squirtle.asm
@@ -1,0 +1,28 @@
+db DEX_SQUIRTLE ; pokedex id
+db 44 ; base hp
+db 48 ; base attack
+db 65 ; base defense
+db 43 ; base speed
+db 50 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 66 ; base exp yield
+INCBIN "gfx/pokemon/front/squirtle.pic",0,1 ; 55, sprite dimensions
+dw SquirtlePicFront
+dw SquirtlePicBack
+; attacks known at lvl 0
+db TACKLE
+db TAIL_WHIP
+db 0
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 17,18,19,20
+ tmlearn 28,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/starmie.asm
@@ -1,0 +1,28 @@
+db DEX_STARMIE ; pokedex id
+db 60 ; base hp
+db 75 ; base attack
+db 85 ; base defense
+db 115 ; base speed
+db 100 ; base special
+db WATER ; species type 1
+db PSYCHIC ; species type 2
+db 60 ; catch rate
+db 207 ; base exp yield
+INCBIN "gfx/pokemon/front/starmie.pic",0,1 ; 66, sprite dimensions
+dw StarmiePicFront
+dw StarmiePicBack
+; attacks known at lvl 0
+db TACKLE
+db WATER_GUN
+db HARDEN
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,39,40
+ tmlearn 44,45,46
+ tmlearn 49,50,53,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/staryu.asm
@@ -1,0 +1,28 @@
+db DEX_STARYU ; pokedex id
+db 30 ; base hp
+db 45 ; base attack
+db 55 ; base defense
+db 85 ; base speed
+db 70 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 225 ; catch rate
+db 106 ; base exp yield
+INCBIN "gfx/pokemon/front/staryu.pic",0,1 ; 66, sprite dimensions
+dw StaryuPicFront
+dw StaryuPicBack
+; attacks known at lvl 0
+db TACKLE
+db 0
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,39,40
+ tmlearn 44,45,46
+ tmlearn 49,50,53,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/tangela.asm
@@ -1,0 +1,28 @@
+db DEX_TANGELA ; pokedex id
+db 65 ; base hp
+db 55 ; base attack
+db 115 ; base defense
+db 60 ; base speed
+db 100 ; base special
+db GRASS ; species type 1
+db GRASS ; species type 2
+db 45 ; catch rate
+db 166 ; base exp yield
+INCBIN "gfx/pokemon/front/tangela.pic",0,1 ; 66, sprite dimensions
+dw TangelaPicFront
+dw TangelaPicBack
+; attacks known at lvl 0
+db CONSTRICT
+db BIND
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 34,40
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/tauros.asm
@@ -1,0 +1,28 @@
+db DEX_TAUROS ; pokedex id
+db 75 ; base hp
+db 100 ; base attack
+db 95 ; base defense
+db 110 ; base speed
+db 70 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 45 ; catch rate
+db 211 ; base exp yield
+INCBIN "gfx/pokemon/front/tauros.pic",0,1 ; 77, sprite dimensions
+dw TaurosPicFront
+dw TaurosPicBack
+; attacks known at lvl 0
+db TACKLE
+db 0
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 6,7,8
+ tmlearn 9,10,13,14,15
+ tmlearn 20,24
+ tmlearn 25,26,27,31,32
+ tmlearn 34,38,40
+ tmlearn 44
+ tmlearn 50,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/tentacool.asm
@@ -1,0 +1,28 @@
+db DEX_TENTACOOL ; pokedex id
+db 40 ; base hp
+db 40 ; base attack
+db 35 ; base defense
+db 70 ; base speed
+db 100 ; base special
+db WATER ; species type 1
+db POISON ; species type 2
+db 190 ; catch rate
+db 105 ; base exp yield
+INCBIN "gfx/pokemon/front/tentacool.pic",0,1 ; 55, sprite dimensions
+dw TentacoolPicFront
+dw TentacoolPicBack
+; attacks known at lvl 0
+db ACID
+db 0
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10,11,12,13,14
+ tmlearn 20,21
+ tmlearn 31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,51,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/tentacruel.asm
@@ -1,0 +1,28 @@
+db DEX_TENTACRUEL ; pokedex id
+db 80 ; base hp
+db 70 ; base attack
+db 65 ; base defense
+db 100 ; base speed
+db 120 ; base special
+db WATER ; species type 1
+db POISON ; species type 2
+db 60 ; catch rate
+db 205 ; base exp yield
+INCBIN "gfx/pokemon/front/tentacruel.pic",0,1 ; 66, sprite dimensions
+dw TentacruelPicFront
+dw TentacruelPicBack
+; attacks known at lvl 0
+db ACID
+db SUPERSONIC
+db WRAP
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20,21
+ tmlearn 31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,51,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/vaporeon.asm
@@ -1,0 +1,28 @@
+db DEX_VAPOREON ; pokedex id
+db 130 ; base hp
+db 65 ; base attack
+db 60 ; base defense
+db 65 ; base speed
+db 110 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 196 ; base exp yield
+INCBIN "gfx/pokemon/front/vaporeon.pic",0,1 ; 66, sprite dimensions
+dw VaporeonPicFront
+dw VaporeonPicBack
+; attacks known at lvl 0
+db TACKLE
+db SAND_ATTACK
+db QUICK_ATTACK
+db WATER_GUN
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 20
+ tmlearn 31,32
+ tmlearn 33,34,39,40
+ tmlearn 44
+ tmlearn 50,53
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/venomoth.asm
@@ -1,0 +1,28 @@
+db DEX_VENOMOTH ; pokedex id
+db 70 ; base hp
+db 65 ; base attack
+db 60 ; base defense
+db 90 ; base speed
+db 90 ; base special
+db BUG ; species type 1
+db POISON ; species type 2
+db 75 ; catch rate
+db 138 ; base exp yield
+INCBIN "gfx/pokemon/front/venomoth.pic",0,1 ; 77, sprite dimensions
+dw VenomothPicFront
+dw VenomothPicBack
+; attacks known at lvl 0
+db TACKLE
+db DISABLE
+db POISONPOWDER
+db LEECH_LIFE
+db 0 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 29,30,31,32
+ tmlearn 33,34,39
+ tmlearn 44,46
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/venonat.asm
@@ -1,0 +1,28 @@
+db DEX_VENONAT ; pokedex id
+db 60 ; base hp
+db 55 ; base attack
+db 50 ; base defense
+db 45 ; base speed
+db 40 ; base special
+db BUG ; species type 1
+db POISON ; species type 2
+db 190 ; catch rate
+db 75 ; base exp yield
+INCBIN "gfx/pokemon/front/venonat.pic",0,1 ; 55, sprite dimensions
+dw VenonatPicFront
+dw VenonatPicBack
+; attacks known at lvl 0
+db TACKLE
+db DISABLE
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 29,31,32
+ tmlearn 33,34
+ tmlearn 44,46
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/venusaur.asm
@@ -1,0 +1,28 @@
+db DEX_VENUSAUR ; pokedex id
+db 80 ; base hp
+db 82 ; base attack
+db 83 ; base defense
+db 80 ; base speed
+db 100 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 208 ; base exp yield
+INCBIN "gfx/pokemon/front/venusaur.pic",0,1 ; 77, sprite dimensions
+dw VenusaurPicFront
+dw VenusaurPicBack
+; attacks known at lvl 0
+db TACKLE
+db GROWL
+db LEECH_SEED
+db VINE_WHIP
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/victreebel.asm
@@ -1,0 +1,28 @@
+db DEX_VICTREEBEL ; pokedex id
+db 80 ; base hp
+db 105 ; base attack
+db 65 ; base defense
+db 70 ; base speed
+db 100 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 191 ; base exp yield
+INCBIN "gfx/pokemon/front/victreebel.pic",0,1 ; 77, sprite dimensions
+dw VictreebelPicFront
+dw VictreebelPicBack
+; attacks known at lvl 0
+db SLEEP_POWDER
+db STUN_SPORE
+db ACID
+db RAZOR_LEAF
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/vileplume.asm
@@ -1,0 +1,28 @@
+db DEX_VILEPLUME ; pokedex id
+db 75 ; base hp
+db 80 ; base attack
+db 85 ; base defense
+db 50 ; base speed
+db 100 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 45 ; catch rate
+db 184 ; base exp yield
+INCBIN "gfx/pokemon/front/vileplume.pic",0,1 ; 77, sprite dimensions
+dw VileplumePicFront
+dw VileplumePicBack
+; attacks known at lvl 0
+db STUN_SPORE
+db SLEEP_POWDER
+db ACID
+db PETAL_DANCE
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6,8
+ tmlearn 9,10,15
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/voltorb.asm
@@ -1,0 +1,28 @@
+db DEX_VOLTORB ; pokedex id
+db 40 ; base hp
+db 30 ; base attack
+db 50 ; base defense
+db 100 ; base speed
+db 55 ; base special
+db ELECTRIC ; species type 1
+db ELECTRIC ; species type 2
+db 190 ; catch rate
+db 103 ; base exp yield
+INCBIN "gfx/pokemon/front/voltorb.pic",0,1 ; 55, sprite dimensions
+dw VoltorbPicFront
+dw VoltorbPicBack
+; attacks known at lvl 0
+db TACKLE
+db SCREECH
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 9
+ tmlearn 20,24
+ tmlearn 25,30,31,32
+ tmlearn 33,34,36,39
+ tmlearn 44,45,47
+ tmlearn 50,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/vulpix.asm
@@ -1,0 +1,28 @@
+db DEX_VULPIX ; pokedex id
+db 38 ; base hp
+db 41 ; base attack
+db 40 ; base defense
+db 65 ; base speed
+db 65 ; base special
+db FIRE ; species type 1
+db FIRE ; species type 2
+db 190 ; catch rate
+db 63 ; base exp yield
+INCBIN "gfx/pokemon/front/vulpix.pic",0,1 ; 66, sprite dimensions
+dw VulpixPicFront
+dw VulpixPicBack
+; attacks known at lvl 0
+db EMBER
+db TAIL_WHIP
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6,8
+ tmlearn 9,10
+ tmlearn 20
+ tmlearn 28,31,32
+ tmlearn 33,34,38,39,40
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/wartortle.asm
@@ -1,0 +1,28 @@
+db DEX_WARTORTLE ; pokedex id
+db 59 ; base hp
+db 63 ; base attack
+db 80 ; base defense
+db 58 ; base speed
+db 65 ; base special
+db WATER ; species type 1
+db WATER ; species type 2
+db 45 ; catch rate
+db 143 ; base exp yield
+INCBIN "gfx/pokemon/front/wartortle.pic",0,1 ; 66, sprite dimensions
+dw WartortlePicFront
+dw WartortlePicBack
+; attacks known at lvl 0
+db TACKLE
+db TAIL_WHIP
+db BUBBLE
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14
+ tmlearn 17,18,19,20
+ tmlearn 28,31,32
+ tmlearn 33,34,40
+ tmlearn 44
+ tmlearn 50,53,54
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/weedle.asm
@@ -1,0 +1,28 @@
+db DEX_WEEDLE ; pokedex id
+db 40 ; base hp
+db 35 ; base attack
+db 30 ; base defense
+db 50 ; base speed
+db 20 ; base special
+db BUG ; species type 1
+db POISON ; species type 2
+db 255 ; catch rate
+db 52 ; base exp yield
+INCBIN "gfx/pokemon/front/weedle.pic",0,1 ; 55, sprite dimensions
+dw WeedlePicFront
+dw WeedlePicBack
+; attacks known at lvl 0
+db POISON_STING
+db STRING_SHOT
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+ tmlearn 0
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/weepinbell.asm
@@ -1,0 +1,28 @@
+db DEX_WEEPINBELL ; pokedex id
+db 65 ; base hp
+db 90 ; base attack
+db 50 ; base defense
+db 55 ; base speed
+db 85 ; base special
+db GRASS ; species type 1
+db POISON ; species type 2
+db 120 ; catch rate
+db 151 ; base exp yield
+INCBIN "gfx/pokemon/front/weepinbell.pic",0,1 ; 66, sprite dimensions
+dw WeepinbellPicFront
+dw WeepinbellPicBack
+; attacks known at lvl 0
+db VINE_WHIP
+db GROWTH
+db WRAP
+db 0
+db 3 ; growth rate
+; learnset
+ tmlearn 3,6
+ tmlearn 9,10
+ tmlearn 20,21,22
+ tmlearn 31,32
+ tmlearn 33,34
+ tmlearn 44
+ tmlearn 50,51
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/weezing.asm
@@ -1,0 +1,28 @@
+db DEX_WEEZING ; pokedex id
+db 65 ; base hp
+db 90 ; base attack
+db 120 ; base defense
+db 60 ; base speed
+db 85 ; base special
+db POISON ; species type 1
+db POISON ; species type 2
+db 60 ; catch rate
+db 173 ; base exp yield
+INCBIN "gfx/pokemon/front/weezing.pic",0,1 ; 77, sprite dimensions
+dw WeezingPicFront
+dw WeezingPicBack
+; attacks known at lvl 0
+db TACKLE
+db SMOG
+db SLUDGE
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 6
+ tmlearn 15
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 34,36,38
+ tmlearn 44,47
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/wigglytuff.asm
@@ -1,0 +1,28 @@
+db DEX_WIGGLYTUFF ; pokedex id
+db 140 ; base hp
+db 70 ; base attack
+db 45 ; base defense
+db 45 ; base speed
+db 50 ; base special
+db NORMAL ; species type 1
+db NORMAL ; species type 2
+db 50 ; catch rate
+db 109 ; base exp yield
+INCBIN "gfx/pokemon/front/wigglytuff.pic",0,1 ; 66, sprite dimensions
+dw WigglytuffPicFront
+dw WigglytuffPicBack
+; attacks known at lvl 0
+db SING
+db DISABLE
+db DEFENSE_CURL
+db DOUBLESLAP
+db 4 ; growth rate
+; learnset
+ tmlearn 1,5,6,8
+ tmlearn 9,10,11,12,13,14,15
+ tmlearn 17,18,19,20,22,24
+ tmlearn 25,29,30,31,32
+ tmlearn 33,34,38,40
+ tmlearn 44,45,46
+ tmlearn 49,50,54,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/zapdos.asm
@@ -1,0 +1,28 @@
+db DEX_ZAPDOS ; pokedex id
+db 90 ; base hp
+db 90 ; base attack
+db 85 ; base defense
+db 100 ; base speed
+db 125 ; base special
+db ELECTRIC ; species type 1
+db FLYING ; species type 2
+db 3 ; catch rate
+db 216 ; base exp yield
+INCBIN "gfx/pokemon/front/zapdos.pic",0,1 ; 77, sprite dimensions
+dw ZapdosPicFront
+dw ZapdosPicBack
+; attacks known at lvl 0
+db THUNDERSHOCK
+db DRILL_PECK
+db 0
+db 0
+db 5 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10,15
+ tmlearn 20,24
+ tmlearn 25,31,32
+ tmlearn 33,34,39
+ tmlearn 43,44,45
+ tmlearn 50,52,55
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/base_stats/zubat.asm
@@ -1,0 +1,28 @@
+db DEX_ZUBAT ; pokedex id
+db 40 ; base hp
+db 45 ; base attack
+db 35 ; base defense
+db 55 ; base speed
+db 40 ; base special
+db POISON ; species type 1
+db FLYING ; species type 2
+db 255 ; catch rate
+db 54 ; base exp yield
+INCBIN "gfx/pokemon/front/zubat.pic",0,1 ; 55, sprite dimensions
+dw ZubatPicFront
+dw ZubatPicBack
+; attacks known at lvl 0
+db LEECH_LIFE
+db 0
+db 0
+db 0
+db 0 ; growth rate
+; learnset
+ tmlearn 2,4,6
+ tmlearn 9,10
+ tmlearn 20,21
+ tmlearn 31,32
+ tmlearn 34,39
+ tmlearn 44
+ tmlearn 50
+db 0 ; padding
--- /dev/null
+++ b/data/pokemon/cries.asm
@@ -1,0 +1,192 @@
+CryData::
+ ;$BaseCry, $Pitch, $Length
+ db $11, $00, $80; Rhydon
+ db $03, $00, $80; Kangaskhan
+ db $00, $00, $80; Nidoran♂
+ db $19, $CC, $01; Clefairy
+ db $10, $00, $80; Spearow
+ db $06, $ED, $80; Voltorb
+ db $09, $00, $80; Nidoking
+ db $1F, $00, $80; Slowbro
+ db $0F, $20, $80; Ivysaur
+ db $0D, $00, $80; Exeggutor
+ db $0C, $00, $80; Lickitung
+ db $0B, $00, $80; Exeggcute
+ db $05, $00, $80; Grimer
+ db $07, $00, $FF; Gengar
+ db $01, $00, $80; Nidoran♀
+ db $0A, $00, $80; Nidoqueen
+ db $19, $00, $80; Cubone
+ db $04, $00, $80; Rhyhorn
+ db $1B, $00, $80; Lapras
+ db $15, $00, $80; Arcanine
+ db $1E, $EE, $FF; Mew
+ db $17, $00, $80; Gyarados
+ db $18, $00, $80; Shellder
+ db $1A, $00, $80; Tentacool
+ db $1C, $00, $80; Gastly
+ db $16, $00, $80; Scyther
+ db $1E, $02, $20; Staryu
+ db $13, $00, $80; Blastoise
+ db $14, $00, $80; Pinsir
+ db $12, $00, $80; Tangela
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $1F, $20, $40; Growlithe
+ db $17, $FF, $C0; Onix
+ db $18, $40, $A0; Fearow
+ db $0E, $DF, $04; Pidgey
+ db $02, $00, $80; Slowpoke
+ db $1C, $A8, $C0; Kadabra
+ db $24, $00, $80; Graveler
+ db $14, $0A, $C0; Chansey
+ db $1F, $48, $60; Machoke
+ db $20, $08, $40; Mr.Mime
+ db $12, $80, $C0; Hitmonlee
+ db $0C, $EE, $C0; Hitmonchan
+ db $17, $E0, $10; Arbok
+ db $1E, $42, $FF; Parasect
+ db $21, $20, $60; Psyduck
+ db $0D, $88, $20; Drowzee
+ db $12, $E0, $40; Golem
+ db $00, $00, $00; MissingNo.
+ db $04, $FF, $30; Magmar
+ db $00, $00, $00; MissingNo.
+ db $06, $8F, $FF; Electabuzz
+ db $1C, $20, $C0; Magneton
+ db $12, $E6, $DD; Koffing
+ db $00, $00, $00; MissingNo.
+ db $0A, $DD, $60; Mankey
+ db $0C, $88, $C0; Seel
+ db $0B, $AA, $01; Diglett
+ db $1D, $11, $40; Tauros
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $10, $DD, $01; Farfetch'd
+ db $1A, $44, $40; Venonat
+ db $0F, $3C, $C0; Dragonite
+ db $00, $80, $10; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $1D, $E0, $80; MissingNo.
+ db $0B, $BB, $01; Doduo
+ db $0E, $FF, $FF; Poliwag
+ db $0D, $FF, $FF; Jynx
+ db $09, $F8, $40; Moltres
+ db $09, $80, $40; Articuno
+ db $18, $FF, $80; Zapdos
+ db $0E, $FF, $FF; Ditto
+ db $19, $77, $10; Meowth
+ db $20, $20, $E0; Krabby
+ db $22, $FF, $40; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $0E, $E0, $60; MissingNo.
+ db $24, $4F, $10; Vulpix
+ db $24, $88, $60; Ninetales
+ db $0F, $EE, $01; Pikachu
+ db $09, $EE, $08; Raichu
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $0F, $60, $40; Dratini
+ db $0F, $40, $80; Dragonair
+ db $16, $BB, $40; Kabuto
+ db $18, $EE, $01; Kabutops
+ db $19, $99, $10; Horsea
+ db $19, $3C, $01; Seadra
+ db $0F, $40, $C0; MissingNo.
+ db $0F, $20, $C0; MissingNo.
+ db $00, $20, $40; Sandshrew
+ db $00, $FF, $FF; Sandslash
+ db $1F, $F0, $01; Omanyte
+ db $1F, $FF, $40; Omastar
+ db $0E, $FF, $35; Jigglypuff
+ db $0E, $68, $60; Wigglytuff
+ db $1A, $88, $60; Eevee
+ db $1A, $10, $20; Flareon
+ db $1A, $3D, $80; Jolteon
+ db $1A, $AA, $FF; Vaporeon
+ db $1F, $EE, $01; Machop
+ db $1D, $E0, $80; Zubat
+ db $17, $12, $40; Ekans
+ db $1E, $20, $E0; Paras
+ db $0E, $77, $60; Poliwhirl
+ db $0E, $00, $FF; Poliwrath
+ db $15, $EE, $01; Weedle
+ db $13, $FF, $01; Kakuna
+ db $13, $60, $80; Beedrill
+ db $00, $00, $00; MissingNo.
+ db $0B, $99, $20; Dodrio
+ db $0A, $AF, $40; Primeape
+ db $0B, $2A, $10; Dugtrio
+ db $1A, $29, $80; Venomoth
+ db $0C, $23, $FF; Dewgong
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $16, $80, $20; Caterpie
+ db $1C, $CC, $01; Metapod
+ db $16, $77, $40; Butterfree
+ db $1F, $08, $C0; Machamp
+ db $11, $20, $10; MissingNo.
+ db $21, $FF, $40; Golduck
+ db $0D, $EE, $40; Hypno
+ db $1D, $FA, $80; Golbat
+ db $1E, $99, $FF; Mewtwo
+ db $05, $55, $01; Snorlax
+ db $17, $80, $00; Magikarp
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $07, $EF, $FF; Muk
+ db $0F, $40, $80; MissingNo.
+ db $20, $EE, $E0; Kingler
+ db $18, $6F, $E0; Cloyster
+ db $00, $00, $00; MissingNo.
+ db $06, $A8, $90; Electrode
+ db $19, $AA, $20; Clefable
+ db $12, $FF, $FF; Weezing
+ db $19, $99, $FF; Persian
+ db $08, $4F, $60; Marowak
+ db $00, $00, $00; MissingNo.
+ db $1C, $30, $40; Haunter
+ db $1C, $C0, $01; Abra
+ db $1C, $98, $FF; Alakazam
+ db $14, $28, $C0; Pidgeotto
+ db $14, $11, $FF; Pidgeot
+ db $1E, $00, $80; Starmie
+ db $0F, $80, $01; Bulbasaur
+ db $0F, $00, $C0; Venusaur
+ db $1A, $EE, $FF; Tentacruel
+ db $00, $00, $00; MissingNo.
+ db $16, $80, $40; Goldeen
+ db $16, $10, $FF; Seaking
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $25, $00, $80; Ponyta
+ db $25, $20, $C0; Rapidash
+ db $22, $00, $80; Rattata
+ db $22, $20, $FF; Raticate
+ db $00, $2C, $C0; Nidorino
+ db $01, $2C, $E0; Nidorina
+ db $24, $F0, $10; Geodude
+ db $25, $AA, $FF; Porygon
+ db $23, $20, $F0; Aerodactyl
+ db $00, $00, $00; MissingNo.
+ db $1C, $80, $60; Magnemite
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $04, $60, $40; Charmander
+ db $1D, $60, $40; Squirtle
+ db $04, $20, $40; Charmeleon
+ db $1D, $20, $40; Wartortle
+ db $04, $00, $80; Charizard
+ db $1D, $00, $80; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $00, $00, $00; MissingNo.
+ db $08, $DD, $01; Oddish
+ db $08, $AA, $40; Gloom
+ db $23, $22, $FF; Vileplume
+ db $21, $55, $01; Bellsprout
+ db $25, $44, $20; Weepinbell
+ db $25, $66, $CC; Victreebel
--- /dev/null
+++ b/data/pokemon/dex_entries.asm
@@ -1,0 +1,1259 @@
+PokedexEntryPointers:
+ dw RhydonDexEntry
+ dw KangaskhanDexEntry
+ dw NidoranMDexEntry
+ dw ClefairyDexEntry
+ dw SpearowDexEntry
+ dw VoltorbDexEntry
+ dw NidokingDexEntry
+ dw SlowbroDexEntry
+ dw IvysaurDexEntry
+ dw ExeggutorDexEntry
+ dw LickitungDexEntry
+ dw ExeggcuteDexEntry
+ dw GrimerDexEntry
+ dw GengarDexEntry
+ dw NidoranFDexEntry
+ dw NidoqueenDexEntry
+ dw CuboneDexEntry
+ dw RhyhornDexEntry
+ dw LaprasDexEntry
+ dw ArcanineDexEntry
+ dw MewDexEntry
+ dw GyaradosDexEntry
+ dw ShellderDexEntry
+ dw TentacoolDexEntry
+ dw GastlyDexEntry
+ dw ScytherDexEntry
+ dw StaryuDexEntry
+ dw BlastoiseDexEntry
+ dw PinsirDexEntry
+ dw TangelaDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw GrowlitheDexEntry
+ dw OnixDexEntry
+ dw FearowDexEntry
+ dw PidgeyDexEntry
+ dw SlowpokeDexEntry
+ dw KadabraDexEntry
+ dw GravelerDexEntry
+ dw ChanseyDexEntry
+ dw MachokeDexEntry
+ dw MrMimeDexEntry
+ dw HitmonleeDexEntry
+ dw HitmonchanDexEntry
+ dw ArbokDexEntry
+ dw ParasectDexEntry
+ dw PsyduckDexEntry
+ dw DrowzeeDexEntry
+ dw GolemDexEntry
+ dw MissingNoDexEntry
+ dw MagmarDexEntry
+ dw MissingNoDexEntry
+ dw ElectabuzzDexEntry
+ dw MagnetonDexEntry
+ dw KoffingDexEntry
+ dw MissingNoDexEntry
+ dw MankeyDexEntry
+ dw SeelDexEntry
+ dw DiglettDexEntry
+ dw TaurosDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw FarfetchdDexEntry
+ dw VenonatDexEntry
+ dw DragoniteDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw DoduoDexEntry
+ dw PoliwagDexEntry
+ dw JynxDexEntry
+ dw MoltresDexEntry
+ dw ArticunoDexEntry
+ dw ZapdosDexEntry
+ dw DittoDexEntry
+ dw MeowthDexEntry
+ dw KrabbyDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw VulpixDexEntry
+ dw NinetalesDexEntry
+ dw PikachuDexEntry
+ dw RaichuDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw DratiniDexEntry
+ dw DragonairDexEntry
+ dw KabutoDexEntry
+ dw KabutopsDexEntry
+ dw HorseaDexEntry
+ dw SeadraDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw SandshrewDexEntry
+ dw SandslashDexEntry
+ dw OmanyteDexEntry
+ dw OmastarDexEntry
+ dw JigglypuffDexEntry
+ dw WigglytuffDexEntry
+ dw EeveeDexEntry
+ dw FlareonDexEntry
+ dw JolteonDexEntry
+ dw VaporeonDexEntry
+ dw MachopDexEntry
+ dw ZubatDexEntry
+ dw EkansDexEntry
+ dw ParasDexEntry
+ dw PoliwhirlDexEntry
+ dw PoliwrathDexEntry
+ dw WeedleDexEntry
+ dw KakunaDexEntry
+ dw BeedrillDexEntry
+ dw MissingNoDexEntry
+ dw DodrioDexEntry
+ dw PrimeapeDexEntry
+ dw DugtrioDexEntry
+ dw VenomothDexEntry
+ dw DewgongDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw CaterpieDexEntry
+ dw MetapodDexEntry
+ dw ButterfreeDexEntry
+ dw MachampDexEntry
+ dw MissingNoDexEntry
+ dw GolduckDexEntry
+ dw HypnoDexEntry
+ dw GolbatDexEntry
+ dw MewtwoDexEntry
+ dw SnorlaxDexEntry
+ dw MagikarpDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MukDexEntry
+ dw MissingNoDexEntry
+ dw KinglerDexEntry
+ dw CloysterDexEntry
+ dw MissingNoDexEntry
+ dw ElectrodeDexEntry
+ dw ClefableDexEntry
+ dw WeezingDexEntry
+ dw PersianDexEntry
+ dw MarowakDexEntry
+ dw MissingNoDexEntry
+ dw HaunterDexEntry
+ dw AbraDexEntry
+ dw AlakazamDexEntry
+ dw PidgeottoDexEntry
+ dw PidgeotDexEntry
+ dw StarmieDexEntry
+ dw BulbasaurDexEntry
+ dw VenusaurDexEntry
+ dw TentacruelDexEntry
+ dw MissingNoDexEntry
+ dw GoldeenDexEntry
+ dw SeakingDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw PonytaDexEntry
+ dw RapidashDexEntry
+ dw RattataDexEntry
+ dw RaticateDexEntry
+ dw NidorinoDexEntry
+ dw NidorinaDexEntry
+ dw GeodudeDexEntry
+ dw PorygonDexEntry
+ dw AerodactylDexEntry
+ dw MissingNoDexEntry
+ dw MagnemiteDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw CharmanderDexEntry
+ dw SquirtleDexEntry
+ dw CharmeleonDexEntry
+ dw WartortleDexEntry
+ dw CharizardDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw MissingNoDexEntry
+ dw OddishDexEntry
+ dw GloomDexEntry
+ dw VileplumeDexEntry
+ dw BellsproutDexEntry
+ dw WeepinbellDexEntry
+ dw VictreebelDexEntry
+
+; string: species name
+; height in feet, inches
+; weight in pounds
+; text entry
+
+RhydonDexEntry:
+ db "DRILL@"
+ db 6,3
+ dw 2650
+ TX_FAR _RhydonDexEntry
+ db "@"
+
+KangaskhanDexEntry:
+ db "PARENT@"
+ db 7,3
+ dw 1760
+ TX_FAR _KangaskhanDexEntry
+ db "@"
+
+NidoranMDexEntry:
+ db "POISON PIN@"
+ db 1,8
+ dw 200
+ TX_FAR _NidoranMDexEntry
+ db "@"
+
+ClefairyDexEntry:
+ db "FAIRY@"
+ db 2,0
+ dw 170
+ TX_FAR _ClefairyDexEntry
+ db "@"
+
+SpearowDexEntry:
+ db "TINY BIRD@"
+ db 1,0
+ dw 40
+ TX_FAR _SpearowDexEntry
+ db "@"
+
+VoltorbDexEntry:
+ db "BALL@"
+ db 1,8
+ dw 230
+ TX_FAR _VoltorbDexEntry
+ db "@"
+
+NidokingDexEntry:
+ db "DRILL@"
+ db 4,7
+ dw 1370
+ TX_FAR _NidokingDexEntry
+ db "@"
+
+SlowbroDexEntry:
+ db "HERMITCRAB@"
+ db 5,3
+ dw 1730
+ TX_FAR _SlowbroDexEntry
+ db "@"
+
+IvysaurDexEntry:
+ db "SEED@"
+ db 3,3
+ dw 290
+ TX_FAR _IvysaurDexEntry
+ db "@"
+
+ExeggutorDexEntry:
+ db "COCONUT@"
+ db 6,7
+ dw 2650
+ TX_FAR _ExeggutorDexEntry
+ db "@"
+
+LickitungDexEntry:
+ db "LICKING@"
+ db 3,11
+ dw 1440
+ TX_FAR _LickitungDexEntry
+ db "@"
+
+ExeggcuteDexEntry:
+ db "EGG@"
+ db 1,4
+ dw 60
+ TX_FAR _ExeggcuteDexEntry
+ db "@"
+
+GrimerDexEntry:
+ db "SLUDGE@"
+ db 2,11
+ dw 660
+ TX_FAR _GrimerDexEntry
+ db "@"
+
+GengarDexEntry:
+ db "SHADOW@"
+ db 4,11
+ dw 890
+ TX_FAR _GengarDexEntry
+ db "@"
+
+NidoranFDexEntry:
+ db "POISON PIN@"
+ db 1,4
+ dw 150
+ TX_FAR _NidoranFDexEntry
+ db "@"
+
+NidoqueenDexEntry:
+ db "DRILL@"
+ db 4,3
+ dw 1320
+ TX_FAR _NidoqueenDexEntry
+ db "@"
+
+CuboneDexEntry:
+ db "LONELY@"
+ db 1,4
+ dw 140
+ TX_FAR _CuboneDexEntry
+ db "@"
+
+RhyhornDexEntry:
+ db "SPIKES@"
+ db 3,3
+ dw 2540
+ TX_FAR _RhyhornDexEntry
+ db "@"
+
+LaprasDexEntry:
+ db "TRANSPORT@"
+ db 8,2
+ dw 4850
+ TX_FAR _LaprasDexEntry
+ db "@"
+
+ArcanineDexEntry:
+ db "LEGENDARY@"
+ db 6,3
+ dw 3420
+ TX_FAR _ArcanineDexEntry
+ db "@"
+
+MewDexEntry:
+ db "NEW SPECIE@"
+ db 1,4
+ dw 90
+ TX_FAR _MewDexEntry
+ db "@"
+
+GyaradosDexEntry:
+ db "ATROCIOUS@"
+ db 21,4
+ dw 5180
+ TX_FAR _GyaradosDexEntry
+ db "@"
+
+ShellderDexEntry:
+ db "BIVALVE@"
+ db 1,0
+ dw 90
+ TX_FAR _ShellderDexEntry
+ db "@"
+
+TentacoolDexEntry:
+ db "JELLYFISH@"
+ db 2,11
+ dw 1000
+ TX_FAR _TentacoolDexEntry
+ db "@"
+
+GastlyDexEntry:
+ db "GAS@"
+ db 4,3
+ dw 2
+ TX_FAR _GastlyDexEntry
+ db "@"
+
+ScytherDexEntry:
+ db "MANTIS@"
+ db 4,11
+ dw 1230
+ TX_FAR _ScytherDexEntry
+ db "@"
+
+StaryuDexEntry:
+ db "STARSHAPE@"
+ db 2,7
+ dw 760
+ TX_FAR _StaryuDexEntry
+ db "@"
+
+BlastoiseDexEntry:
+ db "SHELLFISH@"
+ db 5,3
+ dw 1890
+ TX_FAR _BlastoiseDexEntry
+ db "@"
+
+PinsirDexEntry:
+ db "STAGBEETLE@"
+ db 4,11
+ dw 1210
+ TX_FAR _PinsirDexEntry
+ db "@"
+
+TangelaDexEntry:
+ db "VINE@"
+ db 3,3
+ dw 770
+ TX_FAR _TangelaDexEntry
+ db "@"
+
+GrowlitheDexEntry:
+ db "PUPPY@"
+ db 2,4
+ dw 420
+ TX_FAR _GrowlitheDexEntry
+ db "@"
+
+OnixDexEntry:
+ db "ROCK SNAKE@"
+ db 28,10
+ dw 4630
+ TX_FAR _OnixDexEntry
+ db "@"
+
+FearowDexEntry:
+ db "BEAK@"
+ db 3,11
+ dw 840
+ TX_FAR _FearowDexEntry
+ db "@"
+
+PidgeyDexEntry:
+ db "TINY BIRD@"
+ db 1,0
+ dw 40
+ TX_FAR _PidgeyDexEntry
+ db "@"
+
+SlowpokeDexEntry:
+ db "DOPEY@"
+ db 3,11
+ dw 790
+ TX_FAR _SlowpokeDexEntry
+ db "@"
+
+KadabraDexEntry:
+ db "PSI@"
+ db 4,3
+ dw 1250
+ TX_FAR _KadabraDexEntry
+ db "@"
+
+GravelerDexEntry:
+ db "ROCK@"
+ db 3,3
+ dw 2320
+ TX_FAR _GravelerDexEntry
+ db "@"
+
+ChanseyDexEntry:
+ db "EGG@"
+ db 3,7
+ dw 760
+ TX_FAR _ChanseyDexEntry
+ db "@"
+
+MachokeDexEntry:
+ db "SUPERPOWER@"
+ db 4,11
+ dw 1550
+ TX_FAR _MachokeDexEntry
+ db "@"
+
+MrMimeDexEntry:
+ db "BARRIER@"
+ db 4,3
+ dw 1200
+ TX_FAR _MrMimeDexEntry
+ db "@"
+
+HitmonleeDexEntry:
+ db "KICKING@"
+ db 4,11
+ dw 1100
+ TX_FAR _HitmonleeDexEntry
+ db "@"
+
+HitmonchanDexEntry:
+ db "PUNCHING@"
+ db 4,7
+ dw 1110
+ TX_FAR _HitmonchanDexEntry
+ db "@"
+
+ArbokDexEntry:
+ db "COBRA@"
+ db 11,6
+ dw 1430
+ TX_FAR _ArbokDexEntry
+ db "@"
+
+ParasectDexEntry:
+ db "MUSHROOM@"
+ db 3,3
+ dw 650
+ TX_FAR _ParasectDexEntry
+ db "@"
+
+PsyduckDexEntry:
+ db "DUCK@"
+ db 2,7
+ dw 430
+ TX_FAR _PsyduckDexEntry
+ db "@"
+
+DrowzeeDexEntry:
+ db "HYPNOSIS@"
+ db 3,3
+ dw 710
+ TX_FAR _DrowzeeDexEntry
+ db "@"
+
+GolemDexEntry:
+ db "MEGATON@"
+ db 4,7
+ dw 6620
+ TX_FAR _GolemDexEntry
+ db "@"
+
+MagmarDexEntry:
+ db "SPITFIRE@"
+ db 4,3
+ dw 980
+ TX_FAR _MagmarDexEntry
+ db "@"
+
+ElectabuzzDexEntry:
+ db "ELECTRIC@"
+ db 3,7
+ dw 660
+ TX_FAR _ElectabuzzDexEntry
+ db "@"
+
+MagnetonDexEntry:
+ db "MAGNET@"
+ db 3,3
+ dw 1320
+ TX_FAR _MagnetonDexEntry
+ db "@"
+
+KoffingDexEntry:
+ db "POISON GAS@"
+ db 2,0
+ dw 20
+ TX_FAR _KoffingDexEntry
+ db "@"
+
+MankeyDexEntry:
+ db "PIG MONKEY@"
+ db 1,8
+ dw 620
+ TX_FAR _MankeyDexEntry
+ db "@"
+
+SeelDexEntry:
+ db "SEA LION@"
+ db 3,7
+ dw 1980
+ TX_FAR _SeelDexEntry
+ db "@"
+
+DiglettDexEntry:
+ db "MOLE@"
+ db 0,8
+ dw 20
+ TX_FAR _DiglettDexEntry
+ db "@"
+
+TaurosDexEntry:
+ db "WILD BULL@"
+ db 4,7
+ dw 1950
+ TX_FAR _TaurosDexEntry
+ db "@"
+
+FarfetchdDexEntry:
+ db "WILD DUCK@"
+ db 2,7
+ dw 330
+ TX_FAR _FarfetchdDexEntry
+ db "@"
+
+VenonatDexEntry:
+ db "INSECT@"
+ db 3,3
+ dw 660
+ TX_FAR _VenonatDexEntry
+ db "@"
+
+DragoniteDexEntry:
+ db "DRAGON@"
+ db 7,3
+ dw 4630
+ TX_FAR _DragoniteDexEntry
+ db "@"
+
+DoduoDexEntry:
+ db "TWIN BIRD@"
+ db 4,7
+ dw 860
+ TX_FAR _DoduoDexEntry
+ db "@"
+
+PoliwagDexEntry:
+ db "TADPOLE@"
+ db 2,0
+ dw 270
+ TX_FAR _PoliwagDexEntry
+ db "@"
+
+JynxDexEntry:
+ db "HUMANSHAPE@"
+ db 4,7
+ dw 900
+ TX_FAR _JynxDexEntry
+ db "@"
+
+MoltresDexEntry:
+ db "FLAME@"
+ db 6,7
+ dw 1320
+ TX_FAR _MoltresDexEntry
+ db "@"
+
+ArticunoDexEntry:
+ db "FREEZE@"
+ db 5,7
+ dw 1220
+ TX_FAR _ArticunoDexEntry
+ db "@"
+
+ZapdosDexEntry:
+ db "ELECTRIC@"
+ db 5,3
+ dw 1160
+ TX_FAR _ZapdosDexEntry
+ db "@"
+
+DittoDexEntry:
+ db "TRANSFORM@"
+ db 1,0
+ dw 90
+ TX_FAR _DittoDexEntry
+ db "@"
+
+MeowthDexEntry:
+ db "SCRATCHCAT@"
+ db 1,4
+ dw 90
+ TX_FAR _MeowthDexEntry
+ db "@"
+
+KrabbyDexEntry:
+ db "RIVER CRAB@"
+ db 1,4
+ dw 140
+ TX_FAR _KrabbyDexEntry
+ db "@"
+
+VulpixDexEntry:
+ db "FOX@"
+ db 2,0
+ dw 220
+ TX_FAR _VulpixDexEntry
+ db "@"
+
+NinetalesDexEntry:
+ db "FOX@"
+ db 3,7
+ dw 440
+ TX_FAR _NinetalesDexEntry
+ db "@"
+
+PikachuDexEntry:
+ db "MOUSE@"
+ db 1,4
+ dw 130
+ TX_FAR _PikachuDexEntry
+ db "@"
+
+RaichuDexEntry:
+ db "MOUSE@"
+ db 2,7
+ dw 660
+ TX_FAR _RaichuDexEntry
+ db "@"
+
+DratiniDexEntry:
+ db "DRAGON@"
+ db 5,11
+ dw 70
+ TX_FAR _DratiniDexEntry
+ db "@"
+
+DragonairDexEntry:
+ db "DRAGON@"
+ db 13,1
+ dw 360
+ TX_FAR _DragonairDexEntry
+ db "@"
+
+KabutoDexEntry:
+ db "SHELLFISH@"
+ db 1,8
+ dw 250
+ TX_FAR _KabutoDexEntry
+ db "@"
+
+KabutopsDexEntry:
+ db "SHELLFISH@"
+ db 4,3
+ dw 890
+ TX_FAR _KabutopsDexEntry
+ db "@"
+
+HorseaDexEntry:
+ db "DRAGON@"
+ db 1,4
+ dw 180
+ TX_FAR _HorseaDexEntry
+ db "@"
+
+SeadraDexEntry:
+ db "DRAGON@"
+ db 3,11
+ dw 550
+ TX_FAR _SeadraDexEntry
+ db "@"
+
+SandshrewDexEntry:
+ db "MOUSE@"
+ db 2,0
+ dw 260
+ TX_FAR _SandshrewDexEntry
+ db "@"
+
+SandslashDexEntry:
+ db "MOUSE@"
+ db 3,3
+ dw 650
+ TX_FAR _SandslashDexEntry
+ db "@"
+
+OmanyteDexEntry:
+ db "SPIRAL@"
+ db 1,4
+ dw 170
+ TX_FAR _OmanyteDexEntry
+ db "@"
+
+OmastarDexEntry:
+ db "SPIRAL@"
+ db 3,3
+ dw 770
+ TX_FAR _OmastarDexEntry
+ db "@"
+
+JigglypuffDexEntry:
+ db "BALLOON@"
+ db 1,8
+ dw 120
+ TX_FAR _JigglypuffDexEntry
+ db "@"
+
+WigglytuffDexEntry:
+ db "BALLOON@"
+ db 3,3
+ dw 260
+ TX_FAR _WigglytuffDexEntry
+ db "@"
+
+EeveeDexEntry:
+ db "EVOLUTION@"
+ db 1,0
+ dw 140
+ TX_FAR _EeveeDexEntry
+ db "@"
+
+FlareonDexEntry:
+ db "FLAME@"
+ db 2,11
+ dw 550
+ TX_FAR _FlareonDexEntry
+ db "@"
+
+JolteonDexEntry:
+ db "LIGHTNING@"
+ db 2,7
+ dw 540
+ TX_FAR _JolteonDexEntry
+ db "@"
+
+VaporeonDexEntry:
+ db "BUBBLE JET@"
+ db 3,3
+ dw 640
+ TX_FAR _VaporeonDexEntry
+ db "@"
+
+MachopDexEntry:
+ db "SUPERPOWER@"
+ db 2,7
+ dw 430
+ TX_FAR _MachopDexEntry
+ db "@"
+
+ZubatDexEntry:
+ db "BAT@"
+ db 2,7
+ dw 170
+ TX_FAR _ZubatDexEntry
+ db "@"
+
+EkansDexEntry:
+ db "SNAKE@"
+ db 6,7
+ dw 150
+ TX_FAR _EkansDexEntry
+ db "@"
+
+ParasDexEntry:
+ db "MUSHROOM@"
+ db 1,0
+ dw 120
+ TX_FAR _ParasDexEntry
+ db "@"
+
+PoliwhirlDexEntry:
+ db "TADPOLE@"
+ db 3,3
+ dw 440
+ TX_FAR _PoliwhirlDexEntry
+ db "@"
+
+PoliwrathDexEntry:
+ db "TADPOLE@"
+ db 4,3
+ dw 1190
+ TX_FAR _PoliwrathDexEntry
+ db "@"
+
+WeedleDexEntry:
+ db "HAIRY BUG@"
+ db 1,0
+ dw 70
+ TX_FAR _WeedleDexEntry
+ db "@"
+
+KakunaDexEntry:
+ db "COCOON@"
+ db 2,0
+ dw 220
+ TX_FAR _KakunaDexEntry
+ db "@"
+
+BeedrillDexEntry:
+ db "POISON BEE@"
+ db 3,3
+ dw 650
+ TX_FAR _BeedrillDexEntry
+ db "@"
+
+DodrioDexEntry:
+ db "TRIPLEBIRD@"
+ db 5,11
+ dw 1880
+ TX_FAR _DodrioDexEntry
+ db "@"
+
+PrimeapeDexEntry:
+ db "PIG MONKEY@"
+ db 3,3
+ dw 710
+ TX_FAR _PrimeapeDexEntry
+ db "@"
+
+DugtrioDexEntry:
+ db "MOLE@"
+ db 2,4
+ dw 730
+ TX_FAR _DugtrioDexEntry
+ db "@"
+
+VenomothDexEntry:
+ db "POISONMOTH@"
+ db 4,11
+ dw 280
+ TX_FAR _VenomothDexEntry
+ db "@"
+
+DewgongDexEntry:
+ db "SEA LION@"
+ db 5,7
+ dw 2650
+ TX_FAR _DewgongDexEntry
+ db "@"
+
+CaterpieDexEntry:
+ db "WORM@"
+ db 1,0
+ dw 60
+ TX_FAR _CaterpieDexEntry
+ db "@"
+
+MetapodDexEntry:
+ db "COCOON@"
+ db 2,4
+ dw 220
+ TX_FAR _MetapodDexEntry
+ db "@"
+
+ButterfreeDexEntry:
+ db "BUTTERFLY@"
+ db 3,7
+ dw 710
+ TX_FAR _ButterfreeDexEntry
+ db "@"
+
+MachampDexEntry:
+ db "SUPERPOWER@"
+ db 5,3
+ dw 2870
+ TX_FAR _MachampDexEntry
+ db "@"
+
+GolduckDexEntry:
+ db "DUCK@"
+ db 5,7
+ dw 1690
+ TX_FAR _GolduckDexEntry
+ db "@"
+
+HypnoDexEntry:
+ db "HYPNOSIS@"
+ db 5,3
+ dw 1670
+ TX_FAR _HypnoDexEntry
+ db "@"
+
+GolbatDexEntry:
+ db "BAT@"
+ db 5,3
+ dw 1210
+ TX_FAR _GolbatDexEntry
+ db "@"
+
+MewtwoDexEntry:
+ db "GENETIC@"
+ db 6,7
+ dw 2690
+ TX_FAR _MewtwoDexEntry
+ db "@"
+
+SnorlaxDexEntry:
+ db "SLEEPING@"
+ db 6,11
+ dw 10140
+ TX_FAR _SnorlaxDexEntry
+ db "@"
+
+MagikarpDexEntry:
+ db "FISH@"
+ db 2,11
+ dw 220
+ TX_FAR _MagikarpDexEntry
+ db "@"
+
+MukDexEntry:
+ db "SLUDGE@"
+ db 3,11
+ dw 660
+ TX_FAR _MukDexEntry
+ db "@"
+
+KinglerDexEntry:
+ db "PINCER@"
+ db 4,3
+ dw 1320
+ TX_FAR _KinglerDexEntry
+ db "@"
+
+CloysterDexEntry:
+ db "BIVALVE@"
+ db 4,11
+ dw 2920
+ TX_FAR _CloysterDexEntry
+ db "@"
+
+ElectrodeDexEntry:
+ db "BALL@"
+ db 3,11
+ dw 1470
+ TX_FAR _ElectrodeDexEntry
+ db "@"
+
+ClefableDexEntry:
+ db "FAIRY@"
+ db 4,3
+ dw 880
+ TX_FAR _ClefableDexEntry
+ db "@"
+
+WeezingDexEntry:
+ db "POISON GAS@"
+ db 3,11
+ dw 210
+ TX_FAR _WeezingDexEntry
+ db "@"
+
+PersianDexEntry:
+ db "CLASSY CAT@"
+ db 3,3
+ dw 710
+ TX_FAR _PersianDexEntry
+ db "@"
+
+MarowakDexEntry:
+ db "BONEKEEPER@"
+ db 3,3
+ dw 990
+ TX_FAR _MarowakDexEntry
+ db "@"
+
+HaunterDexEntry:
+ db "GAS@"
+ db 5,3
+ dw 2
+ TX_FAR _HaunterDexEntry
+ db "@"
+
+AbraDexEntry:
+ db "PSI@"
+ db 2,11
+ dw 430
+ TX_FAR _AbraDexEntry
+ db "@"
+
+AlakazamDexEntry:
+ db "PSI@"
+ db 4,11
+ dw 1060
+ TX_FAR _AlakazamDexEntry
+ db "@"
+
+PidgeottoDexEntry:
+ db "BIRD@"
+ db 3,7
+ dw 660
+ TX_FAR _PidgeottoDexEntry
+ db "@"
+
+PidgeotDexEntry:
+ db "BIRD@"
+ db 4,11
+ dw 870
+ TX_FAR _PidgeotDexEntry
+ db "@"
+
+StarmieDexEntry:
+ db "MYSTERIOUS@"
+ db 3,7
+ dw 1760
+ TX_FAR _StarmieDexEntry
+ db "@"
+
+BulbasaurDexEntry:
+ db "SEED@"
+ db 2,4
+ dw 150
+ TX_FAR _BulbasaurDexEntry
+ db "@"
+
+VenusaurDexEntry:
+ db "SEED@"
+ db 6,7
+ dw 2210
+ TX_FAR _VenusaurDexEntry
+ db "@"
+
+TentacruelDexEntry:
+ db "JELLYFISH@"
+ db 5,3
+ dw 1210
+ TX_FAR _TentacruelDexEntry
+ db "@"
+
+GoldeenDexEntry:
+ db "GOLDFISH@"
+ db 2,0
+ dw 330
+ TX_FAR _GoldeenDexEntry
+ db "@"
+
+SeakingDexEntry:
+ db "GOLDFISH@"
+ db 4,3
+ dw 860
+ TX_FAR _SeakingDexEntry
+ db "@"
+
+PonytaDexEntry:
+ db "FIRE HORSE@"
+ db 3,3
+ dw 660
+ TX_FAR _PonytaDexEntry
+ db "@"
+
+RapidashDexEntry:
+ db "FIRE HORSE@"
+ db 5,7
+ dw 2090
+ TX_FAR _RapidashDexEntry
+ db "@"
+
+RattataDexEntry:
+ db "RAT@"
+ db 1,0
+ dw 80
+ TX_FAR _RattataDexEntry
+ db "@"
+
+RaticateDexEntry:
+ db "RAT@"
+ db 2,4
+ dw 410
+ TX_FAR _RaticateDexEntry
+ db "@"
+
+NidorinoDexEntry:
+ db "POISON PIN@"
+ db 2,11
+ dw 430
+ TX_FAR _NidorinoDexEntry
+ db "@"
+
+NidorinaDexEntry:
+ db "POISON PIN@"
+ db 2,7
+ dw 440
+ TX_FAR _NidorinaDexEntry
+ db "@"
+
+GeodudeDexEntry:
+ db "ROCK@"
+ db 1,4
+ dw 440
+ TX_FAR _GeodudeDexEntry
+ db "@"
+
+PorygonDexEntry:
+ db "VIRTUAL@"
+ db 2,7
+ dw 800
+ TX_FAR _PorygonDexEntry
+ db "@"
+
+AerodactylDexEntry:
+ db "FOSSIL@"
+ db 5,11
+ dw 1300
+ TX_FAR _AerodactylDexEntry
+ db "@"
+
+MagnemiteDexEntry:
+ db "MAGNET@"
+ db 1,0
+ dw 130
+ TX_FAR _MagnemiteDexEntry
+ db "@"
+
+CharmanderDexEntry:
+ db "LIZARD@"
+ db 2,0
+ dw 190
+ TX_FAR _CharmanderDexEntry
+ db "@"
+
+SquirtleDexEntry:
+ db "TINYTURTLE@"
+ db 1,8
+ dw 200
+ TX_FAR _SquirtleDexEntry
+ db "@"
+
+CharmeleonDexEntry:
+ db "FLAME@"
+ db 3,7
+ dw 420
+ TX_FAR _CharmeleonDexEntry
+ db "@"
+
+WartortleDexEntry:
+ db "TURTLE@"
+ db 3,3
+ dw 500
+ TX_FAR _WartortleDexEntry
+ db "@"
+
+CharizardDexEntry:
+ db "FLAME@"
+ db 5,7
+ dw 2000
+ TX_FAR _CharizardDexEntry
+ db "@"
+
+OddishDexEntry:
+ db "WEED@"
+ db 1,8
+ dw 120
+ TX_FAR _OddishDexEntry
+ db "@"
+
+GloomDexEntry:
+ db "WEED@"
+ db 2,7
+ dw 190
+ TX_FAR _GloomDexEntry
+ db "@"
+
+VileplumeDexEntry:
+ db "FLOWER@"
+ db 3,11
+ dw 410
+ TX_FAR _VileplumeDexEntry
+ db "@"
+
+BellsproutDexEntry:
+ db "FLOWER@"
+ db 2,4
+ dw 90
+ TX_FAR _BellsproutDexEntry
+ db "@"
+
+WeepinbellDexEntry:
+ db "FLYCATCHER@"
+ db 3,3
+ dw 140
+ TX_FAR _WeepinbellDexEntry
+ db "@"
+
+VictreebelDexEntry:
+ db "FLYCATCHER@"
+ db 5,7
+ dw 340
+ TX_FAR _VictreebelDexEntry
+ db "@"
+
+MissingNoDexEntry:
+ db "???@"
+ db 10 ; 1.0 m
+ db 100 ; 10.0 kg
+ text "コメント さくせいちゅう@" ; コメント作成中 (Comment to be written)
--- /dev/null
+++ b/data/pokemon/dex_order.asm
@@ -1,0 +1,191 @@
+PokedexOrder:
+ db DEX_RHYDON
+ db DEX_KANGASKHAN
+ db DEX_NIDORAN_M
+ db DEX_CLEFAIRY
+ db DEX_SPEAROW
+ db DEX_VOLTORB
+ db DEX_NIDOKING
+ db DEX_SLOWBRO
+ db DEX_IVYSAUR
+ db DEX_EXEGGUTOR
+ db DEX_LICKITUNG
+ db DEX_EXEGGCUTE
+ db DEX_GRIMER
+ db DEX_GENGAR
+ db DEX_NIDORAN_F
+ db DEX_NIDOQUEEN
+ db DEX_CUBONE
+ db DEX_RHYHORN
+ db DEX_LAPRAS
+ db DEX_ARCANINE
+ db DEX_MEW
+ db DEX_GYARADOS
+ db DEX_SHELLDER
+ db DEX_TENTACOOL
+ db DEX_GASTLY
+ db DEX_SCYTHER
+ db DEX_STARYU
+ db DEX_BLASTOISE
+ db DEX_PINSIR
+ db DEX_TANGELA
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_GROWLITHE
+ db DEX_ONIX
+ db DEX_FEAROW
+ db DEX_PIDGEY
+ db DEX_SLOWPOKE
+ db DEX_KADABRA
+ db DEX_GRAVELER
+ db DEX_CHANSEY
+ db DEX_MACHOKE
+ db DEX_MR_MIME
+ db DEX_HITMONLEE
+ db DEX_HITMONCHAN
+ db DEX_ARBOK
+ db DEX_PARASECT
+ db DEX_PSYDUCK
+ db DEX_DROWZEE
+ db DEX_GOLEM
+ db 0 ; MISSINGNO.
+ db DEX_MAGMAR
+ db 0 ; MISSINGNO.
+ db DEX_ELECTABUZZ
+ db DEX_MAGNETON
+ db DEX_KOFFING
+ db 0 ; MISSINGNO.
+ db DEX_MANKEY
+ db DEX_SEEL
+ db DEX_DIGLETT
+ db DEX_TAUROS
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_FARFETCHD
+ db DEX_VENONAT
+ db DEX_DRAGONITE
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_DODUO
+ db DEX_POLIWAG
+ db DEX_JYNX
+ db DEX_MOLTRES
+ db DEX_ARTICUNO
+ db DEX_ZAPDOS
+ db DEX_DITTO
+ db DEX_MEOWTH
+ db DEX_KRABBY
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_VULPIX
+ db DEX_NINETALES
+ db DEX_PIKACHU
+ db DEX_RAICHU
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_DRATINI
+ db DEX_DRAGONAIR
+ db DEX_KABUTO
+ db DEX_KABUTOPS
+ db DEX_HORSEA
+ db DEX_SEADRA
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_SANDSHREW
+ db DEX_SANDSLASH
+ db DEX_OMANYTE
+ db DEX_OMASTAR
+ db DEX_JIGGLYPUFF
+ db DEX_WIGGLYTUFF
+ db DEX_EEVEE
+ db DEX_FLAREON
+ db DEX_JOLTEON
+ db DEX_VAPOREON
+ db DEX_MACHOP
+ db DEX_ZUBAT
+ db DEX_EKANS
+ db DEX_PARAS
+ db DEX_POLIWHIRL
+ db DEX_POLIWRATH
+ db DEX_WEEDLE
+ db DEX_KAKUNA
+ db DEX_BEEDRILL
+ db 0 ; MISSINGNO.
+ db DEX_DODRIO
+ db DEX_PRIMEAPE
+ db DEX_DUGTRIO
+ db DEX_VENOMOTH
+ db DEX_DEWGONG
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_CATERPIE
+ db DEX_METAPOD
+ db DEX_BUTTERFREE
+ db DEX_MACHAMP
+ db 0 ; MISSINGNO.
+ db DEX_GOLDUCK
+ db DEX_HYPNO
+ db DEX_GOLBAT
+ db DEX_MEWTWO
+ db DEX_SNORLAX
+ db DEX_MAGIKARP
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_MUK
+ db 0 ; MISSINGNO.
+ db DEX_KINGLER
+ db DEX_CLOYSTER
+ db 0 ; MISSINGNO.
+ db DEX_ELECTRODE
+ db DEX_CLEFABLE
+ db DEX_WEEZING
+ db DEX_PERSIAN
+ db DEX_MAROWAK
+ db 0 ; MISSINGNO.
+ db DEX_HAUNTER
+ db DEX_ABRA
+ db DEX_ALAKAZAM
+ db DEX_PIDGEOTTO
+ db DEX_PIDGEOT
+ db DEX_STARMIE
+ db DEX_BULBASAUR
+ db DEX_VENUSAUR
+ db DEX_TENTACRUEL
+ db 0 ; MISSINGNO.
+ db DEX_GOLDEEN
+ db DEX_SEAKING
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_PONYTA
+ db DEX_RAPIDASH
+ db DEX_RATTATA
+ db DEX_RATICATE
+ db DEX_NIDORINO
+ db DEX_NIDORINA
+ db DEX_GEODUDE
+ db DEX_PORYGON
+ db DEX_AERODACTYL
+ db 0 ; MISSINGNO.
+ db DEX_MAGNEMITE
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_CHARMANDER
+ db DEX_SQUIRTLE
+ db DEX_CHARMELEON
+ db DEX_WARTORTLE
+ db DEX_CHARIZARD
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db 0 ; MISSINGNO.
+ db DEX_ODDISH
+ db DEX_GLOOM
+ db DEX_VILEPLUME
+ db DEX_BELLSPROUT
+ db DEX_WEEPINBELL
+ db DEX_VICTREEBEL
--- /dev/null
+++ b/data/pokemon/dex_text.asm
@@ -1,0 +1,1510 @@
+_RhydonDexEntry::
+ text "Protected by an"
+ next "armor-like hide,"
+ next "it is capable of"
+
+ page "living in molten"
+ next "lava of 3,600"
+ next "degrees"
+ dex
+
+_KangaskhanDexEntry::
+ text "The infant rarely"
+ next "ventures out of"
+ next "its mother's"
+
+ page "protective pouch"
+ next "until it is 3"
+ next "years old"
+ dex
+
+_NidoranMDexEntry::
+ text "Stiffens its ears"
+ next "to sense danger."
+ next "The larger its"
+
+ page "horns, the more"
+ next "powerful its"
+ next "secreted venom"
+ dex
+
+_ClefairyDexEntry::
+ text "Its magical and"
+ next "cute appeal has"
+ next "many admirers."
+
+ page "It is rare and"
+ next "found only in"
+ next "certain areas"
+ dex
+
+_SpearowDexEntry::
+ text "Eats bugs in"
+ next "grassy areas. It"
+ next "has to flap its"
+
+ page "short wings at"
+ next "high speed to"
+ next "stay airborne"
+ dex
+
+_VoltorbDexEntry::
+ text "Usually found in"
+ next "power plants."
+ next "Easily mistaken"
+
+ page "for a # BALL,"
+ next "they have zapped"
+ next "many people"
+ dex
+
+_NidokingDexEntry::
+ text "It uses its"
+ next "powerful tail in"
+ next "battle to smash,"
+
+ page "constrict, then"
+ next "break the prey's"
+ next "bones"
+ dex
+
+_SlowbroDexEntry::
+ text "The SHELLDER that"
+ next "is latched onto"
+ next "SLOWPOKE's tail"
+
+ page "is said to feed"
+ next "on the host's left"
+ next "over scraps"
+ dex
+
+_IvysaurDexEntry::
+ text "When the bulb on"
+ next "its back grows"
+ next "large, it appears"
+
+ page "to lose the"
+ next "ability to stand"
+ next "on its hind legs"
+ dex
+
+_ExeggutorDexEntry::
+ text "Legend has it that"
+ next "on rare occasions,"
+ next "one of its heads"
+
+ page "will drop off and"
+ next "continue on as an"
+ next "EXEGGCUTE"
+ dex
+
+_LickitungDexEntry::
+ text "Its tongue can be"
+ next "extended like a"
+ next "chameleon's. It"
+
+ page "leaves a tingling"
+ next "sensation when it"
+ next "licks enemies"
+ dex
+
+_ExeggcuteDexEntry::
+ text "Often mistaken"
+ next "for eggs."
+ next "When disturbed,"
+
+ page "they quickly"
+ next "gather and attack"
+ next "in swarms"
+ dex
+
+_GrimerDexEntry::
+ text "Appears in filthy"
+ next "areas. Thrives by"
+ next "sucking up"
+
+ page "polluted sludge"
+ next "that is pumped"
+ next "out of factories"
+ dex
+
+_GengarDexEntry::
+ text "Under a full moon,"
+ next "this #MON"
+ next "likes to mimic"
+
+ page "the shadows of"
+ next "people and laugh"
+ next "at their fright"
+ dex
+
+_NidoranFDexEntry::
+ text "Although small,"
+ next "its venomous"
+ next "barbs render this"
+
+ page "#MON dangerous."
+ next "The female has"
+ next "smaller horns"
+ dex
+
+_NidoqueenDexEntry::
+ text "Its hard scales"
+ next "provide strong"
+ next "protection. It"
+
+ page "uses its hefty"
+ next "bulk to execute"
+ next "powerful moves"
+ dex
+
+_CuboneDexEntry::
+ text "Because it never"
+ next "removes its skull"
+ next "helmet, no one"
+
+ page "has ever seen"
+ next "this #MON's"
+ next "real face"
+ dex
+
+_RhyhornDexEntry::
+ text "Its massive bones"
+ next "are 1000 times"
+ next "harder than human"
+
+ page "bones. It can"
+ next "easily knock a"
+ next "trailer flying"
+ dex
+
+_LaprasDexEntry::
+ text "A #MON that"
+ next "has been over-"
+ next "hunted almost to"
+
+ page "extinction. It"
+ next "can ferry people"
+ next "across the water"
+ dex
+
+_ArcanineDexEntry::
+ text "A #MON that"
+ next "has been admired"
+ next "since the past"
+
+ page "for its beauty."
+ next "It runs agilely"
+ next "as if on wings"
+ dex
+
+_MewDexEntry::
+ text "So rare that it"
+ next "is still said to"
+ next "be a mirage by"
+
+ page "many experts. Only"
+ next "a few people have"
+ next "seen it worldwide"
+ dex
+
+_GyaradosDexEntry::
+ text "Rarely seen in"
+ next "the wild. Huge"
+ next "and vicious, it"
+
+ page "is capable of"
+ next "destroying entire"
+ next "cities in a rage"
+ dex
+
+_ShellderDexEntry::
+ text "Its hard shell"
+ next "repels any kind"
+ next "of attack."
+
+ page "It is vulnerable"
+ next "only when its"
+ next "shell is open"
+ dex
+
+_TentacoolDexEntry::
+ text "Drifts in shallow"
+ next "seas. Anglers who"
+ next "hook them by"
+
+ page "accident are"
+ next "often punished by"
+ next "its stinging acid"
+ dex
+
+_GastlyDexEntry::
+ text "Almost invisible,"
+ next "this gaseous"
+ next "#MON cloaks"
+
+ page "the target and"
+ next "puts it to sleep"
+ next "without notice"
+ dex
+
+_ScytherDexEntry::
+ text "With ninja-like"
+ next "agility and speed,"
+ next "it can create the"
+
+ page "illusion that"
+ next "there is more"
+ next "than one"
+ dex
+
+_StaryuDexEntry::
+ text "An enigmatic"
+ next "#MON that can"
+ next "effortlessly"
+
+ page "regenerate any"
+ next "appendage it"
+ next "loses in battle"
+ dex
+
+_BlastoiseDexEntry::
+ text "A brutal #MON"
+ next "with pressurized"
+ next "water jets on its"
+
+ page "shell. They are"
+ next "used for high"
+ next "speed tackles"
+ dex
+
+_PinsirDexEntry::
+ text "If it fails to"
+ next "crush the victim"
+ next "in its pincers,"
+
+ page "it will swing it"
+ next "around and toss"
+ next "it hard"
+ dex
+
+_TangelaDexEntry::
+ text "The whole body is"
+ next "swathed with wide"
+ next "vines that are"
+
+ page "similar to sea-"
+ next "weed. Its vines"
+ next "shake as it walks"
+ dex
+
+_GrowlitheDexEntry::
+ text "Very protective"
+ next "of its territory."
+ next "It will bark and"
+
+ page "bite to repel"
+ next "intruders from"
+ next "its space"
+ dex
+
+_OnixDexEntry::
+ text "As it grows, the"
+ next "stone portions of"
+ next "its body harden"
+
+ page "to become similar"
+ next "to a diamond, but"
+ next "colored black"
+ dex
+
+_FearowDexEntry::
+ text "With its huge and"
+ next "magnificent wings,"
+ next "it can keep aloft"
+
+ page "without ever"
+ next "having to land"
+ next "for rest"
+ dex
+
+_PidgeyDexEntry::
+ text "A common sight in"
+ next "forests and woods."
+ next "It flaps its"
+
+ page "wings at ground"
+ next "level to kick up"
+ next "blinding sand"
+ dex
+
+_SlowpokeDexEntry::
+ text "Incredibly slow"
+ next "and dopey. It"
+ next "takes 5 seconds"
+
+ page "for it to feel"
+ next "pain when under"
+ next "attack"
+ dex
+
+_KadabraDexEntry::
+ text "It emits special"
+ next "alpha waves from"
+ next "its body that"
+
+ page "induce headaches"
+ next "just by being"
+ next "close by"
+ dex
+
+_GravelerDexEntry::
+ text "Rolls down slopes"
+ next "to move. It rolls"
+ next "over any obstacle"
+
+ page "without slowing"
+ next "or changing its"
+ next "direction"
+ dex
+
+_ChanseyDexEntry::
+ text "A rare and elusive"
+ next "#MON that is"
+ next "said to bring"
+
+ page "happiness to those"
+ next "who manage to get"
+ next "it"
+ dex
+
+_MachokeDexEntry::
+ text "Its muscular body"
+ next "is so powerful, it"
+ next "must wear a power"
+
+ page "save belt to be"
+ next "able to regulate"
+ next "its motions"
+ dex
+
+_MrMimeDexEntry::
+ text "If interrupted"
+ next "while it is"
+ next "miming, it will"
+
+ page "slap around the"
+ next "offender with its"
+ next "broad hands"
+ dex
+
+_HitmonleeDexEntry::
+ text "When in a hurry,"
+ next "its legs lengthen"
+ next "progressively."
+
+ page "It runs smoothly"
+ next "with extra long,"
+ next "loping strides"
+ dex
+
+_HitmonchanDexEntry::
+ text "While apparently"
+ next "doing nothing, it"
+ next "fires punches in"
+
+ page "lightning fast"
+ next "volleys that are"
+ next "impossible to see"
+ dex
+
+_ArbokDexEntry::
+ text "It is rumored that"
+ next "the ferocious"
+ next "warning markings"
+
+ page "on its belly"
+ next "differ from area"
+ next "to area"
+ dex
+
+_ParasectDexEntry::
+ text "A host-parasite"
+ next "pair in which the"
+ next "parasite mushroom"
+
+ page "has taken over the"
+ next "host bug. Prefers"
+ next "damp places"
+ dex
+
+_PsyduckDexEntry::
+ text "While lulling its"
+ next "enemies with its"
+ next "vacant look, this"
+
+ page "wily #MON will"
+ next "use psychokinetic"
+ next "powers"
+ dex
+
+_DrowzeeDexEntry::
+ text "Puts enemies to"
+ next "sleep then eats"
+ next "their dreams."
+
+ page "Occasionally gets"
+ next "sick from eating"
+ next "bad dreams"
+ dex
+
+_GolemDexEntry::
+ text "Its boulder-like"
+ next "body is extremely"
+ next "hard. It can"
+
+ page "easily withstand"
+ next "dynamite blasts"
+ next "without damage"
+ dex
+
+_MagmarDexEntry::
+ text "Its body always"
+ next "burns with an"
+ next "orange glow that"
+
+ page "enables it to"
+ next "hide perfectly"
+ next "among flames"
+ dex
+
+_ElectabuzzDexEntry::
+ text "Normally found"
+ next "near power plants,"
+ next "they can wander"
+
+ page "away and cause"
+ next "major blackouts"
+ next "in cities"
+ dex
+
+_MagnetonDexEntry::
+ text "Formed by several"
+ next "MAGNEMITEs linked"
+ next "together. They"
+
+ page "frequently appear"
+ next "when sunspots"
+ next "flare up"
+ dex
+
+_KoffingDexEntry::
+ text "Because it stores"
+ next "several kinds of"
+ next "toxic gases in"
+
+ page "its body, it is"
+ next "prone to exploding"
+ next "without warning"
+ dex
+
+_MankeyDexEntry::
+ text "Extremely quick to"
+ next "anger. It could"
+ next "be docile one"
+
+ page "moment then"
+ next "thrashing away"
+ next "the next instant"
+ dex
+
+_SeelDexEntry::
+ text "The protruding"
+ next "horn on its head"
+ next "is very hard."
+
+ page "It is used for"
+ next "bashing through"
+ next "thick ice"
+ dex
+
+_DiglettDexEntry::
+ text "Lives about one"
+ next "yard underground"
+ next "where it feeds on"
+
+ page "plant roots. It"
+ next "sometimes appears"
+ next "above ground"
+ dex
+
+_TaurosDexEntry::
+ text "When it targets"
+ next "an enemy, it"
+ next "charges furiously"
+
+ page "while whipping its"
+ next "body with its"
+ next "long tails"
+ dex
+
+_FarfetchdDexEntry::
+ text "The sprig of"
+ next "green onions it"
+ next "holds is its"
+
+ page "weapon. It is"
+ next "used much like a"
+ next "metal sword"
+ dex
+
+_VenonatDexEntry::
+ text "Lives in the"
+ next "shadows of tall"
+ next "trees where it"
+
+ page "eats insects. It"
+ next "is attracted by"
+ next "light at night"
+ dex
+
+_DragoniteDexEntry::
+ text "An extremely"
+ next "rarely seen"
+ next "marine #MON."
+
+ page "Its intelligence"
+ next "is said to match"
+ next "that of humans"
+ dex
+
+_DoduoDexEntry::
+ text "A bird that makes"
+ next "up for its poor"
+ next "flying with its"
+
+ page "fast foot speed."
+ next "Leaves giant"
+ next "footprints"
+ dex
+
+_PoliwagDexEntry::
+ text "Its newly grown"
+ next "legs prevent it"
+ next "from running. It"
+
+ page "appears to prefer"
+ next "swimming than"
+ next "trying to stand"
+ dex
+
+_JynxDexEntry::
+ text "It seductively"
+ next "wiggles its hips"
+ next "as it walks. It"
+
+ page "can cause people"
+ next "to dance in"
+ next "unison with it"
+ dex
+
+_MoltresDexEntry::
+ text "Known as the"
+ next "legendary bird of"
+ next "fire. Every flap"
+
+ page "of its wings"
+ next "creates a dazzling"
+ next "flash of flames"
+ dex
+
+_ArticunoDexEntry::
+ text "A legendary bird"
+ next "#MON that is"
+ next "said to appear to"
+
+ page "doomed people who"
+ next "are lost in icy"
+ next "mountains"
+ dex
+
+_ZapdosDexEntry::
+ text "A legendary bird"
+ next "#MON that is"
+ next "said to appear"
+
+ page "from clouds while"
+ next "dropping enormous"
+ next "lightning bolts"
+ dex
+
+_DittoDexEntry::
+ text "Capable of copying"
+ next "an enemy's genetic"
+ next "code to instantly"
+
+ page "transform itself"
+ next "into a duplicate"
+ next "of the enemy"
+ dex
+
+_MeowthDexEntry::
+ text "Adores circular"
+ next "objects. Wanders"
+ next "the streets on a"
+
+ page "nightly basis to"
+ next "look for dropped"
+ next "loose change"
+ dex
+
+_KrabbyDexEntry::
+ text "Its pincers are"
+ next "not only powerful"
+ next "weapons, they are"
+
+ page "used for balance"
+ next "when walking"
+ next "sideways"
+ dex
+
+_VulpixDexEntry::
+ text "At the time of"
+ next "birth, it has"
+ next "just one tail."
+
+ page "The tail splits"
+ next "from its tip as"
+ next "it grows older"
+ dex
+
+_NinetalesDexEntry::
+ text "Very smart and"
+ next "very vengeful."
+ next "Grabbing one of"
+
+ page "its many tails"
+ next "could result in a"
+ next "1000-year curse"
+ dex
+
+_PikachuDexEntry::
+ text "When several of"
+ next "these #MON"
+ next "gather, their"
+
+ page "electricity could"
+ next "build and cause"
+ next "lightning storms"
+ dex
+
+_RaichuDexEntry::
+ text "Its long tail"
+ next "serves as a"
+ next "ground to protect"
+
+ page "itself from its"
+ next "own high voltage"
+ next "power"
+ dex
+
+_DratiniDexEntry::
+ text "Long considered a"
+ next "mythical #MON"
+ next "until recently"
+
+ page "when a small"
+ next "colony was found"
+ next "living underwater"
+ dex
+
+_DragonairDexEntry::
+ text "A mystical #MON"
+ next "that exudes a"
+ next "gentle aura."
+
+ page "Has the ability"
+ next "to change climate"
+ next "conditions"
+ dex
+
+_KabutoDexEntry::
+ text "A #MON that"
+ next "was resurrected"
+ next "from a fossil"
+
+ page "found in what was"
+ next "once the ocean"
+ next "floor eons ago"
+ dex
+
+_KabutopsDexEntry::
+ text "Its sleek shape is"
+ next "perfect for swim-"
+ next "ming. It slashes"
+
+ page "prey with its"
+ next "claws and drains"
+ next "the body fluids"
+ dex
+
+_HorseaDexEntry::
+ text "Known to shoot"
+ next "down flying bugs"
+ next "with precision"
+
+ page "blasts of ink"
+ next "from the surface"
+ next "of the water"
+ dex
+
+_SeadraDexEntry::
+ text "Capable of swim-"
+ next "ming backwards by"
+ next "rapidly flapping"
+
+ page "its wing-like"
+ next "pectoral fins and"
+ next "stout tail"
+ dex
+
+_SandshrewDexEntry::
+ text "Burrows deep"
+ next "underground in"
+ next "arid locations"
+
+ page "far from water."
+ next "It only emerges"
+ next "to hunt for food"
+ dex
+
+_SandslashDexEntry::
+ text "Curls up into a"
+ next "spiny ball when"
+ next "threatened. It"
+
+ page "can roll while"
+ next "curled up to"
+ next "attack or escape"
+ dex
+
+_OmanyteDexEntry::
+ text "Although long"
+ next "extinct, in rare"
+ next "cases, it can be"
+
+ page "genetically"
+ next "resurrected from"
+ next "fossils"
+ dex
+
+_OmastarDexEntry::
+ text "A prehistoric"
+ next "#MON that died"
+ next "out when its"
+
+ page "heavy shell made"
+ next "it impossible to"
+ next "catch prey"
+ dex
+
+_JigglypuffDexEntry::
+ text "When its huge eyes"
+ next "light up, it sings"
+ next "a mysteriously"
+
+ page "soothing melody"
+ next "that lulls its"
+ next "enemies to sleep"
+ dex
+
+_WigglytuffDexEntry::
+ text "The body is soft"
+ next "and rubbery. When"
+ next "angered, it will"
+
+ page "suck in air and"
+ next "inflate itself to"
+ next "an enormous size"
+ dex
+
+_EeveeDexEntry::
+ text "Its genetic code"
+ next "is irregular."
+ next "It may mutate if"
+
+ page "it is exposed to"
+ next "radiation from"
+ next "element STONEs"
+ dex
+
+_FlareonDexEntry::
+ text "When storing"
+ next "thermal energy in"
+ next "its body, its"
+
+ page "temperature could"
+ next "soar to over 1600"
+ next "degrees"
+ dex
+
+_JolteonDexEntry::
+ text "It accumulates"
+ next "negative ions in"
+ next "the atmosphere to"
+
+ page "blast out 10000-"
+ next "volt lightning"
+ next "bolts"
+ dex
+
+_VaporeonDexEntry::
+ text "Lives close to"
+ next "water. Its long"
+ next "tail is ridged"
+
+ page "with a fin which"
+ next "is often mistaken"
+ next "for a mermaid's"
+ dex
+
+_MachopDexEntry::
+ text "Loves to build"
+ next "its muscles."
+ next "It trains in all"
+
+ page "styles of martial"
+ next "arts to become"
+ next "even stronger"
+ dex
+
+_ZubatDexEntry::
+ text "Forms colonies in"
+ next "perpetually dark"
+ next "places. Uses"
+
+ page "ultrasonic waves"
+ next "to identify and"
+ next "approach targets"
+ dex
+
+_EkansDexEntry::
+ text "Moves silently"
+ next "and stealthily."
+ next "Eats the eggs of"
+
+ page "birds, such as"
+ next "PIDGEY and"
+ next "SPEAROW, whole"
+ dex
+
+_ParasDexEntry::
+ text "Burrows to suck"
+ next "tree roots. The"
+ next "mushrooms on its"
+
+ page "back grow by draw-"
+ next "ing nutrients from"
+ next "the bug host"
+ dex
+
+_PoliwhirlDexEntry::
+ text "Capable of living"
+ next "in or out of"
+ next "water. When out"
+
+ page "of water, it"
+ next "sweats to keep"
+ next "its body slimy"
+ dex
+
+_PoliwrathDexEntry::
+ text "An adept swimmer"
+ next "at both the front"
+ next "crawl and breast"
+
+ page "stroke. Easily"
+ next "overtakes the best"
+ next "human swimmers"
+ dex
+
+_WeedleDexEntry::
+ text "Often found in"
+ next "forests, eating"
+ next "leaves."
+
+ page "It has a sharp"
+ next "venomous stinger"
+ next "on its head"
+ dex
+
+_KakunaDexEntry::
+ text "Almost incapable"
+ next "of moving, this"
+ next "#MON can only"
+
+ page "harden its shell"
+ next "to protect itself"
+ next "from predators"
+ dex
+
+_BeedrillDexEntry::
+ text "Flies at high"
+ next "speed and attacks"
+ next "using its large"
+
+ page "venomous stingers"
+ next "on its forelegs"
+ next "and tail"
+ dex
+
+_DodrioDexEntry::
+ text "Uses its three"
+ next "brains to execute"
+ next "complex plans."
+
+ page "While two heads"
+ next "sleep, one head"
+ next "stays awake"
+ dex
+
+_PrimeapeDexEntry::
+ text "Always furious"
+ next "and tenacious to"
+ next "boot. It will not"
+
+ page "abandon chasing"
+ next "its quarry until"
+ next "it is caught"
+ dex
+
+_DugtrioDexEntry::
+ text "A team of DIGLETT"
+ next "triplets."
+ next "It triggers huge"
+
+ page "earthquakes by"
+ next "burrowing 60 miles"
+ next "underground"
+ dex
+
+_VenomothDexEntry::
+ text "The dust-like"
+ next "scales covering"
+ next "its wings are"
+
+ page "color coded to"
+ next "indicate the kinds"
+ next "of poison it has"
+ dex
+
+_DewgongDexEntry::
+ text "Stores thermal"
+ next "energy in its"
+ next "body. Swims at a"
+
+ page "steady 8 knots"
+ next "even in intensely"
+ next "cold waters"
+ dex
+
+_CaterpieDexEntry::
+ text "Its short feet"
+ next "are tipped with"
+ next "suction pads that"
+
+ page "enable it to"
+ next "tirelessly climb"
+ next "slopes and walls"
+ dex
+
+_MetapodDexEntry::
+ text "This #MON is"
+ next "vulnerable to"
+ next "attack while its"
+
+ page "shell is soft,"
+ next "exposing its weak"
+ next "and tender body"
+ dex
+
+_ButterfreeDexEntry::
+ text "In battle, it"
+ next "flaps its wings"
+ next "at high speed to"
+
+ page "release highly"
+ next "toxic dust into"
+ next "the air"
+ dex
+
+_MachampDexEntry::
+ text "Using its heavy"
+ next "muscles, it throws"
+ next "powerful punches"
+
+ page "that can send the"
+ next "victim clear over"
+ next "the horizon"
+ dex
+
+_GolduckDexEntry::
+ text "Often seen swim-"
+ next "ming elegantly by"
+ next "lake shores. It"
+
+ page "is often mistaken"
+ next "for the Japanese"
+ next "monster, Kappa"
+ dex
+
+_HypnoDexEntry::
+ text "When it locks eyes"
+ next "with an enemy, it"
+ next "will use a mix of"
+
+ page "PSI moves such as"
+ next "HYPNOSIS and"
+ next "CONFUSION"
+ dex
+
+_GolbatDexEntry::
+ text "Once it strikes,"
+ next "it will not stop"
+ next "draining energy"
+
+ page "from the victim"
+ next "even if it gets"
+ next "too heavy to fly"
+ dex
+
+_MewtwoDexEntry::
+ text "It was created by"
+ next "a scientist after"
+ next "years of horrific"
+
+ page "gene splicing and"
+ next "DNA engineering"
+ next "experiments"
+ dex
+
+_SnorlaxDexEntry::
+ text "Very lazy. Just"
+ next "eats and sleeps."
+ next "As its rotund"
+
+ page "bulk builds, it"
+ next "becomes steadily"
+ next "more slothful"
+ dex
+
+_MagikarpDexEntry::
+ text "In the distant"
+ next "past, it was"
+ next "somewhat stronger"
+
+ page "than the horribly"
+ next "weak descendants"
+ next "that exist today"
+ dex
+
+_MukDexEntry::
+ text "Thickly covered"
+ next "with a filthy,"
+ next "vile sludge. It"
+
+ page "is so toxic, even"
+ next "its footprints"
+ next "contain poison"
+ dex
+
+_KinglerDexEntry::
+ text "The large pincer"
+ next "has 10000 hp of"
+ next "crushing power."
+
+ page "However, its huge"
+ next "size makes it"
+ next "unwieldy to use"
+ dex
+
+_CloysterDexEntry::
+ text "When attacked, it"
+ next "launches its"
+ next "horns in quick"
+
+ page "volleys. Its"
+ next "innards have"
+ next "never been seen"
+ dex
+
+_ElectrodeDexEntry::
+ text "It stores electric"
+ next "energy under very"
+ next "high pressure."
+
+ page "It often explodes"
+ next "with little or no"
+ next "provocation"
+ dex
+
+_ClefableDexEntry::
+ text "A timid fairy"
+ next "#MON that is"
+ next "rarely seen. It"
+
+ page "will run and hide"
+ next "the moment it"
+ next "senses people"
+ dex
+
+_WeezingDexEntry::
+ text "Where two kinds"
+ next "of poison gases"
+ next "meet, 2 KOFFINGs"
+
+ page "can fuse into a"
+ next "WEEZING over many"
+ next "years"
+ dex
+
+_PersianDexEntry::
+ text "Although its fur"
+ next "has many admirers,"
+ next "it is tough to"
+
+ page "raise as a pet"
+ next "because of its"
+ next "fickle meanness"
+ dex
+
+_MarowakDexEntry::
+ text "The bone it holds"
+ next "is its key weapon."
+ next "It throws the"
+
+ page "bone skillfully"
+ next "like a boomerang"
+ next "to KO targets"
+ dex
+
+_HaunterDexEntry::
+ text "Because of its"
+ next "ability to slip"
+ next "through block"
+
+ page "walls, it is said"
+ next "to be from an-"
+ next "other dimension"
+ dex
+
+_AbraDexEntry::
+ text "Using its ability"
+ next "to read minds, it"
+ next "will identify"
+
+ page "impending danger"
+ next "and TELEPORT to"
+ next "safety"
+ dex
+
+_AlakazamDexEntry::
+ text "Its brain can out-"
+ next "perform a super-"
+ next "computer."
+
+ page "Its intelligence"
+ next "quotient is said"
+ next "to be 5,000"
+ dex
+
+_PidgeottoDexEntry::
+ text "Very protective"
+ next "of its sprawling"
+ next "territorial area,"
+
+ page "this #MON will"
+ next "fiercely peck at"
+ next "any intruder"
+ dex
+
+_PidgeotDexEntry::
+ text "When hunting, it"
+ next "skims the surface"
+ next "of water at high"
+
+ page "speed to pick off"
+ next "unwary prey such"
+ next "as MAGIKARP"
+ dex
+
+_StarmieDexEntry::
+ text "Its central core"
+ next "glows with the"
+ next "seven colors of"
+
+ page "the rainbow. Some"
+ next "people value the"
+ next "core as a gem"
+ dex
+
+_BulbasaurDexEntry::
+ text "A strange seed was"
+ next "planted on its"
+ next "back at birth."
+
+ page "The plant sprouts"
+ next "and grows with"
+ next "this #MON"
+ dex
+
+_VenusaurDexEntry::
+ text "The plant blooms"
+ next "when it is"
+ next "absorbing solar"
+
+ page "energy. It stays"
+ next "on the move to"
+ next "seek sunlight"
+ dex
+
+_TentacruelDexEntry::
+ text "The tentacles are"
+ next "normally kept"
+ next "short. On hunts,"
+
+ page "they are extended"
+ next "to ensnare and"
+ next "immobilize prey"
+ dex
+
+_GoldeenDexEntry::
+ text "Its tail fin"
+ next "billows like an"
+ next "elegant ballroom"
+
+ page "dress, giving it"
+ next "the nickname of"
+ next "the Water Queen"
+ dex
+
+_SeakingDexEntry::
+ text "In the autumn"
+ next "spawning season,"
+ next "they can be seen"
+
+ page "swimming power-"
+ next "fully up rivers"
+ next "and creeks"
+ dex
+
+_PonytaDexEntry::
+ text "Its hooves are 10"
+ next "times harder than"
+ next "diamonds. It can"
+
+ page "trample anything"
+ next "completely flat"
+ next "in little time"
+ dex
+
+_RapidashDexEntry::
+ text "Very competitive,"
+ next "this #MON will"
+ next "chase anything"
+
+ page "that moves fast"
+ next "in the hopes of"
+ next "racing it"
+ dex
+
+_RattataDexEntry::
+ text "Bites anything"
+ next "when it attacks."
+ next "Small and very"
+
+ page "quick, it is a"
+ next "common sight in"
+ next "many places"
+ dex
+
+_RaticateDexEntry::
+ text "It uses its whis-"
+ next "kers to maintain"
+ next "its balance."
+
+ page "It apparently"
+ next "slows down if"
+ next "they are cut off"
+ dex
+
+_NidorinoDexEntry::
+ text "An aggressive"
+ next "#MON that is"
+ next "quick to attack."
+
+ page "The horn on its"
+ next "head secretes a"
+ next "powerful venom"
+ dex
+
+_NidorinaDexEntry::
+ text "The female's horn"
+ next "develops slowly."
+ next "Prefers physical"
+
+ page "attacks such as"
+ next "clawing and"
+ next "biting"
+ dex
+
+_GeodudeDexEntry::
+ text "Found in fields"
+ next "and mountains."
+ next "Mistaking them"
+
+ page "for boulders,"
+ next "people often step"
+ next "or trip on them"
+ dex
+
+_PorygonDexEntry::
+ text "A #MON that"
+ next "consists entirely"
+ next "of programming"
+
+ page "code. Capable of"
+ next "moving freely in"
+ next "cyberspace"
+ dex
+
+_AerodactylDexEntry::
+ text "A ferocious, pre-"
+ next "historic #MON"
+ next "that goes for the"
+
+ page "enemy's throat"
+ next "with its serrated"
+ next "saw-like fangs"
+ dex
+
+_MagnemiteDexEntry::
+ text "Uses anti-gravity"
+ next "to stay suspended."
+ next "Appears without"
+
+ page "warning and uses"
+ next "THUNDER WAVE and"
+ next "similar moves"
+ dex
+
+_CharmanderDexEntry::
+ text "Obviously prefers"
+ next "hot places. When"
+ next "it rains, steam"
+
+ page "is said to spout"
+ next "from the tip of"
+ next "its tail"
+ dex
+
+_SquirtleDexEntry::
+ text "After birth, its"
+ next "back swells and"
+ next "hardens into a"
+
+ page "shell. Powerfully"
+ next "sprays foam from"
+ next "its mouth"
+ dex
+
+_CharmeleonDexEntry::
+ text "When it swings"
+ next "its burning tail,"
+ next "it elevates the"
+
+ page "temperature to"
+ next "unbearably high"
+ next "levels"
+ dex
+
+_WartortleDexEntry::
+ text "Often hides in"
+ next "water to stalk"
+ next "unwary prey. For"
+
+ page "swimming fast, it"
+ next "moves its ears to"
+ next "maintain balance"
+ dex
+
+_CharizardDexEntry::
+ text "Spits fire that"
+ next "is hot enough to"
+ next "melt boulders."
+
+ page "Known to cause"
+ next "forest fires"
+ next "unintentionally"
+ dex
+
+_OddishDexEntry::
+ text "During the day,"
+ next "it keeps its face"
+ next "buried in the"
+
+ page "ground. At night,"
+ next "it wanders around"
+ next "sowing its seeds"
+ dex
+
+_GloomDexEntry::
+ text "The fluid that"
+ next "oozes from its"
+ next "mouth isn't drool."
+
+ page "It is a nectar"
+ next "that is used to"
+ next "attract prey"
+ dex
+
+_VileplumeDexEntry::
+ text "The larger its"
+ next "petals, the more"
+ next "toxic pollen it"
+
+ page "contains. Its big"
+ next "head is heavy and"
+ next "hard to hold up"
+ dex
+
+_BellsproutDexEntry::
+ text "A carnivorous"
+ next "#MON that traps"
+ next "and eats bugs."
+
+ page "It uses its root"
+ next "feet to soak up"
+ next "needed moisture"
+ dex
+
+_WeepinbellDexEntry::
+ text "It spits out"
+ next "POISONPOWDER to"
+ next "immobilize the"
+
+ page "enemy and then"
+ next "finishes it with"
+ next "a spray of ACID"
+ dex
+
+_VictreebelDexEntry::
+ text "Said to live in"
+ next "huge colonies"
+ next "deep in jungles,"
+
+ page "although no one"
+ next "has ever returned"
+ next "from there"
+ dex
+
--- /dev/null
+++ b/data/pokemon/evos_moves.asm
@@ -1,0 +1,2134 @@
+; See constants/pokemon_data_constants.asm
+; The max number of evolutions per monster is MAX_EVOLUTIONS
+
+EvosMovesPointerTable:
+ dw RhydonEvosMoves
+ dw KangaskhanEvosMoves
+ dw NidoranMEvosMoves
+ dw ClefairyEvosMoves
+ dw SpearowEvosMoves
+ dw VoltorbEvosMoves
+ dw NidokingEvosMoves
+ dw SlowbroEvosMoves
+ dw IvysaurEvosMoves
+ dw ExeggutorEvosMoves
+ dw LickitungEvosMoves
+ dw ExeggcuteEvosMoves
+ dw GrimerEvosMoves
+ dw GengarEvosMoves
+ dw NidoranFEvosMoves
+ dw NidoqueenEvosMoves
+ dw CuboneEvosMoves
+ dw RhyhornEvosMoves
+ dw LaprasEvosMoves
+ dw ArcanineEvosMoves
+ dw MewEvosMoves
+ dw GyaradosEvosMoves
+ dw ShellderEvosMoves
+ dw TentacoolEvosMoves
+ dw GastlyEvosMoves
+ dw ScytherEvosMoves
+ dw StaryuEvosMoves
+ dw BlastoiseEvosMoves
+ dw PinsirEvosMoves
+ dw TangelaEvosMoves
+ dw MissingNo1FEvosMoves
+ dw MissingNo20EvosMoves
+ dw GrowlitheEvosMoves
+ dw OnixEvosMoves
+ dw FearowEvosMoves
+ dw PidgeyEvosMoves
+ dw SlowpokeEvosMoves
+ dw KadabraEvosMoves
+ dw GravelerEvosMoves
+ dw ChanseyEvosMoves
+ dw MachokeEvosMoves
+ dw MrMimeEvosMoves
+ dw HitmonleeEvosMoves
+ dw HitmonchanEvosMoves
+ dw ArbokEvosMoves
+ dw ParasectEvosMoves
+ dw PsyduckEvosMoves
+ dw DrowzeeEvosMoves
+ dw GolemEvosMoves
+ dw MissingNo32EvosMoves
+ dw MagmarEvosMoves
+ dw MissingNo34EvosMoves
+ dw ElectabuzzEvosMoves
+ dw MagnetonEvosMoves
+ dw KoffingEvosMoves
+ dw MissingNo38EvosMoves
+ dw MankeyEvosMoves
+ dw SeelEvosMoves
+ dw DiglettEvosMoves
+ dw TaurosEvosMoves
+ dw MissingNo3DEvosMoves
+ dw MissingNo3EEvosMoves
+ dw MissingNo3FEvosMoves
+ dw FarfetchdEvosMoves
+ dw VenonatEvosMoves
+ dw DragoniteEvosMoves
+ dw MissingNo43EvosMoves
+ dw MissingNo44EvosMoves
+ dw MissingNo45EvosMoves
+ dw DoduoEvosMoves
+ dw PoliwagEvosMoves
+ dw JynxEvosMoves
+ dw MoltresEvosMoves
+ dw ArticunoEvosMoves
+ dw ZapdosEvosMoves
+ dw DittoEvosMoves
+ dw MeowthEvosMoves
+ dw KrabbyEvosMoves
+ dw MissingNo4FEvosMoves
+ dw MissingNo50EvosMoves
+ dw MissingNo51EvosMoves
+ dw VulpixEvosMoves
+ dw NinetalesEvosMoves
+ dw PikachuEvosMoves
+ dw RaichuEvosMoves
+ dw MissingNo56EvosMoves
+ dw MissingNo57EvosMoves
+ dw DratiniEvosMoves
+ dw DragonairEvosMoves
+ dw KabutoEvosMoves
+ dw KabutopsEvosMoves
+ dw HorseaEvosMoves
+ dw SeadraEvosMoves
+ dw MissingNo5EEvosMoves
+ dw MissingNo5FEvosMoves
+ dw SandshrewEvosMoves
+ dw SandslashEvosMoves
+ dw OmanyteEvosMoves
+ dw OmastarEvosMoves
+ dw JigglypuffEvosMoves
+ dw WigglytuffEvosMoves
+ dw EeveeEvosMoves
+ dw FlareonEvosMoves
+ dw JolteonEvosMoves
+ dw VaporeonEvosMoves
+ dw MachopEvosMoves
+ dw ZubatEvosMoves
+ dw EkansEvosMoves
+ dw ParasEvosMoves
+ dw PoliwhirlEvosMoves
+ dw PoliwrathEvosMoves
+ dw WeedleEvosMoves
+ dw KakunaEvosMoves
+ dw BeedrillEvosMoves
+ dw MissingNo73EvosMoves
+ dw DodrioEvosMoves
+ dw PrimeapeEvosMoves
+ dw DugtrioEvosMoves
+ dw VenomothEvosMoves
+ dw DewgongEvosMoves
+ dw MissingNo79EvosMoves
+ dw MissingNo7AEvosMoves
+ dw CaterpieEvosMoves
+ dw MetapodEvosMoves
+ dw ButterfreeEvosMoves
+ dw MachampEvosMoves
+ dw MissingNo7FEvosMoves
+ dw GolduckEvosMoves
+ dw HypnoEvosMoves
+ dw GolbatEvosMoves
+ dw MewtwoEvosMoves
+ dw SnorlaxEvosMoves
+ dw MagikarpEvosMoves
+ dw MissingNo86EvosMoves
+ dw MissingNo87EvosMoves
+ dw MukEvosMoves
+ dw MissingNo8AEvosMoves
+ dw KinglerEvosMoves
+ dw CloysterEvosMoves
+ dw MissingNo8CEvosMoves
+ dw ElectrodeEvosMoves
+ dw ClefableEvosMoves
+ dw WeezingEvosMoves
+ dw PersianEvosMoves
+ dw MarowakEvosMoves
+ dw MissingNo92EvosMoves
+ dw HaunterEvosMoves
+ dw AbraEvosMoves
+ dw AlakazamEvosMoves
+ dw PidgeottoEvosMoves
+ dw PidgeotEvosMoves
+ dw StarmieEvosMoves
+ dw BulbasaurEvosMoves
+ dw VenusaurEvosMoves
+ dw TentacruelEvosMoves
+ dw MissingNo9CEvosMoves
+ dw GoldeenEvosMoves
+ dw SeakingEvosMoves
+ dw MissingNo9FEvosMoves
+ dw MissingNoA0EvosMoves
+ dw MissingNoA1EvosMoves
+ dw MissingNoA2EvosMoves
+ dw PonytaEvosMoves
+ dw RapidashEvosMoves
+ dw RattataEvosMoves
+ dw RaticateEvosMoves
+ dw NidorinoEvosMoves
+ dw NidorinaEvosMoves
+ dw GeodudeEvosMoves
+ dw PorygonEvosMoves
+ dw AerodactylEvosMoves
+ dw MissingNoACEvosMoves
+ dw MagnemiteEvosMoves
+ dw MissingNoAEEvosMoves
+ dw MissingNoAFEvosMoves
+ dw CharmanderEvosMoves
+ dw SquirtleEvosMoves
+ dw CharmeleonEvosMoves
+ dw WartortleEvosMoves
+ dw CharizardEvosMoves
+ dw MissingNoB5EvosMoves
+ dw FossilKabutopsEvosMoves
+ dw FossilAerodactylEvosMoves
+ dw MonGhostEvosMoves
+ dw OddishEvosMoves
+ dw GloomEvosMoves
+ dw VileplumeEvosMoves
+ dw BellsproutEvosMoves
+ dw WeepinbellEvosMoves
+ dw VictreebelEvosMoves
+
+RhydonEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 30, STOMP
+ db 35, TAIL_WHIP
+ db 40, FURY_ATTACK
+ db 48, HORN_DRILL
+ db 55, LEER
+ db 64, TAKE_DOWN
+ db 0
+
+KangaskhanEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 26, BITE
+ db 31, TAIL_WHIP
+ db 36, MEGA_PUNCH
+ db 41, LEER
+ db 46, DIZZY_PUNCH
+ db 0
+
+NidoranMEvosMoves:
+; Evolutions
+ db EV_LEVEL, 16, NIDORINO
+ db 0
+; Learnset
+ db 8, HORN_ATTACK
+ db 14, POISON_STING
+ db 21, FOCUS_ENERGY
+ db 29, FURY_ATTACK
+ db 36, HORN_DRILL
+ db 43, DOUBLE_KICK
+ db 0
+
+ClefairyEvosMoves:
+; Evolutions
+ db EV_ITEM, MOON_STONE, 1, CLEFABLE
+ db 0
+; Learnset
+ db 13, SING
+ db 18, DOUBLESLAP
+ db 24, MINIMIZE
+ db 31, METRONOME
+ db 39, DEFENSE_CURL
+ db 48, LIGHT_SCREEN
+ db 0
+
+SpearowEvosMoves:
+; Evolutions
+ db EV_LEVEL, 20, FEAROW
+ db 0
+; Learnset
+ db 9, LEER
+ db 15, FURY_ATTACK
+ db 22, MIRROR_MOVE
+ db 29, DRILL_PECK
+ db 36, AGILITY
+ db 0
+
+VoltorbEvosMoves:
+; Evolutions
+ db EV_LEVEL, 30, ELECTRODE
+ db 0
+; Learnset
+ db 17, SONICBOOM
+ db 22, SELFDESTRUCT
+ db 29, LIGHT_SCREEN
+ db 36, SWIFT
+ db 43, EXPLOSION
+ db 0
+
+NidokingEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 8, HORN_ATTACK
+ db 14, POISON_STING
+ db 23, THRASH
+ db 0
+
+SlowbroEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 18, DISABLE
+ db 22, HEADBUTT
+ db 27, GROWL
+ db 33, WATER_GUN
+ db 37, WITHDRAW
+ db 44, AMNESIA
+ db 55, PSYCHIC_M
+ db 0
+
+IvysaurEvosMoves:
+; Evolutions
+ db EV_LEVEL, 32, VENUSAUR
+ db 0
+; Learnset
+ db 7, LEECH_SEED
+ db 13, VINE_WHIP
+ db 22, POISONPOWDER
+ db 30, RAZOR_LEAF
+ db 38, GROWTH
+ db 46, SLEEP_POWDER
+ db 54, SOLARBEAM
+ db 0
+
+ExeggutorEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 28, STOMP
+ db 0
+
+LickitungEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 7, STOMP
+ db 15, DISABLE
+ db 23, DEFENSE_CURL
+ db 31, SLAM
+ db 39, SCREECH
+ db 0
+
+ExeggcuteEvosMoves:
+; Evolutions
+ db EV_ITEM, LEAF_STONE, 1, EXEGGUTOR
+ db 0
+; Learnset
+ db 25, REFLECT
+ db 28, LEECH_SEED
+ db 32, STUN_SPORE
+ db 37, POISONPOWDER
+ db 42, SOLARBEAM
+ db 48, SLEEP_POWDER
+ db 0
+
+GrimerEvosMoves:
+; Evolutions
+ db EV_LEVEL, 38, MUK
+ db 0
+; Learnset
+ db 30, POISON_GAS
+ db 33, MINIMIZE
+ db 37, SLUDGE
+ db 42, HARDEN
+ db 48, SCREECH
+ db 55, ACID_ARMOR
+ db 0
+
+GengarEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 29, HYPNOSIS
+ db 38, DREAM_EATER
+ db 0
+
+NidoranFEvosMoves:
+; Evolutions
+ db EV_LEVEL, 16, NIDORINA
+ db 0
+; Learnset
+ db 8, SCRATCH
+ db 14, POISON_STING
+ db 21, TAIL_WHIP
+ db 29, BITE
+ db 36, FURY_SWIPES
+ db 43, DOUBLE_KICK
+ db 0
+
+NidoqueenEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 8, SCRATCH
+ db 14, POISON_STING
+ db 23, BODY_SLAM
+ db 0
+
+CuboneEvosMoves:
+; Evolutions
+ db EV_LEVEL, 28, MAROWAK
+ db 0
+; Learnset
+ db 25, LEER
+ db 31, FOCUS_ENERGY
+ db 38, THRASH
+ db 43, BONEMERANG
+ db 46, RAGE
+ db 0
+
+RhyhornEvosMoves:
+; Evolutions
+ db EV_LEVEL, 42, RHYDON
+ db 0
+; Learnset
+ db 30, STOMP
+ db 35, TAIL_WHIP
+ db 40, FURY_ATTACK
+ db 45, HORN_DRILL
+ db 50, LEER
+ db 55, TAKE_DOWN
+ db 0
+
+LaprasEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 16, SING
+ db 20, MIST
+ db 25, BODY_SLAM
+ db 31, CONFUSE_RAY
+ db 38, ICE_BEAM
+ db 46, HYDRO_PUMP
+ db 0
+
+ArcanineEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MewEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 10, TRANSFORM
+ db 20, MEGA_PUNCH
+ db 30, METRONOME
+ db 40, PSYCHIC_M
+ db 0
+
+GyaradosEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 20, BITE
+ db 25, DRAGON_RAGE
+ db 32, LEER
+ db 41, HYDRO_PUMP
+ db 52, HYPER_BEAM
+ db 0
+
+ShellderEvosMoves:
+; Evolutions
+ db EV_ITEM, WATER_STONE, 1, CLOYSTER
+ db 0
+; Learnset
+ db 18, SUPERSONIC
+ db 23, CLAMP
+ db 30, AURORA_BEAM
+ db 39, LEER
+ db 50, ICE_BEAM
+ db 0
+
+TentacoolEvosMoves:
+; Evolutions
+ db EV_LEVEL, 30, TENTACRUEL
+ db 0
+; Learnset
+ db 7, SUPERSONIC
+ db 13, WRAP
+ db 18, POISON_STING
+ db 22, WATER_GUN
+ db 27, CONSTRICT
+ db 33, BARRIER
+ db 40, SCREECH
+ db 48, HYDRO_PUMP
+ db 0
+
+GastlyEvosMoves:
+; Evolutions
+ db EV_LEVEL, 25, HAUNTER
+ db 0
+; Learnset
+ db 27, HYPNOSIS
+ db 35, DREAM_EATER
+ db 0
+
+ScytherEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 17, LEER
+ db 20, FOCUS_ENERGY
+ db 24, DOUBLE_TEAM
+ db 29, SLASH
+ db 35, SWORDS_DANCE
+ db 42, AGILITY
+ db 0
+
+StaryuEvosMoves:
+; Evolutions
+ db EV_ITEM, WATER_STONE, 1, STARMIE
+ db 0
+; Learnset
+ db 17, WATER_GUN
+ db 22, HARDEN
+ db 27, RECOVER
+ db 32, SWIFT
+ db 37, MINIMIZE
+ db 42, LIGHT_SCREEN
+ db 47, HYDRO_PUMP
+ db 0
+
+BlastoiseEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 8, BUBBLE
+ db 15, WATER_GUN
+ db 24, BITE
+ db 31, WITHDRAW
+ db 42, SKULL_BASH
+ db 52, HYDRO_PUMP
+ db 0
+
+PinsirEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 25, SEISMIC_TOSS
+ db 30, GUILLOTINE
+ db 36, FOCUS_ENERGY
+ db 43, HARDEN
+ db 49, SLASH
+ db 54, SWORDS_DANCE
+ db 0
+
+TangelaEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 29, ABSORB
+ db 32, POISONPOWDER
+ db 36, STUN_SPORE
+ db 39, SLEEP_POWDER
+ db 45, SLAM
+ db 49, GROWTH
+ db 0
+
+MissingNo1FEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo20EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+GrowlitheEvosMoves:
+; Evolutions
+ db EV_ITEM, FIRE_STONE, 1, ARCANINE
+ db 0
+; Learnset
+ db 18, EMBER
+ db 23, LEER
+ db 30, TAKE_DOWN
+ db 39, AGILITY
+ db 50, FLAMETHROWER
+ db 0
+
+OnixEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 15, BIND
+ db 19, ROCK_THROW
+ db 25, RAGE
+ db 33, SLAM
+ db 43, HARDEN
+ db 0
+
+FearowEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 9, LEER
+ db 15, FURY_ATTACK
+ db 25, MIRROR_MOVE
+ db 34, DRILL_PECK
+ db 43, AGILITY
+ db 0
+
+PidgeyEvosMoves:
+; Evolutions
+ db EV_LEVEL, 18, PIDGEOTTO
+ db 0
+; Learnset
+ db 5, SAND_ATTACK
+ db 12, QUICK_ATTACK
+ db 19, WHIRLWIND
+ db 28, WING_ATTACK
+ db 36, AGILITY
+ db 44, MIRROR_MOVE
+ db 0
+
+SlowpokeEvosMoves:
+; Evolutions
+ db EV_LEVEL, 37, SLOWBRO
+ db 0
+; Learnset
+ db 18, DISABLE
+ db 22, HEADBUTT
+ db 27, GROWL
+ db 33, WATER_GUN
+ db 40, AMNESIA
+ db 48, PSYCHIC_M
+ db 0
+
+KadabraEvosMoves:
+; Evolutions
+ db EV_TRADE, 1, ALAKAZAM
+ db 0
+; Learnset
+ db 16, CONFUSION
+ db 20, DISABLE
+ db 27, PSYBEAM
+ db 31, RECOVER
+ db 38, PSYCHIC_M
+ db 42, REFLECT
+ db 0
+
+GravelerEvosMoves:
+; Evolutions
+ db EV_TRADE, 1, GOLEM
+ db 0
+; Learnset
+ db 11, DEFENSE_CURL
+ db 16, ROCK_THROW
+ db 21, SELFDESTRUCT
+ db 29, HARDEN
+ db 36, EARTHQUAKE
+ db 43, EXPLOSION
+ db 0
+
+ChanseyEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 24, SING
+ db 30, GROWL
+ db 38, MINIMIZE
+ db 44, DEFENSE_CURL
+ db 48, LIGHT_SCREEN
+ db 54, DOUBLE_EDGE
+ db 0
+
+MachokeEvosMoves:
+; Evolutions
+ db EV_TRADE, 1, MACHAMP
+ db 0
+; Learnset
+ db 20, LOW_KICK
+ db 25, LEER
+ db 36, FOCUS_ENERGY
+ db 44, SEISMIC_TOSS
+ db 52, SUBMISSION
+ db 0
+
+MrMimeEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 15, CONFUSION
+ db 23, LIGHT_SCREEN
+ db 31, DOUBLESLAP
+ db 39, MEDITATE
+ db 47, SUBSTITUTE
+ db 0
+
+HitmonleeEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 33, ROLLING_KICK
+ db 38, JUMP_KICK
+ db 43, FOCUS_ENERGY
+ db 48, HI_JUMP_KICK
+ db 53, MEGA_KICK
+ db 0
+
+HitmonchanEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 33, FIRE_PUNCH
+ db 38, ICE_PUNCH
+ db 43, THUNDERPUNCH
+ db 48, MEGA_PUNCH
+ db 53, COUNTER
+ db 0
+
+ArbokEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 10, POISON_STING
+ db 17, BITE
+ db 27, GLARE
+ db 36, SCREECH
+ db 47, ACID
+ db 0
+
+ParasectEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 13, STUN_SPORE
+ db 20, LEECH_LIFE
+ db 30, SPORE
+ db 39, SLASH
+ db 48, GROWTH
+ db 0
+
+PsyduckEvosMoves:
+; Evolutions
+ db EV_LEVEL, 33, GOLDUCK
+ db 0
+; Learnset
+ db 28, TAIL_WHIP
+ db 31, DISABLE
+ db 36, CONFUSION
+ db 43, FURY_SWIPES
+ db 52, HYDRO_PUMP
+ db 0
+
+DrowzeeEvosMoves:
+; Evolutions
+ db EV_LEVEL, 26, HYPNO
+ db 0
+; Learnset
+ db 12, DISABLE
+ db 17, CONFUSION
+ db 24, HEADBUTT
+ db 29, POISON_GAS
+ db 32, PSYCHIC_M
+ db 37, MEDITATE
+ db 0
+
+GolemEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 11, DEFENSE_CURL
+ db 16, ROCK_THROW
+ db 21, SELFDESTRUCT
+ db 29, HARDEN
+ db 36, EARTHQUAKE
+ db 43, EXPLOSION
+ db 0
+
+MissingNo32EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MagmarEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 36, LEER
+ db 39, CONFUSE_RAY
+ db 43, FIRE_PUNCH
+ db 48, SMOKESCREEN
+ db 52, SMOG
+ db 55, FLAMETHROWER
+ db 0
+
+MissingNo34EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+ElectabuzzEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 34, THUNDERSHOCK
+ db 37, SCREECH
+ db 42, THUNDERPUNCH
+ db 49, LIGHT_SCREEN
+ db 54, THUNDER
+ db 0
+
+MagnetonEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 21, SONICBOOM
+ db 25, THUNDERSHOCK
+ db 29, SUPERSONIC
+ db 38, THUNDER_WAVE
+ db 46, SWIFT
+ db 54, SCREECH
+ db 0
+
+KoffingEvosMoves:
+; Evolutions
+ db EV_LEVEL, 35, WEEZING
+ db 0
+; Learnset
+ db 32, SLUDGE
+ db 37, SMOKESCREEN
+ db 40, SELFDESTRUCT
+ db 45, HAZE
+ db 48, EXPLOSION
+ db 0
+
+MissingNo38EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MankeyEvosMoves:
+; Evolutions
+ db EV_LEVEL, 28, PRIMEAPE
+ db 0
+; Learnset
+ db 15, KARATE_CHOP
+ db 21, FURY_SWIPES
+ db 27, FOCUS_ENERGY
+ db 33, SEISMIC_TOSS
+ db 39, THRASH
+ db 0
+
+SeelEvosMoves:
+; Evolutions
+ db EV_LEVEL, 34, DEWGONG
+ db 0
+; Learnset
+ db 30, GROWL
+ db 35, AURORA_BEAM
+ db 40, REST
+ db 45, TAKE_DOWN
+ db 50, ICE_BEAM
+ db 0
+
+DiglettEvosMoves:
+; Evolutions
+ db EV_LEVEL, 26, DUGTRIO
+ db 0
+; Learnset
+ db 15, GROWL
+ db 19, DIG
+ db 24, SAND_ATTACK
+ db 31, SLASH
+ db 40, EARTHQUAKE
+ db 0
+
+TaurosEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 21, STOMP
+ db 28, TAIL_WHIP
+ db 35, LEER
+ db 44, RAGE
+ db 51, TAKE_DOWN
+ db 0
+
+MissingNo3DEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo3EEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo3FEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+FarfetchdEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 7, LEER
+ db 15, FURY_ATTACK
+ db 23, SWORDS_DANCE
+ db 31, AGILITY
+ db 39, SLASH
+ db 0
+
+VenonatEvosMoves:
+; Evolutions
+ db EV_LEVEL, 31, VENOMOTH
+ db 0
+; Learnset
+ db 24, POISONPOWDER
+ db 27, LEECH_LIFE
+ db 30, STUN_SPORE
+ db 35, PSYBEAM
+ db 38, SLEEP_POWDER
+ db 43, PSYCHIC_M
+ db 0
+
+DragoniteEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 10, THUNDER_WAVE
+ db 20, AGILITY
+ db 35, SLAM
+ db 45, DRAGON_RAGE
+ db 60, HYPER_BEAM
+ db 0
+
+MissingNo43EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo44EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo45EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+DoduoEvosMoves:
+; Evolutions
+ db EV_LEVEL, 31, DODRIO
+ db 0
+; Learnset
+ db 20, GROWL
+ db 24, FURY_ATTACK
+ db 30, DRILL_PECK
+ db 36, RAGE
+ db 40, TRI_ATTACK
+ db 44, AGILITY
+ db 0
+
+PoliwagEvosMoves:
+; Evolutions
+ db EV_LEVEL, 25, POLIWHIRL
+ db 0
+; Learnset
+ db 16, HYPNOSIS
+ db 19, WATER_GUN
+ db 25, DOUBLESLAP
+ db 31, BODY_SLAM
+ db 38, AMNESIA
+ db 45, HYDRO_PUMP
+ db 0
+
+JynxEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 18, LICK
+ db 23, DOUBLESLAP
+ db 31, ICE_PUNCH
+ db 39, BODY_SLAM
+ db 47, THRASH
+ db 58, BLIZZARD
+ db 0
+
+MoltresEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 51, LEER
+ db 55, AGILITY
+ db 60, SKY_ATTACK
+ db 0
+
+ArticunoEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 51, BLIZZARD
+ db 55, AGILITY
+ db 60, MIST
+ db 0
+
+ZapdosEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 51, THUNDER
+ db 55, AGILITY
+ db 60, LIGHT_SCREEN
+ db 0
+
+DittoEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MeowthEvosMoves:
+; Evolutions
+ db EV_LEVEL, 28, PERSIAN
+ db 0
+; Learnset
+ db 12, BITE
+ db 17, PAY_DAY
+ db 24, SCREECH
+ db 33, FURY_SWIPES
+ db 44, SLASH
+ db 0
+
+KrabbyEvosMoves:
+; Evolutions
+ db EV_LEVEL, 28, KINGLER
+ db 0
+; Learnset
+ db 20, VICEGRIP
+ db 25, GUILLOTINE
+ db 30, STOMP
+ db 35, CRABHAMMER
+ db 40, HARDEN
+ db 0
+
+MissingNo4FEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo50EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo51EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+VulpixEvosMoves:
+; Evolutions
+ db EV_ITEM, FIRE_STONE, 1, NINETALES
+ db 0
+; Learnset
+ db 16, QUICK_ATTACK
+ db 21, ROAR
+ db 28, CONFUSE_RAY
+ db 35, FLAMETHROWER
+ db 42, FIRE_SPIN
+ db 0
+
+NinetalesEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+PikachuEvosMoves:
+; Evolutions
+ db EV_ITEM, THUNDER_STONE, 1, RAICHU
+ db 0
+; Learnset
+ db 9, THUNDER_WAVE
+ db 16, QUICK_ATTACK
+ db 26, SWIFT
+ db 33, AGILITY
+ db 43, THUNDER
+ db 0
+
+RaichuEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo56EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo57EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+DratiniEvosMoves:
+; Evolutions
+ db EV_LEVEL, 30, DRAGONAIR
+ db 0
+; Learnset
+ db 10, THUNDER_WAVE
+ db 20, AGILITY
+ db 30, SLAM
+ db 40, DRAGON_RAGE
+ db 50, HYPER_BEAM
+ db 0
+
+DragonairEvosMoves:
+; Evolutions
+ db EV_LEVEL, 55, DRAGONITE
+ db 0
+; Learnset
+ db 10, THUNDER_WAVE
+ db 20, AGILITY
+ db 35, SLAM
+ db 45, DRAGON_RAGE
+ db 55, HYPER_BEAM
+ db 0
+
+KabutoEvosMoves:
+; Evolutions
+ db EV_LEVEL, 40, KABUTOPS
+ db 0
+; Learnset
+ db 34, ABSORB
+ db 39, SLASH
+ db 44, LEER
+ db 49, HYDRO_PUMP
+ db 0
+
+KabutopsEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 34, ABSORB
+ db 39, SLASH
+ db 46, LEER
+ db 53, HYDRO_PUMP
+ db 0
+
+HorseaEvosMoves:
+; Evolutions
+ db EV_LEVEL, 32, SEADRA
+ db 0
+; Learnset
+ db 19, SMOKESCREEN
+ db 24, LEER
+ db 30, WATER_GUN
+ db 37, AGILITY
+ db 45, HYDRO_PUMP
+ db 0
+
+SeadraEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 19, SMOKESCREEN
+ db 24, LEER
+ db 30, WATER_GUN
+ db 41, AGILITY
+ db 52, HYDRO_PUMP
+ db 0
+
+MissingNo5EEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo5FEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+SandshrewEvosMoves:
+; Evolutions
+ db EV_LEVEL, 22, SANDSLASH
+ db 0
+; Learnset
+ db 10, SAND_ATTACK
+ db 17, SLASH
+ db 24, POISON_STING
+ db 31, SWIFT
+ db 38, FURY_SWIPES
+ db 0
+
+SandslashEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 10, SAND_ATTACK
+ db 17, SLASH
+ db 27, POISON_STING
+ db 36, SWIFT
+ db 47, FURY_SWIPES
+ db 0
+
+OmanyteEvosMoves:
+; Evolutions
+ db EV_LEVEL, 40, OMASTAR
+ db 0
+; Learnset
+ db 34, HORN_ATTACK
+ db 39, LEER
+ db 46, SPIKE_CANNON
+ db 53, HYDRO_PUMP
+ db 0
+
+OmastarEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 34, HORN_ATTACK
+ db 39, LEER
+ db 44, SPIKE_CANNON
+ db 49, HYDRO_PUMP
+ db 0
+
+JigglypuffEvosMoves:
+; Evolutions
+ db EV_ITEM, MOON_STONE, 1, WIGGLYTUFF
+ db 0
+; Learnset
+ db 9, POUND
+ db 14, DISABLE
+ db 19, DEFENSE_CURL
+ db 24, DOUBLESLAP
+ db 29, REST
+ db 34, BODY_SLAM
+ db 39, DOUBLE_EDGE
+ db 0
+
+WigglytuffEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+EeveeEvosMoves:
+; Evolutions
+ db EV_ITEM, FIRE_STONE, 1, FLAREON
+ db EV_ITEM, THUNDER_STONE, 1, JOLTEON
+ db EV_ITEM, WATER_STONE, 1, VAPOREON
+ db 0
+; Learnset
+ db 27, QUICK_ATTACK
+ db 31, TAIL_WHIP
+ db 37, BITE
+ db 45, TAKE_DOWN
+ db 0
+
+FlareonEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 27, QUICK_ATTACK
+ db 31, EMBER
+ db 37, TAIL_WHIP
+ db 40, BITE
+ db 42, LEER
+ db 44, FIRE_SPIN
+ db 48, RAGE
+ db 54, FLAMETHROWER
+ db 0
+
+JolteonEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 27, QUICK_ATTACK
+ db 31, THUNDERSHOCK
+ db 37, TAIL_WHIP
+ db 40, THUNDER_WAVE
+ db 42, DOUBLE_KICK
+ db 44, AGILITY
+ db 48, PIN_MISSILE
+ db 54, THUNDER
+ db 0
+
+VaporeonEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 27, QUICK_ATTACK
+ db 31, WATER_GUN
+ db 37, TAIL_WHIP
+ db 40, BITE
+ db 42, ACID_ARMOR
+ db 44, HAZE
+ db 48, MIST
+ db 54, HYDRO_PUMP
+ db 0
+
+MachopEvosMoves:
+; Evolutions
+ db EV_LEVEL, 28, MACHOKE
+ db 0
+; Learnset
+ db 20, LOW_KICK
+ db 25, LEER
+ db 32, FOCUS_ENERGY
+ db 39, SEISMIC_TOSS
+ db 46, SUBMISSION
+ db 0
+
+ZubatEvosMoves:
+; Evolutions
+ db EV_LEVEL, 22, GOLBAT
+ db 0
+; Learnset
+ db 10, SUPERSONIC
+ db 15, BITE
+ db 21, CONFUSE_RAY
+ db 28, WING_ATTACK
+ db 36, HAZE
+ db 0
+
+EkansEvosMoves:
+; Evolutions
+ db EV_LEVEL, 22, ARBOK
+ db 0
+; Learnset
+ db 10, POISON_STING
+ db 17, BITE
+ db 24, GLARE
+ db 31, SCREECH
+ db 38, ACID
+ db 0
+
+ParasEvosMoves:
+; Evolutions
+ db EV_LEVEL, 24, PARASECT
+ db 0
+; Learnset
+ db 13, STUN_SPORE
+ db 20, LEECH_LIFE
+ db 27, SPORE
+ db 34, SLASH
+ db 41, GROWTH
+ db 0
+
+PoliwhirlEvosMoves:
+; Evolutions
+ db EV_ITEM, WATER_STONE, 1, POLIWRATH
+ db 0
+; Learnset
+ db 16, HYPNOSIS
+ db 19, WATER_GUN
+ db 26, DOUBLESLAP
+ db 33, BODY_SLAM
+ db 41, AMNESIA
+ db 49, HYDRO_PUMP
+ db 0
+
+PoliwrathEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 16, HYPNOSIS
+ db 19, WATER_GUN
+ db 0
+
+WeedleEvosMoves:
+; Evolutions
+ db EV_LEVEL, 7, KAKUNA
+ db 0
+; Learnset
+ db 0
+
+KakunaEvosMoves:
+; Evolutions
+ db EV_LEVEL, 10, BEEDRILL
+ db 0
+; Learnset
+ db 0
+
+BeedrillEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 12, FURY_ATTACK
+ db 16, FOCUS_ENERGY
+ db 20, TWINEEDLE
+ db 25, RAGE
+ db 30, PIN_MISSILE
+ db 35, AGILITY
+ db 0
+
+MissingNo73EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+DodrioEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 20, GROWL
+ db 24, FURY_ATTACK
+ db 30, DRILL_PECK
+ db 39, RAGE
+ db 45, TRI_ATTACK
+ db 51, AGILITY
+ db 0
+
+PrimeapeEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 15, KARATE_CHOP
+ db 21, FURY_SWIPES
+ db 27, FOCUS_ENERGY
+ db 37, SEISMIC_TOSS
+ db 46, THRASH
+ db 0
+
+DugtrioEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 15, GROWL
+ db 19, DIG
+ db 24, SAND_ATTACK
+ db 35, SLASH
+ db 47, EARTHQUAKE
+ db 0
+
+VenomothEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 24, POISONPOWDER
+ db 27, LEECH_LIFE
+ db 30, STUN_SPORE
+ db 38, PSYBEAM
+ db 43, SLEEP_POWDER
+ db 50, PSYCHIC_M
+ db 0
+
+DewgongEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 30, GROWL
+ db 35, AURORA_BEAM
+ db 44, REST
+ db 50, TAKE_DOWN
+ db 56, ICE_BEAM
+ db 0
+
+MissingNo79EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo7AEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+CaterpieEvosMoves:
+; Evolutions
+ db EV_LEVEL, 7, METAPOD
+ db 0
+; Learnset
+ db 0
+
+MetapodEvosMoves:
+; Evolutions
+ db EV_LEVEL, 10, BUTTERFREE
+ db 0
+; Learnset
+ db 0
+
+ButterfreeEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 12, CONFUSION
+ db 15, POISONPOWDER
+ db 16, STUN_SPORE
+ db 17, SLEEP_POWDER
+ db 21, SUPERSONIC
+ db 26, WHIRLWIND
+ db 32, PSYBEAM
+ db 0
+
+MachampEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 20, LOW_KICK
+ db 25, LEER
+ db 36, FOCUS_ENERGY
+ db 44, SEISMIC_TOSS
+ db 52, SUBMISSION
+ db 0
+
+MissingNo7FEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+GolduckEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 28, TAIL_WHIP
+ db 31, DISABLE
+ db 39, CONFUSION
+ db 48, FURY_SWIPES
+ db 59, HYDRO_PUMP
+ db 0
+
+HypnoEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 12, DISABLE
+ db 17, CONFUSION
+ db 24, HEADBUTT
+ db 33, POISON_GAS
+ db 37, PSYCHIC_M
+ db 43, MEDITATE
+ db 0
+
+GolbatEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 10, SUPERSONIC
+ db 15, BITE
+ db 21, CONFUSE_RAY
+ db 32, WING_ATTACK
+ db 43, HAZE
+ db 0
+
+MewtwoEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 63, BARRIER
+ db 66, PSYCHIC_M
+ db 70, RECOVER
+ db 75, MIST
+ db 81, AMNESIA
+ db 0
+
+SnorlaxEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 35, BODY_SLAM
+ db 41, HARDEN
+ db 48, DOUBLE_EDGE
+ db 56, HYPER_BEAM
+ db 0
+
+MagikarpEvosMoves:
+; Evolutions
+ db EV_LEVEL, 20, GYARADOS
+ db 0
+; Learnset
+ db 15, TACKLE
+ db 0
+
+MissingNo86EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNo87EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MukEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 30, POISON_GAS
+ db 33, MINIMIZE
+ db 37, SLUDGE
+ db 45, HARDEN
+ db 53, SCREECH
+ db 60, ACID_ARMOR
+ db 0
+
+MissingNo8AEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+KinglerEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 20, VICEGRIP
+ db 25, GUILLOTINE
+ db 34, STOMP
+ db 42, CRABHAMMER
+ db 49, HARDEN
+ db 0
+
+CloysterEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 50, SPIKE_CANNON
+ db 0
+
+MissingNo8CEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+ElectrodeEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 17, SONICBOOM
+ db 22, SELFDESTRUCT
+ db 29, LIGHT_SCREEN
+ db 40, SWIFT
+ db 50, EXPLOSION
+ db 0
+
+ClefableEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+WeezingEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 32, SLUDGE
+ db 39, SMOKESCREEN
+ db 43, SELFDESTRUCT
+ db 49, HAZE
+ db 53, EXPLOSION
+ db 0
+
+PersianEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 12, BITE
+ db 17, PAY_DAY
+ db 24, SCREECH
+ db 37, FURY_SWIPES
+ db 51, SLASH
+ db 0
+
+MarowakEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 25, LEER
+ db 33, FOCUS_ENERGY
+ db 41, THRASH
+ db 48, BONEMERANG
+ db 55, RAGE
+ db 0
+
+MissingNo92EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+HaunterEvosMoves:
+; Evolutions
+ db EV_TRADE, 1, GENGAR
+ db 0
+; Learnset
+ db 29, HYPNOSIS
+ db 38, DREAM_EATER
+ db 0
+
+AbraEvosMoves:
+; Evolutions
+ db EV_LEVEL, 16, KADABRA
+ db 0
+; Learnset
+ db 0
+
+AlakazamEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 16, CONFUSION
+ db 20, DISABLE
+ db 27, PSYBEAM
+ db 31, RECOVER
+ db 38, PSYCHIC_M
+ db 42, REFLECT
+ db 0
+
+PidgeottoEvosMoves:
+; Evolutions
+ db EV_LEVEL, 36, PIDGEOT
+ db 0
+; Learnset
+ db 5, SAND_ATTACK
+ db 12, QUICK_ATTACK
+ db 21, WHIRLWIND
+ db 31, WING_ATTACK
+ db 40, AGILITY
+ db 49, MIRROR_MOVE
+ db 0
+
+PidgeotEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 5, SAND_ATTACK
+ db 12, QUICK_ATTACK
+ db 21, WHIRLWIND
+ db 31, WING_ATTACK
+ db 44, AGILITY
+ db 54, MIRROR_MOVE
+ db 0
+
+StarmieEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+BulbasaurEvosMoves:
+; Evolutions
+ db EV_LEVEL, 16, IVYSAUR
+ db 0
+; Learnset
+ db 7, LEECH_SEED
+ db 13, VINE_WHIP
+ db 20, POISONPOWDER
+ db 27, RAZOR_LEAF
+ db 34, GROWTH
+ db 41, SLEEP_POWDER
+ db 48, SOLARBEAM
+ db 0
+
+VenusaurEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 7, LEECH_SEED
+ db 13, VINE_WHIP
+ db 22, POISONPOWDER
+ db 30, RAZOR_LEAF
+ db 43, GROWTH
+ db 55, SLEEP_POWDER
+ db 65, SOLARBEAM
+ db 0
+
+TentacruelEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 7, SUPERSONIC
+ db 13, WRAP
+ db 18, POISON_STING
+ db 22, WATER_GUN
+ db 27, CONSTRICT
+ db 35, BARRIER
+ db 43, SCREECH
+ db 50, HYDRO_PUMP
+ db 0
+
+MissingNo9CEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+GoldeenEvosMoves:
+; Evolutions
+ db EV_LEVEL, 33, SEAKING
+ db 0
+; Learnset
+ db 19, SUPERSONIC
+ db 24, HORN_ATTACK
+ db 30, FURY_ATTACK
+ db 37, WATERFALL
+ db 45, HORN_DRILL
+ db 54, AGILITY
+ db 0
+
+SeakingEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 19, SUPERSONIC
+ db 24, HORN_ATTACK
+ db 30, FURY_ATTACK
+ db 39, WATERFALL
+ db 48, HORN_DRILL
+ db 54, AGILITY
+ db 0
+
+MissingNo9FEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNoA0EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNoA1EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNoA2EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+PonytaEvosMoves:
+; Evolutions
+ db EV_LEVEL, 40, RAPIDASH
+ db 0
+; Learnset
+ db 30, TAIL_WHIP
+ db 32, STOMP
+ db 35, GROWL
+ db 39, FIRE_SPIN
+ db 43, TAKE_DOWN
+ db 48, AGILITY
+ db 0
+
+RapidashEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 30, TAIL_WHIP
+ db 32, STOMP
+ db 35, GROWL
+ db 39, FIRE_SPIN
+ db 47, TAKE_DOWN
+ db 55, AGILITY
+ db 0
+
+RattataEvosMoves:
+; Evolutions
+ db EV_LEVEL, 20, RATICATE
+ db 0
+; Learnset
+ db 7, QUICK_ATTACK
+ db 14, HYPER_FANG
+ db 23, FOCUS_ENERGY
+ db 34, SUPER_FANG
+ db 0
+
+RaticateEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 7, QUICK_ATTACK
+ db 14, HYPER_FANG
+ db 27, FOCUS_ENERGY
+ db 41, SUPER_FANG
+ db 0
+
+NidorinoEvosMoves:
+; Evolutions
+ db EV_ITEM, MOON_STONE, 1, NIDOKING
+ db 0
+; Learnset
+ db 8, HORN_ATTACK
+ db 14, POISON_STING
+ db 23, FOCUS_ENERGY
+ db 32, FURY_ATTACK
+ db 41, HORN_DRILL
+ db 50, DOUBLE_KICK
+ db 0
+
+NidorinaEvosMoves:
+; Evolutions
+ db EV_ITEM, MOON_STONE, 1, NIDOQUEEN
+ db 0
+; Learnset
+ db 8, SCRATCH
+ db 14, POISON_STING
+ db 23, TAIL_WHIP
+ db 32, BITE
+ db 41, FURY_SWIPES
+ db 50, DOUBLE_KICK
+ db 0
+
+GeodudeEvosMoves:
+; Evolutions
+ db EV_LEVEL, 25, GRAVELER
+ db 0
+; Learnset
+ db 11, DEFENSE_CURL
+ db 16, ROCK_THROW
+ db 21, SELFDESTRUCT
+ db 26, HARDEN
+ db 31, EARTHQUAKE
+ db 36, EXPLOSION
+ db 0
+
+PorygonEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 23, PSYBEAM
+ db 28, RECOVER
+ db 35, AGILITY
+ db 42, TRI_ATTACK
+ db 0
+
+AerodactylEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 33, SUPERSONIC
+ db 38, BITE
+ db 45, TAKE_DOWN
+ db 54, HYPER_BEAM
+ db 0
+
+MissingNoACEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MagnemiteEvosMoves:
+; Evolutions
+ db EV_LEVEL, 30, MAGNETON
+ db 0
+; Learnset
+ db 21, SONICBOOM
+ db 25, THUNDERSHOCK
+ db 29, SUPERSONIC
+ db 35, THUNDER_WAVE
+ db 41, SWIFT
+ db 47, SCREECH
+ db 0
+
+MissingNoAEEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MissingNoAFEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+CharmanderEvosMoves:
+; Evolutions
+ db EV_LEVEL, 16, CHARMELEON
+ db 0
+; Learnset
+ db 9, EMBER
+ db 15, LEER
+ db 22, RAGE
+ db 30, SLASH
+ db 38, FLAMETHROWER
+ db 46, FIRE_SPIN
+ db 0
+
+SquirtleEvosMoves:
+; Evolutions
+ db EV_LEVEL, 16, WARTORTLE
+ db 0
+; Learnset
+ db 8, BUBBLE
+ db 15, WATER_GUN
+ db 22, BITE
+ db 28, WITHDRAW
+ db 35, SKULL_BASH
+ db 42, HYDRO_PUMP
+ db 0
+
+CharmeleonEvosMoves:
+; Evolutions
+ db EV_LEVEL, 36, CHARIZARD
+ db 0
+; Learnset
+ db 9, EMBER
+ db 15, LEER
+ db 24, RAGE
+ db 33, SLASH
+ db 42, FLAMETHROWER
+ db 56, FIRE_SPIN
+ db 0
+
+WartortleEvosMoves:
+; Evolutions
+ db EV_LEVEL, 36, BLASTOISE
+ db 0
+; Learnset
+ db 8, BUBBLE
+ db 15, WATER_GUN
+ db 24, BITE
+ db 31, WITHDRAW
+ db 39, SKULL_BASH
+ db 47, HYDRO_PUMP
+ db 0
+
+CharizardEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 9, EMBER
+ db 15, LEER
+ db 24, RAGE
+ db 36, SLASH
+ db 46, FLAMETHROWER
+ db 55, FIRE_SPIN
+ db 0
+
+MissingNoB5EvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+FossilKabutopsEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+FossilAerodactylEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+MonGhostEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 0
+
+OddishEvosMoves:
+; Evolutions
+ db EV_LEVEL, 21, GLOOM
+ db 0
+; Learnset
+ db 15, POISONPOWDER
+ db 17, STUN_SPORE
+ db 19, SLEEP_POWDER
+ db 24, ACID
+ db 33, PETAL_DANCE
+ db 46, SOLARBEAM
+ db 0
+
+GloomEvosMoves:
+; Evolutions
+ db EV_ITEM, LEAF_STONE, 1, VILEPLUME
+ db 0
+; Learnset
+ db 15, POISONPOWDER
+ db 17, STUN_SPORE
+ db 19, SLEEP_POWDER
+ db 28, ACID
+ db 38, PETAL_DANCE
+ db 52, SOLARBEAM
+ db 0
+
+VileplumeEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 15, POISONPOWDER
+ db 17, STUN_SPORE
+ db 19, SLEEP_POWDER
+ db 0
+
+BellsproutEvosMoves:
+; Evolutions
+ db EV_LEVEL, 21, WEEPINBELL
+ db 0
+; Learnset
+ db 13, WRAP
+ db 15, POISONPOWDER
+ db 18, SLEEP_POWDER
+ db 21, STUN_SPORE
+ db 26, ACID
+ db 33, RAZOR_LEAF
+ db 42, SLAM
+ db 0
+
+WeepinbellEvosMoves:
+; Evolutions
+ db EV_ITEM, LEAF_STONE, 1, VICTREEBEL
+ db 0
+; Learnset
+ db 13, WRAP
+ db 15, POISONPOWDER
+ db 18, SLEEP_POWDER
+ db 23, STUN_SPORE
+ db 29, ACID
+ db 38, RAZOR_LEAF
+ db 49, SLAM
+ db 0
+
+VictreebelEvosMoves:
+; Evolutions
+ db 0
+; Learnset
+ db 13, WRAP
+ db 15, POISONPOWDER
+ db 18, SLEEP_POWDER
+ db 0
--- /dev/null
+++ b/data/pokemon/menu_icons.asm
@@ -1,0 +1,77 @@
+MonPartyData:
+ dn ICON_GRASS, ICON_GRASS ; Bulbasaur / Ivysaur
+ dn ICON_GRASS, ICON_MON ; Venusaur / Charmander
+ dn ICON_MON, ICON_MON ; Charmeleon / Charizard
+ dn ICON_WATER, ICON_WATER ; Squirtle / Wartortle
+ dn ICON_WATER, ICON_BUG ; Blastoise / Caterpie
+ dn ICON_BUG, ICON_BUG ; Metapod / Butterfree
+ dn ICON_BUG, ICON_BUG ; Weedle / Kakuna
+ dn ICON_BUG, ICON_BIRD ; Beedrill / Pidgey
+ dn ICON_BIRD, ICON_BIRD ; Pidgeotto / Pidgeot
+ dn ICON_QUADRUPED, ICON_QUADRUPED ; Rattata / Raticate
+ dn ICON_BIRD, ICON_BIRD ; Spearow / Fearow
+ dn ICON_SNAKE, ICON_SNAKE ; Ekans / Arbok
+ dn ICON_FAIRY, ICON_FAIRY ; Pikachu / Raichu
+ dn ICON_MON, ICON_MON ; Sandshrew / Sandslash
+ dn ICON_MON, ICON_MON ; NidoranF / Nidorina
+ dn ICON_MON, ICON_MON ; Nidoqueen / NidoranM
+ dn ICON_MON, ICON_MON ; Nidorino / Nidoking
+ dn ICON_FAIRY, ICON_FAIRY ; Clefairy / Clefable
+ dn ICON_QUADRUPED, ICON_QUADRUPED ; Vulpix / Ninetales
+ dn ICON_FAIRY, ICON_FAIRY ; Jigglypuff / Wigglytuff
+ dn ICON_MON, ICON_MON ; Zubat / Golbat
+ dn ICON_GRASS, ICON_GRASS ; Oddish / Gloom
+ dn ICON_GRASS, ICON_BUG ; Vileplume / Paras
+ dn ICON_BUG, ICON_BUG ; Parasect / Venonat
+ dn ICON_BUG, ICON_MON ; Venomoth / Diglett
+ dn ICON_MON, ICON_MON ; Dugtrio / Meowth
+ dn ICON_MON, ICON_MON ; Persian / Psyduck
+ dn ICON_MON, ICON_MON ; Golduck / Mankey
+ dn ICON_MON, ICON_QUADRUPED ; Primeape / Growlithe
+ dn ICON_QUADRUPED, ICON_MON ; Arcanine / Poliwag
+ dn ICON_MON, ICON_MON ; Poliwhirl / Poliwrath
+ dn ICON_MON, ICON_MON ; Abra / Kadabra
+ dn ICON_MON, ICON_MON ; Alakazam / Machop
+ dn ICON_MON, ICON_MON ; Machoke / Machamp
+ dn ICON_GRASS, ICON_GRASS ; Bellsprout / Weepinbell
+ dn ICON_GRASS, ICON_WATER ; Victreebel / Tentacool
+ dn ICON_WATER, ICON_MON ; Tentacruel / Geodude
+ dn ICON_MON, ICON_MON ; Graveler / Golem
+ dn ICON_QUADRUPED, ICON_QUADRUPED ; Ponyta / Rapidash
+ dn ICON_QUADRUPED, ICON_MON ; Slowpoke / Slowbro
+ dn ICON_BALL, ICON_BALL ; Magnemite / Magneton
+ dn ICON_BIRD, ICON_BIRD ; Farfetch'd / Doduo
+ dn ICON_BIRD, ICON_WATER ; Dodrio / Seel
+ dn ICON_WATER, ICON_MON ; Dewgong / Grimer
+ dn ICON_MON, ICON_HELIX ; Muk / Shellder
+ dn ICON_HELIX, ICON_MON ; Cloyster / Gastly
+ dn ICON_MON, ICON_MON ; Haunter / Gengar
+ dn ICON_SNAKE, ICON_MON ; Onix / Drowzee
+ dn ICON_MON, ICON_WATER ; Hypno / Krabby
+ dn ICON_WATER, ICON_BALL ; Kingler / Voltorb
+ dn ICON_BALL, ICON_GRASS ; Electrode / Exeggcute
+ dn ICON_GRASS, ICON_MON ; Exeggutor / Cubone
+ dn ICON_MON, ICON_MON ; Marowak / Hitmonlee
+ dn ICON_MON, ICON_MON ; Hitmonchan / Lickitung
+ dn ICON_MON, ICON_MON ; Koffing / Weezing
+ dn ICON_QUADRUPED, ICON_MON ; Rhyhorn / Rhydon
+ dn ICON_FAIRY, ICON_GRASS ; Chansey / Tangela
+ dn ICON_MON, ICON_WATER ; Kangaskhan / Horsea
+ dn ICON_WATER, ICON_WATER ; Seadra / Goldeen
+ dn ICON_WATER, ICON_HELIX ; Seaking / Staryu
+ dn ICON_HELIX, ICON_MON ; Starmie / Mr.Mime
+ dn ICON_BUG, ICON_MON ; Scyther / Jynx
+ dn ICON_MON, ICON_MON ; Electabuzz / Magmar
+ dn ICON_BUG, ICON_QUADRUPED ; Pinsir / Tauros
+ dn ICON_WATER, ICON_SNAKE ; Magikarp / Gyarados
+ dn ICON_WATER, ICON_MON ; Lapras / Ditto
+ dn ICON_QUADRUPED, ICON_QUADRUPED ; Eevee / Vaporeon
+ dn ICON_QUADRUPED, ICON_QUADRUPED ; Jolteon / Flareon
+ dn ICON_MON, ICON_HELIX ; Porygon / Omanyte
+ dn ICON_HELIX, ICON_HELIX ; Omastar / Kabuto
+ dn ICON_HELIX, ICON_BIRD ; Kabutops / Aerodactyl
+ dn ICON_MON, ICON_BIRD ; Snorlax / Articuno
+ dn ICON_BIRD, ICON_BIRD ; Zapdos / Moltres
+ dn ICON_SNAKE, ICON_SNAKE ; Dratini / Dragonair
+ dn ICON_SNAKE, ICON_MON ; Dragonite / Mewtwo
+ dn ICON_MON, 0 ; Mew / padding
--- /dev/null
+++ b/data/pokemon/mew.asm
@@ -1,0 +1,14 @@
+; Mew's pics and base data are not grouped with the other Pokémon
+; because it was a last-minute addition "as a kind of prank".
+; Shigeki Morimoto explained in an Iwata Asks interview:
+; "We put Mew in right at the very end. The cartridge was really full and
+; there wasn't room for much more on there. Then the debug features which
+; weren't going to be included in the final version of the game were removed,
+; creating a miniscule 300 bytes of free space. So we thought that we could
+; slot Mew in there. What we did would be unthinkable nowadays!"
+; http://iwataasks.nintendo.com/interviews/#/ds/pokemon/0/0
+
+MewPicFront:: INCBIN "gfx/pokemon/front/mew.pic"
+MewPicBack:: INCBIN "gfx/pokemon/back/mewb.pic"
+
+INCLUDE "data/pokemon/base_stats/mew.asm"
--- /dev/null
+++ b/data/pokemon/names.asm
@@ -1,0 +1,191 @@
+MonsterNames::
+ db "RHYDON@@@@"
+ db "KANGASKHAN"
+ db "NIDORAN♂@@"
+ db "CLEFAIRY@@"
+ db "SPEAROW@@@"
+ db "VOLTORB@@@"
+ db "NIDOKING@@"
+ db "SLOWBRO@@@"
+ db "IVYSAUR@@@"
+ db "EXEGGUTOR@"
+ db "LICKITUNG@"
+ db "EXEGGCUTE@"
+ db "GRIMER@@@@"
+ db "GENGAR@@@@"
+ db "NIDORAN♀@@"
+ db "NIDOQUEEN@"
+ db "CUBONE@@@@"
+ db "RHYHORN@@@"
+ db "LAPRAS@@@@"
+ db "ARCANINE@@"
+ db "MEW@@@@@@@"
+ db "GYARADOS@@"
+ db "SHELLDER@@"
+ db "TENTACOOL@"
+ db "GASTLY@@@@"
+ db "SCYTHER@@@"
+ db "STARYU@@@@"
+ db "BLASTOISE@"
+ db "PINSIR@@@@"
+ db "TANGELA@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "GROWLITHE@"
+ db "ONIX@@@@@@"
+ db "FEAROW@@@@"
+ db "PIDGEY@@@@"
+ db "SLOWPOKE@@"
+ db "KADABRA@@@"
+ db "GRAVELER@@"
+ db "CHANSEY@@@"
+ db "MACHOKE@@@"
+ db "MR.MIME@@@"
+ db "HITMONLEE@"
+ db "HITMONCHAN"
+ db "ARBOK@@@@@"
+ db "PARASECT@@"
+ db "PSYDUCK@@@"
+ db "DROWZEE@@@"
+ db "GOLEM@@@@@"
+ db "MISSINGNO."
+ db "MAGMAR@@@@"
+ db "MISSINGNO."
+ db "ELECTABUZZ"
+ db "MAGNETON@@"
+ db "KOFFING@@@"
+ db "MISSINGNO."
+ db "MANKEY@@@@"
+ db "SEEL@@@@@@"
+ db "DIGLETT@@@"
+ db "TAUROS@@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "FARFETCH'D"
+ db "VENONAT@@@"
+ db "DRAGONITE@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "DODUO@@@@@"
+ db "POLIWAG@@@"
+ db "JYNX@@@@@@"
+ db "MOLTRES@@@"
+ db "ARTICUNO@@"
+ db "ZAPDOS@@@@"
+ db "DITTO@@@@@"
+ db "MEOWTH@@@@"
+ db "KRABBY@@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "VULPIX@@@@"
+ db "NINETALES@"
+ db "PIKACHU@@@"
+ db "RAICHU@@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "DRATINI@@@"
+ db "DRAGONAIR@"
+ db "KABUTO@@@@"
+ db "KABUTOPS@@"
+ db "HORSEA@@@@"
+ db "SEADRA@@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "SANDSHREW@"
+ db "SANDSLASH@"
+ db "OMANYTE@@@"
+ db "OMASTAR@@@"
+ db "JIGGLYPUFF"
+ db "WIGGLYTUFF"
+ db "EEVEE@@@@@"
+ db "FLAREON@@@"
+ db "JOLTEON@@@"
+ db "VAPOREON@@"
+ db "MACHOP@@@@"
+ db "ZUBAT@@@@@"
+ db "EKANS@@@@@"
+ db "PARAS@@@@@"
+ db "POLIWHIRL@"
+ db "POLIWRATH@"
+ db "WEEDLE@@@@"
+ db "KAKUNA@@@@"
+ db "BEEDRILL@@"
+ db "MISSINGNO."
+ db "DODRIO@@@@"
+ db "PRIMEAPE@@"
+ db "DUGTRIO@@@"
+ db "VENOMOTH@@"
+ db "DEWGONG@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "CATERPIE@@"
+ db "METAPOD@@@"
+ db "BUTTERFREE"
+ db "MACHAMP@@@"
+ db "MISSINGNO."
+ db "GOLDUCK@@@"
+ db "HYPNO@@@@@"
+ db "GOLBAT@@@@"
+ db "MEWTWO@@@@"
+ db "SNORLAX@@@"
+ db "MAGIKARP@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MUK@@@@@@@"
+ db "MISSINGNO."
+ db "KINGLER@@@"
+ db "CLOYSTER@@"
+ db "MISSINGNO."
+ db "ELECTRODE@"
+ db "CLEFABLE@@"
+ db "WEEZING@@@"
+ db "PERSIAN@@@"
+ db "MAROWAK@@@"
+ db "MISSINGNO."
+ db "HAUNTER@@@"
+ db "ABRA@@@@@@"
+ db "ALAKAZAM@@"
+ db "PIDGEOTTO@"
+ db "PIDGEOT@@@"
+ db "STARMIE@@@"
+ db "BULBASAUR@"
+ db "VENUSAUR@@"
+ db "TENTACRUEL"
+ db "MISSINGNO."
+ db "GOLDEEN@@@"
+ db "SEAKING@@@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "PONYTA@@@@"
+ db "RAPIDASH@@"
+ db "RATTATA@@@"
+ db "RATICATE@@"
+ db "NIDORINO@@"
+ db "NIDORINA@@"
+ db "GEODUDE@@@"
+ db "PORYGON@@@"
+ db "AERODACTYL"
+ db "MISSINGNO."
+ db "MAGNEMITE@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "CHARMANDER"
+ db "SQUIRTLE@@"
+ db "CHARMELEON"
+ db "WARTORTLE@"
+ db "CHARIZARD@"
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "MISSINGNO."
+ db "ODDISH@@@@"
+ db "GLOOM@@@@@"
+ db "VILEPLUME@"
+ db "BELLSPROUT"
+ db "WEEPINBELL"
+ db "VICTREEBEL"
--- /dev/null
+++ b/data/pokemon/palettes.asm
@@ -1,0 +1,153 @@
+MonsterPalettes:
+ db PAL_MEWMON ; MISSINGNO
+ db PAL_GREENMON ; BULBASAUR
+ db PAL_GREENMON ; IVYSAUR
+ db PAL_GREENMON ; VENUSAUR
+ db PAL_REDMON ; CHARMANDER
+ db PAL_REDMON ; CHARMELEON
+ db PAL_REDMON ; CHARIZARD
+ db PAL_CYANMON ; SQUIRTLE
+ db PAL_CYANMON ; WARTORTLE
+ db PAL_CYANMON ; BLASTOISE
+ db PAL_GREENMON ; CATERPIE
+ db PAL_GREENMON ; METAPOD
+ db PAL_CYANMON ; BUTTERFREE
+ db PAL_YELLOWMON ; WEEDLE
+ db PAL_YELLOWMON ; KAKUNA
+ db PAL_YELLOWMON ; BEEDRILL
+ db PAL_BROWNMON ; PIDGEY
+ db PAL_BROWNMON ; PIDGEOTTO
+ db PAL_BROWNMON ; PIDGEOT
+ db PAL_GREYMON ; RATTATA
+ db PAL_GREYMON ; RATICATE
+ db PAL_BROWNMON ; SPEAROW
+ db PAL_BROWNMON ; FEAROW
+ db PAL_PURPLEMON ; EKANS
+ db PAL_PURPLEMON ; ARBOK
+ db PAL_YELLOWMON ; PIKACHU
+ db PAL_YELLOWMON ; RAICHU
+ db PAL_BROWNMON ; SANDSHREW
+ db PAL_BROWNMON ; SANDSLASH
+ db PAL_BLUEMON ; NIDORAN_F
+ db PAL_BLUEMON ; NIDORINA
+ db PAL_BLUEMON ; NIDOQUEEN
+ db PAL_PURPLEMON ; NIDORAN_M
+ db PAL_PURPLEMON ; NIDORINO
+ db PAL_PURPLEMON ; NIDOKING
+ db PAL_PINKMON ; CLEFAIRY
+ db PAL_PINKMON ; CLEFABLE
+ db PAL_REDMON ; VULPIX
+ db PAL_YELLOWMON ; NINETALES
+ db PAL_PINKMON ; JIGGLYPUFF
+ db PAL_PINKMON ; WIGGLYTUFF
+ db PAL_BLUEMON ; ZUBAT
+ db PAL_BLUEMON ; GOLBAT
+ db PAL_GREENMON ; ODDISH
+ db PAL_REDMON ; GLOOM
+ db PAL_REDMON ; VILEPLUME
+ db PAL_REDMON ; PARAS
+ db PAL_REDMON ; PARASECT
+ db PAL_PURPLEMON ; VENONAT
+ db PAL_PURPLEMON ; VENOMOTH
+ db PAL_BROWNMON ; DIGLETT
+ db PAL_BROWNMON ; DUGTRIO
+ db PAL_YELLOWMON ; MEOWTH
+ db PAL_YELLOWMON ; PERSIAN
+ db PAL_YELLOWMON ; PSYDUCK
+ db PAL_CYANMON ; GOLDUCK
+ db PAL_BROWNMON ; MANKEY
+ db PAL_BROWNMON ; PRIMEAPE
+ db PAL_BROWNMON ; GROWLITHE
+ db PAL_REDMON ; ARCANINE
+ db PAL_BLUEMON ; POLIWAG
+ db PAL_BLUEMON ; POLIWHIRL
+ db PAL_BLUEMON ; POLIWRATH
+ db PAL_YELLOWMON ; ABRA
+ db PAL_YELLOWMON ; KADABRA
+ db PAL_YELLOWMON ; ALAKAZAM
+ db PAL_GREYMON ; MACHOP
+ db PAL_GREYMON ; MACHOKE
+ db PAL_GREYMON ; MACHAMP
+ db PAL_GREENMON ; BELLSPROUT
+ db PAL_GREENMON ; WEEPINBELL
+ db PAL_GREENMON ; VICTREEBEL
+ db PAL_CYANMON ; TENTACOOL
+ db PAL_CYANMON ; TENTACRUEL
+ db PAL_GREYMON ; GEODUDE
+ db PAL_GREYMON ; GRAVELER
+ db PAL_GREYMON ; GOLEM
+ db PAL_REDMON ; PONYTA
+ db PAL_REDMON ; RAPIDASH
+ db PAL_PINKMON ; SLOWPOKE
+ db PAL_PINKMON ; SLOWBRO
+ db PAL_GREYMON ; MAGNEMITE
+ db PAL_GREYMON ; MAGNETON
+ db PAL_BROWNMON ; FARFETCHD
+ db PAL_BROWNMON ; DODUO
+ db PAL_BROWNMON ; DODRIO
+ db PAL_BLUEMON ; SEEL
+ db PAL_BLUEMON ; DEWGONG
+ db PAL_PURPLEMON ; GRIMER
+ db PAL_PURPLEMON ; MUK
+ db PAL_GREYMON ; SHELLDER
+ db PAL_GREYMON ; CLOYSTER
+ db PAL_PURPLEMON ; GASTLY
+ db PAL_PURPLEMON ; HAUNTER
+ db PAL_PURPLEMON ; GENGAR
+ db PAL_GREYMON ; ONIX
+ db PAL_YELLOWMON ; DROWZEE
+ db PAL_YELLOWMON ; HYPNO
+ db PAL_REDMON ; KRABBY
+ db PAL_REDMON ; KINGLER
+ db PAL_YELLOWMON ; VOLTORB
+ db PAL_YELLOWMON ; ELECTRODE
+ db PAL_PINKMON ; EXEGGCUTE
+ db PAL_GREENMON ; EXEGGUTOR
+ db PAL_GREYMON ; CUBONE
+ db PAL_GREYMON ; MAROWAK
+ db PAL_BROWNMON ; HITMONLEE
+ db PAL_BROWNMON ; HITMONCHAN
+ db PAL_PINKMON ; LICKITUNG
+ db PAL_PURPLEMON ; KOFFING
+ db PAL_PURPLEMON ; WEEZING
+ db PAL_GREYMON ; RHYHORN
+ db PAL_GREYMON ; RHYDON
+ db PAL_PINKMON ; CHANSEY
+ db PAL_BLUEMON ; TANGELA
+ db PAL_BROWNMON ; KANGASKHAN
+ db PAL_CYANMON ; HORSEA
+ db PAL_CYANMON ; SEADRA
+ db PAL_REDMON ; GOLDEEN
+ db PAL_REDMON ; SEAKING
+ db PAL_REDMON ; STARYU
+ db PAL_GREYMON ; STARMIE
+ db PAL_PINKMON ; MR_MIME
+ db PAL_GREENMON ; SCYTHER
+ db PAL_MEWMON ; JYNX
+ db PAL_YELLOWMON ; ELECTABUZZ
+ db PAL_REDMON ; MAGMAR
+ db PAL_BROWNMON ; PINSIR
+ db PAL_GREYMON ; TAUROS
+ db PAL_REDMON ; MAGIKARP
+ db PAL_BLUEMON ; GYARADOS
+ db PAL_CYANMON ; LAPRAS
+ db PAL_GREYMON ; DITTO
+ db PAL_GREYMON ; EEVEE
+ db PAL_CYANMON ; VAPOREON
+ db PAL_YELLOWMON ; JOLTEON
+ db PAL_REDMON ; FLAREON
+ db PAL_GREYMON ; PORYGON
+ db PAL_BLUEMON ; OMANYTE
+ db PAL_BLUEMON ; OMASTAR
+ db PAL_BROWNMON ; KABUTO
+ db PAL_BROWNMON ; KABUTOPS
+ db PAL_GREYMON ; AERODACTYL
+ db PAL_PINKMON ; SNORLAX
+ db PAL_BLUEMON ; ARTICUNO
+ db PAL_YELLOWMON ; ZAPDOS
+ db PAL_REDMON ; MOLTRES
+ db PAL_GREYMON ; DRATINI
+ db PAL_BLUEMON ; DRAGONAIR
+ db PAL_BROWNMON ; DRAGONITE
+ db PAL_MEWMON ; MEWTWO
+ db PAL_MEWMON ; MEW
--- /dev/null
+++ b/data/pokemon/title_mons.asm
@@ -1,0 +1,56 @@
+TitleMons:
+; mons on the title screen are randomly chosen from here
+IF DEF(_RED)
+ db CHARMANDER
+ db SQUIRTLE
+ db BULBASAUR
+ db WEEDLE
+ db NIDORAN_M
+ db SCYTHER
+ db PIKACHU
+ db CLEFAIRY
+ db RHYDON
+ db ABRA
+ db GASTLY
+ db DITTO
+ db PIDGEOTTO
+ db ONIX
+ db PONYTA
+ db MAGIKARP
+ENDC
+IF DEF(_GREEN)
+ db BULBASAUR
+ db CHARMANDER
+ db SQUIRTLE
+ db CATERPIE
+ db NIDORAN_F
+ db PINSIR
+ db PIKACHU
+ db CLEFAIRY
+ db RHYDON
+ db ABRA
+ db GASTLY
+ db DITTO
+ db PIDGEOTTO
+ db ONIX
+ db PONYTA
+ db MAGIKARP
+ENDC
+IF DEF(_BLUE)
+ db SQUIRTLE
+ db CHARMANDER
+ db BULBASAUR
+ db MANKEY
+ db HITMONLEE
+ db VULPIX
+ db CHANSEY
+ db AERODACTYL
+ db JOLTEON
+ db SNORLAX
+ db GLOOM
+ db POLIWAG
+ db DODUO
+ db PORYGON
+ db GENGAR
+ db RAICHU
+ENDC
--- a/data/predef_pointers.asm
+++ b/data/predef_pointers.asm
@@ -1,3 +1,9 @@
+add_predef: MACRO
+\1Predef::
+ db BANK(\1)
+ dw \1
+ENDM
+
PredefPointers::
; these are pointers to ASM routines.
; they appear to be used in overworld map scripts.
--- a/data/prize_mon_levels.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-PrizeMonLevelDictionary:
-IF DEF(_RED)
- db ABRA,9
- db CLEFAIRY,8
- db NIDORINA,17
-
- db DRATINI,18
- db SCYTHER,25
- db PORYGON,26
-ENDC
-IF DEF(_BLUE)
- db ABRA,6
- db CLEFAIRY,12
- db NIDORINO,17
-
- db PINSIR,20
- db DRATINI,24
- db PORYGON,18
-ENDC
--- a/data/prizes.asm
+++ /dev/null
@@ -1,72 +1,0 @@
-PrizeDifferentMenuPtrs:
- dw PrizeMenuMon1Entries
- dw PrizeMenuMon1Cost
-
- dw PrizeMenuMon2Entries
- dw PrizeMenuMon2Cost
-
- dw PrizeMenuTMsEntries
- dw PrizeMenuTMsCost
-
-NoThanksText:
- db "NO THANKS@"
-
-PrizeMenuMon1Entries:
- db ABRA
- db CLEFAIRY
-IF DEF(_RED)
- db NIDORINA
-ENDC
-IF DEF(_BLUE)
- db NIDORINO
-ENDC
- db "@"
-
-PrizeMenuMon1Cost:
-IF DEF(_RED)
- coins 180
- coins 500
-ENDC
-IF DEF(_BLUE)
- coins 120
- coins 750
-ENDC
- coins 1200
- db "@"
-
-PrizeMenuMon2Entries:
-IF DEF(_RED)
- db DRATINI
- db SCYTHER
-ENDC
-IF DEF(_BLUE)
- db PINSIR
- db DRATINI
-ENDC
- db PORYGON
- db "@"
-
-PrizeMenuMon2Cost:
-IF DEF(_RED)
- coins 2800
- coins 5500
- coins 9999
-ENDC
-IF DEF(_BLUE)
- coins 2500
- coins 4600
- coins 6500
-ENDC
- db "@"
-
-PrizeMenuTMsEntries:
- db TM_23
- db TM_15
- db TM_50
- db "@"
-
-PrizeMenuTMsCost:
- coins 3300
- coins 5500
- coins 7700
- db "@"
--- a/data/rest_house_maps.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-SafariZoneRestHouses:
- db SAFARI_ZONE_WEST_REST_HOUSE
- db SAFARI_ZONE_EAST_REST_HOUSE
- db SAFARI_ZONE_NORTH_REST_HOUSE
- db -1
--- /dev/null
+++ b/data/sgb/sgb_border.asm
@@ -1,0 +1,62 @@
+BorderPalettes:
+IF DEF(_RED)
+ INCBIN "gfx/sgb/red_border.tilemap"
+ENDC
+IF DEF(_BLUE)
+ INCBIN "gfx/sgb/blue_border.tilemap"
+ENDC
+
+ ds $100
+
+IF DEF(_RED)
+ RGB 30,29,29 ; PAL_SGB1
+ RGB 25,22,25
+ RGB 25,17,21
+ RGB 24,14,12
+ENDC
+IF DEF(_BLUE)
+ RGB 0,0,0 ; PAL_SGB1 (the first color is not defined, but if used, turns up as 30,29,29... o_O)
+ RGB 10,17,26
+ RGB 5,9,20
+ RGB 16,20,27
+ENDC
+
+ ds $18
+
+IF DEF(_RED)
+ RGB 30,29,29 ; PAL_SGB2
+ RGB 22,31,16
+ RGB 27,20,6
+ RGB 15,15,15
+ENDC
+IF DEF(_BLUE)
+ RGB 30,29,29 ; PAL_SGB2
+ RGB 27,11,6
+ RGB 5,9,20
+ RGB 28,25,15
+ENDC
+
+ ds $18
+
+IF DEF(_RED)
+ RGB 30,29,29 ; PAL_SGB3
+ RGB 31,31,17
+ RGB 18,21,29
+ RGB 15,15,15
+ENDC
+IF DEF(_BLUE)
+ RGB 30,29,29 ; PAL_SGB3
+ RGB 12,15,11
+ RGB 5,9,20
+ RGB 14,22,17
+ENDC
+
+ ds $18
+
+SGBBorderGraphics:
+IF DEF(_RED)
+ INCBIN "gfx/sgb/red_border.2bpp"
+ENDC
+IF DEF(_BLUE)
+ INCBIN "gfx/sgb/blue_border.2bpp"
+ENDC
--- /dev/null
+++ b/data/sgb/sgb_packets.asm
@@ -1,0 +1,298 @@
+ATTR_BLK: MACRO
+; This is a command macro.
+; Use ATTR_BLK_DATA for data sets.
+ db ($4 << 3) + ((\1 * 6) / 16 + 1)
+ db \1
+ENDM
+ATTR_BLK_DATA: MACRO
+ db \1 ; which regions are affected
+ db \2 + (\3 << 2) + (\4 << 4) ; palette for each region
+ db \5, \6, \7, \8 ; x1, y1, x2, y2
+ENDM
+
+PAL_SET: MACRO
+ db ($a << 3) + 1
+ dw \1, \2, \3, \4
+ ds 7
+ENDM
+
+PAL_TRN: MACRO
+ db ($b<< 3) + 1
+ ds 15
+ENDM
+
+MLT_REQ: MACRO
+ db ($11 << 3) + 1
+ db \1 - 1
+ ds 14
+ENDM
+
+CHR_TRN: MACRO
+ db ($13 << 3) + 1
+ db \1 + (\2 << 1)
+ ds 14
+ENDM
+
+PCT_TRN: MACRO
+ db ($14 << 3) + 1
+ ds 15
+ENDM
+
+MASK_EN: MACRO
+ db ($17 << 3) + 1
+ db \1
+ ds 14
+ENDM
+
+DATA_SND: MACRO
+ db ($f << 3) + 1
+ dw \1 ; address
+ db \2 ; bank
+ db \3 ; length (1-11)
+ENDM
+
+BlkPacket_WholeScreen:
+ ATTR_BLK 1
+ ATTR_BLK_DATA %011, 0,0,0, 00,00, 19,17
+ ds 8
+
+ db $03,$00,$00,$13,$11,$00,$00
+
+BlkPacket_Battle:
+ ATTR_BLK 5
+ ATTR_BLK_DATA %111, 2,2,0, 00,12, 19,17 ; message box: pal 2
+ ATTR_BLK_DATA %011, 1,1,0, 01,00, 10,03 ; enemy HP bar: pal 1
+ ATTR_BLK_DATA %011, 0,0,0, 10,07, 19,10 ; player HP bar: pal 0
+ ATTR_BLK_DATA %011, 2,2,0, 00,04, 08,11 ; player mon: pal 2
+ ATTR_BLK_DATA %011, 3,3,0, 11,00, 19,06 ; enemy mon : pal 3
+
+ db $03,$00,$00,$13,$0b,$00
+ db $03,$00,$0c,$13,$11,$02
+ db $03,$01,$00,$0a,$03,$01
+ db $03,$0a,$08,$13,$0a,$00
+ db $03,$00,$04,$08,$0b,$02
+ db $03,$0b,$00,$13,$07,$03
+ db $00
+
+BlkPacket_StatusScreen:
+ ATTR_BLK 1
+ ATTR_BLK_DATA %111, 1,1,0, 01,00, 07,06 ; mon: pal 1, HP bar: pal 0
+ ds 8
+
+ db $02,$00,$00,$11,$00,$03
+ db $01,$00,$07,$06,$01,$03
+ db $01,$07,$13,$11,$00,$03
+ db $08,$00,$13,$06,$00,$00
+
+BlkPacket_Pokedex:
+ ATTR_BLK 1
+ ATTR_BLK_DATA %111, 1,1,0, 01,01, 08,08 ; mon: pal 1, everything else: pal 0
+ ds 8
+
+ db $02,$00,$00,$11,$00,$01
+ db $00,$01,$13,$00,$03,$01
+ db $01,$08,$08,$01,$03,$01
+ db $09,$08,$11,$00,$03,$09
+ db $01,$13,$11,$00,$00
+
+BlkPacket_Slots:
+ ATTR_BLK 5
+ ATTR_BLK_DATA %011, 1,1,0, 00,00, 19,11 ; "3" rows and top of screen: pal 1
+ ATTR_BLK_DATA %011, 2,2,0, 00,04, 19,09 ; "2" rows: pal 2
+ ATTR_BLK_DATA %010, 3,3,0, 00,06, 19,07 ; "1" row: pal 3
+ ATTR_BLK_DATA %011, 0,0,0, 04,04, 15,09 ; slot reels: pal 0
+ ATTR_BLK_DATA %011, 0,0,0, 00,12, 19,17 ; message box: pal 0
+
+ db $03,$00,$00,$13,$0b,$01
+ db $03,$00,$04,$13,$09,$02
+ db $03,$00,$06,$13,$07,$03
+ db $03,$04,$04,$0f,$09,$00
+ db $03,$00,$0c,$13,$11,$00
+ db $00
+
+BlkPacket_Titlescreen:
+ ATTR_BLK 3
+ ATTR_BLK_DATA %011, 0,0,0, 00,00, 19,07 ; pokemon logo: pal 0
+ ATTR_BLK_DATA %010, 1,1,0, 00,08, 19,09 ; version text: pal 1
+ ATTR_BLK_DATA %011, 2,2,0, 00,10, 19,17 ; player, mon, copyright text: pal 2
+ ds 12
+
+ db $03,$00,$00,$13,$07,$00
+ db $03,$00,$08,$13,$09,$01
+ db $03,$00,$0a,$13,$11,$02
+ db $00
+
+BlkPacket_NidorinoIntro:
+ ATTR_BLK 3
+ ATTR_BLK_DATA %011, 1,1,0, 00,00, 19,03 ; upper black bar: pal 1
+ ATTR_BLK_DATA %011, 0,0,0, 00,04, 19,13 ; letterbox: pal 0
+ ATTR_BLK_DATA %011, 1,1,0, 00,14, 19,17 ; lower black bar: pal 1
+ ds 12
+
+ db $03,$00,$00,$13,$03,$01
+ db $03,$00,$04,$13,$0d,$00
+ db $03,$00,$0e,$13,$11,$01
+ db $00
+
+BlkPacket_PartyMenu:
+ ATTR_BLK 7
+ ATTR_BLK_DATA %110, 0,0,1, 01,00, 02,12 ; mon sprites: pal 0, everything else: pal 1
+ ATTR_BLK_DATA %010, 0,0,0, 05,01, 11,01 ; HP bar 0: pal set dynamically
+ ATTR_BLK_DATA %010, 0,0,0, 05,03, 11,03 ; HP bar 1: pal set dynamically
+ ATTR_BLK_DATA %010, 0,0,0, 05,05, 11,05 ; HP bar 2: pal set dynamically
+ ATTR_BLK_DATA %010, 0,0,0, 05,07, 11,07 ; HP bar 3: pal set dynamically
+ ATTR_BLK_DATA %010, 0,0,0, 05,09, 11,09 ; HP bar 4: pal set dynamically
+ ATTR_BLK_DATA %010, 0,0,0, 05,11, 11,11 ; HP bar 5: pal set dynamically
+ ds 4
+
+ db $02,$00,$00,$11,$01,$03
+ db $01,$00,$02,$0c,$00,$03
+ db $01,$0d,$02,$11,$01,$03
+ db $03,$00,$13,$11,$01,$03
+ db $0c,$00,$12,$01,$00,$03
+ db $0c,$02,$12,$03,$00,$03
+ db $0c,$04,$12,$05,$00,$03
+ db $0c,$06,$12,$07,$00,$03
+ db $0c,$08,$12,$09,$00,$03
+ db $0c,$0a,$12,$0b,$00,$00
+
+BlkPacket_TrainerCard:
+ ATTR_BLK 10
+ ATTR_BLK_DATA %010, 0,0,0, 03,12, 04,13 ; Boulder Badge
+ ATTR_BLK_DATA %010, 1,1,0, 07,12, 08,13 ; Cascade Badge
+ ATTR_BLK_DATA %010, 3,3,0, 11,12, 12,13 ; Thunder Badge
+ ATTR_BLK_DATA %010, 2,2,0, 16,11, 17,12 ; Rainbow Badge
+ ATTR_BLK_DATA %010, 1,1,0, 14,13, 15,14 ; Rainbow Badge
+ ATTR_BLK_DATA %010, 3,3,0, 16,13, 17,14 ; Rainbow Badge
+ ATTR_BLK_DATA %010, 2,2,0, 03,15, 04,16 ; Soul Badge
+ ATTR_BLK_DATA %010, 3,3,0, 07,15, 08,16 ; Marsh Badge
+ ATTR_BLK_DATA %010, 2,2,0, 11,15, 12,16 ; Volcano Badge
+ ATTR_BLK_DATA %010, 1,1,0, 15,15, 16,16 ; Earth Badge
+ ds 2
+
+ db $03,$03,$0c,$04,$0d,$00
+ db $03,$07,$0c,$08,$0d,$01
+ db $03,$0b,$0c,$0c,$0d,$03
+ db $03,$10,$0b,$11,$0c,$02
+ db $03,$0e,$0d,$0f,$0e,$01
+ db $03,$10,$0d,$11,$0e,$03
+ db $03,$03,$0f,$04,$10,$02
+ db $03,$07,$0f,$08,$10,$03
+ db $03,$0b,$0f,$0c,$10,$02
+ db $03,$0f,$0f,$10,$10,$01
+ db $00
+
+BlkPacket_GameFreakIntro:
+ ATTR_BLK 3
+ ATTR_BLK_DATA %111, 1,1,0, 05,11, 07,13 ; falling stars (left): pal 1, GameFreak logo: pal 0
+ ATTR_BLK_DATA %010, 2,2,0, 08,11, 09,13 ; falling stars (middle): pal 2
+ ATTR_BLK_DATA %011, 3,3,0, 12,11, 14,13 ; falling stars (right): pal 3
+ ds 12
+
+ db $03,$00,$00,$13,$0a,$00
+ db $03,$00,$0b,$04,$0d,$00
+ db $03,$05,$0b,$07,$0d,$01
+ db $03,$08,$0b,$13,$0d,$00
+ db $03,$00,$0e,$13,$11,$00
+ db $03,$08,$0b,$09,$0d,$02
+ db $03,$0c,$0b,$0e,$0d,$03
+ db $00
+
+
+PalPacket_Empty: PAL_SET 0, 0, 0, 0
+PalPacket_PartyMenu: PAL_SET PAL_MEWMON, PAL_GREENBAR, PAL_YELLOWBAR, PAL_REDBAR
+PalPacket_Black: PAL_SET PAL_BLACK, PAL_BLACK, PAL_BLACK, PAL_BLACK
+PalPacket_TownMap: PAL_SET PAL_TOWNMAP, 0, 0, 0
+PalPacket_Pokedex: PAL_SET PAL_BROWNMON, 0, 0, 0
+PalPacket_Slots: PAL_SET PAL_SLOTS1, PAL_SLOTS2, PAL_SLOTS3, PAL_SLOTS4
+PalPacket_Titlescreen: PAL_SET PAL_LOGO2, PAL_LOGO1, PAL_MEWMON, PAL_PURPLEMON
+PalPacket_TrainerCard: PAL_SET PAL_MEWMON, PAL_BADGE, PAL_REDMON, PAL_YELLOWMON
+PalPacket_Generic: PAL_SET PAL_MEWMON, 0, 0, 0
+PalPacket_NidorinoIntro: PAL_SET PAL_PURPLEMON, PAL_BLACK, 0, 0
+PalPacket_GameFreakIntro: PAL_SET PAL_GAMEFREAK, PAL_REDMON, PAL_VIRIDIAN, PAL_BLUEMON
+
+PalTrnPacket: PAL_TRN
+MltReq1Packet: MLT_REQ 1
+MltReq2Packet: MLT_REQ 2
+ChrTrnPacket: CHR_TRN 0, 0
+PctTrnPacket: PCT_TRN
+
+MaskEnFreezePacket: MASK_EN 1
+MaskEnCancelPacket: MASK_EN 0
+
+
+; These are DATA_SND packets containing SNES code.
+; This set of packets is found in several Japanese SGB-compatible titles.
+; It appears to be part of NCL's SGB devkit.
+
+DataSnd_72548: DATA_SND $85d, $0, 11
+ db $8C ; cpx #$8c (2)
+ db $D0, $F4 ; bne -$0c
+ db $60 ; rts
+ ds 7
+
+DataSnd_72558: DATA_SND $852, $0, 11
+ db $A9, $E7 ; lda #$e7
+ db $9F, $01, $C0, $7E ; sta $7ec001, x
+ db $E8 ; inx
+ db $E8 ; inx
+ db $E8 ; inx
+ db $E8 ; inx
+ db $E0 ; cpx #$8c (1)
+
+DataSnd_72568: DATA_SND $847, $0, 11
+ db $C4 ; cmp #$c4 (2)
+ db $D0, $16 ; bne +$16
+ db $A5 ; lda dp
+ db $CB ; wai
+ db $C9, $05 ; cmp #$05
+ db $D0, $10 ; bne +$10
+ db $A2, $28 ; ldx #$28
+
+DataSnd_72578: DATA_SND $83c, $0, 11
+ db $F0, $12 ; beq +$12
+ db $A5 ; lda dp
+ db $C9, $C9 ; cmp #$c9
+ db $C8 ; iny
+ db $D0, $1C ; bne +$1c
+ db $A5 ; lda dp
+ db $CA ; dex
+ db $C9 ; cmp #$c4 (1)
+
+DataSnd_72588: DATA_SND $831, $0, 11
+ dbw $0C, $CAA5 ; tsb $caa5
+ db $C9, $7E ; cmp #$7e
+ db $D0, $06 ; bne +$06
+ db $A5 ; lda dp
+ db $CB ; wai
+ db $C9, $7E ; cmp #$7e
+
+DataSnd_72598: DATA_SND $826, $0, 11
+ db $39 ; bne +$39 (2)
+ dbw $CD, $C48 ; cmp $c48
+ db $D0, $34 ; bne +$34
+ db $A5 ; lda dp
+ db $C9, $C9 ; cmp #$c9
+ db $80, $D0 ; bra -$30
+
+DataSnd_725a8: DATA_SND $81b, $0, 11
+ db $EA ; nop
+ db $EA ; nop
+ db $EA ; nop
+ db $EA ; nop
+ db $EA ; nop
+ ; $820:
+ db $A9,$01 ; lda #01
+ dbw $CD,$C4F ; cmp $c4f
+ db $D0 ; bne +$39 (1)
+
+DataSnd_725b8: DATA_SND $810, $0, 11
+ dbw $4C, $820 ; jmp $820
+ db $EA ; nop
+ db $EA ; nop
+ db $EA ; nop
+ db $EA ; nop
+ db $EA ; nop
+ db $60 ; rts
+ db $EA ; nop
+ db $EA ; nop
--- /dev/null
+++ b/data/sgb/sgb_palettes.asm
@@ -1,0 +1,174 @@
+; palettes for overworlds, title screen, monsters
+SuperPalettes:
+ RGB 31,29,31 ; PAL_ROUTE
+ RGB 21,28,11
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_PALLET
+ RGB 25,28,27
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_VIRIDIAN
+ RGB 17,26,3
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_PEWTER
+ RGB 23,25,16
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_CERULEAN
+ RGB 17,20,30
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_LAVENDER
+ RGB 27,20,27
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_VERMILION
+ RGB 30,18,0
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_CELADON
+ RGB 16,30,22
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_FUCHSIA
+ RGB 31,15,22
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_CINNABAR
+ RGB 26,10,6
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_INDIGO
+ RGB 22,14,24
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_SAFFRON
+ RGB 27,27,3
+ RGB 20,26,31
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_TOWNMAP
+ RGB 20,26,31
+ RGB 17,23,10
+ RGB 3,2,2
+IF DEF(_RED)
+ RGB 31,29,31 ; PAL_LOGO1
+ RGB 30,30,17
+ RGB 17,23,10
+ RGB 21,0,4
+ENDC
+IF DEF(_BLUE)
+ RGB 31,29,31 ; PAL_LOGO1
+ RGB 30,30,17
+ RGB 21,0,4
+ RGB 14,19,29
+ENDC
+ RGB 31,29,31 ; PAL_LOGO2
+ RGB 30,30,17
+ RGB 18,18,24
+ RGB 7,7,16
+ RGB 31,29,31 ; PAL_0F
+ RGB 24,20,30
+ RGB 11,20,30
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_MEWMON
+ RGB 30,22,17
+ RGB 16,14,19
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_BLUEMON
+ RGB 18,20,27
+ RGB 11,15,23
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_REDMON
+ RGB 31,20,10
+ RGB 26,10,6
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_CYANMON
+ RGB 21,25,29
+ RGB 14,19,25
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_PURPLEMON
+ RGB 27,22,24
+ RGB 21,15,23
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_BROWNMON
+ RGB 28,20,15
+ RGB 21,14,9
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_GREENMON
+ RGB 20,26,16
+ RGB 9,20,11
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_PINKMON
+ RGB 30,22,24
+ RGB 28,15,21
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_YELLOWMON
+ RGB 31,28,14
+ RGB 26,20,0
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_GREYMON
+ RGB 26,21,22
+ RGB 15,15,18
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_SLOTS1
+ RGB 26,21,22
+ RGB 27,20,6
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_SLOTS2
+ RGB 31,31,17
+IF DEF(_RED)
+ RGB 25,17,21
+ENDC
+IF DEF(_BLUE)
+ RGB 16,19,29
+ENDC
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_SLOTS3
+ RGB 22,31,16
+IF DEF(_RED)
+ RGB 25,17,21
+ENDC
+IF DEF(_BLUE)
+ RGB 16,19,29
+ENDC
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_SLOTS4
+IF DEF(_RED)
+ RGB 16,19,29
+ RGB 25,17,21
+ENDC
+IF DEF(_BLUE)
+ RGB 25,17,21
+ RGB 16,19,29
+ENDC
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_BLACK
+ RGB 7,7,7
+ RGB 2,3,3
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_GREENBAR
+ RGB 30,26,15
+ RGB 9,20,11
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_YELLOWBAR
+ RGB 30,26,15
+ RGB 26,20,0
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_REDBAR
+ RGB 30,26,15
+ RGB 26,10,6
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_BADGE
+ RGB 30,22,17
+ RGB 11,15,23
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_CAVE
+ RGB 21,14,9
+ RGB 18,24,22
+ RGB 3,2,2
+ RGB 31,29,31 ; PAL_GAMEFREAK
+ RGB 31,28,14
+ RGB 24,20,10
+ RGB 3,2,2
--- a/data/sgb_border.asm
+++ /dev/null
@@ -1,62 +1,0 @@
-BorderPalettes:
-IF DEF(_RED)
- INCBIN "gfx/sgb/red_border.tilemap"
-ENDC
-IF DEF(_BLUE)
- INCBIN "gfx/sgb/blue_border.tilemap"
-ENDC
-
- ds $100
-
-IF DEF(_RED)
- RGB 30,29,29 ; PAL_SGB1
- RGB 25,22,25
- RGB 25,17,21
- RGB 24,14,12
-ENDC
-IF DEF(_BLUE)
- RGB 0,0,0 ; PAL_SGB1 (the first color is not defined, but if used, turns up as 30,29,29... o_O)
- RGB 10,17,26
- RGB 5,9,20
- RGB 16,20,27
-ENDC
-
- ds $18
-
-IF DEF(_RED)
- RGB 30,29,29 ; PAL_SGB2
- RGB 22,31,16
- RGB 27,20,6
- RGB 15,15,15
-ENDC
-IF DEF(_BLUE)
- RGB 30,29,29 ; PAL_SGB2
- RGB 27,11,6
- RGB 5,9,20
- RGB 28,25,15
-ENDC
-
- ds $18
-
-IF DEF(_RED)
- RGB 30,29,29 ; PAL_SGB3
- RGB 31,31,17
- RGB 18,21,29
- RGB 15,15,15
-ENDC
-IF DEF(_BLUE)
- RGB 30,29,29 ; PAL_SGB3
- RGB 12,15,11
- RGB 5,9,20
- RGB 14,22,17
-ENDC
-
- ds $18
-
-SGBBorderGraphics:
-IF DEF(_RED)
- INCBIN "gfx/sgb/red_border.2bpp"
-ENDC
-IF DEF(_BLUE)
- INCBIN "gfx/sgb/blue_border.2bpp"
-ENDC
--- a/data/sgb_packets.asm
+++ /dev/null
@@ -1,298 +1,0 @@
-ATTR_BLK: MACRO
-; This is a command macro.
-; Use ATTR_BLK_DATA for data sets.
- db ($4 << 3) + ((\1 * 6) / 16 + 1)
- db \1
-ENDM
-ATTR_BLK_DATA: MACRO
- db \1 ; which regions are affected
- db \2 + (\3 << 2) + (\4 << 4) ; palette for each region
- db \5, \6, \7, \8 ; x1, y1, x2, y2
-ENDM
-
-PAL_SET: MACRO
- db ($a << 3) + 1
- dw \1, \2, \3, \4
- ds 7
-ENDM
-
-PAL_TRN: MACRO
- db ($b<< 3) + 1
- ds 15
-ENDM
-
-MLT_REQ: MACRO
- db ($11 << 3) + 1
- db \1 - 1
- ds 14
-ENDM
-
-CHR_TRN: MACRO
- db ($13 << 3) + 1
- db \1 + (\2 << 1)
- ds 14
-ENDM
-
-PCT_TRN: MACRO
- db ($14 << 3) + 1
- ds 15
-ENDM
-
-MASK_EN: MACRO
- db ($17 << 3) + 1
- db \1
- ds 14
-ENDM
-
-DATA_SND: MACRO
- db ($f << 3) + 1
- dw \1 ; address
- db \2 ; bank
- db \3 ; length (1-11)
-ENDM
-
-BlkPacket_WholeScreen:
- ATTR_BLK 1
- ATTR_BLK_DATA %011, 0,0,0, 00,00, 19,17
- ds 8
-
- db $03,$00,$00,$13,$11,$00,$00
-
-BlkPacket_Battle:
- ATTR_BLK 5
- ATTR_BLK_DATA %111, 2,2,0, 00,12, 19,17 ; message box: pal 2
- ATTR_BLK_DATA %011, 1,1,0, 01,00, 10,03 ; enemy HP bar: pal 1
- ATTR_BLK_DATA %011, 0,0,0, 10,07, 19,10 ; player HP bar: pal 0
- ATTR_BLK_DATA %011, 2,2,0, 00,04, 08,11 ; player mon: pal 2
- ATTR_BLK_DATA %011, 3,3,0, 11,00, 19,06 ; enemy mon : pal 3
-
- db $03,$00,$00,$13,$0b,$00
- db $03,$00,$0c,$13,$11,$02
- db $03,$01,$00,$0a,$03,$01
- db $03,$0a,$08,$13,$0a,$00
- db $03,$00,$04,$08,$0b,$02
- db $03,$0b,$00,$13,$07,$03
- db $00
-
-BlkPacket_StatusScreen:
- ATTR_BLK 1
- ATTR_BLK_DATA %111, 1,1,0, 01,00, 07,06 ; mon: pal 1, HP bar: pal 0
- ds 8
-
- db $02,$00,$00,$11,$00,$03
- db $01,$00,$07,$06,$01,$03
- db $01,$07,$13,$11,$00,$03
- db $08,$00,$13,$06,$00,$00
-
-BlkPacket_Pokedex:
- ATTR_BLK 1
- ATTR_BLK_DATA %111, 1,1,0, 01,01, 08,08 ; mon: pal 1, everything else: pal 0
- ds 8
-
- db $02,$00,$00,$11,$00,$01
- db $00,$01,$13,$00,$03,$01
- db $01,$08,$08,$01,$03,$01
- db $09,$08,$11,$00,$03,$09
- db $01,$13,$11,$00,$00
-
-BlkPacket_Slots:
- ATTR_BLK 5
- ATTR_BLK_DATA %011, 1,1,0, 00,00, 19,11 ; "3" rows and top of screen: pal 1
- ATTR_BLK_DATA %011, 2,2,0, 00,04, 19,09 ; "2" rows: pal 2
- ATTR_BLK_DATA %010, 3,3,0, 00,06, 19,07 ; "1" row: pal 3
- ATTR_BLK_DATA %011, 0,0,0, 04,04, 15,09 ; slot reels: pal 0
- ATTR_BLK_DATA %011, 0,0,0, 00,12, 19,17 ; message box: pal 0
-
- db $03,$00,$00,$13,$0b,$01
- db $03,$00,$04,$13,$09,$02
- db $03,$00,$06,$13,$07,$03
- db $03,$04,$04,$0f,$09,$00
- db $03,$00,$0c,$13,$11,$00
- db $00
-
-BlkPacket_Titlescreen:
- ATTR_BLK 3
- ATTR_BLK_DATA %011, 0,0,0, 00,00, 19,07 ; pokemon logo: pal 0
- ATTR_BLK_DATA %010, 1,1,0, 00,08, 19,09 ; version text: pal 1
- ATTR_BLK_DATA %011, 2,2,0, 00,10, 19,17 ; player, mon, copyright text: pal 2
- ds 12
-
- db $03,$00,$00,$13,$07,$00
- db $03,$00,$08,$13,$09,$01
- db $03,$00,$0a,$13,$11,$02
- db $00
-
-BlkPacket_NidorinoIntro:
- ATTR_BLK 3
- ATTR_BLK_DATA %011, 1,1,0, 00,00, 19,03 ; upper black bar: pal 1
- ATTR_BLK_DATA %011, 0,0,0, 00,04, 19,13 ; letterbox: pal 0
- ATTR_BLK_DATA %011, 1,1,0, 00,14, 19,17 ; lower black bar: pal 1
- ds 12
-
- db $03,$00,$00,$13,$03,$01
- db $03,$00,$04,$13,$0d,$00
- db $03,$00,$0e,$13,$11,$01
- db $00
-
-BlkPacket_PartyMenu:
- ATTR_BLK 7
- ATTR_BLK_DATA %110, 0,0,1, 01,00, 02,12 ; mon sprites: pal 0, everything else: pal 1
- ATTR_BLK_DATA %010, 0,0,0, 05,01, 11,01 ; HP bar 0: pal set dynamically
- ATTR_BLK_DATA %010, 0,0,0, 05,03, 11,03 ; HP bar 1: pal set dynamically
- ATTR_BLK_DATA %010, 0,0,0, 05,05, 11,05 ; HP bar 2: pal set dynamically
- ATTR_BLK_DATA %010, 0,0,0, 05,07, 11,07 ; HP bar 3: pal set dynamically
- ATTR_BLK_DATA %010, 0,0,0, 05,09, 11,09 ; HP bar 4: pal set dynamically
- ATTR_BLK_DATA %010, 0,0,0, 05,11, 11,11 ; HP bar 5: pal set dynamically
- ds 4
-
- db $02,$00,$00,$11,$01,$03
- db $01,$00,$02,$0c,$00,$03
- db $01,$0d,$02,$11,$01,$03
- db $03,$00,$13,$11,$01,$03
- db $0c,$00,$12,$01,$00,$03
- db $0c,$02,$12,$03,$00,$03
- db $0c,$04,$12,$05,$00,$03
- db $0c,$06,$12,$07,$00,$03
- db $0c,$08,$12,$09,$00,$03
- db $0c,$0a,$12,$0b,$00,$00
-
-BlkPacket_TrainerCard:
- ATTR_BLK 10
- ATTR_BLK_DATA %010, 0,0,0, 03,12, 04,13 ; Boulder Badge
- ATTR_BLK_DATA %010, 1,1,0, 07,12, 08,13 ; Cascade Badge
- ATTR_BLK_DATA %010, 3,3,0, 11,12, 12,13 ; Thunder Badge
- ATTR_BLK_DATA %010, 2,2,0, 16,11, 17,12 ; Rainbow Badge
- ATTR_BLK_DATA %010, 1,1,0, 14,13, 15,14 ; Rainbow Badge
- ATTR_BLK_DATA %010, 3,3,0, 16,13, 17,14 ; Rainbow Badge
- ATTR_BLK_DATA %010, 2,2,0, 03,15, 04,16 ; Soul Badge
- ATTR_BLK_DATA %010, 3,3,0, 07,15, 08,16 ; Marsh Badge
- ATTR_BLK_DATA %010, 2,2,0, 11,15, 12,16 ; Volcano Badge
- ATTR_BLK_DATA %010, 1,1,0, 15,15, 16,16 ; Earth Badge
- ds 2
-
- db $03,$03,$0c,$04,$0d,$00
- db $03,$07,$0c,$08,$0d,$01
- db $03,$0b,$0c,$0c,$0d,$03
- db $03,$10,$0b,$11,$0c,$02
- db $03,$0e,$0d,$0f,$0e,$01
- db $03,$10,$0d,$11,$0e,$03
- db $03,$03,$0f,$04,$10,$02
- db $03,$07,$0f,$08,$10,$03
- db $03,$0b,$0f,$0c,$10,$02
- db $03,$0f,$0f,$10,$10,$01
- db $00
-
-BlkPacket_GameFreakIntro:
- ATTR_BLK 3
- ATTR_BLK_DATA %111, 1,1,0, 05,11, 07,13 ; falling stars (left): pal 1, GameFreak logo: pal 0
- ATTR_BLK_DATA %010, 2,2,0, 08,11, 09,13 ; falling stars (middle): pal 2
- ATTR_BLK_DATA %011, 3,3,0, 12,11, 14,13 ; falling stars (right): pal 3
- ds 12
-
- db $03,$00,$00,$13,$0a,$00
- db $03,$00,$0b,$04,$0d,$00
- db $03,$05,$0b,$07,$0d,$01
- db $03,$08,$0b,$13,$0d,$00
- db $03,$00,$0e,$13,$11,$00
- db $03,$08,$0b,$09,$0d,$02
- db $03,$0c,$0b,$0e,$0d,$03
- db $00
-
-
-PalPacket_Empty: PAL_SET 0, 0, 0, 0
-PalPacket_PartyMenu: PAL_SET PAL_MEWMON, PAL_GREENBAR, PAL_YELLOWBAR, PAL_REDBAR
-PalPacket_Black: PAL_SET PAL_BLACK, PAL_BLACK, PAL_BLACK, PAL_BLACK
-PalPacket_TownMap: PAL_SET PAL_TOWNMAP, 0, 0, 0
-PalPacket_Pokedex: PAL_SET PAL_BROWNMON, 0, 0, 0
-PalPacket_Slots: PAL_SET PAL_SLOTS1, PAL_SLOTS2, PAL_SLOTS3, PAL_SLOTS4
-PalPacket_Titlescreen: PAL_SET PAL_LOGO2, PAL_LOGO1, PAL_MEWMON, PAL_PURPLEMON
-PalPacket_TrainerCard: PAL_SET PAL_MEWMON, PAL_BADGE, PAL_REDMON, PAL_YELLOWMON
-PalPacket_Generic: PAL_SET PAL_MEWMON, 0, 0, 0
-PalPacket_NidorinoIntro: PAL_SET PAL_PURPLEMON, PAL_BLACK, 0, 0
-PalPacket_GameFreakIntro: PAL_SET PAL_GAMEFREAK, PAL_REDMON, PAL_VIRIDIAN, PAL_BLUEMON
-
-PalTrnPacket: PAL_TRN
-MltReq1Packet: MLT_REQ 1
-MltReq2Packet: MLT_REQ 2
-ChrTrnPacket: CHR_TRN 0, 0
-PctTrnPacket: PCT_TRN
-
-MaskEnFreezePacket: MASK_EN 1
-MaskEnCancelPacket: MASK_EN 0
-
-
-; These are DATA_SND packets containing SNES code.
-; This set of packets is found in several Japanese SGB-compatible titles.
-; It appears to be part of NCL's SGB devkit.
-
-DataSnd_72548: DATA_SND $85d, $0, 11
- db $8C ; cpx #$8c (2)
- db $D0, $F4 ; bne -$0c
- db $60 ; rts
- ds 7
-
-DataSnd_72558: DATA_SND $852, $0, 11
- db $A9, $E7 ; lda #$e7
- db $9F, $01, $C0, $7E ; sta $7ec001, x
- db $E8 ; inx
- db $E8 ; inx
- db $E8 ; inx
- db $E8 ; inx
- db $E0 ; cpx #$8c (1)
-
-DataSnd_72568: DATA_SND $847, $0, 11
- db $C4 ; cmp #$c4 (2)
- db $D0, $16 ; bne +$16
- db $A5 ; lda dp
- db $CB ; wai
- db $C9, $05 ; cmp #$05
- db $D0, $10 ; bne +$10
- db $A2, $28 ; ldx #$28
-
-DataSnd_72578: DATA_SND $83c, $0, 11
- db $F0, $12 ; beq +$12
- db $A5 ; lda dp
- db $C9, $C9 ; cmp #$c9
- db $C8 ; iny
- db $D0, $1C ; bne +$1c
- db $A5 ; lda dp
- db $CA ; dex
- db $C9 ; cmp #$c4 (1)
-
-DataSnd_72588: DATA_SND $831, $0, 11
- dbw $0C, $CAA5 ; tsb $caa5
- db $C9, $7E ; cmp #$7e
- db $D0, $06 ; bne +$06
- db $A5 ; lda dp
- db $CB ; wai
- db $C9, $7E ; cmp #$7e
-
-DataSnd_72598: DATA_SND $826, $0, 11
- db $39 ; bne +$39 (2)
- dbw $CD, $C48 ; cmp $c48
- db $D0, $34 ; bne +$34
- db $A5 ; lda dp
- db $C9, $C9 ; cmp #$c9
- db $80, $D0 ; bra -$30
-
-DataSnd_725a8: DATA_SND $81b, $0, 11
- db $EA ; nop
- db $EA ; nop
- db $EA ; nop
- db $EA ; nop
- db $EA ; nop
- ; $820:
- db $A9,$01 ; lda #01
- dbw $CD,$C4F ; cmp $c4f
- db $D0 ; bne +$39 (1)
-
-DataSnd_725b8: DATA_SND $810, $0, 11
- dbw $4C, $820 ; jmp $820
- db $EA ; nop
- db $EA ; nop
- db $EA ; nop
- db $EA ; nop
- db $EA ; nop
- db $60 ; rts
- db $EA ; nop
- db $EA ; nop
--- a/data/slot_machine_wheels.asm
+++ /dev/null
@@ -1,59 +1,0 @@
-SlotMachineWheel1:
- dw SLOTS7
- dw SLOTSMOUSE
- dw SLOTSFISH
- dw SLOTSBAR
- dw SLOTSCHERRY
- dw SLOTS7
- dw SLOTSFISH
- dw SLOTSBIRD
- dw SLOTSBAR
- dw SLOTSCHERRY
- dw SLOTS7
- dw SLOTSMOUSE
- dw SLOTSBIRD
- dw SLOTSBAR
- dw SLOTSCHERRY
- dw SLOTS7
- dw SLOTSMOUSE
- dw SLOTSFISH
-
-SlotMachineWheel2:
- dw SLOTS7
- dw SLOTSFISH
- dw SLOTSCHERRY
- dw SLOTSBIRD
- dw SLOTSMOUSE
- dw SLOTSBAR
- dw SLOTSCHERRY
- dw SLOTSFISH
- dw SLOTSBIRD
- dw SLOTSCHERRY
- dw SLOTSBAR
- dw SLOTSFISH
- dw SLOTSBIRD
- dw SLOTSCHERRY
- dw SLOTSMOUSE
- dw SLOTS7
- dw SLOTSFISH
- dw SLOTSCHERRY
-
-SlotMachineWheel3:
- dw SLOTS7
- dw SLOTSBIRD
- dw SLOTSFISH
- dw SLOTSCHERRY
- dw SLOTSMOUSE
- dw SLOTSBIRD
- dw SLOTSFISH
- dw SLOTSCHERRY
- dw SLOTSMOUSE
- dw SLOTSBIRD
- dw SLOTSFISH
- dw SLOTSCHERRY
- dw SLOTSMOUSE
- dw SLOTSBIRD
- dw SLOTSBAR
- dw SLOTS7
- dw SLOTSBIRD
- dw SLOTSFISH
--- a/data/special_warps.asm
+++ /dev/null
@@ -1,119 +1,0 @@
-; Format: (size 2 bytes)
-; 00: target map ID
-; 01: which dungeon warp in the source map was used
-DungeonWarpList:
- db SEAFOAM_ISLANDS_B1F,$01
- db SEAFOAM_ISLANDS_B1F,$02
- db SEAFOAM_ISLANDS_B2F,$01
- db SEAFOAM_ISLANDS_B2F,$02
- db SEAFOAM_ISLANDS_B3F,$01
- db SEAFOAM_ISLANDS_B3F,$02
- db SEAFOAM_ISLANDS_B4F,$01
- db SEAFOAM_ISLANDS_B4F,$02
- db VICTORY_ROAD_2F,$02
- db POKEMON_MANSION_1F,$01
- db POKEMON_MANSION_1F,$02
- db POKEMON_MANSION_2F,$03
- db $FF
-
-DungeonWarpData:
- FLYWARP_DATA SEAFOAM_ISLANDS_B1F_WIDTH,7,18
- FLYWARP_DATA SEAFOAM_ISLANDS_B1F_WIDTH,7,23
- FLYWARP_DATA SEAFOAM_ISLANDS_B2F_WIDTH,7,19
- FLYWARP_DATA SEAFOAM_ISLANDS_B2F_WIDTH,7,22
- FLYWARP_DATA SEAFOAM_ISLANDS_B3F_WIDTH,7,18
- FLYWARP_DATA SEAFOAM_ISLANDS_B3F_WIDTH,7,19
- FLYWARP_DATA SEAFOAM_ISLANDS_B4F_WIDTH,14,4
- FLYWARP_DATA SEAFOAM_ISLANDS_B4F_WIDTH,14,5
- FLYWARP_DATA VICTORY_ROAD_2F_WIDTH,16,22
- FLYWARP_DATA POKEMON_MANSION_1F_WIDTH,14,16
- FLYWARP_DATA POKEMON_MANSION_1F_WIDTH,14,16
- FLYWARP_DATA POKEMON_MANSION_2F_WIDTH,14,18
-
-;Format:
-; db Map_id
-; FLYWARP_DATA [Map Width][Y-pos][X-pos]
-; db Tileset_id
-FirstMapSpec:
- db REDS_HOUSE_2F
- FLYWARP_DATA REDS_HOUSE_2F_WIDTH,6,3
- db REDS_HOUSE_2
-
-TradeCenterSpec1:
- db TRADE_CENTER
- FLYWARP_DATA TRADE_CENTER_WIDTH,4,3
- db CLUB
-
-TradeCenterSpec2:
- db TRADE_CENTER
- FLYWARP_DATA TRADE_CENTER_WIDTH,4,6
- db CLUB
-
-ColosseumSpec1:
- db COLOSSEUM
- FLYWARP_DATA COLOSSEUM_WIDTH,4,3
- db CLUB
-
-ColosseumSpec2:
- db COLOSSEUM
- FLYWARP_DATA COLOSSEUM_WIDTH,4,6
- db CLUB
-
-FlyWarpDataPtr:
- db PALLET_TOWN, 0
- dw PalletTownFlyWarp
- db VIRIDIAN_CITY, 0
- dw ViridianCityFlyWarp
- db PEWTER_CITY, 0
- dw PewterCityFlyWarp
- db CERULEAN_CITY, 0
- dw CeruleanCityFlyWarp
- db LAVENDER_TOWN, 0
- dw LavenderTownFlyWarp
- db VERMILION_CITY, 0
- dw VermilionCityFlyWarp
- db CELADON_CITY, 0
- dw CeladonCityFlyWarp
- db FUCHSIA_CITY, 0
- dw FuchsiaCityFlyWarp
- db CINNABAR_ISLAND, 0
- dw CinnabarIslandFlyWarp
- db INDIGO_PLATEAU, 0
- dw IndigoPlateauFlyWarp
- db SAFFRON_CITY, 0
- dw SaffronCityFlyWarp
- db ROUTE_4, 0
- dw Route4FlyWarp
- db ROUTE_10, 0
- dw Route10FlyWarp
-
-; Original Format:
-; [Event Displacement][Y-block][X-block][Y-sub_block][X-sub_block]
-; Macro Format:
-; FLYWARP_DATA [Map Width][Y-pos][X-pos]
-PalletTownFlyWarp:
- FLYWARP_DATA PALLET_TOWN_WIDTH, 6, 5
-ViridianCityFlyWarp:
- FLYWARP_DATA VIRIDIAN_CITY_WIDTH, 26, 23
-PewterCityFlyWarp:
- FLYWARP_DATA PEWTER_CITY_WIDTH, 26, 13
-CeruleanCityFlyWarp:
- FLYWARP_DATA CERULEAN_CITY_WIDTH, 18, 19
-LavenderTownFlyWarp:
- FLYWARP_DATA LAVENDER_TOWN_WIDTH, 6, 3
-VermilionCityFlyWarp:
- FLYWARP_DATA VERMILION_CITY_WIDTH, 4, 11
-CeladonCityFlyWarp:
- FLYWARP_DATA CELADON_CITY_WIDTH, 10, 41
-FuchsiaCityFlyWarp:
- FLYWARP_DATA FUCHSIA_CITY_WIDTH, 28, 19
-CinnabarIslandFlyWarp:
- FLYWARP_DATA CINNABAR_ISLAND_WIDTH, 12, 11
-IndigoPlateauFlyWarp:
- FLYWARP_DATA INDIGO_PLATEAU_WIDTH, 6, 9
-SaffronCityFlyWarp:
- FLYWARP_DATA SAFFRON_CITY_WIDTH, 30, 9
-Route4FlyWarp:
- FLYWARP_DATA ROUTE_4_WIDTH, 6, 11
-Route10FlyWarp:
- FLYWARP_DATA ROUTE_10_WIDTH, 20, 11
--- a/data/sprite_sets.asm
+++ /dev/null
@@ -1,551 +1,0 @@
-MapSpriteSets:
- db $01 ; PALLET_TOWN
- db $01 ; VIRIDIAN_CITY
- db $02 ; PEWTER_CITY
- db $02 ; CERULEAN_CITY
- db $03 ; LAVENDER_TOWN
- db $04 ; VERMILION_CITY
- db $05 ; CELADON_CITY
- db $0a ; FUCHSIA_CITY
- db $01 ; CINNABAR_ISLAND
- db $06 ; INDIGO_PLATEAU
- db $07 ; SAFFRON_CITY
- db $01 ; unused map ID
- db $01 ; ROUTE_1
- db $f1 ; ROUTE_2
- db $02 ; ROUTE_3
- db $02 ; ROUTE_4
- db $f9 ; ROUTE_5
- db $fa ; ROUTE_6
- db $fb ; ROUTE_7
- db $fc ; ROUTE_8
- db $02 ; ROUTE_9
- db $f2 ; ROUTE_10
- db $f3 ; ROUTE_11
- db $f4 ; ROUTE_12
- db $08 ; ROUTE_13
- db $08 ; ROUTE_14
- db $f5 ; ROUTE_15
- db $f6 ; ROUTE_16
- db $09 ; ROUTE_17
- db $f7 ; ROUTE_18
- db $0a ; ROUTE_19
- db $f8 ; ROUTE_20
- db $01 ; ROUTE_21
- db $01 ; ROUTE_22
- db $06 ; ROUTE_23
- db $02 ; ROUTE_24
- db $02 ; ROUTE_25
-
-; Format:
-; 00: determines whether the map is split East/West or North/South
-; $01 = East/West divide
-; $02 = North/South divide
-; 01: coordinate of dividing line
-; 02: sprite set ID if in the West or North side
-; 03: sprite set ID if in the East or South side
-SplitMapSpriteSets:
- db $02,$25,$02,$01 ; $f1
- db $02,$32,$02,$03 ; $f2
- db $01,$39,$04,$08 ; $f3
- db $02,$15,$03,$08 ; $f4
- db $01,$08,$0A,$08 ; $f5
- db $01,$18,$09,$05 ; $f6
- db $01,$22,$09,$0A ; $f7
- db $01,$35,$01,$0A ; $f8
- db $02,$21,$02,$07 ; $f9
- db $02,$02,$07,$04 ; $fa
- db $01,$11,$05,$07 ; $fb
- db $01,$03,$07,$03 ; $fc
-
-SpriteSets:
-; sprite set $01
- db SPRITE_BLUE
- db SPRITE_BUG_CATCHER
- db SPRITE_GIRL
- db SPRITE_FISHER2
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_GAMBLER
- db SPRITE_SEEL
- db SPRITE_OAK
- db SPRITE_SWIMMER
- db SPRITE_BALL
- db SPRITE_LYING_OLD_MAN
-
-; sprite set $02
- db SPRITE_BUG_CATCHER
- db SPRITE_ROCKET
- db SPRITE_BLACK_HAIR_BOY_2
- db SPRITE_HIKER
- db SPRITE_SLOWBRO
- db SPRITE_BLUE
- db SPRITE_GUARD
- db SPRITE_LASS
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_BALL
- db SPRITE_LYING_OLD_MAN_UNUSED_2
-
-; sprite set $03
- db SPRITE_LITTLE_GIRL
- db SPRITE_GIRL
- db SPRITE_BLACK_HAIR_BOY_2
- db SPRITE_HIKER
- db SPRITE_GAMBLER
- db SPRITE_SLOWBRO
- db SPRITE_LASS
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_GUARD
- db SPRITE_BALL
- db SPRITE_LYING_OLD_MAN_UNUSED_2
-
-; sprite set $04
- db SPRITE_FOULARD_WOMAN
- db SPRITE_BLACK_HAIR_BOY_2
- db SPRITE_BUG_CATCHER
- db SPRITE_GAMBLER
- db SPRITE_SLOWBRO
- db SPRITE_GUARD
- db SPRITE_SAILOR
- db SPRITE_LASS
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_BALL
- db SPRITE_LYING_OLD_MAN_UNUSED_2
-
-; sprite set $05
- db SPRITE_LITTLE_GIRL
- db SPRITE_YOUNG_BOY
- db SPRITE_GIRL
- db SPRITE_FISHER2
- db SPRITE_FAT_BALD_GUY
- db SPRITE_OLD_PERSON
- db SPRITE_SLOWBRO
- db SPRITE_GUARD
- db SPRITE_ROCKET
- db SPRITE_BALL
- db SPRITE_SNORLAX
-
-; sprite set $06
- db SPRITE_BUG_CATCHER
- db SPRITE_GYM_HELPER
- db SPRITE_SLOWBRO
- db SPRITE_BLUE
- db SPRITE_LASS
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_SWIMMER
- db SPRITE_GUARD
- db SPRITE_GAMBLER
- db SPRITE_BALL
- db SPRITE_LYING_OLD_MAN_UNUSED_2
-
-; sprite set $07
- db SPRITE_ROCKET
- db SPRITE_OAK_AIDE
- db SPRITE_LAPRAS_GIVER
- db SPRITE_ERIKA
- db SPRITE_GENTLEMAN
- db SPRITE_BIRD
- db SPRITE_ROCKER
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_SLOWBRO
- db SPRITE_BALL
- db SPRITE_LYING_OLD_MAN_UNUSED_2
-
-; sprite set $08
- db SPRITE_BIKER
- db SPRITE_BLACK_HAIR_BOY_2
- db SPRITE_FAT_BALD_GUY
- db SPRITE_LASS
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_FOULARD_WOMAN
- db SPRITE_FISHER2
- db SPRITE_ROCKER
- db SPRITE_SLOWBRO
- db SPRITE_BALL
- db SPRITE_SNORLAX
-
-; sprite set $09
- db SPRITE_BIKER
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_LAPRAS_GIVER
- db SPRITE_FISHER2
- db SPRITE_ROCKER
- db SPRITE_HIKER
- db SPRITE_GAMBLER
- db SPRITE_FAT_BALD_GUY
- db SPRITE_BLACK_HAIR_BOY_2
- db SPRITE_BALL
- db SPRITE_SNORLAX
-
-; sprite set $0a
- db SPRITE_BIRD
- db SPRITE_BLACK_HAIR_BOY_1
- db SPRITE_CLEFAIRY
- db SPRITE_FISHER2
- db SPRITE_GAMBLER
- db SPRITE_SLOWBRO
- db SPRITE_SEEL
- db SPRITE_SWIMMER
- db SPRITE_BUG_CATCHER
- db SPRITE_BALL
- db SPRITE_OMANYTE
-
-SpriteSheetPointerTable:
- ; SPRITE_RED
- dw RedSprite
- db $c0 ; byte count
- db BANK(RedSprite)
-
- ; SPRITE_BLUE
- dw BlueSprite
- db $c0 ; byte count
- db BANK(BlueSprite)
-
- ; SPRITE_OAK
- dw OakSprite
- db $c0 ; byte count
- db BANK(OakSprite)
-
- ; SPRITE_BUG_CATCHER
- dw BugCatcherSprite
- db $c0 ; byte count
- db BANK(BugCatcherSprite)
-
- ; SPRITE_SLOWBRO
- dw SlowbroSprite
- db $c0 ; byte count
- db BANK(SlowbroSprite)
-
- ; SPRITE_LASS
- dw LassSprite
- db $c0 ; byte count
- db BANK(LassSprite)
-
- ; SPRITE_BLACK_HAIR_BOY_1
- dw BlackHairBoy1Sprite
- db $c0 ; byte count
- db BANK(BlackHairBoy1Sprite)
-
- ; SPRITE_LITTLE_GIRL
- dw LittleGirlSprite
- db $c0 ; byte count
- db BANK(LittleGirlSprite)
-
- ; SPRITE_BIRD
- dw BirdSprite
- db $c0 ; byte count
- db BANK(BirdSprite)
-
- ; SPRITE_FAT_BALD_GUY
- dw FatBaldGuySprite
- db $c0 ; byte count
- db BANK(FatBaldGuySprite)
-
- ; SPRITE_GAMBLER
- dw GamblerSprite
- db $c0 ; byte count
- db BANK(GamblerSprite)
-
- ; SPRITE_BLACK_HAIR_BOY_2
- dw BlackHairBoy2Sprite
- db $c0 ; byte count
- db BANK(BlackHairBoy2Sprite)
-
- ; SPRITE_GIRL
- dw GirlSprite
- db $c0 ; byte count
- db BANK(GirlSprite)
-
- ; SPRITE_HIKER
- dw HikerSprite
- db $c0 ; byte count
- db BANK(HikerSprite)
-
- ; SPRITE_FOULARD_WOMAN
- dw FoulardWomanSprite
- db $c0 ; byte count
- db BANK(FoulardWomanSprite)
-
- ; SPRITE_GENTLEMAN
- dw GentlemanSprite
- db $c0 ; byte count
- db BANK(GentlemanSprite)
-
- ; SPRITE_DAISY
- dw DaisySprite
- db $c0 ; byte count
- db BANK(DaisySprite)
-
- ; SPRITE_BIKER
- dw BikerSprite
- db $c0 ; byte count
- db BANK(BikerSprite)
-
- ; SPRITE_SAILOR
- dw SailorSprite
- db $c0 ; byte count
- db BANK(SailorSprite)
-
- ; SPRITE_COOK
- dw CookSprite
- db $c0 ; byte count
- db BANK(CookSprite)
-
- ; SPRITE_BIKE_SHOP_GUY
- dw BikeShopGuySprite
- db $c0 ; byte count
- db BANK(BikeShopGuySprite)
-
- ; SPRITE_MR_FUJI
- dw MrFujiSprite
- db $c0 ; byte count
- db BANK(MrFujiSprite)
-
- ; SPRITE_GIOVANNI
- dw GiovanniSprite
- db $c0 ; byte count
- db BANK(GiovanniSprite)
-
- ; SPRITE_ROCKET
- dw RocketSprite
- db $c0 ; byte count
- db BANK(RocketSprite)
-
- ; SPRITE_MEDIUM
- dw MediumSprite
- db $c0 ; byte count
- db BANK(MediumSprite)
-
- ; SPRITE_WAITER
- dw WaiterSprite
- db $c0 ; byte count
- db BANK(WaiterSprite)
-
- ; SPRITE_ERIKA
- dw ErikaSprite
- db $c0 ; byte count
- db BANK(ErikaSprite)
-
- ; SPRITE_MOM_GEISHA
- dw MomGeishaSprite
- db $c0 ; byte count
- db BANK(MomGeishaSprite)
-
- ; SPRITE_BRUNETTE_GIRL
- dw BrunetteGirlSprite
- db $c0 ; byte count
- db BANK(BrunetteGirlSprite)
-
- ; SPRITE_LANCE
- dw LanceSprite
- db $c0 ; byte count
- db BANK(LanceSprite)
-
- ; SPRITE_OAK_SCIENTIST_AIDE
- dw OakAideSprite
- db $c0 ; byte count
- db BANK(OakAideSprite)
-
- ; SPRITE_OAK_AIDE
- dw OakAideSprite
- db $c0 ; byte count
- db BANK(OakAideSprite)
-
- ; SPRITE_ROCKER
- dw RockerSprite
- db $c0 ; byte count
- db BANK(RockerSprite)
-
- ; SPRITE_SWIMMER
- dw SwimmerSprite
- db $c0 ; byte count
- db BANK(SwimmerSprite)
-
- ; SPRITE_WHITE_PLAYER
- dw WhitePlayerSprite
- db $c0 ; byte count
- db BANK(WhitePlayerSprite)
-
- ; SPRITE_GYM_HELPER
- dw GymHelperSprite
- db $c0 ; byte count
- db BANK(GymHelperSprite)
-
- ; SPRITE_OLD_PERSON
- dw OldPersonSprite
- db $c0 ; byte count
- db BANK(OldPersonSprite)
-
- ; SPRITE_MART_GUY
- dw MartGuySprite
- db $c0 ; byte count
- db BANK(MartGuySprite)
-
- ; SPRITE_FISHER
- dw FisherSprite
- db $c0 ; byte count
- db BANK(FisherSprite)
-
- ; SPRITE_OLD_MEDIUM_WOMAN
- dw OldMediumWomanSprite
- db $c0 ; byte count
- db BANK(OldMediumWomanSprite)
-
- ; SPRITE_NURSE
- dw NurseSprite
- db $c0 ; byte count
- db BANK(NurseSprite)
-
- ; SPRITE_CABLE_CLUB_WOMAN
- dw CableClubWomanSprite
- db $c0 ; byte count
- db BANK(CableClubWomanSprite)
-
- ; SPRITE_MR_MASTERBALL
- dw MrMasterballSprite
- db $c0 ; byte count
- db BANK(MrMasterballSprite)
-
- ; SPRITE_LAPRAS_GIVER
- dw LaprasGiverSprite
- db $c0 ; byte count
- db BANK(LaprasGiverSprite)
-
- ; SPRITE_WARDEN
- dw WardenSprite
- db $c0 ; byte count
- db BANK(WardenSprite)
-
- ; SPRITE_SS_CAPTAIN
- dw SsCaptainSprite
- db $c0 ; byte count
- db BANK(SsCaptainSprite)
-
- ; SPRITE_FISHER2
- dw Fisher2Sprite
- db $c0 ; byte count
- db BANK(Fisher2Sprite)
-
- ; SPRITE_BLACKBELT
- dw BlackbeltSprite
- db $c0 ; byte count
- db BANK(BlackbeltSprite)
-
- ; SPRITE_GUARD
- dw GuardSprite
- db $c0 ; byte count
- db BANK(GuardSprite)
-
- ; $32
- dw GuardSprite
- db $c0 ; byte count
- db BANK(GuardSprite)
-
- ; SPRITE_MOM
- dw MomSprite
- db $c0 ; byte count
- db BANK(MomSprite)
-
- ; SPRITE_BALDING_GUY
- dw BaldingGuySprite
- db $c0 ; byte count
- db BANK(BaldingGuySprite)
-
- ; SPRITE_YOUNG_BOY
- dw YoungBoySprite
- db $c0 ; byte count
- db BANK(YoungBoySprite)
-
- ; SPRITE_GAMEBOY_KID
- dw GameboyKidSprite
- db $c0 ; byte count
- db BANK(GameboyKidSprite)
-
- ; SPRITE_GAMEBOY_KID_COPY
- dw GameboyKidSprite
- db $c0 ; byte count
- db BANK(GameboyKidSprite)
-
- ; SPRITE_CLEFAIRY
- dw ClefairySprite
- db $c0 ; byte count
- db BANK(ClefairySprite)
-
- ; SPRITE_AGATHA
- dw AgathaSprite
- db $c0 ; byte count
- db BANK(AgathaSprite)
-
- ; SPRITE_BRUNO
- dw BrunoSprite
- db $c0 ; byte count
- db BANK(BrunoSprite)
-
- ; SPRITE_LORELEI
- dw LoreleiSprite
- db $c0 ; byte count
- db BANK(LoreleiSprite)
-
- ; SPRITE_SEEL
- dw SeelSprite
- db $c0 ; byte count
- db BANK(SeelSprite)
-
- ; SPRITE_BALL
- dw BallSprite
- db $40 ; byte count
- db BANK(BallSprite)
-
- ; SPRITE_OMANYTE
- dw OmanyteSprite
- db $40 ; byte count
- db BANK(OmanyteSprite)
-
- ; SPRITE_BOULDER
- dw BoulderSprite
- db $40 ; byte count
- db BANK(BoulderSprite)
-
- ; SPRITE_PAPER_SHEET
- dw PaperSheetSprite
- db $40 ; byte count
- db BANK(PaperSheetSprite)
-
- ; SPRITE_BOOK_MAP_DEX
- dw BookMapDexSprite
- db $40 ; byte count
- db BANK(BookMapDexSprite)
-
- ; SPRITE_CLIPBOARD
- dw ClipboardSprite
- db $40 ; byte count
- db BANK(ClipboardSprite)
-
- ; SPRITE_SNORLAX
- dw SnorlaxSprite
- db $40 ; byte count
- db BANK(SnorlaxSprite)
-
- ; SPRITE_OLD_AMBER_COPY
- dw OldAmberSprite
- db $40 ; byte count
- db BANK(OldAmberSprite)
-
- ; SPRITE_OLD_AMBER
- dw OldAmberSprite
- db $40 ; byte count
- db BANK(OldAmberSprite)
-
- ; SPRITE_LYING_OLD_MAN_UNUSED_1
- dw LyingOldManSprite
- db $40 ; byte count
- db BANK(LyingOldManSprite)
-
- ; SPRITE_LYING_OLD_MAN_UNUSED_2
- dw LyingOldManSprite
- db $40 ; byte count
- db BANK(LyingOldManSprite)
-
- ; SPRITE_LYING_OLD_MAN
- dw LyingOldManSprite
- db $40 ; byte count
- db BANK(LyingOldManSprite)
--- /dev/null
+++ b/data/sprites/facings.asm
@@ -1,0 +1,57 @@
+SpriteFacingAndAnimationTable:
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; facing down, walk animation frame 0
+ dw SpriteFacingDownAndWalking, SpriteOAMParameters ; facing down, walk animation frame 1
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; facing down, walk animation frame 2
+ dw SpriteFacingDownAndWalking, SpriteOAMParametersFlipped ; facing down, walk animation frame 3
+ dw SpriteFacingUpAndStanding, SpriteOAMParameters ; facing up, walk animation frame 0
+ dw SpriteFacingUpAndWalking, SpriteOAMParameters ; facing up, walk animation frame 1
+ dw SpriteFacingUpAndStanding, SpriteOAMParameters ; facing up, walk animation frame 2
+ dw SpriteFacingUpAndWalking, SpriteOAMParametersFlipped ; facing up, walk animation frame 3
+ dw SpriteFacingLeftAndStanding, SpriteOAMParameters ; facing left, walk animation frame 0
+ dw SpriteFacingLeftAndWalking, SpriteOAMParameters ; facing left, walk animation frame 1
+ dw SpriteFacingLeftAndStanding, SpriteOAMParameters ; facing left, walk animation frame 2
+ dw SpriteFacingLeftAndWalking, SpriteOAMParameters ; facing left, walk animation frame 3
+ dw SpriteFacingLeftAndStanding, SpriteOAMParametersFlipped ; facing right, walk animation frame 0
+ dw SpriteFacingLeftAndWalking, SpriteOAMParametersFlipped ; facing right, walk animation frame 1
+ dw SpriteFacingLeftAndStanding, SpriteOAMParametersFlipped ; facing right, walk animation frame 2
+ dw SpriteFacingLeftAndWalking, SpriteOAMParametersFlipped ; facing right, walk animation frame 3
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; ---
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; This table is used for sprites $a and $b.
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; All orientation and animation parameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; lead to the same result. Used for immobile
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; sprites like items on the ground
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters ; ---
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+ dw SpriteFacingDownAndStanding, SpriteOAMParameters
+
+SpriteFacingDownAndStanding:
+ db $00,$01,$02,$03
+SpriteFacingDownAndWalking:
+ db $80,$81,$82,$83
+SpriteFacingUpAndStanding:
+ db $04,$05,$06,$07
+SpriteFacingUpAndWalking:
+ db $84,$85,$86,$87
+SpriteFacingLeftAndStanding:
+ db $08,$09,$0a,$0b
+SpriteFacingLeftAndWalking:
+ db $88,$89,$8a,$8b
+
+SpriteOAMParameters:
+ db $00,$00, $00 ; top left
+ db $00,$08, $00 ; top right
+ db $08,$00, OAMFLAG_CANBEMASKED ; bottom left
+ db $08,$08, OAMFLAG_CANBEMASKED | OAMFLAG_ENDOFDATA ; bottom right
+SpriteOAMParametersFlipped:
+ db $00,$08, OAMFLAG_VFLIPPED
+ db $00,$00, OAMFLAG_VFLIPPED
+ db $08,$08, OAMFLAG_VFLIPPED | OAMFLAG_CANBEMASKED
+ db $08,$00, OAMFLAG_VFLIPPED | OAMFLAG_CANBEMASKED | OAMFLAG_ENDOFDATA
--- /dev/null
+++ b/data/sprites/sprites.asm
@@ -1,0 +1,360 @@
+SpriteSheetPointerTable:
+ ; SPRITE_RED
+ dw RedSprite
+ db $c0 ; byte count
+ db BANK(RedSprite)
+
+ ; SPRITE_BLUE
+ dw BlueSprite
+ db $c0 ; byte count
+ db BANK(BlueSprite)
+
+ ; SPRITE_OAK
+ dw OakSprite
+ db $c0 ; byte count
+ db BANK(OakSprite)
+
+ ; SPRITE_BUG_CATCHER
+ dw BugCatcherSprite
+ db $c0 ; byte count
+ db BANK(BugCatcherSprite)
+
+ ; SPRITE_SLOWBRO
+ dw SlowbroSprite
+ db $c0 ; byte count
+ db BANK(SlowbroSprite)
+
+ ; SPRITE_LASS
+ dw LassSprite
+ db $c0 ; byte count
+ db BANK(LassSprite)
+
+ ; SPRITE_BLACK_HAIR_BOY_1
+ dw BlackHairBoy1Sprite
+ db $c0 ; byte count
+ db BANK(BlackHairBoy1Sprite)
+
+ ; SPRITE_LITTLE_GIRL
+ dw LittleGirlSprite
+ db $c0 ; byte count
+ db BANK(LittleGirlSprite)
+
+ ; SPRITE_BIRD
+ dw BirdSprite
+ db $c0 ; byte count
+ db BANK(BirdSprite)
+
+ ; SPRITE_FAT_BALD_GUY
+ dw FatBaldGuySprite
+ db $c0 ; byte count
+ db BANK(FatBaldGuySprite)
+
+ ; SPRITE_GAMBLER
+ dw GamblerSprite
+ db $c0 ; byte count
+ db BANK(GamblerSprite)
+
+ ; SPRITE_BLACK_HAIR_BOY_2
+ dw BlackHairBoy2Sprite
+ db $c0 ; byte count
+ db BANK(BlackHairBoy2Sprite)
+
+ ; SPRITE_GIRL
+ dw GirlSprite
+ db $c0 ; byte count
+ db BANK(GirlSprite)
+
+ ; SPRITE_HIKER
+ dw HikerSprite
+ db $c0 ; byte count
+ db BANK(HikerSprite)
+
+ ; SPRITE_FOULARD_WOMAN
+ dw FoulardWomanSprite
+ db $c0 ; byte count
+ db BANK(FoulardWomanSprite)
+
+ ; SPRITE_GENTLEMAN
+ dw GentlemanSprite
+ db $c0 ; byte count
+ db BANK(GentlemanSprite)
+
+ ; SPRITE_DAISY
+ dw DaisySprite
+ db $c0 ; byte count
+ db BANK(DaisySprite)
+
+ ; SPRITE_BIKER
+ dw BikerSprite
+ db $c0 ; byte count
+ db BANK(BikerSprite)
+
+ ; SPRITE_SAILOR
+ dw SailorSprite
+ db $c0 ; byte count
+ db BANK(SailorSprite)
+
+ ; SPRITE_COOK
+ dw CookSprite
+ db $c0 ; byte count
+ db BANK(CookSprite)
+
+ ; SPRITE_BIKE_SHOP_GUY
+ dw BikeShopGuySprite
+ db $c0 ; byte count
+ db BANK(BikeShopGuySprite)
+
+ ; SPRITE_MR_FUJI
+ dw MrFujiSprite
+ db $c0 ; byte count
+ db BANK(MrFujiSprite)
+
+ ; SPRITE_GIOVANNI
+ dw GiovanniSprite
+ db $c0 ; byte count
+ db BANK(GiovanniSprite)
+
+ ; SPRITE_ROCKET
+ dw RocketSprite
+ db $c0 ; byte count
+ db BANK(RocketSprite)
+
+ ; SPRITE_MEDIUM
+ dw MediumSprite
+ db $c0 ; byte count
+ db BANK(MediumSprite)
+
+ ; SPRITE_WAITER
+ dw WaiterSprite
+ db $c0 ; byte count
+ db BANK(WaiterSprite)
+
+ ; SPRITE_ERIKA
+ dw ErikaSprite
+ db $c0 ; byte count
+ db BANK(ErikaSprite)
+
+ ; SPRITE_MOM_GEISHA
+ dw MomGeishaSprite
+ db $c0 ; byte count
+ db BANK(MomGeishaSprite)
+
+ ; SPRITE_BRUNETTE_GIRL
+ dw BrunetteGirlSprite
+ db $c0 ; byte count
+ db BANK(BrunetteGirlSprite)
+
+ ; SPRITE_LANCE
+ dw LanceSprite
+ db $c0 ; byte count
+ db BANK(LanceSprite)
+
+ ; SPRITE_OAK_SCIENTIST_AIDE
+ dw OakAideSprite
+ db $c0 ; byte count
+ db BANK(OakAideSprite)
+
+ ; SPRITE_OAK_AIDE
+ dw OakAideSprite
+ db $c0 ; byte count
+ db BANK(OakAideSprite)
+
+ ; SPRITE_ROCKER
+ dw RockerSprite
+ db $c0 ; byte count
+ db BANK(RockerSprite)
+
+ ; SPRITE_SWIMMER
+ dw SwimmerSprite
+ db $c0 ; byte count
+ db BANK(SwimmerSprite)
+
+ ; SPRITE_WHITE_PLAYER
+ dw WhitePlayerSprite
+ db $c0 ; byte count
+ db BANK(WhitePlayerSprite)
+
+ ; SPRITE_GYM_HELPER
+ dw GymHelperSprite
+ db $c0 ; byte count
+ db BANK(GymHelperSprite)
+
+ ; SPRITE_OLD_PERSON
+ dw OldPersonSprite
+ db $c0 ; byte count
+ db BANK(OldPersonSprite)
+
+ ; SPRITE_MART_GUY
+ dw MartGuySprite
+ db $c0 ; byte count
+ db BANK(MartGuySprite)
+
+ ; SPRITE_FISHER
+ dw FisherSprite
+ db $c0 ; byte count
+ db BANK(FisherSprite)
+
+ ; SPRITE_OLD_MEDIUM_WOMAN
+ dw OldMediumWomanSprite
+ db $c0 ; byte count
+ db BANK(OldMediumWomanSprite)
+
+ ; SPRITE_NURSE
+ dw NurseSprite
+ db $c0 ; byte count
+ db BANK(NurseSprite)
+
+ ; SPRITE_CABLE_CLUB_WOMAN
+ dw CableClubWomanSprite
+ db $c0 ; byte count
+ db BANK(CableClubWomanSprite)
+
+ ; SPRITE_MR_MASTERBALL
+ dw MrMasterballSprite
+ db $c0 ; byte count
+ db BANK(MrMasterballSprite)
+
+ ; SPRITE_LAPRAS_GIVER
+ dw LaprasGiverSprite
+ db $c0 ; byte count
+ db BANK(LaprasGiverSprite)
+
+ ; SPRITE_WARDEN
+ dw WardenSprite
+ db $c0 ; byte count
+ db BANK(WardenSprite)
+
+ ; SPRITE_SS_CAPTAIN
+ dw SsCaptainSprite
+ db $c0 ; byte count
+ db BANK(SsCaptainSprite)
+
+ ; SPRITE_FISHER2
+ dw Fisher2Sprite
+ db $c0 ; byte count
+ db BANK(Fisher2Sprite)
+
+ ; SPRITE_BLACKBELT
+ dw BlackbeltSprite
+ db $c0 ; byte count
+ db BANK(BlackbeltSprite)
+
+ ; SPRITE_GUARD
+ dw GuardSprite
+ db $c0 ; byte count
+ db BANK(GuardSprite)
+
+ ; $32
+ dw GuardSprite
+ db $c0 ; byte count
+ db BANK(GuardSprite)
+
+ ; SPRITE_MOM
+ dw MomSprite
+ db $c0 ; byte count
+ db BANK(MomSprite)
+
+ ; SPRITE_BALDING_GUY
+ dw BaldingGuySprite
+ db $c0 ; byte count
+ db BANK(BaldingGuySprite)
+
+ ; SPRITE_YOUNG_BOY
+ dw YoungBoySprite
+ db $c0 ; byte count
+ db BANK(YoungBoySprite)
+
+ ; SPRITE_GAMEBOY_KID
+ dw GameboyKidSprite
+ db $c0 ; byte count
+ db BANK(GameboyKidSprite)
+
+ ; SPRITE_GAMEBOY_KID_COPY
+ dw GameboyKidSprite
+ db $c0 ; byte count
+ db BANK(GameboyKidSprite)
+
+ ; SPRITE_CLEFAIRY
+ dw ClefairySprite
+ db $c0 ; byte count
+ db BANK(ClefairySprite)
+
+ ; SPRITE_AGATHA
+ dw AgathaSprite
+ db $c0 ; byte count
+ db BANK(AgathaSprite)
+
+ ; SPRITE_BRUNO
+ dw BrunoSprite
+ db $c0 ; byte count
+ db BANK(BrunoSprite)
+
+ ; SPRITE_LORELEI
+ dw LoreleiSprite
+ db $c0 ; byte count
+ db BANK(LoreleiSprite)
+
+ ; SPRITE_SEEL
+ dw SeelSprite
+ db $c0 ; byte count
+ db BANK(SeelSprite)
+
+ ; SPRITE_BALL
+ dw BallSprite
+ db $40 ; byte count
+ db BANK(BallSprite)
+
+ ; SPRITE_OMANYTE
+ dw OmanyteSprite
+ db $40 ; byte count
+ db BANK(OmanyteSprite)
+
+ ; SPRITE_BOULDER
+ dw BoulderSprite
+ db $40 ; byte count
+ db BANK(BoulderSprite)
+
+ ; SPRITE_PAPER_SHEET
+ dw PaperSheetSprite
+ db $40 ; byte count
+ db BANK(PaperSheetSprite)
+
+ ; SPRITE_BOOK_MAP_DEX
+ dw BookMapDexSprite
+ db $40 ; byte count
+ db BANK(BookMapDexSprite)
+
+ ; SPRITE_CLIPBOARD
+ dw ClipboardSprite
+ db $40 ; byte count
+ db BANK(ClipboardSprite)
+
+ ; SPRITE_SNORLAX
+ dw SnorlaxSprite
+ db $40 ; byte count
+ db BANK(SnorlaxSprite)
+
+ ; SPRITE_OLD_AMBER_COPY
+ dw OldAmberSprite
+ db $40 ; byte count
+ db BANK(OldAmberSprite)
+
+ ; SPRITE_OLD_AMBER
+ dw OldAmberSprite
+ db $40 ; byte count
+ db BANK(OldAmberSprite)
+
+ ; SPRITE_LYING_OLD_MAN_UNUSED_1
+ dw LyingOldManSprite
+ db $40 ; byte count
+ db BANK(LyingOldManSprite)
+
+ ; SPRITE_LYING_OLD_MAN_UNUSED_2
+ dw LyingOldManSprite
+ db $40 ; byte count
+ db BANK(LyingOldManSprite)
+
+ ; SPRITE_LYING_OLD_MAN
+ dw LyingOldManSprite
+ db $40 ; byte count
+ db BANK(LyingOldManSprite)
--- a/data/super_palettes.asm
+++ /dev/null
@@ -1,174 +1,0 @@
-; palettes for overworlds, title screen, monsters
-SuperPalettes:
- RGB 31,29,31 ; PAL_ROUTE
- RGB 21,28,11
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_PALLET
- RGB 25,28,27
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_VIRIDIAN
- RGB 17,26,3
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_PEWTER
- RGB 23,25,16
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_CERULEAN
- RGB 17,20,30
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_LAVENDER
- RGB 27,20,27
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_VERMILION
- RGB 30,18,0
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_CELADON
- RGB 16,30,22
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_FUCHSIA
- RGB 31,15,22
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_CINNABAR
- RGB 26,10,6
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_INDIGO
- RGB 22,14,24
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_SAFFRON
- RGB 27,27,3
- RGB 20,26,31
- RGB 3,2,2
- RGB 31,29,31 ; PAL_TOWNMAP
- RGB 20,26,31
- RGB 17,23,10
- RGB 3,2,2
-IF DEF(_RED)
- RGB 31,29,31 ; PAL_LOGO1
- RGB 30,30,17
- RGB 17,23,10
- RGB 21,0,4
-ENDC
-IF DEF(_BLUE)
- RGB 31,29,31 ; PAL_LOGO1
- RGB 30,30,17
- RGB 21,0,4
- RGB 14,19,29
-ENDC
- RGB 31,29,31 ; PAL_LOGO2
- RGB 30,30,17
- RGB 18,18,24
- RGB 7,7,16
- RGB 31,29,31 ; PAL_0F
- RGB 24,20,30
- RGB 11,20,30
- RGB 3,2,2
- RGB 31,29,31 ; PAL_MEWMON
- RGB 30,22,17
- RGB 16,14,19
- RGB 3,2,2
- RGB 31,29,31 ; PAL_BLUEMON
- RGB 18,20,27
- RGB 11,15,23
- RGB 3,2,2
- RGB 31,29,31 ; PAL_REDMON
- RGB 31,20,10
- RGB 26,10,6
- RGB 3,2,2
- RGB 31,29,31 ; PAL_CYANMON
- RGB 21,25,29
- RGB 14,19,25
- RGB 3,2,2
- RGB 31,29,31 ; PAL_PURPLEMON
- RGB 27,22,24
- RGB 21,15,23
- RGB 3,2,2
- RGB 31,29,31 ; PAL_BROWNMON
- RGB 28,20,15
- RGB 21,14,9
- RGB 3,2,2
- RGB 31,29,31 ; PAL_GREENMON
- RGB 20,26,16
- RGB 9,20,11
- RGB 3,2,2
- RGB 31,29,31 ; PAL_PINKMON
- RGB 30,22,24
- RGB 28,15,21
- RGB 3,2,2
- RGB 31,29,31 ; PAL_YELLOWMON
- RGB 31,28,14
- RGB 26,20,0
- RGB 3,2,2
- RGB 31,29,31 ; PAL_GREYMON
- RGB 26,21,22
- RGB 15,15,18
- RGB 3,2,2
- RGB 31,29,31 ; PAL_SLOTS1
- RGB 26,21,22
- RGB 27,20,6
- RGB 3,2,2
- RGB 31,29,31 ; PAL_SLOTS2
- RGB 31,31,17
-IF DEF(_RED)
- RGB 25,17,21
-ENDC
-IF DEF(_BLUE)
- RGB 16,19,29
-ENDC
- RGB 3,2,2
- RGB 31,29,31 ; PAL_SLOTS3
- RGB 22,31,16
-IF DEF(_RED)
- RGB 25,17,21
-ENDC
-IF DEF(_BLUE)
- RGB 16,19,29
-ENDC
- RGB 3,2,2
- RGB 31,29,31 ; PAL_SLOTS4
-IF DEF(_RED)
- RGB 16,19,29
- RGB 25,17,21
-ENDC
-IF DEF(_BLUE)
- RGB 25,17,21
- RGB 16,19,29
-ENDC
- RGB 3,2,2
- RGB 31,29,31 ; PAL_BLACK
- RGB 7,7,7
- RGB 2,3,3
- RGB 3,2,2
- RGB 31,29,31 ; PAL_GREENBAR
- RGB 30,26,15
- RGB 9,20,11
- RGB 3,2,2
- RGB 31,29,31 ; PAL_YELLOWBAR
- RGB 30,26,15
- RGB 26,20,0
- RGB 3,2,2
- RGB 31,29,31 ; PAL_REDBAR
- RGB 30,26,15
- RGB 26,10,6
- RGB 3,2,2
- RGB 31,29,31 ; PAL_BADGE
- RGB 30,22,17
- RGB 11,15,23
- RGB 3,2,2
- RGB 31,29,31 ; PAL_CAVE
- RGB 21,14,9
- RGB 18,24,22
- RGB 3,2,2
- RGB 31,29,31 ; PAL_GAMEFREAK
- RGB 31,28,14
- RGB 24,20,10
- RGB 3,2,2
--- a/data/super_rod.asm
+++ /dev/null
@@ -1,100 +1,0 @@
-; super rod data
-; format: map, pointer to fishing group
-SuperRodData:
- dbw PALLET_TOWN, FishingGroup1
- dbw VIRIDIAN_CITY, FishingGroup1
- dbw CERULEAN_CITY, FishingGroup3
- dbw VERMILION_CITY, FishingGroup4
- dbw CELADON_CITY, FishingGroup5
- dbw FUCHSIA_CITY, FishingGroup10
- dbw CINNABAR_ISLAND, FishingGroup8
- dbw ROUTE_4, FishingGroup3
- dbw ROUTE_6, FishingGroup4
- dbw ROUTE_10, FishingGroup5
- dbw ROUTE_11, FishingGroup4
- dbw ROUTE_12, FishingGroup7
- dbw ROUTE_13, FishingGroup7
- dbw ROUTE_17, FishingGroup7
- dbw ROUTE_18, FishingGroup7
- dbw ROUTE_19, FishingGroup8
- dbw ROUTE_20, FishingGroup8
- dbw ROUTE_21, FishingGroup8
- dbw ROUTE_22, FishingGroup2
- dbw ROUTE_23, FishingGroup9
- dbw ROUTE_24, FishingGroup3
- dbw ROUTE_25, FishingGroup3
- dbw CERULEAN_GYM, FishingGroup3
- dbw VERMILION_DOCK, FishingGroup4
- dbw SEAFOAM_ISLANDS_B3F, FishingGroup8
- dbw SEAFOAM_ISLANDS_B4F, FishingGroup8
- dbw SAFARI_ZONE_EAST, FishingGroup6
- dbw SAFARI_ZONE_NORTH, FishingGroup6
- dbw SAFARI_ZONE_WEST, FishingGroup6
- dbw SAFARI_ZONE_CENTER, FishingGroup6
- dbw CERULEAN_CAVE_2F, FishingGroup9
- dbw CERULEAN_CAVE_B1F, FishingGroup9
- dbw CERULEAN_CAVE_1F, FishingGroup9
- db $FF
-
-; fishing groups
-; number of monsters, followed by level/monster pairs
-FishingGroup1:
- db 2
- db 15,TENTACOOL
- db 15,POLIWAG
-
-FishingGroup2:
- db 2
- db 15,GOLDEEN
- db 15,POLIWAG
-
-FishingGroup3:
- db 3
- db 15,PSYDUCK
- db 15,GOLDEEN
- db 15,KRABBY
-
-FishingGroup4:
- db 2
- db 15,KRABBY
- db 15,SHELLDER
-
-FishingGroup5:
- db 2
- db 23,POLIWHIRL
- db 15,SLOWPOKE
-
-FishingGroup6:
- db 4
- db 15,DRATINI
- db 15,KRABBY
- db 15,PSYDUCK
- db 15,SLOWPOKE
-
-FishingGroup7:
- db 4
- db 5,TENTACOOL
- db 15,KRABBY
- db 15,GOLDEEN
- db 15,MAGIKARP
-
-FishingGroup8:
- db 4
- db 15,STARYU
- db 15,HORSEA
- db 15,SHELLDER
- db 15,GOLDEEN
-
-FishingGroup9:
- db 4
- db 23,SLOWBRO
- db 23,SEAKING
- db 23,KINGLER
- db 23,SEADRA
-
-FishingGroup10:
- db 4
- db 23,SEAKING
- db 15,KRABBY
- db 15,GOLDEEN
- db 15,MAGIKARP
--- /dev/null
+++ b/data/text/alphabets.asm
@@ -1,0 +1,5 @@
+LowerCaseAlphabet:
+ db "abcdefghijklmnopqrstuvwxyz ×():;[]",$e1,$e2,"-?!♂♀/⠄,¥UPPER CASE@"
+
+UpperCaseAlphabet:
+ db "ABCDEFGHIJKLMNOPQRSTUVWXYZ ×():;[]",$e1,$e2,"-?!♂♀/⠄,¥lower case@"
--- /dev/null
+++ b/data/text/dakutens.asm
@@ -1,0 +1,15 @@
+Dakutens:
+ db "かが", "きぎ", "くぐ", "けげ", "こご"
+ db "さざ", "しじ", "すず", "せぜ", "そぞ"
+ db "ただ", "ちぢ", "つづ", "てで", "とど"
+ db "はば", "ひび", "ふぶ", "へべ", "ほぼ"
+ db "カガ", "キギ", "クグ", "ケゲ", "コゴ"
+ db "サザ", "シジ", "スズ", "セゼ", "ソゾ"
+ db "タダ", "チヂ", "ツヅ", "テデ", "トド"
+ db "ハバ", "ヒビ", "フブ", "へべ", "ホボ"
+ db $ff
+
+Handakutens:
+ db "はぱ", "ひぴ", "ふぷ", "へぺ", "ほぽ"
+ db "ハパ", "ヒピ", "フプ", "へぺ", "ホポ"
+ db $ff
--- /dev/null
+++ b/data/text/text_1.asm
@@ -1,0 +1,145 @@
+_CardKeySuccessText1::
+ text "Bingo!@@"
+
+_CardKeySuccessText2::
+ text ""
+ line "The CARD KEY"
+ cont "opened the door!"
+ done
+
+_CardKeyFailText::
+ text "Darn! It needs a"
+ line "CARD KEY!"
+ done
+
+_TrainerNameText::
+ TX_RAM wcd6d
+ text ": @@"
+
+_NoNibbleText::
+ text "Not even a nibble!"
+ prompt
+
+_NothingHereText::
+ text "Looks like there's"
+ line "nothing here."
+ prompt
+
+_ItsABiteText::
+ text "Oh!"
+ line "It's a bite!"
+ prompt
+
+_ExclamationText::
+ text "!"
+ done
+
+_GroundRoseText::
+ text "Ground rose up"
+ line "somewhere!"
+ done
+
+_BoulderText::
+ text "This requires"
+ line "STRENGTH to move!"
+ done
+
+_MartSignText::
+ text "All your item"
+ line "needs fulfilled!"
+ cont "#MON MART"
+ done
+
+_PokeCenterSignText::
+ text "Heal Your #MON!"
+ line "#MON CENTER"
+ done
+
+_FoundItemText::
+ text "<PLAYER> found"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_NoMoreRoomForItemText::
+ text "No more room for"
+ line "items!"
+ done
+
+_OaksAideHiText::
+ text "Hi! Remember me?"
+ line "I'm PROF.OAK's"
+ cont "AIDE!"
+
+ para "If you caught @"
+ TX_NUM hOaksAideRequirement, 1, 3
+ text ""
+ line "kinds of #MON,"
+ cont "I'm supposed to"
+ cont "give you an"
+ cont "@"
+ TX_RAM wOaksAideRewardItemName
+ text "!"
+
+ para "So, <PLAYER>! Have"
+ line "you caught at"
+ cont "least @"
+ TX_NUM hOaksAideRequirement, 1, 3
+ text " kinds of"
+ cont "#MON?"
+ done
+
+_OaksAideUhOhText::
+ text "Let's see..."
+ line "Uh-oh! You have"
+ cont "caught only @"
+ TX_NUM hOaksAideNumMonsOwned, 1, 3
+ text ""
+ cont "kinds of #MON!"
+
+ para "You need @"
+ TX_NUM hOaksAideRequirement, 1, 3
+ text " kinds"
+ line "if you want the"
+ cont "@"
+ TX_RAM wOaksAideRewardItemName
+ text "."
+ done
+
+_OaksAideComeBackText::
+ text "Oh. I see."
+
+ para "When you get @"
+ TX_NUM hOaksAideRequirement, 1, 3
+ text ""
+ line "kinds, come back"
+ cont "for @"
+ TX_RAM wOaksAideRewardItemName
+ text "."
+ done
+
+_OaksAideHereYouGoText::
+ text "Great! You have"
+ line "caught @"
+ TX_NUM hOaksAideNumMonsOwned, 1, 3
+ text " kinds "
+ cont "of #MON!"
+ cont "Congratulations!"
+
+ para "Here you go!"
+ prompt
+
+_OaksAideGotItemText::
+ text "<PLAYER> got the"
+ line "@"
+ TX_RAM wOaksAideRewardItemName
+ text "!@@"
+
+_OaksAideNoRoomText::
+ text "Oh! I see you"
+ line "don't have any"
+ cont "room for the"
+ cont "@"
+ TX_RAM wOaksAideRewardItemName
+ text "."
+ done
--- /dev/null
+++ b/data/text/text_2.asm
@@ -1,0 +1,1753 @@
+_AIBattleWithdrawText::
+ TX_RAM wTrainerName
+ text " with-"
+ line "drew @"
+ TX_RAM wEnemyMonNick
+ text "!"
+ prompt
+
+_AIBattleUseItemText::
+ TX_RAM wTrainerName
+ text ""
+ line "used @"
+ TX_RAM wcd6d
+ text ""
+ cont "on @"
+ TX_RAM wEnemyMonNick
+ text "!"
+ prompt
+
+_TradeWentToText::
+ TX_RAM wcf4b
+ text " went"
+ line "to @"
+ TX_RAM wLinkEnemyTrainerName
+ text "."
+ done
+
+_TradeForText::
+ text "For <PLAYER>'s"
+ line "@"
+ TX_RAM wcf4b
+ text ","
+ done
+
+_TradeSendsText::
+ TX_RAM wLinkEnemyTrainerName
+ text " sends"
+ line "@"
+ TX_RAM wcd6d
+ text "."
+ done
+
+_TradeWavesFarewellText::
+ TX_RAM wLinkEnemyTrainerName
+ text " waves"
+ line "farewell as"
+ done
+
+_TradeTransferredText::
+ TX_RAM wcd6d
+ text " is"
+ line "transferred."
+ done
+
+_TradeTakeCareText::
+ text "Take good care of"
+ line "@"
+ TX_RAM wcd6d
+ text "."
+ done
+
+_TradeWillTradeText::
+ TX_RAM wLinkEnemyTrainerName
+ text " will"
+ line "trade @"
+ TX_RAM wcd6d
+ text ""
+ done
+
+_TradeforText::
+ text "for <PLAYER>'s"
+ line "@"
+ TX_RAM wcf4b
+ text "."
+ done
+
+_PlaySlotMachineText::
+ text "A slot machine!"
+ line "Want to play?"
+ done
+
+_OutOfCoinsSlotMachineText::
+ text "Darn!"
+ line "Ran out of coins!"
+ done
+
+_BetHowManySlotMachineText::
+ text "Bet how many"
+ line "coins?"
+ done
+
+_StartSlotMachineText::
+ text "Start!"
+ done
+
+_NotEnoughCoinsSlotMachineText::
+ text "Not enough"
+ line "coins!"
+ prompt
+
+_OneMoreGoSlotMachineText::
+ text "One more "
+ line "go?"
+ done
+
+_LinedUpText::
+ text " lined up!"
+ line "Scored @"
+ TX_RAM wcf4b
+ text " coins!"
+ done
+
+_NotThisTimeText::
+ text "Not this time!"
+ prompt
+
+_YeahText::
+ text "Yeah!@@"
+
+_DexSeenOwnedText::
+ text "#DEX Seen:@"
+ TX_NUM wDexRatingNumMonsSeen, 1, 3
+ text ""
+ line " Owned:@"
+ TX_NUM wDexRatingNumMonsOwned, 1, 3
+ db "@"
+
+_DexRatingText::
+ text "#DEX Rating", $6d
+ done
+
+_GymStatueText1::
+ TX_RAM wGymCityName
+ text ""
+ line "#MON GYM"
+ cont "LEADER: @"
+ TX_RAM wGymLeaderName
+ text ""
+
+ para "WINNING TRAINERS:"
+ line "<RIVAL>"
+ done
+
+_GymStatueText2::
+ TX_RAM wGymCityName
+ text ""
+ line "#MON GYM"
+ cont "LEADER: @"
+ TX_RAM wGymLeaderName
+ text ""
+
+ para "WINNING TRAINERS:"
+ line "<RIVAL>"
+ cont "<PLAYER>"
+ done
+
+_ViridianCityPokecenterGuyText::
+ text "#MON CENTERs"
+ line "heal your tired,"
+ cont "hurt or fainted"
+ cont "#MON!"
+ done
+
+_PewterCityPokecenterGuyText::
+ text "Yawn!"
+
+ para "When JIGGLYPUFF"
+ line "sings, #MON"
+ cont "get drowsy..."
+
+ para "...Me too..."
+ line "Snore..."
+ done
+
+_CeruleanPokecenterGuyText::
+ text "BILL has lots of"
+ line "#MON!"
+
+ para "He collects rare"
+ line "ones too!"
+ done
+
+_LavenderPokecenterGuyText::
+ text "CUBONEs wear"
+ line "skulls, right?"
+
+ para "People will pay a"
+ line "lot for one!"
+ done
+
+_MtMoonPokecenterBenchGuyText::
+ text "If you have too"
+ line "many #MON, you"
+ cont "should store them"
+ cont "via PC!"
+ done
+
+_RockTunnelPokecenterGuyText::
+ text "I heard that"
+ line "GHOSTs haunt"
+ cont "LAVENDER TOWN!"
+ done
+
+_UnusedBenchGuyText1::
+ text "I wish I could"
+ line "catch #MON."
+ done
+
+_UnusedBenchGuyText2::
+ text "I'm tired from"
+ line "all the fun..."
+ done
+
+_UnusedBenchGuyText3::
+ text "SILPH's manager"
+ line "is hiding in the"
+ cont "SAFARI ZONE."
+ done
+
+_VermilionPokecenterGuyText::
+ text "It is true that a"
+ line "higher level"
+ cont "#MON will be"
+ cont "more powerful..."
+
+ para "But, all #MON"
+ line "will have weak"
+ cont "points against"
+ cont "specific types."
+
+ para "So, there is no"
+ line "universally"
+ cont "strong #MON."
+ done
+
+_CeladonCityPokecenterGuyText::
+ text "If I had a BIKE,"
+ line "I would go to"
+ cont "CYCLING ROAD!"
+ done
+
+_FuchsiaCityPokecenterGuyText::
+ text "If you're studying "
+ line "#MON, visit"
+ cont "the SAFARI ZONE."
+
+ para "It has all sorts"
+ line "of rare #MON."
+ done
+
+_CinnabarPokecenterGuyText::
+ text "#MON can still"
+ line "learn techniques"
+ cont "after canceling"
+ cont "evolution."
+
+ para "Evolution can wait"
+ line "until new moves"
+ cont "have been learned."
+ done
+
+_SaffronCityPokecenterGuyText1::
+ text "It would be great"
+ line "if the ELITE FOUR"
+ cont "came and stomped"
+ cont "TEAM ROCKET!"
+ done
+
+_SaffronCityPokecenterGuyText2::
+ text "TEAM ROCKET took"
+ line "off! We can go"
+ cont "out safely again!"
+ cont "That's great!"
+ done
+
+_CeladonCityHotelText::
+ text "My sis brought me"
+ line "on this vacation!"
+ done
+
+_BookcaseText::
+ text "Crammed full of"
+ line "#MON books!"
+ done
+
+_NewBicycleText::
+ text "A shiny new"
+ line "BICYCLE!"
+ done
+
+_PushStartText::
+ text "Push START to"
+ line "open the MENU!"
+ done
+
+_SaveOptionText::
+ text "The SAVE option is"
+ line "on the MENU"
+ cont "screen."
+ done
+
+_StrengthsAndWeaknessesText::
+ text "All #MON types"
+ line "have strong and"
+ cont "weak points"
+ cont "against others."
+ done
+
+_TimesUpText::
+ text "PA: Ding-dong!"
+
+ para "Time's up!"
+ prompt
+
+_GameOverText::
+ text "PA: Your SAFARI"
+ line "GAME is over!"
+ done
+
+_CinnabarGymQuizIntroText::
+ text "#MON Quiz!"
+
+ para "Get it right and"
+ line "the door opens to"
+ cont "the next room!"
+
+ para "Get it wrong and"
+ line "face a trainer!"
+
+ para "If you want to"
+ line "conserve your"
+ cont "#MON for the"
+ cont "GYM LEADER..."
+
+ para "Then get it right!"
+ line "Here we go!"
+ prompt
+
+_CinnabarQuizQuestionsText1::
+ text "CATERPIE evolves"
+ line "into BUTTERFREE?"
+ done
+
+_CinnabarQuizQuestionsText2::
+ text "There are 9"
+ line "certified #MON"
+ cont "LEAGUE BADGEs?"
+ done
+
+_CinnabarQuizQuestionsText3::
+ text "POLIWAG evolves 3"
+ line "times?"
+ done
+
+_CinnabarQuizQuestionsText4::
+ text "Are thunder moves"
+ line "effective against"
+ cont "ground element-"
+ cont "type #MON?"
+ done
+
+_CinnabarQuizQuestionsText5::
+ text "#MON of the"
+ line "same kind and"
+ cont "level are not"
+ cont "identical?"
+ done
+
+_CinnabarQuizQuestionsText6::
+ text "TM28 contains"
+ line "TOMBSTONER?"
+ done
+
+_CinnabarGymQuizCorrectText::
+ text "You're absolutely"
+ line "correct!"
+
+ para "Go on through!@@"
+
+_CinnabarGymQuizIncorrectText::
+ text "Sorry! Bad call!"
+ prompt
+
+_MagazinesText::
+ text "#MON magazines!"
+
+ para "#MON notebooks!"
+
+ para "#MON graphs!"
+ done
+
+_BillsHouseMonitorText::
+ text "TELEPORTER is"
+ line "displayed on the"
+ cont "PC monitor."
+ done
+
+_BillsHouseInitiatedText::
+ text "<PLAYER> initiated"
+ line "TELEPORTER's Cell"
+ cont "Separator!@@"
+
+_BillsHousePokemonListText1::
+ text "BILL's favorite"
+ line "#MON list!"
+ prompt
+
+_BillsHousePokemonListText2::
+ text "Which #MON do"
+ line "you want to see?"
+ done
+
+_OakLabEmailText::
+ text "There's an e-mail"
+ line "message here!"
+
+ para "..."
+
+ para "Calling all"
+ line "#MON trainers!"
+
+ para "The elite trainers"
+ line "of #MON LEAGUE"
+ cont "are ready to take"
+ cont "on all comers!"
+
+ para "Bring your best"
+ line "#MON and see"
+ cont "how you rate as a"
+ cont "trainer!"
+
+ para "#MON LEAGUE HQ"
+ line "INDIGO PLATEAU"
+
+ para "PS: PROF.OAK,"
+ line "please visit us!"
+ cont "..."
+ done
+
+_GameCornerCoinCaseText::
+ text "A COIN CASE is"
+ line "required!"
+ done
+
+_GameCornerNoCoinsText::
+ text "You don't have"
+ line "any coins!"
+ done
+
+_GameCornerOutOfOrderText::
+ text "OUT OF ORDER"
+ line "This is broken."
+ done
+
+_GameCornerOutToLunchText::
+ text "OUT TO LUNCH"
+ line "This is reserved."
+ done
+
+_GameCornerSomeonesKeysText::
+ text "Someone's keys!"
+ line "They'll be back."
+ done
+
+_JustAMomentText::
+ text "Just a moment."
+ done
+
+TMNotebookText::
+ text "It's a pamphlet"
+ line "on TMs."
+
+ para "..."
+
+ para "There are 50 TMs"
+ line "in all."
+
+ para "There are also 5"
+ line "HMs that can be"
+ cont "used repeatedly."
+
+ para "SILPH CO.@@"
+
+_TurnPageText::
+ text "Turn the page?"
+ done
+
+_ViridianSchoolNotebookText5::
+ text "GIRL: Hey! Don't"
+ line "look at my notes!@@"
+
+_ViridianSchoolNotebookText1::
+ text "Looked at the"
+ line "notebook!"
+
+ para "First page..."
+
+ para "# BALLs are"
+ line "used to catch"
+ cont "#MON."
+
+ para "Up to 6 #MON"
+ line "can be carried."
+
+ para "People who raise"
+ line "and make #MON"
+ cont "fight are called"
+ cont "#MON trainers."
+ prompt
+
+_ViridianSchoolNotebookText2::
+ text "Second page..."
+
+ para "A healthy #MON"
+ line "may be hard to"
+ cont "catch, so weaken"
+ cont "it first!"
+
+ para "Poison, burns and"
+ line "other damage are"
+ cont "effective!"
+ prompt
+
+_ViridianSchoolNotebookText3::
+ text "Third page..."
+
+ para "#MON trainers"
+ line "seek others to"
+ cont "engage in #MON"
+ cont "fights."
+
+ para "Battles are"
+ line "constantly fought"
+ cont "at #MON GYMs."
+ prompt
+
+_ViridianSchoolNotebookText4::
+ text "Fourth page..."
+
+ para "The goal for"
+ line "#MON trainers"
+ cont "is to beat the "
+ cont "top 8 #MON"
+ cont "GYM LEADERs."
+
+ para "Do so to earn the"
+ line "right to face..."
+
+ para "The ELITE FOUR of"
+ line "#MON LEAGUE!"
+ prompt
+
+_EnemiesOnEverySideText::
+ text "Enemies on every"
+ line "side!"
+ done
+
+_WhatGoesAroundComesAroundText::
+ text "What goes around"
+ line "comes around!"
+ done
+
+_FightingDojoText::
+ text "FIGHTING DOJO"
+ done
+
+_IndigoPlateauHQText::
+ text "INDIGO PLATEAU"
+ line "#MON LEAGUE HQ"
+ done
+
+_RedBedroomSNESText::
+ text "<PLAYER> is"
+ line "playing the SNES!"
+ cont "...Okay!"
+ cont "It's time to go!"
+ done
+
+_Route15UpstairsBinocularsText::
+ text "Looked into the"
+ line "binoculars..."
+
+ para "A large, shining"
+ line "bird is flying"
+ cont "toward the sea."
+ done
+
+_AerodactylFossilText::
+ text "AERODACTYL Fossil"
+ line "A primitive and"
+ cont "rare #MON."
+ done
+
+_KabutopsFossilText::
+ text "KABUTOPS Fossil"
+ line "A primitive and"
+ cont "rare #MON."
+ done
+
+_LinkCableHelpText1::
+ text "TRAINER TIPS"
+
+ para "Using a Game Link"
+ line "Cable"
+ prompt
+
+_LinkCableHelpText2::
+ text "Which heading do"
+ line "you want to read?"
+ done
+
+_LinkCableInfoText1::
+ text "When you have"
+ line "linked your GAME"
+ cont "BOY with another"
+ cont "GAME BOY, talk to"
+ cont "the attendant on"
+ cont "the right in any"
+ cont "#MON CENTER."
+ prompt
+
+_LinkCableInfoText2::
+ text "COLOSSEUM lets"
+ line "you play against"
+ cont "a friend."
+ prompt
+
+_LinkCableInfoText3::
+ text "TRADE CENTER is"
+ line "used for trading"
+ cont "#MON."
+ prompt
+
+_ViridianSchoolBlackboardText1::
+ text "The blackboard"
+ line "describes #MON"
+ cont "STATUS changes"
+ cont "during battles."
+ prompt
+
+_ViridianSchoolBlackboardText2::
+ text "Which heading do"
+ line "you want to read?"
+ done
+
+_ViridianBlackboardSleepText::
+ text "A #MON can't"
+ line "attack if it's"
+ cont "asleep!"
+
+ para "#MON will stay"
+ line "asleep even after"
+ cont "battles."
+
+ para "Use AWAKENING to"
+ line "wake them up!"
+ prompt
+
+_ViridianBlackboardPoisonText::
+ text "When poisoned, a"
+ line "#MON's health"
+ cont "steadily drops."
+
+ para "Poison lingers"
+ line "after battles."
+
+ para "Use an ANTIDOTE"
+ line "to cure poison!"
+ prompt
+
+_ViridianBlackboardPrlzText::
+ text "Paralysis could"
+ line "make #MON"
+ cont "moves misfire!"
+
+ para "Paralysis remains"
+ line "after battles."
+
+ para "Use PARLYZ HEAL"
+ line "for treatment!"
+ prompt
+
+_ViridianBlackboardBurnText::
+ text "A burn reduces"
+ line "power and speed."
+ cont "It also causes"
+ cont "ongoing damage."
+
+ para "Burns remain"
+ line "after battles."
+
+ para "Use BURN HEAL to"
+ line "cure a burn!"
+ prompt
+
+_ViridianBlackboardFrozenText::
+ text "If frozen, a"
+ line "#MON becomes"
+ cont "totally immobile!"
+
+ para "It stays frozen"
+ line "even after the"
+ cont "battle ends."
+
+ para "Use ICE HEAL to"
+ line "thaw out #MON!"
+ prompt
+
+_VermilionGymTrashText::
+ text "Nope, there's"
+ line "only trash here."
+ done
+
+_VermilionGymTrashSuccessText1::
+ text "Hey! There's a"
+ line "switch under the"
+ cont "trash!"
+ cont "Turn it on!"
+
+ para "The 1st electric"
+ line "lock opened!@@"
+
+_VermilionGymTrashSuccessText2::
+ text "Hey! There's"
+ line "another switch"
+ cont "under the trash!"
+ cont "Turn it on!"
+ prompt
+
+_VermilionGymTrashSuccessText3::
+ text "The 2nd electric"
+ line "lock opened!"
+
+ para "The motorized door"
+ line "opened!@@"
+
+_VermilionGymTrashFailText::
+ text "Nope! There's"
+ line "only trash here."
+ cont "Hey! The electric"
+ cont "locks were reset!@@"
+
+_FoundHiddenItemText::
+ text "<PLAYER> found"
+ line "@"
+ TX_RAM wcd6d
+ text "!@@"
+
+_HiddenItemBagFullText::
+ text "But, <PLAYER> has"
+ line "no more room for"
+ cont "other items!"
+ done
+
+_FoundHiddenCoinsText::
+ text "<PLAYER> found"
+ line "@"
+ TX_BCD hCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
+ text " coins!@@"
+
+_FoundHiddenCoins2Text::
+ text "<PLAYER> found"
+ line "@"
+ TX_BCD hCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
+ text " coins!@@"
+
+_DroppedHiddenCoinsText::
+ text ""
+ para "Oops! Dropped"
+ line "some coins!"
+ done
+
+_IndigoPlateauStatuesText1::
+ text "INDIGO PLATEAU"
+ prompt
+
+_IndigoPlateauStatuesText2::
+ text "The ultimate goal"
+ line "of trainers!"
+ cont "#MON LEAGUE HQ"
+ done
+
+_IndigoPlateauStatuesText3::
+ text "The highest"
+ line "#MON authority"
+ cont "#MON LEAGUE HQ"
+ done
+
+_PokemonBooksText::
+ text "Crammed full of"
+ line "#MON books!"
+ done
+
+_DiglettSculptureText::
+ text "It's a sculpture"
+ line "of DIGLETT."
+ done
+
+_ElevatorText::
+ text "This is an"
+ line "elevator."
+ done
+
+_TownMapText::
+ text "A TOWN MAP.@@"
+
+_PokemonStuffText::
+ text "Wow! Tons of"
+ line "#MON stuff!"
+ done
+
+_OutOfSafariBallsText::
+ text "PA: Ding-dong!"
+
+ para "You are out of"
+ line "SAFARI BALLs!"
+ prompt
+
+_WildRanText::
+ text "Wild @"
+ TX_RAM wEnemyMonNick
+ text ""
+ line "ran!"
+ prompt
+
+_EnemyRanText::
+ text "Enemy @"
+ TX_RAM wEnemyMonNick
+ text ""
+ line "ran!"
+ prompt
+
+_HurtByPoisonText::
+ text "<USER>'s"
+ line "hurt by poison!"
+ prompt
+
+_HurtByBurnText::
+ text "<USER>'s"
+ line "hurt by the burn!"
+ prompt
+
+_HurtByLeechSeedText::
+ text "LEECH SEED saps"
+ line "<USER>!"
+ prompt
+
+_EnemyMonFaintedText::
+ text "Enemy @"
+ TX_RAM wEnemyMonNick
+ text ""
+ line "fainted!"
+ prompt
+
+_MoneyForWinningText::
+ text "<PLAYER> got ¥@"
+ TX_BCD wAmountMoneyWon, 3 | LEADING_ZEROES | LEFT_ALIGN
+ text ""
+ line "for winning!"
+ prompt
+
+_TrainerDefeatedText::
+ text "<PLAYER> defeated"
+ line "@"
+ TX_RAM wTrainerName
+ text "!"
+ prompt
+
+_PlayerMonFaintedText::
+ TX_RAM wBattleMonNick
+ text ""
+ line "fainted!"
+ prompt
+
+_UseNextMonText::
+ text "Use next #MON?"
+ done
+
+_Sony1WinText::
+ text "<RIVAL>: Yeah! Am"
+ line "I great or what?"
+ prompt
+
+_PlayerBlackedOutText2::
+ text "<PLAYER> is out of"
+ line "useable #MON!"
+
+ para "<PLAYER> blacked"
+ line "out!"
+ prompt
+
+_LinkBattleLostText::
+ text "<PLAYER> lost to"
+ line "@"
+ TX_RAM wTrainerName
+ text "!"
+ prompt
+
+_TrainerAboutToUseText::
+ TX_RAM wTrainerName
+ text " is"
+ line "about to use"
+ cont"@"
+ TX_RAM wEnemyMonNick
+ text "!"
+
+ para "Will <PLAYER>"
+ line "change #MON?"
+ done
+
+_TrainerSentOutText::
+ TX_RAM wTrainerName
+ text " sent"
+ line "out @"
+ TX_RAM wEnemyMonNick
+ text "!"
+ done
+
+_NoWillText::
+ text "There's no will"
+ line "to fight!"
+ prompt
+
+_CantEscapeText::
+ text "Can't escape!"
+ prompt
+
+_NoRunningText::
+ text "No! There's no"
+ line "running from a"
+ cont "trainer battle!"
+ prompt
+
+_GotAwayText::
+ text "Got away safely!"
+ prompt
+
+_ItemsCantBeUsedHereText::
+ text "Items can't be"
+ line "used here."
+ prompt
+
+_AlreadyOutText::
+ TX_RAM wBattleMonNick
+ text " is"
+ line "already out!"
+ prompt
+
+_MoveNoPPText::
+ text "No PP left for"
+ line "this move!"
+ prompt
+
+_MoveDisabledText::
+ text "The move is"
+ line "disabled!"
+ prompt
+
+_NoMovesLeftText::
+ TX_RAM wBattleMonNick
+ text " has no"
+ line "moves left!"
+ done
+
+_MultiHitText::
+ text "Hit the enemy"
+ line "@"
+ TX_NUM wPlayerNumHits,1,1
+ text " times!"
+ prompt
+
+_ScaredText::
+ TX_RAM wBattleMonNick
+ text " is too"
+ line "scared to move!"
+ prompt
+
+_GetOutText::
+ text "GHOST: Get out..."
+ line "Get out..."
+ prompt
+
+_FastAsleepText::
+ text "<USER>"
+ line "is fast asleep!"
+ prompt
+
+_WokeUpText::
+ text "<USER>"
+ line "woke up!"
+ prompt
+
+_IsFrozenText::
+ text "<USER>"
+ line "is frozen solid!"
+ prompt
+
+_FullyParalyzedText::
+ text "<USER>'s"
+ line "fully paralyzed!"
+ prompt
+
+_FlinchedText::
+ text "<USER>"
+ line "flinched!"
+ prompt
+
+_MustRechargeText::
+ text "<USER>"
+ line "must recharge!"
+ prompt
+
+_DisabledNoMoreText::
+ text "<USER>'s"
+ line "disabled no more!"
+ prompt
+
+_IsConfusedText::
+ text "<USER>"
+ line "is confused!"
+ prompt
+
+_HurtItselfText::
+ text "It hurt itself in"
+ line "its confusion!"
+ prompt
+
+_ConfusedNoMoreText::
+ text "<USER>'s"
+ line "confused no more!"
+ prompt
+
+_SavingEnergyText::
+ text "<USER>"
+ line "is saving energy!"
+ prompt
+
+_UnleashedEnergyText::
+ text "<USER>"
+ line "unleashed energy!"
+ prompt
+
+_ThrashingAboutText::
+ text "<USER>'s"
+ line "thrashing about!"
+ done
+
+_AttackContinuesText::
+ text "<USER>'s"
+ line "attack continues!"
+ done
+
+_CantMoveText::
+ text "<USER>"
+ line "can't move!"
+ prompt
+
+_MoveIsDisabledText::
+ text "<USER>'s"
+ line "@"
+ TX_RAM wcd6d
+ text " is"
+ cont "disabled!"
+ prompt
+
+_MonName1Text::
+ text "<USER>@@"
+
+_Used1Text::
+ text ""
+ line "used @@"
+
+_Used2Text::
+ text ""
+ line "used @@"
+
+_InsteadText::
+ text "instead,"
+ cont "@@"
+
+_CF4BText::
+ TX_RAM wcf4b
+ text "@"
+
+_ExclamationPoint1Text::
+ text "!"
+ done
+
+_ExclamationPoint2Text::
+ text "!"
+ done
+
+_ExclamationPoint3Text::
+ text "!"
+ done
+
+_ExclamationPoint4Text::
+ text "!"
+ done
+
+_ExclamationPoint5Text::
+ text "!"
+ done
+
+_AttackMissedText::
+ text "<USER>'s"
+ line "attack missed!"
+ prompt
+
+_KeptGoingAndCrashedText::
+ text "<USER>"
+ line "kept going and"
+ cont "crashed!"
+ prompt
+
+_UnaffectedText::
+ text "<TARGET>'s"
+ line "unaffected!"
+ prompt
+
+_DoesntAffectMonText::
+ text "It doesn't affect"
+ line "<TARGET>!"
+ prompt
+
+_CriticalHitText::
+ text "Critical hit!"
+ prompt
+
+_OHKOText::
+ text "One-hit KO!"
+ prompt
+
+_LoafingAroundText::
+ TX_RAM wBattleMonNick
+ text " is"
+ line "loafing around."
+ prompt
+
+_BeganToNapText::
+ TX_RAM wBattleMonNick
+ text " began"
+ line "to nap!"
+ prompt
+
+_WontObeyText::
+ TX_RAM wBattleMonNick
+ text " won't"
+ line "obey!"
+ prompt
+
+_TurnedAwayText::
+ TX_RAM wBattleMonNick
+ text " turned"
+ line "away!"
+ prompt
+
+_IgnoredOrdersText::
+ TX_RAM wBattleMonNick
+ text ""
+ line "ignored orders!"
+ prompt
+
+_SubstituteTookDamageText::
+ text "The SUBSTITUTE"
+ line "took damage for"
+ cont "<TARGET>!"
+ prompt
+
+_SubstituteBrokeText::
+ text "<TARGET>'s"
+ line "SUBSTITUTE broke!"
+ prompt
+
+_BuildingRageText::
+ text "<USER>'s"
+ line "RAGE is building!"
+ prompt
+
+_MirrorMoveFailedText::
+ text "The MIRROR MOVE"
+ next "failed!"
+ prompt
+
+_HitXTimesText::
+ text "Hit @"
+ TX_NUM wEnemyNumHits, 1, 1
+ text " times!"
+ prompt
+
+_GainedText::
+ TX_RAM wcd6d
+ text " gained"
+ line "@@"
+
+_WithExpAllText::
+ text "with EXP.ALL,"
+ cont "@@"
+
+_BoostedText::
+ text "a boosted"
+ cont "@@"
+
+_ExpPointsText::
+ TX_NUM wExpAmountGained, 2, 4
+ text " EXP. Points!"
+ prompt
+
+_GrewLevelText::
+ TX_RAM wcd6d
+ text " grew"
+ line "to level @"
+ TX_NUM wCurEnemyLVL, 1, 3
+ text "!@@"
+
+_WildMonAppearedText::
+ text "Wild @"
+ TX_RAM wEnemyMonNick
+ text ""
+ line "appeared!"
+ prompt
+
+_HookedMonAttackedText::
+ text "The hooked"
+ line "@"
+ TX_RAM wEnemyMonNick
+ text ""
+ cont "attacked!"
+ prompt
+
+_EnemyAppearedText::
+ TX_RAM wEnemyMonNick
+ text ""
+ line "appeared!"
+ prompt
+
+_TrainerWantsToFightText::
+ TX_RAM wTrainerName
+ text " wants"
+ line "to fight!"
+ prompt
+
+_UnveiledGhostText::
+ text "SILPH SCOPE"
+ line "unveiled the"
+ cont "GHOST's identity!"
+ prompt
+
+_GhostCantBeIDdText::
+ text "Darn! The GHOST"
+ line "can't be ID'd!"
+ prompt
+
+_GoText::
+ text "Go! @@"
+
+_DoItText::
+ text "Do it! @@"
+
+_GetmText::
+ text "Get'm! @@"
+
+_EnemysWeakText::
+ text "The enemy's weak!"
+ line "Get'm! @@"
+
+_PlayerMon1Text::
+ TX_RAM wBattleMonNick
+ text "!"
+ done
+
+_PlayerMon2Text::
+ TX_RAM wBattleMonNick
+ text " @@"
+
+_EnoughText::
+ text "enough!@@"
+
+_OKExclamationText::
+ text "OK!@@"
+
+_GoodText::
+ text "good!@@"
+
+_ComeBackText::
+ text ""
+ line "Come back!"
+ done
+
+_SuperEffectiveText::
+ text "It's super"
+ line "effective!"
+ prompt
+
+_NotVeryEffectiveText::
+ text "It's not very"
+ line "effective..."
+ prompt
+
+_SafariZoneEatingText::
+ text "Wild @"
+ TX_RAM wEnemyMonNick
+ text ""
+ line "is eating!"
+ prompt
+
+_SafariZoneAngryText::
+ text "Wild @"
+ TX_RAM wEnemyMonNick
+ text ""
+ line "is angry!"
+ prompt
+
+; money related
+_PickUpPayDayMoneyText::
+ text "<PLAYER> picked up"
+ line "¥@"
+ TX_BCD wTotalPayDayMoney, 3 | LEADING_ZEROES | LEFT_ALIGN
+ text "!"
+ prompt
+
+_ClearSaveDataText::
+ text "Clear all saved"
+ line "data?"
+ done
+
+_WhichFloorText::
+ text "Which floor do"
+ line "you want? "
+ done
+
+_PartyMenuNormalText::
+ text "Choose a #MON."
+ done
+
+_PartyMenuItemUseText::
+ text "Use item on which"
+ line "#MON?"
+ done
+
+_PartyMenuBattleText::
+ text "Bring out which"
+ line "#MON?"
+ done
+
+_PartyMenuUseTMText::
+ text "Use TM on which"
+ line "#MON?"
+ done
+
+_PartyMenuSwapMonText::
+ text "Move #MON"
+ line "where?"
+ done
+
+_PotionText::
+ TX_RAM wcd6d
+ text ""
+ line "recovered by @"
+ TX_NUM wHPBarHPDifference, 2, 3
+ text "!"
+ done
+
+_AntidoteText::
+ TX_RAM wcd6d
+ text " was"
+ line "cured of poison!"
+ done
+
+_ParlyzHealText::
+ TX_RAM wcd6d
+ text "'s"
+ line "rid of paralysis!"
+ done
+
+_BurnHealText::
+ TX_RAM wcd6d
+ text "'s"
+ line "burn was healed!"
+ done
+
+_IceHealText::
+ TX_RAM wcd6d
+ text " was"
+ line "defrosted!"
+ done
+
+_AwakeningText::
+ TX_RAM wcd6d
+ text ""
+ line "woke up!"
+ done
+
+_FullHealText::
+ TX_RAM wcd6d
+ text "'s"
+ line "health returned!"
+ done
+
+_ReviveText::
+ TX_RAM wcd6d
+ text ""
+ line "is revitalized!"
+ done
+
+_RareCandyText::
+ TX_RAM wcd6d
+ text " grew"
+ line "to level @"
+ TX_NUM wCurEnemyLVL, 1, 3
+ text "!@@"
+
+_TurnedOnPC1Text::
+ text "<PLAYER> turned on"
+ line "the PC."
+ prompt
+
+_AccessedBillsPCText::
+ text "Accessed BILL's"
+ line "PC."
+
+ para "Accessed #MON"
+ line "Storage System."
+ prompt
+
+_AccessedSomeonesPCText::
+ text "Accessed someone's"
+ line "PC."
+
+ para "Accessed #MON"
+ line "Storage System."
+ prompt
+
+_AccessedMyPCText::
+ text "Accessed my PC."
+
+ para "Accessed Item"
+ line "Storage System."
+ prompt
+
+_TurnedOnPC2Text::
+ text "<PLAYER> turned on"
+ line "the PC."
+ prompt
+
+_WhatDoYouWantText::
+ text "What do you want"
+ line "to do?"
+ done
+
+_WhatToDepositText::
+ text "What do you want"
+ line "to deposit?"
+ done
+
+_DepositHowManyText::
+ text "How many?"
+ done
+
+_ItemWasStoredText::
+ TX_RAM wcd6d
+ text " was"
+ line "stored via PC."
+ prompt
+
+_NothingToDepositText::
+ text "You have nothing"
+ line "to deposit."
+ prompt
+
+_NoRoomToStoreText::
+ text "No room left to"
+ line "store items."
+ prompt
+
+_WhatToWithdrawText::
+ text "What do you want"
+ line "to withdraw?"
+ done
+
+_WithdrawHowManyText::
+ text "How many?"
+ done
+
+_WithdrewItemText::
+ text "Withdrew"
+ line "@"
+ TX_RAM wcd6d
+ text "."
+ prompt
+
+_NothingStoredText::
+ text "There is nothing"
+ line "stored."
+ prompt
+
+_CantCarryMoreText::
+ text "You can't carry"
+ line "any more items."
+ prompt
+
+_WhatToTossText::
+ text "What do you want"
+ line "to toss away?"
+ done
+
+_TossHowManyText::
+ text "How many?"
+ done
+
+_AccessedHoFPCText::
+ text "Accessed #MON"
+ line "LEAGUE's site."
+
+ para "Accessed the HALL"
+ line "OF FAME List."
+ prompt
+
+_SwitchOnText::
+ text "Switch on!"
+ prompt
+
+_WhatText::
+ text "What?"
+ done
+
+_DepositWhichMonText::
+ text "Deposit which"
+ line "#MON?"
+ done
+
+_MonWasStoredText::
+ TX_RAM wcf4b
+ text " was"
+ line "stored in Box @"
+ TX_RAM wBoxNumString
+ text "."
+ prompt
+
+_CantDepositLastMonText::
+ text "You can't deposit"
+ line "the last #MON!"
+ prompt
+
+_BoxFullText::
+ text "Oops! This Box is"
+ line "full of #MON."
+ prompt
+
+_MonIsTakenOutText::
+ TX_RAM wcf4b
+ text " is"
+ line "taken out."
+ cont "Got @"
+ TX_RAM wcf4b
+ text "."
+ prompt
+
+_NoMonText::
+ text "What? There are"
+ line "no #MON here!"
+ prompt
+
+_CantTakeMonText::
+ text "You can't take"
+ line "any more #MON."
+
+ para "Deposit #MON"
+ line "first."
+ prompt
+
+_ReleaseWhichMonText::
+ text "Release which"
+ line "#MON?"
+ done
+
+_OnceReleasedText::
+ text "Once released,"
+ line "@"
+ TX_RAM wcf4b
+ text " is"
+ cont "gone forever. OK?"
+ done
+
+_MonWasReleasedText::
+ TX_RAM wcf4b
+ text " was"
+ line "released outside."
+ cont "Bye @"
+
+_CF4BExclamationText::
+ TX_RAM wcf4b
+ text "!"
+ prompt
+
+_RequireCoinCaseText::
+ text "A COIN CASE is"
+ line "required!@@"
+
+_ExchangeCoinsForPrizesText::
+ text "We exchange your"
+ line "coins for prizes."
+ prompt
+
+_WhichPrizeText::
+ text "Which prize do"
+ line "you want?"
+ done
+
+_HereYouGoText::
+ text "Here you go!@@"
+
+_SoYouWantPrizeText::
+ text "So, you want"
+ line "@"
+ TX_RAM wcd6d
+ text "?"
+ done
+
+_SorryNeedMoreCoinsText::
+ text "Sorry, you need"
+ line "more coins.@@"
+
+_OopsYouDontHaveEnoughRoomText::
+ text "Oops! You don't"
+ line "have enough room.@@"
+
+_OhFineThenText::
+ text "Oh, fine then.@@"
+
+_GetDexRatedText::
+ text "Want to get your"
+ line "#DEX rated?"
+ done
+
+_ClosedOaksPCText::
+ text "Closed link to"
+ line "PROF.OAK's PC.@@"
+
+_AccessedOaksPCText::
+ text "Accessed PROF."
+ line "OAK's PC."
+
+ para "Accessed #DEX"
+ line "Rating System."
+ prompt
+
+_WhereWouldYouLikeText::
+ text "Where would you"
+ line "like to go?"
+ done
+
+_PleaseWaitText::
+ text "OK, please wait"
+ line "just a moment."
+ done
+
+_LinkCanceledText::
+ text "The link was"
+ line "canceled."
+ done
+
+_OakSpeechText1::
+ text "Hello there!"
+ line "Welcome to the"
+ cont "world of #MON!"
+
+ para "My name is OAK!"
+ line "People call me"
+ cont "the #MON PROF!"
+ prompt
+
+_OakSpeechText2A::
+ text "This world is"
+ line "inhabited by"
+ cont "creatures called"
+ cont "#MON!@@"
+
+_OakSpeechText2B::
+ text $51,"For some people,"
+ line "#MON are"
+ cont "pets. Others use"
+ cont "them for fights."
+
+ para "Myself..."
+
+ para "I study #MON"
+ line "as a profession."
+ prompt
+
+_IntroducePlayerText::
+ text "First, what is"
+ line "your name?"
+ prompt
+
+_IntroduceRivalText::
+ text "This is my grand-"
+ line "son. He's been"
+ cont "your rival since"
+ cont "you were a baby."
+
+ para "...Erm, what is"
+ line "his name again?"
+ prompt
+
+_OakSpeechText3::
+ text "<PLAYER>!"
+
+ para "Your very own"
+ line "#MON legend is"
+ cont "about to unfold!"
+
+ para "A world of dreams"
+ line "and adventures"
+ cont "with #MON"
+ cont "awaits! Let's go!"
+ done
+
+_DoYouWantToNicknameText::
+ text "Do you want to"
+ line "give a nickname"
+ cont "to @"
+ TX_RAM wcd6d
+ text "?"
+ done
+
+_YourNameIsText::
+ text "Right! So your"
+ line "name is <PLAYER>!"
+ prompt
+
+_HisNameIsText::
+ text "That's right! I"
+ line "remember now! His"
+ cont "name is <RIVAL>!"
+ prompt
+
+_WillBeTradedText::
+ TX_RAM wNameOfPlayerMonToBeTraded
+ text " and"
+ line "@"
+ TX_RAM wcd6d
+ text " will"
+ cont "be traded."
+ done
+
+_Char00Text::
+ TX_NUM hSpriteIndexOrTextID,1,2
+ text " ERROR."
+ done
+
+_Char55Text::
+ text $4B,"@@"
--- /dev/null
+++ b/data/text/text_3.asm
@@ -1,0 +1,324 @@
+_FileDataDestroyedText::
+ text "The file data is"
+ line "destroyed!"
+ prompt
+
+_WouldYouLikeToSaveText::
+ text "Would you like to"
+ line "SAVE the game?"
+ done
+
+_GameSavedText::
+ text "<PLAYER> saved"
+ line "the game!"
+ done
+
+_OlderFileWillBeErasedText::
+ text "The older file"
+ line "will be erased to"
+ cont "save. Okay?"
+ done
+
+_WhenYouChangeBoxText::
+ text "When you change a"
+ line "#MON BOX, data"
+ cont "will be saved."
+
+ para "Is that okay?"
+ done
+
+_ChooseABoxText::
+ text "Choose a"
+ line "<pkmn> BOX.@@"
+
+_EvolvedText::
+ TX_RAM wcf4b
+ text " evolved"
+ done
+
+_IntoText::
+ text ""
+ line "into @"
+ TX_RAM wcd6d
+ text "!"
+ done
+
+_StoppedEvolvingText::
+ text "Huh? @"
+ TX_RAM wcf4b
+ text ""
+ line "stopped evolving!"
+ prompt
+
+_IsEvolvingText::
+ text "What? @"
+ TX_RAM wcf4b
+ text ""
+ line "is evolving!"
+ done
+
+_FellAsleepText::
+ text "<TARGET>"
+ line "fell asleep!"
+ prompt
+
+_AlreadyAsleepText::
+ text "<TARGET>'s"
+ line "already asleep!"
+ prompt
+
+_PoisonedText::
+ text "<TARGET>"
+ line "was poisoned!"
+ prompt
+
+_BadlyPoisonedText::
+ text "<TARGET>'s"
+ line "badly poisoned!"
+ prompt
+
+_BurnedText::
+ text "<TARGET>"
+ line "was burned!"
+ prompt
+
+_FrozenText::
+ text "<TARGET>"
+ line "was frozen solid!"
+ prompt
+
+_FireDefrostedText::
+ text "Fire defrosted"
+ line "<TARGET>!"
+ prompt
+
+_MonsStatsRoseText::
+ text "<USER>'s"
+ line "@"
+ TX_RAM wcf4b
+ text "@@"
+
+_GreatlyRoseText::
+ text $4c, "greatly@@"
+
+_RoseText::
+ text " rose!"
+ prompt
+
+_MonsStatsFellText::
+ text "<TARGET>'s"
+ line "@"
+ TX_RAM wcf4b
+ text "@@"
+
+_GreatlyFellText::
+ text $4c, "greatly@@"
+
+_FellText::
+ text " fell!"
+ prompt
+
+_RanFromBattleText::
+ text "<USER>"
+ line "ran from battle!"
+ prompt
+
+_RanAwayScaredText::
+ text "<TARGET>"
+ line "ran away scared!"
+ prompt
+
+_WasBlownAwayText::
+ text "<TARGET>"
+ line "was blown away!"
+ prompt
+
+_ChargeMoveEffectText::
+ text "<USER>@@"
+
+_MadeWhirlwindText::
+ text ""
+ line "made a whirlwind!"
+ prompt
+
+_TookInSunlightText::
+ text ""
+ line "took in sunlight!"
+ prompt
+
+_LoweredItsHeadText::
+ text ""
+ line "lowered its head!"
+ prompt
+
+_SkyAttackGlowingText::
+ text ""
+ line "is glowing!"
+ prompt
+
+_FlewUpHighText::
+ text ""
+ line "flew up high!"
+ prompt
+
+_DugAHoleText::
+ text ""
+ line "dug a hole!"
+ prompt
+
+_BecameConfusedText::
+ text "<TARGET>"
+ line "became confused!"
+ prompt
+
+_MimicLearnedMoveText::
+ text "<USER>"
+ line "learned"
+ cont "@"
+ TX_RAM wcd6d
+ text "!"
+ prompt
+
+_MoveWasDisabledText::
+ text "<TARGET>'s"
+ line "@"
+ TX_RAM wcd6d
+ text " was"
+ cont "disabled!"
+ prompt
+
+_NothingHappenedText::
+ text "Nothing happened!"
+ prompt
+
+_NoEffectText::
+ text "No effect!"
+ prompt
+
+_ButItFailedText::
+ text "But, it failed! "
+ prompt
+
+_DidntAffectText::
+ text "It didn't affect"
+ line "<TARGET>!"
+ prompt
+
+_IsUnaffectedText::
+ text "<TARGET>"
+ line "is unaffected!"
+ prompt
+
+_ParalyzedMayNotAttackText::
+ text "<TARGET>'s"
+ line "paralyzed! It may"
+ cont "not attack!"
+ prompt
+
+_SubstituteText::
+ text "It created a"
+ line "SUBSTITUTE!"
+ prompt
+
+_HasSubstituteText::
+ text "<USER>"
+ line "has a SUBSTITUTE!"
+ prompt
+
+_TooWeakSubstituteText::
+ text "Too weak to make"
+ line "a SUBSTITUTE!"
+ prompt
+
+_CoinsScatteredText::
+ text "Coins scattered"
+ line "everywhere!"
+ prompt
+
+_GettingPumpedText::
+ text "<USER>'s"
+ line "getting pumped!"
+ prompt
+
+_WasSeededText::
+ text "<TARGET>"
+ line "was seeded!"
+ prompt
+
+_EvadedAttackText::
+ text "<TARGET>"
+ line "evaded attack!"
+ prompt
+
+_HitWithRecoilText::
+ text "<USER>'s"
+ line "hit with recoil!"
+ prompt
+
+_ConvertedTypeText::
+ text "Converted type to"
+ line "<TARGET>'s!"
+ prompt
+
+_StatusChangesEliminatedText::
+ text "All STATUS changes"
+ line "are eliminated!"
+ prompt
+
+_StartedSleepingEffect::
+ text "<USER>"
+ line "started sleeping!"
+ done
+
+_FellAsleepBecameHealthyText::
+ text "<USER>"
+ line "fell asleep and"
+ cont "became healthy!"
+ done
+
+_RegainedHealthText::
+ text "<USER>"
+ line "regained health!"
+ prompt
+
+_TransformedText::
+ text "<USER>"
+ line "transformed into"
+ cont "@"
+ TX_RAM wcd6d
+ text "!"
+ prompt
+
+_LightScreenProtectedText::
+ text "<USER>'s"
+ line "protected against"
+ cont "special attacks!"
+ prompt
+
+_ReflectGainedArmorText::
+ text "<USER>"
+ line "gained armor!"
+ prompt
+
+_ShroudedInMistText::
+ text "<USER>'s"
+ line "shrouded in mist!"
+ prompt
+
+_SuckedHealthText::
+ text "Sucked health from"
+ line "<TARGET>!"
+ prompt
+
+_DreamWasEatenText::
+ text "<TARGET>'s"
+ line "dream was eaten!"
+ prompt
+
+_TradeCenterText1::
+ text "!"
+ done
+
+_ColosseumText1::
+ text "!"
+ done
--- /dev/null
+++ b/data/text/text_4.asm
@@ -1,0 +1,217 @@
+_PokemartGreetingText::
+ text "Hi there!"
+ next "May I help you?"
+ done
+
+_PokemonFaintedText::
+ TX_RAM wcd6d
+ text ""
+ line "fainted!"
+ done
+
+_PlayerBlackedOutText::
+ text "<PLAYER> is out of"
+ line "useable #MON!"
+
+ para "<PLAYER> blacked"
+ line "out!"
+ prompt
+
+_RepelWoreOffText::
+ text "REPEL's effect"
+ line "wore off."
+ done
+
+_PokemartBuyingGreetingText::
+ text "Take your time."
+ done
+
+_PokemartTellBuyPriceText::
+ TX_RAM wcf4b
+ text "?"
+ line "That will be"
+ cont "¥@"
+ TX_BCD hMoney, 3 | LEADING_ZEROES | LEFT_ALIGN
+ text ". OK?"
+ done
+
+_PokemartBoughtItemText::
+ text "Here you are!"
+ line "Thank you!"
+ prompt
+
+_PokemartNotEnoughMoneyText::
+ text "You don't have"
+ line "enough money."
+ prompt
+
+_PokemartItemBagFullText::
+ text "You can't carry"
+ line "any more items."
+ prompt
+
+_PokemonSellingGreetingText::
+ text "What would you"
+ line "like to sell?"
+ done
+
+_PokemartTellSellPriceText::
+ text "I can pay you"
+ line "¥@"
+ TX_BCD hMoney, 3 | LEADING_ZEROES | LEFT_ALIGN
+ text " for that."
+ done
+
+_PokemartItemBagEmptyText::
+ text "You don't have"
+ line "anything to sell."
+ prompt
+
+_PokemartUnsellableItemText::
+ text "I can't put a"
+ line "price on that."
+ prompt
+
+_PokemartThankYouText::
+ text "Thank you!"
+ done
+
+_PokemartAnythingElseText::
+ text "Is there anything"
+ line "else I can do?"
+ done
+
+_LearnedMove1Text::
+ TX_RAM wLearnMoveMonName
+ text " learned"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_WhichMoveToForgetText::
+ text "Which move should"
+ next "be forgotten?"
+ done
+
+_AbandonLearningText::
+ text "Abandon learning"
+ line "@"
+ TX_RAM wcf4b
+ text "?"
+ done
+
+_DidNotLearnText::
+ TX_RAM wLearnMoveMonName
+ text ""
+ line "did not learn"
+ cont "@"
+ TX_RAM wcf4b
+ text "!"
+ prompt
+
+_TryingToLearnText::
+ TX_RAM wLearnMoveMonName
+ text " is"
+ line "trying to learn"
+ cont "@"
+ TX_RAM wcf4b
+ text "!"
+
+ para "But, @"
+ TX_RAM wLearnMoveMonName
+ text ""
+ line "can't learn more"
+ cont "than 4 moves!"
+
+ para "Delete an older"
+ line "move to make room"
+ cont "for @"
+ TX_RAM wcf4b
+ text "?"
+ done
+
+_OneTwoAndText::
+ text "1, 2 and...@@"
+
+_PoofText::
+ text " Poof!@@"
+
+_ForgotAndText::
+ text ""
+ para "@"
+ TX_RAM wLearnMoveMonName
+ text " forgot"
+ line "@"
+ TX_RAM wcd6d
+ text "!"
+
+ para "And..."
+ prompt
+
+_HMCantDeleteText::
+ text "HM techniques"
+ line "can't be deleted!"
+ prompt
+
+_PokemonCenterWelcomeText::
+ text "Welcome to our"
+ line "#MON CENTER!"
+
+ para "We heal your"
+ line "#MON back to"
+ cont "perfect health!"
+ prompt
+
+_ShallWeHealYourPokemonText::
+ text "Shall we heal your"
+ line "#MON?"
+ done
+
+_NeedYourPokemonText::
+ text "OK. We'll need"
+ line "your #MON."
+ done
+
+_PokemonFightingFitText::
+ text "Thank you!"
+ line "Your #MON are"
+ cont "fighting fit!"
+ prompt
+
+_PokemonCenterFarewellText::
+ text "We hope to see"
+ line "you again!"
+ done
+
+_CableClubNPCAreaReservedFor2FriendsLinkedByCableText::
+ text "This area is"
+ line "reserved for 2"
+ cont "friends who are"
+ cont "linked by cable."
+ done
+
+_CableClubNPCWelcomeText::
+ text "Welcome to the"
+ line "Cable Club!"
+ done
+
+_CableClubNPCPleaseApplyHereHaveToSaveText::
+ text "Please apply here."
+
+ para "Before opening"
+ line "the link, we have"
+ cont "to save the game."
+ done
+
+_CableClubNPCPleaseWaitText::
+ text "Please wait.@@"
+
+_CableClubNPCLinkClosedBecauseOfInactivityText::
+ text "The link has been"
+ line "closed because of"
+ cont "inactivity."
+
+ para "Please contact"
+ line "your friend and"
+ cont "come again!"
+ done
--- /dev/null
+++ b/data/text/text_5.asm
@@ -1,0 +1,102 @@
+_CableClubNPCPleaseComeAgainText::
+ text "Please come again!"
+ done
+
+_CableClubNPCMakingPreparationsText::
+ text "We're making"
+ line "preparations."
+ cont "Please wait."
+ done
+
+_UsedStrengthText::
+ TX_RAM wcd6d
+ text " used"
+ line "STRENGTH.@@"
+
+_CanMoveBouldersText::
+ TX_RAM wcd6d
+ text " can"
+ line "move boulders."
+ prompt
+
+_CurrentTooFastText::
+ text "The current is"
+ line "much too fast!"
+ prompt
+
+_CyclingIsFunText::
+ text "Cycling is fun!"
+ line "Forget SURFing!"
+ prompt
+
+_FlashLightsAreaText::
+ text "A blinding FLASH"
+ line "lights the area!"
+ prompt
+
+_WarpToLastPokemonCenterText::
+ text "Warp to the last"
+ line "#MON CENTER."
+ done
+
+_CannotUseTeleportNowText::
+ TX_RAM wcd6d
+ text " can't"
+ line "use TELEPORT now."
+ prompt
+
+_CannotFlyHereText::
+ TX_RAM wcd6d
+ text " can't"
+ line "FLY here."
+ prompt
+
+_NotHealthyEnoughText::
+ text "Not healthy"
+ line "enough."
+ prompt
+
+_NewBadgeRequiredText::
+ text "No! A new BADGE"
+ line "is required."
+ prompt
+
+_CannotUseItemsHereText::
+ text "You can't use items"
+ line "here."
+ prompt
+
+_CannotGetOffHereText::
+ text "You can't get off"
+ line "here."
+ prompt
+
+_GotMonText::
+ text "<PLAYER> got"
+ line "@"
+ TX_RAM wcd6d
+ text "!@@"
+
+_SentToBoxText::
+ text "There's no more"
+ line "room for #MON!"
+ cont "@"
+ TX_RAM wBoxMonNicks
+ text " was"
+ cont "sent to #MON"
+ cont "BOX @"
+ TX_RAM wcf4b
+ text " on PC!"
+ done
+
+_BoxIsFullText::
+ text "There's no more"
+ line "room for #MON!"
+
+ para "The #MON BOX"
+ line "is full and can't"
+ cont "accept any more!"
+
+ para "Change the BOX at"
+ line "a #MON CENTER!"
+ done
--- /dev/null
+++ b/data/text/text_6.asm
@@ -1,0 +1,228 @@
+_ItemUseBallText00::
+ text "It dodged the"
+ line "thrown BALL!"
+
+ para "This #MON"
+ line "can't be caught!"
+ prompt
+
+_ItemUseBallText01::
+ text "You missed the"
+ line "#MON!"
+ prompt
+
+_ItemUseBallText02::
+ text "Darn! The #MON"
+ line "broke free!"
+ prompt
+
+_ItemUseBallText03::
+ text "Aww! It appeared"
+ line "to be caught! "
+ prompt
+
+_ItemUseBallText04::
+ text "Shoot! It was so"
+ line "close too!"
+ prompt
+
+_ItemUseBallText05::
+ text "All right!"
+ line "@"
+ TX_RAM wEnemyMonNick
+ text " was"
+ cont "caught!@@"
+
+_ItemUseBallText07::
+ TX_RAM wBoxMonNicks
+ text " was"
+ line "transferred to"
+ cont "BILL's PC!"
+ prompt
+
+_ItemUseBallText08::
+ TX_RAM wBoxMonNicks
+ text " was"
+ line "transferred to"
+ cont "someone's PC!"
+ prompt
+
+_ItemUseBallText06::
+ text "New #DEX data"
+ line "will be added for"
+ cont "@"
+ TX_RAM wEnemyMonNick
+ text "!@@"
+
+_SurfingGotOnText::
+ text "<PLAYER> got on"
+ line "@"
+ TX_RAM wcd6d
+ text "!"
+ prompt
+
+_SurfingNoPlaceToGetOffText::
+ text "There's no place"
+ line "to get off!"
+ prompt
+
+_VitaminStatRoseText::
+ TX_RAM wcd6d
+ text "'s"
+ line "@"
+ TX_RAM wcf4b
+ text " rose."
+ prompt
+
+_VitaminNoEffectText::
+ text "It won't have any"
+ line "effect."
+ prompt
+
+_ThrewBaitText::
+ text "<PLAYER> threw"
+ line "some BAIT."
+ done
+
+_ThrewRockText::
+ text "<PLAYER> threw a"
+ line "ROCK."
+ done
+
+_PlayedFluteNoEffectText::
+ text "Played the #"
+ line "FLUTE."
+
+ para "Now, that's a"
+ line "catchy tune!"
+ prompt
+
+_FluteWokeUpText::
+ text "All sleeping"
+ line "#MON woke up."
+ prompt
+
+_PlayedFluteHadEffectText::
+ text "<PLAYER> played the"
+ line "# FLUTE.@@"
+
+_CoinCaseNumCoinsText::
+ text "Coins"
+ line "@"
+ TX_BCD wPlayerCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
+ text " "
+ prompt
+
+_ItemfinderFoundItemText::
+ text "Yes! ITEMFINDER"
+ line "indicates there's"
+ cont "an item nearby."
+ prompt
+
+_ItemfinderFoundNothingText::
+ text "Nope! ITEMFINDER"
+ line "isn't responding."
+ prompt
+
+_RaisePPWhichTechniqueText::
+ text "Raise PP of which"
+ line "technique?"
+ done
+
+_RestorePPWhichTechniqueText::
+ text "Restore PP of"
+ line "which technique?"
+ done
+
+_PPMaxedOutText::
+ TX_RAM wcf4b
+ text "'s PP"
+ line "is maxed out."
+ prompt
+
+_PPIncreasedText::
+ TX_RAM wcf4b
+ text "'s PP"
+ line "increased."
+ prompt
+
+_PPRestoredText::
+ text "PP was restored."
+ prompt
+
+_BootedUpTMText::
+ text "Booted up a TM!"
+ prompt
+
+_BootedUpHMText::
+ text "Booted up an HM!"
+ prompt
+
+_TeachMachineMoveText::
+ text "It contained"
+ line "@"
+ TX_RAM wcf4b
+ text "!"
+
+ para "Teach @"
+ TX_RAM wcf4b
+ text ""
+ line "to a #MON?"
+ done
+
+_MonCannotLearnMachineMoveText::
+ TX_RAM wcd6d
+ text " is not"
+ line "compatible with"
+ cont "@"
+ TX_RAM wcf4b
+ text "."
+
+ para "It can't learn"
+ line "@"
+ TX_RAM wcf4b
+ text "."
+ prompt
+
+_ItemUseNotTimeText::
+ text "OAK: <PLAYER>!"
+ line "This isn't the"
+ cont "time to use that! "
+ prompt
+
+_ItemUseNotYoursToUseText::
+ text "This isn't yours"
+ line "to use!"
+ prompt
+
+_ItemUseNoEffectText::
+ text "It won't have any"
+ line "effect."
+ prompt
+
+_ThrowBallAtTrainerMonText1::
+ text "The trainer"
+ line "blocked the BALL!"
+ prompt
+
+_ThrowBallAtTrainerMonText2::
+ text "Don't be a thief!"
+ prompt
+
+_NoCyclingAllowedHereText::
+ text "No cycling"
+ next "allowed here."
+ prompt
+
+_NoSurfingHereText::
+ text "No SURFing on"
+ line "@"
+ TX_RAM wcd6d
+ text " here!"
+ prompt
+
+_BoxFullCannotThrowBallText::
+ text "The #MON BOX"
+ line "is full! Can't"
+ cont "use that item!"
+ prompt
--- /dev/null
+++ b/data/text/text_7.asm
@@ -1,0 +1,196 @@
+_ItemUseText001::
+ text "<PLAYER> used@@"
+
+_ItemUseText002::
+ TX_RAM wcf4b
+ text "!"
+ done
+
+_GotOnBicycleText1::
+ text "<PLAYER> got on the@@"
+
+_GotOnBicycleText2::
+ TX_RAM wcf4b
+ text "!"
+ prompt
+
+_GotOffBicycleText1::
+ text "<PLAYER> got off@@"
+
+_GotOffBicycleText2::
+ text "the @"
+ TX_RAM wcf4b
+ text "."
+ prompt
+
+_ThrewAwayItemText::
+ text "Threw away"
+ line "@"
+ TX_RAM wcd6d
+ text "."
+ prompt
+
+_IsItOKToTossItemText::
+ text "Is it OK to toss"
+ line "@"
+ TX_RAM wcf4b
+ text "?"
+ prompt
+
+_TooImportantToTossText::
+ text "That's too impor-"
+ line "tant to toss!"
+ prompt
+
+_AlreadyKnowsText::
+ TX_RAM wcd6d
+ text " knows"
+ line "@"
+ TX_RAM wcf4b
+ text "!"
+ prompt
+
+_ConnectCableText::
+ text "Okay, connect the"
+ line "cable like so!"
+ prompt
+
+_TradedForText::
+ text "<PLAYER> traded"
+ line "@"
+ TX_RAM wInGameTradeGiveMonName
+ text " for"
+ cont "@"
+ TX_RAM wInGameTradeReceiveMonName
+ text "!@@"
+
+_WannaTrade1Text::
+ text "I'm looking for"
+ line "@"
+ TX_RAM wInGameTradeGiveMonName
+ text "! Wanna"
+
+ para "trade one for"
+ line "@"
+ TX_RAM wInGameTradeReceiveMonName
+ text "? "
+ done
+
+_NoTrade1Text::
+ text "Awww!"
+ line "Oh well..."
+ done
+
+_WrongMon1Text::
+ text "What? That's not"
+ line "@"
+ TX_RAM wInGameTradeGiveMonName
+ text "!"
+
+ para "If you get one,"
+ line "come back here!"
+ done
+
+_Thanks1Text::
+ text "Hey thanks!"
+ done
+
+_AfterTrade1Text::
+ text "Isn't my old"
+ line "@"
+ TX_RAM wInGameTradeReceiveMonName
+ text " great?"
+ done
+
+_WannaTrade2Text::
+ text "Hello there! Do"
+ line "you want to trade"
+
+ para "your @"
+ TX_RAM wInGameTradeGiveMonName
+ text ""
+ line "for @"
+ TX_RAM wInGameTradeReceiveMonName
+ text "?"
+ done
+
+_NoTrade2Text::
+ text "Well, if you"
+ line "don't want to..."
+ done
+
+_WrongMon2Text::
+ text "Hmmm? This isn't"
+ line "@"
+ TX_RAM wInGameTradeGiveMonName
+ text "."
+
+ para "Think of me when"
+ line "you get one."
+ done
+
+_Thanks2Text::
+ text "Thanks!"
+ done
+
+_AfterTrade2Text::
+ text "The @"
+ TX_RAM wInGameTradeGiveMonName
+ text " you"
+ line "traded to me"
+
+ para "went and evolved!"
+ done
+
+_WannaTrade3Text::
+ text "Hi! Do you have"
+ line "@"
+ TX_RAM wInGameTradeGiveMonName
+ text "?"
+
+ para "Want to trade it"
+ line "for @"
+ TX_RAM wInGameTradeReceiveMonName
+ text "?"
+ done
+
+_NoTrade3Text::
+ text "That's too bad."
+ done
+
+_WrongMon3Text::
+ text "...This is no"
+ line "@"
+ TX_RAM wInGameTradeGiveMonName
+ text "."
+
+ para "If you get one,"
+ line "trade it with me!"
+ done
+
+_Thanks3Text::
+ text "Thanks pal!"
+ done
+
+_AfterTrade3Text::
+ text "How is my old"
+ line "@"
+ TX_RAM wInGameTradeReceiveMonName
+ text "?"
+
+ para "My @"
+ TX_RAM wInGameTradeGiveMonName
+ text " is"
+ line "doing great!"
+ done
+
+_NothingToCutText::
+ text "There isn't"
+ line "anything to CUT!"
+ prompt
+
+_UsedCutText::
+ TX_RAM wcd6d
+ text " hacked"
+ line "away with CUT!"
+ prompt
--- /dev/null
+++ b/data/text/unused_names.asm
@@ -1,0 +1,20 @@
+UnusedNames::
+ db "かみなりバッヂ@" ; THUNDER BADGE
+ db "かいがらバッヂ@" ; SHELL BADGE
+ db "おじぞうバッヂ@" ; JIZOU BADGE
+ db "はやぶさバッヂ@" ; FALCON BADGE
+ db "ひんやりバッヂ@" ; CHILL BADGE
+ db "なかよしバッヂ@" ; FRIENDSHIP BADGE
+ db "バラバッヂ@" ; ROSE BADGE
+ db "ひのたまバッヂ@" ; FIREBALL BADGE
+ db "ゴールドバッヂ@" ; GOLD BADGE
+ db "たまご@" ; EGG
+ db "ひよこ@" ; CHICK
+ db "ブロンズ@" ; BRONZE
+ db "シルバー@" ; SILVER
+ db "ゴールド@" ; GOLD
+ db "プチキャプテン@" ; PETIT CAPTAIN
+ db "キャプテン@" ; CAPTAIN
+ db "プチマスター@" ; PETIT MASTER
+ db "マスター@" ; MASTER
+ db "エクセレント" ; EXCELLENT
--- /dev/null
+++ b/data/text_predef_pointers.asm
@@ -1,0 +1,71 @@
+add_tx_pre: MACRO
+\1_id:: dw \1
+ENDM
+
+TextPredefs::
+ add_tx_pre CardKeySuccessText ; 01
+ add_tx_pre CardKeyFailText ; 02
+ add_tx_pre RedBedroomPCText ; 03
+ add_tx_pre RedBedroomSNESText ; 04
+ add_tx_pre PushStartText ; 05
+ add_tx_pre SaveOptionText ; 06
+ add_tx_pre StrengthsAndWeaknessesText ; 07
+ add_tx_pre OakLabEmailText ; 08
+ add_tx_pre AerodactylFossilText ; 09
+ add_tx_pre Route15UpstairsBinocularsText ; 0A
+ add_tx_pre KabutopsFossilText ; 0B
+ add_tx_pre GymStatueText1 ; 0C
+ add_tx_pre GymStatueText2 ; 0D
+ add_tx_pre BookcaseText ; 0E
+ add_tx_pre ViridianCityPokecenterBenchGuyText ; 0F
+ add_tx_pre PewterCityPokecenterBenchGuyText ; 10
+ add_tx_pre CeruleanCityPokecenterBenchGuyText ; 11
+ add_tx_pre LavenderCityPokecenterBenchGuyText ; 12
+ add_tx_pre VermilionCityPokecenterBenchGuyText ; 13
+ add_tx_pre CeladonCityPokecenterBenchGuyText ; 14
+ add_tx_pre CeladonCityHotelText ; 15
+ add_tx_pre FuchsiaCityPokecenterBenchGuyText ; 16
+ add_tx_pre CinnabarIslandPokecenterBenchGuyText ; 17
+ add_tx_pre SaffronCityPokecenterBenchGuyText ; 18
+ add_tx_pre MtMoonPokecenterBenchGuyText ; 19
+ add_tx_pre RockTunnelPokecenterBenchGuyText ; 1A
+ add_tx_pre UnusedBenchGuyText1 ; 1B XXX unused
+ add_tx_pre UnusedBenchGuyText2 ; 1C XXX unused
+ add_tx_pre UnusedBenchGuyText3 ; 1D XXX unused
+ add_tx_pre UnusedPredefText ; 1E XXX unused
+ add_tx_pre PokemonCenterPCText ; 1F
+ add_tx_pre ViridianSchoolNotebook ; 20
+ add_tx_pre ViridianSchoolBlackboard ; 21
+ add_tx_pre JustAMomentText ; 22
+ add_tx_pre OpenBillsPCText ; 23
+ add_tx_pre FoundHiddenItemText ; 24
+ add_tx_pre HiddenItemBagFullText ; 25 XXX unused
+ add_tx_pre VermilionGymTrashText ; 26
+ add_tx_pre IndigoPlateauHQText ; 27
+ add_tx_pre GameCornerOutOfOrderText ; 28
+ add_tx_pre GameCornerOutToLunchText ; 29
+ add_tx_pre GameCornerSomeonesKeysText ; 2A
+ add_tx_pre FoundHiddenCoinsText ; 2B
+ add_tx_pre DroppedHiddenCoinsText ; 2C
+ add_tx_pre BillsHouseMonitorText ; 2D
+ add_tx_pre BillsHouseInitiatedText ; 2E
+ add_tx_pre BillsHousePokemonList ; 2F
+ add_tx_pre MagazinesText ; 30
+ add_tx_pre CinnabarGymQuiz ; 31
+ add_tx_pre GameCornerNoCoinsText ; 32
+ add_tx_pre GameCornerCoinCaseText ; 33
+ add_tx_pre LinkCableHelp ; 34
+ add_tx_pre TMNotebook ; 35
+ add_tx_pre FightingDojoText ; 36
+ add_tx_pre EnemiesOnEverySideText ; 37
+ add_tx_pre WhatGoesAroundComesAroundText ; 38
+ add_tx_pre NewBicycleText ; 39
+ add_tx_pre IndigoPlateauStatues ; 3A
+ add_tx_pre VermilionGymTrashSuccessText1 ; 3B
+ add_tx_pre VermilionGymTrashSuccessText2 ; 3C XXX unused
+ add_tx_pre VermilionGymTrashSuccessText3 ; 3D
+ add_tx_pre VermilionGymTrashFailText ; 3E
+ add_tx_pre TownMapText ; 3F
+ add_tx_pre BookOrSculptureText ; 40
+ add_tx_pre ElevatorText ; 41
+ add_tx_pre PokemonStuffText ; 42
--- a/data/tileset_headers.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-Tilesets:
- tileset Overworld_Block, Overworld_GFX, Overworld_Coll, $FF,$FF,$FF, $52, OUTDOOR
- tileset RedsHouse1_Block, RedsHouse1_GFX, RedsHouse1_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset Mart_Block, Mart_GFX, Mart_Coll, $18,$19,$1E, $FF, INDOOR
- tileset Forest_Block, Forest_GFX, Forest_Coll, $FF,$FF,$FF, $20, CAVE
- tileset RedsHouse2_Block, RedsHouse2_GFX, RedsHouse2_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset Dojo_Block, Dojo_GFX, Dojo_Coll, $3A,$FF,$FF, $FF, OUTDOOR
- tileset Pokecenter_Block, Pokecenter_GFX, Pokecenter_Coll, $18,$19,$1E, $FF, INDOOR
- tileset Gym_Block, Gym_GFX, Gym_Coll, $3A,$FF,$FF, $FF, OUTDOOR
- tileset House_Block, House_GFX, House_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset ForestGate_Block, ForestGate_GFX, ForestGate_Coll, $17,$32,$FF, $FF, INDOOR
- tileset Museum_Block, Museum_GFX, Museum_Coll, $17,$32,$FF, $FF, INDOOR
- tileset Underground_Block, Underground_GFX, Underground_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset Gate_Block, Gate_GFX, Gate_Coll, $17,$32,$FF, $FF, INDOOR
- tileset Ship_Block, Ship_GFX, Ship_Coll, $FF,$FF,$FF, $FF, CAVE
- tileset ShipPort_Block, ShipPort_GFX, ShipPort_Coll, $FF,$FF,$FF, $FF, CAVE
- tileset Cemetery_Block, Cemetery_GFX, Cemetery_Coll, $12,$FF,$FF, $FF, INDOOR
- tileset Interior_Block, Interior_GFX, Interior_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset Cavern_Block, Cavern_GFX, Cavern_Coll, $FF,$FF,$FF, $FF, CAVE
- tileset Lobby_Block, Lobby_GFX, Lobby_Coll, $15,$36,$FF, $FF, INDOOR
- tileset Mansion_Block, Mansion_GFX, Mansion_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset Lab_Block, Lab_GFX, Lab_Coll, $FF,$FF,$FF, $FF, INDOOR
- tileset Club_Block, Club_GFX, Club_Coll, $07,$17,$FF, $FF, INDOOR
- tileset Facility_Block, Facility_GFX, Facility_Coll, $12,$FF,$FF, $FF, CAVE
- tileset Plateau_Block, Plateau_GFX, Plateau_Coll, $FF,$FF,$FF, $45, CAVE
--- /dev/null
+++ b/data/tilesets/bike_riding_tilesets.asm
@@ -1,0 +1,2 @@
+BikeRidingTilesets::
+ db OVERWORLD, FOREST, UNDERGROUND, SHIP_PORT, CAVERN, $FF
--- /dev/null
+++ b/data/tilesets/bookshelf_tile_ids.asm
@@ -1,0 +1,37 @@
+; format: db tileset id, bookshelf tile id, text id
+BookshelfTileIDs:
+ db PLATEAU, $30
+ db_tx_pre IndigoPlateauStatues
+ db HOUSE, $3D
+ db_tx_pre TownMapText
+ db HOUSE, $1E
+ db_tx_pre BookOrSculptureText
+ db MANSION, $32
+ db_tx_pre BookOrSculptureText
+ db REDS_HOUSE_1, $32
+ db_tx_pre BookOrSculptureText
+ db LAB, $28
+ db_tx_pre BookOrSculptureText
+ db LOBBY, $16
+ db_tx_pre ElevatorText
+ db GYM, $1D
+ db_tx_pre BookOrSculptureText
+ db DOJO, $1D
+ db_tx_pre BookOrSculptureText
+ db GATE, $22
+ db_tx_pre BookOrSculptureText
+ db MART, $54
+ db_tx_pre PokemonStuffText
+ db MART, $55
+ db_tx_pre PokemonStuffText
+ db POKECENTER, $54
+ db_tx_pre PokemonStuffText
+ db POKECENTER, $55
+ db_tx_pre PokemonStuffText
+ db LOBBY, $50
+ db_tx_pre PokemonStuffText
+ db LOBBY, $52
+ db_tx_pre PokemonStuffText
+ db SHIP, $36
+ db_tx_pre BookOrSculptureText
+ db $FF
--- /dev/null
+++ b/data/tilesets/collision_tile_ids.asm
@@ -1,0 +1,82 @@
+Underground_Coll::
+ db $0b, $0c, $13, $15, $18
+ db -1 ; end
+
+Overworld_Coll::
+ db $00, $10, $1b, $20, $21, $23, $2c, $2d, $2e, $30, $31, $33, $39, $3c, $3e, $52, $54, $58, $5b
+ db -1 ; end
+
+RedsHouse1_Coll::
+RedsHouse2_Coll::
+ db $01, $02, $03, $11, $12, $13, $14, $1c, $1a
+ db -1 ; end
+
+Mart_Coll::
+Pokecenter_Coll::
+ db $11, $1a, $1c, $3c, $5e
+ db -1 ; end
+
+Dojo_Coll::
+Gym_Coll::
+ db $11, $16, $19, $2b, $3c, $3d, $3f, $4a, $4c, $4d, $03
+ db -1 ; end
+
+Forest_Coll::
+ db $1e, $20, $2e, $30, $34, $37, $39, $3a, $40, $51, $52, $5a, $5c, $5e, $5f
+ db -1 ; end
+
+House_Coll::
+ db $01, $12, $14, $28, $32, $37, $44, $54, $5c
+ db -1 ; end
+
+ForestGate_Coll::
+Museum_Coll::
+Gate_Coll::
+ db $01, $12, $14, $1a, $1c, $37, $38, $3b, $3c, $5e
+ db -1 ; end
+
+Ship_Coll::
+ db $04, $0d, $17, $1d, $1e, $23, $34, $37, $39, $4a
+ db -1 ; end
+
+ShipPort_Coll::
+ db $0a, $1a, $32, $3b
+ db -1 ; end
+
+Cemetery_Coll::
+ db $01, $10, $13, $1b, $22, $42, $52
+ db -1 ; end
+
+Interior_Coll::
+ db $04, $0f, $15, $1f, $3b, $45, $47, $55, $56
+ db -1 ; end
+
+Cavern_Coll::
+ db $05, $15, $18, $1a, $20, $21, $22, $2a, $2d, $30
+ db -1 ; end
+
+ db -1 ; unused
+
+Lobby_Coll::
+ db $14, $17, $1a, $1c, $20, $38, $45
+ db -1 ; end
+
+Mansion_Coll::
+ db $01, $05, $11, $12, $14, $1a, $1c, $2c, $53
+ db -1 ; end
+
+Lab_Coll::
+ db $0c, $26, $16, $1e, $34, $37
+ db -1 ; end
+
+Club_Coll::
+ db $0f, $1a, $1f, $26, $28, $29, $2c, $2d, $2e, $2f, $41
+ db -1 ; end
+
+Facility_Coll::
+ db $01, $10, $11, $13, $1b, $20, $21, $22, $30, $31, $32, $42, $43, $48, $52, $55, $58, $5e
+ db -1 ; end
+
+Plateau_Coll::
+ db $1b, $23, $2c, $2d, $3b, $45
+ db -1 ; end
--- /dev/null
+++ b/data/tilesets/cut_tree_blocks.asm
@@ -1,0 +1,13 @@
+CutTreeBlockSwaps:
+; first byte = tileset block containing the cut tree
+; second byte = corresponding tileset block after the cut animation happens
+ db $32, $6D
+ db $33, $6C
+ db $34, $6F
+ db $35, $4C
+ db $60, $6E
+ db $0B, $0A
+ db $3C, $35
+ db $3F, $35
+ db $3D, $36
+ db $FF ; list terminator
--- /dev/null
+++ b/data/tilesets/door_tile_ids.asm
@@ -1,0 +1,48 @@
+DoorTileIDPointers:
+ dbw OVERWORLD, OverworldDoorTileIDs
+ dbw FOREST, ForestDoorTileIDs
+ dbw MART, MartDoorTileIDs
+ dbw HOUSE, HouseDoorTileIDs
+ dbw FOREST_GATE, TilesetMuseumDoorTileIDs
+ dbw MUSEUM, TilesetMuseumDoorTileIDs
+ dbw GATE, TilesetMuseumDoorTileIDs
+ dbw SHIP, ShipDoorTileIDs
+ dbw LOBBY, LobbyDoorTileIDs
+ dbw MANSION, MansionDoorTileIDs
+ dbw LAB, LabDoorTileIDs
+ dbw FACILITY, FacilityDoorTileIDs
+ dbw PLATEAU, PlateauDoorTileIDs
+ db $ff
+
+OverworldDoorTileIDs:
+ db $1B,$58,$00
+
+ForestDoorTileIDs:
+ db $3a,$00
+
+MartDoorTileIDs:
+ db $5e,$00
+
+HouseDoorTileIDs:
+ db $54,$00
+
+TilesetMuseumDoorTileIDs:
+ db $3b,$00
+
+ShipDoorTileIDs:
+ db $1e,$00
+
+LobbyDoorTileIDs:
+ db $1c,$38,$1a,$00
+
+MansionDoorTileIDs:
+ db $1a,$1c,$53,$00
+
+LabDoorTileIDs:
+ db $34,$00
+
+FacilityDoorTileIDs:
+ db $43,$58,$1b,$00
+
+PlateauDoorTileIDs:
+ db $3b,$1b,$00
--- /dev/null
+++ b/data/tilesets/dungeon_tilesets.asm
@@ -1,0 +1,2 @@
+DungeonTilesets:
+ db FOREST, MUSEUM, SHIP, CAVERN, LOBBY, MANSION, GATE, LAB, FACILITY, CEMETERY, GYM, $FF
--- /dev/null
+++ b/data/tilesets/ledge_tiles.asm
@@ -1,0 +1,11 @@
+LedgeTiles:
+ ; (player direction) (tile player standing on) (ledge tile) (input required)
+ db SPRITE_FACING_DOWN, $2C,$37,D_DOWN
+ db SPRITE_FACING_DOWN, $39,$36,D_DOWN
+ db SPRITE_FACING_DOWN, $39,$37,D_DOWN
+ db SPRITE_FACING_LEFT, $2C,$27,D_LEFT
+ db SPRITE_FACING_LEFT, $39,$27,D_LEFT
+ db SPRITE_FACING_RIGHT,$2C,$0D,D_RIGHT
+ db SPRITE_FACING_RIGHT,$2C,$1D,D_RIGHT
+ db SPRITE_FACING_RIGHT,$39,$0D,D_RIGHT
+ db $FF
--- /dev/null
+++ b/data/tilesets/tileset_headers.asm
@@ -1,0 +1,33 @@
+tileset: MACRO
+ db BANK(\2) ; BANK(GFX)
+ dw \1, \2, \3 ; Block, GFX, Coll
+ db \4, \5, \6 ; counter tiles
+ db \7 ; grass tile
+ db \8 ; permission (indoor, cave, outdoor)
+ENDM
+
+Tilesets:
+ tileset Overworld_Block, Overworld_GFX, Overworld_Coll, $FF,$FF,$FF, $52, OUTDOOR
+ tileset RedsHouse1_Block, RedsHouse1_GFX, RedsHouse1_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset Mart_Block, Mart_GFX, Mart_Coll, $18,$19,$1E, $FF, INDOOR
+ tileset Forest_Block, Forest_GFX, Forest_Coll, $FF,$FF,$FF, $20, CAVE
+ tileset RedsHouse2_Block, RedsHouse2_GFX, RedsHouse2_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset Dojo_Block, Dojo_GFX, Dojo_Coll, $3A,$FF,$FF, $FF, OUTDOOR
+ tileset Pokecenter_Block, Pokecenter_GFX, Pokecenter_Coll, $18,$19,$1E, $FF, INDOOR
+ tileset Gym_Block, Gym_GFX, Gym_Coll, $3A,$FF,$FF, $FF, OUTDOOR
+ tileset House_Block, House_GFX, House_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset ForestGate_Block, ForestGate_GFX, ForestGate_Coll, $17,$32,$FF, $FF, INDOOR
+ tileset Museum_Block, Museum_GFX, Museum_Coll, $17,$32,$FF, $FF, INDOOR
+ tileset Underground_Block, Underground_GFX, Underground_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset Gate_Block, Gate_GFX, Gate_Coll, $17,$32,$FF, $FF, INDOOR
+ tileset Ship_Block, Ship_GFX, Ship_Coll, $FF,$FF,$FF, $FF, CAVE
+ tileset ShipPort_Block, ShipPort_GFX, ShipPort_Coll, $FF,$FF,$FF, $FF, CAVE
+ tileset Cemetery_Block, Cemetery_GFX, Cemetery_Coll, $12,$FF,$FF, $FF, INDOOR
+ tileset Interior_Block, Interior_GFX, Interior_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset Cavern_Block, Cavern_GFX, Cavern_Coll, $FF,$FF,$FF, $FF, CAVE
+ tileset Lobby_Block, Lobby_GFX, Lobby_Coll, $15,$36,$FF, $FF, INDOOR
+ tileset Mansion_Block, Mansion_GFX, Mansion_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset Lab_Block, Lab_GFX, Lab_Coll, $FF,$FF,$FF, $FF, INDOOR
+ tileset Club_Block, Club_GFX, Club_Coll, $07,$17,$FF, $FF, INDOOR
+ tileset Facility_Block, Facility_GFX, Facility_Coll, $12,$FF,$FF, $FF, CAVE
+ tileset Plateau_Block, Plateau_GFX, Plateau_Coll, $FF,$FF,$FF, $45, CAVE
--- /dev/null
+++ b/data/tilesets/warp_carpet_tile_ids.asm
@@ -1,0 +1,17 @@
+WarpTileListPointers:
+ dw .facingDownWarpTiles
+ dw .facingUpWarpTiles
+ dw .facingLeftWarpTiles
+ dw .facingRightWarpTiles
+
+.facingDownWarpTiles
+ db $01,$12,$17,$3D,$04,$18,$33,$FF
+
+.facingUpWarpTiles
+ db $01,$5C,$FF
+
+.facingLeftWarpTiles
+ db $1A,$4B,$FF
+
+.facingRightWarpTiles
+ db $0F,$4E,$FF
--- /dev/null
+++ b/data/tilesets/warp_pad_hole_tile_ids.asm
@@ -1,0 +1,7 @@
+; format: db tileset id, tile id, value to be put in [wStandingOnWarpPadOrHole]
+WarpPadAndHoleData:
+ db FACILITY, $20, 1 ; warp pad
+ db FACILITY, $11, 2 ; hole
+ db CAVERN, $22, 2 ; hole
+ db INTERIOR, $55, 1 ; warp pad
+ db $FF
--- /dev/null
+++ b/data/tilesets/warp_tile_ids.asm
@@ -1,0 +1,85 @@
+WarpTileIDPointers:
+ dw OverworldWarpTileIDs
+ dw RedsHouse1WarpTileIDs
+ dw MartWarpTileIDs
+ dw ForestWarpTileIDs
+ dw RedsHouse2WarpTileIDs
+ dw DojoWarpTileIDs
+ dw PokecenterWarpTileIDs
+ dw GymWarpTileIDs
+ dw HouseWarpTileIDs
+ dw ForestGateWarpTileIDs
+ dw MuseumWarpTileIDs
+ dw UndergroundWarpTileIDs
+ dw GateWarpTileIDs
+ dw ShipWarpTileIDs
+ dw ShipPortWarpTileIDs
+ dw CemeteryWarpTileIDs
+ dw InteriorWarpTileIDs
+ dw CavernWarpTileIDs
+ dw LobbyWarpTileIDs
+ dw MansionWarpTileIDs
+ dw LabWarpTileIDs
+ dw ClubWarpTileIDs
+ dw FacilityWarpTileIDs
+ dw PlateauWarpTileIDs
+
+OverworldWarpTileIDs:
+ db $1B,$58,$FF
+
+ForestGateWarpTileIDs:
+MuseumWarpTileIDs:
+GateWarpTileIDs:
+ db $3B
+
+RedsHouse1WarpTileIDs:
+RedsHouse2WarpTileIDs:
+ db $1A,$1C,$FF
+
+MartWarpTileIDs:
+PokecenterWarpTileIDs:
+ db $5E,$FF
+
+ForestWarpTileIDs:
+ db $5A,$5C,$3A,$FF
+
+DojoWarpTileIDs:
+GymWarpTileIDs:
+ db $4A,$FF
+
+HouseWarpTileIDs:
+ db $54,$5C,$32,$FF
+
+ShipWarpTileIDs:
+ db $37,$39,$1E,$4A,$FF
+
+InteriorWarpTileIDs:
+ db $15,$55,$04,$FF
+
+CavernWarpTileIDs:
+ db $18,$1A,$22,$FF
+
+LobbyWarpTileIDs:
+ db $1A,$1C,$38,$FF
+
+MansionWarpTileIDs:
+ db $1A,$1C,$53,$FF
+
+LabWarpTileIDs:
+ db $34,$FF
+
+FacilityWarpTileIDs:
+ db $43,$58,$20
+
+CemeteryWarpTileIDs:
+ db $1B
+
+UndergroundWarpTileIDs:
+ db $13,$FF
+
+PlateauWarpTileIDs:
+ db $1B,$3B
+
+ShipPortWarpTileIDs:
+ClubWarpTileIDs:
+ db $FF
--- /dev/null
+++ b/data/tilesets/water_tilesets.asm
@@ -1,0 +1,4 @@
+; tilesets with water
+WaterTilesets:
+ db OVERWORLD, FOREST, DOJO, GYM, SHIP, SHIP_PORT, CAVERN, FACILITY, PLATEAU
+ db $ff ; terminator
--- a/data/title_mons.asm
+++ /dev/null
@@ -1,56 +1,0 @@
-TitleMons:
-; mons on the title screen are randomly chosen from here
-IF DEF(_RED)
- db CHARMANDER
- db SQUIRTLE
- db BULBASAUR
- db WEEDLE
- db NIDORAN_M
- db SCYTHER
- db PIKACHU
- db CLEFAIRY
- db RHYDON
- db ABRA
- db GASTLY
- db DITTO
- db PIDGEOTTO
- db ONIX
- db PONYTA
- db MAGIKARP
-ENDC
-IF DEF(_GREEN)
- db BULBASAUR
- db CHARMANDER
- db SQUIRTLE
- db CATERPIE
- db NIDORAN_F
- db PINSIR
- db PIKACHU
- db CLEFAIRY
- db RHYDON
- db ABRA
- db GASTLY
- db DITTO
- db PIDGEOTTO
- db ONIX
- db PONYTA
- db MAGIKARP
-ENDC
-IF DEF(_BLUE)
- db SQUIRTLE
- db CHARMANDER
- db BULBASAUR
- db MANKEY
- db HITMONLEE
- db VULPIX
- db CHANSEY
- db AERODACTYL
- db JOLTEON
- db SNORLAX
- db GLOOM
- db POLIWAG
- db DODUO
- db PORYGON
- db GENGAR
- db RAICHU
-ENDC
--- a/data/tm_prices.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-TechnicalMachinePrices:
-; In thousands (nybbles).
- dn 3, 2 ; TM_01, TM_02
- dn 2, 1 ; TM_03, TM_04
- dn 3, 4 ; TM_05, TM_06
- dn 2, 4 ; TM_07, TM_08
- dn 3, 4 ; TM_09, TM_10
- dn 2, 1 ; TM_11, TM_12
- dn 4, 5 ; TM_13, TM_14
- dn 5, 5 ; TM_15, TM_16
- dn 3, 2 ; TM_17, TM_18
- dn 3, 2 ; TM_19, TM_20
- dn 5, 5 ; TM_21, TM_22
- dn 5, 2 ; TM_23, TM_24
- dn 5, 4 ; TM_25, TM_26
- dn 5, 2 ; TM_27, TM_28
- dn 4, 1 ; TM_29, TM_30
- dn 2, 1 ; TM_31, TM_32
- dn 1, 2 ; TM_33, TM_34
- dn 4, 2 ; TM_35, TM_36
- dn 2, 5 ; TM_37, TM_38
- dn 2, 4 ; TM_39, TM_40
- dn 2, 2 ; TM_41, TM_42
- dn 5, 2 ; TM_43, TM_44
- dn 2, 4 ; TM_45, TM_46
- dn 3, 4 ; TM_47, TM_48
- dn 4, 2 ; TM_49, TM_50
--- a/data/tms.asm
+++ /dev/null
@@ -1,56 +1,0 @@
-TechnicalMachines:
- db MEGA_PUNCH
- db RAZOR_WIND
- db SWORDS_DANCE
- db WHIRLWIND
- db MEGA_KICK
- db TOXIC
- db HORN_DRILL
- db BODY_SLAM
- db TAKE_DOWN
- db DOUBLE_EDGE
- db BUBBLEBEAM
- db WATER_GUN
- db ICE_BEAM
- db BLIZZARD
- db HYPER_BEAM
- db PAY_DAY
- db SUBMISSION
- db COUNTER
- db SEISMIC_TOSS
- db RAGE
- db MEGA_DRAIN
- db SOLARBEAM
- db DRAGON_RAGE
- db THUNDERBOLT
- db THUNDER
- db EARTHQUAKE
- db FISSURE
- db DIG
- db PSYCHIC_M
- db TELEPORT
- db MIMIC
- db DOUBLE_TEAM
- db REFLECT
- db BIDE
- db METRONOME
- db SELFDESTRUCT
- db EGG_BOMB
- db FIRE_BLAST
- db SWIFT
- db SKULL_BASH
- db SOFTBOILED
- db DREAM_EATER
- db SKY_ATTACK
- db REST
- db THUNDER_WAVE
- db PSYWAVE
- db EXPLOSION
- db ROCK_SLIDE
- db TRI_ATTACK
- db SUBSTITUTE
- db CUT
- db FLY
- db SURF
- db STRENGTH
- db FLASH
--- a/data/town_map_entries.asm
+++ /dev/null
@@ -1,101 +1,0 @@
-ExternalMapEntries:
- EMAP $2,$B,PalletTownName
- EMAP $2,$8,ViridianCityName
- EMAP $2,$3,PewterCityName
- EMAP $A,$2,CeruleanCityName
- EMAP $E,$5,LavenderTownName
- EMAP $A,$9,VermilionCityName
- EMAP $7,$5,CeladonCityName
- EMAP $8,$D,FuchsiaCityName
- EMAP $2,$F,CinnabarIslandName
- EMAP $0,$2,IndigoPlateauName
- EMAP $A,$5,SaffronCityName
- EMAP $0,$0,PalletTownName ; unused
- EMAP $2,$A,Route1Name
- EMAP $2,$6,Route2Name
- EMAP $4,$3,Route3Name
- EMAP $8,$2,Route4Name
- EMAP $A,$3,Route5Name
- EMAP $A,$8,Route6Name
- EMAP $8,$5,Route7Name
- EMAP $D,$5,Route8Name
- EMAP $D,$2,Route9Name
- EMAP $E,$4,Route10Name
- EMAP $C,$9,Route11Name
- EMAP $E,$9,Route12Name
- EMAP $D,$B,Route13Name
- EMAP $B,$C,Route14Name
- EMAP $A,$D,Route15Name
- EMAP $5,$5,Route16Name
- EMAP $4,$8,Route17Name
- EMAP $6,$D,Route18Name
- EMAP $6,$F,Route19Name
- EMAP $4,$F,Route20Name
- EMAP $2,$D,Route21Name
- EMAP $0,$8,Route22Name
- EMAP $0,$6,Route23Name
- EMAP $A,$1,Route24Name
- EMAP $B,$0,Route25Name
-
-InternalMapEntries:
- IMAP OAKS_LAB, $2,$B,PalletTownName
- IMAP VIRIDIAN_GYM, $2,$8,ViridianCityName
- IMAP VIRIDIAN_FOREST_SOUTH_GATE, $2,$6,Route2Name
- IMAP VIRIDIAN_FOREST, $2,$4,ViridianForestName
- IMAP PEWTER_POKECENTER, $2,$3,PewterCityName
- IMAP MT_MOON_B2F, $6,$2,MountMoonName
- IMAP CERULEAN_MART, $A,$2,CeruleanCityName
- IMAP MT_MOON_POKECENTER, $5,$2,Route4Name
- IMAP CERULEAN_TRASHED_HOUSE_COPY, $A,$2,CeruleanCityName
- IMAP DAYCARE, $A,$4,Route5Name
- IMAP UNDERGROUND_PATH_ROUTE_6_COPY, $A,$6,Route6Name
- IMAP UNDERGROUND_PATH_ROUTE_7_COPY, $9,$5,Route7Name
- IMAP UNDERGROUND_PATH_ROUTE_8, $B,$5,Route8Name
- IMAP ROCK_TUNNEL_1F, $E,$3,RockTunnelName
- IMAP POWER_PLANT, $F,$4,PowerPlantName
- IMAP ROUTE_11_GATE_2F, $D,$9,Route11Name
- IMAP ROUTE_12_GATE_1F, $E,$7,Route12Name
- IMAP BILLS_HOUSE, $C,$0,SeaCottageName
- IMAP VERMILION_DOCK, $A,$9,VermilionCityName
- IMAP SS_ANNE_B1F_ROOMS, $9,$A,SSAnneName
- IMAP VICTORY_ROAD_1F, $0,$4,VictoryRoadName
- IMAP HALL_OF_FAME, $0,$2,PokemonLeagueName
- IMAP UNDERGROUND_PATH_NORTH_SOUTH, $A,$5,UndergroundPathName
- IMAP CHAMPIONS_ROOM, $0,$2,PokemonLeagueName
- IMAP UNDERGROUND_PATH_WEST_EAST, $A,$5,UndergroundPathName
- IMAP CELADON_HOTEL, $7,$5,CeladonCityName
- IMAP LAVENDER_POKECENTER, $E,$5,LavenderTownName
- IMAP POKEMON_TOWER_7F, $F,$5,PokemonTowerName
- IMAP LAVENDER_CUBONE_HOUSE, $E,$5,LavenderTownName
- IMAP WARDENS_HOUSE, $8,$D,FuchsiaCityName
- IMAP SAFARI_ZONE_GATE, $8,$C,SafariZoneName
- IMAP FUCHSIA_MEETING_ROOM, $8,$D,FuchsiaCityName
- IMAP SEAFOAM_ISLANDS_B4F, $5,$F,SeafoamIslandsName
- IMAP VERMILION_OLD_ROD_HOUSE, $A,$9,VermilionCityName
- IMAP FUCHSIA_GOOD_ROD_HOUSE, $8,$D,FuchsiaCityName
- IMAP POKEMON_MANSION_1F, $2,$F,PokemonMansionName
- IMAP CINNABAR_MART_COPY, $2,$F,CinnabarIslandName
- IMAP INDIGO_PLATEAU_LOBBY, $0,$2,IndigoPlateauName
- IMAP MR_PSYCHICS_HOUSE, $A,$5,SaffronCityName
- IMAP ROUTE_15_GATE_2F, $9,$D,Route15Name
- IMAP ROUTE_16_FLY_HOUSE, $4,$5,Route16Name
- IMAP ROUTE_12_SUPER_ROD_HOUSE, $E,$A,Route12Name
- IMAP ROUTE_18_GATE_2F, $7,$D,Route18Name
- IMAP SEAFOAM_ISLANDS_1F, $5,$F,SeafoamIslandsName
- IMAP ROUTE_22_GATE, $0,$7,Route22Name
- IMAP VICTORY_ROAD_2F, $0,$4,VictoryRoadName
- IMAP ROUTE_12_GATE_2F, $E,$7,Route12Name
- IMAP VERMILION_TRADE_HOUSE, $A,$9,VermilionCityName
- IMAP DIGLETTS_CAVE, $3,$4,DiglettsCaveName
- IMAP VICTORY_ROAD_3F, $0,$4,VictoryRoadName
- IMAP UNUSED_MAP_CE, $7,$5,RocketHQName
- IMAP SILPH_CO_8F, $A,$5,SilphCoName
- IMAP POKEMON_MANSION_B1F, $2,$F,PokemonMansionName
- IMAP SAFARI_ZONE_NORTH_REST_HOUSE, $8,$C,SafariZoneName
- IMAP CERULEAN_CAVE_1F, $9,$1,CeruleanCaveName
- IMAP NAME_RATERS_HOUSE, $E,$5,LavenderTownName
- IMAP CERULEAN_BADGE_HOUSE, $A,$2,CeruleanCityName
- IMAP ROCK_TUNNEL_B1F, $E,$3,RockTunnelName
- IMAP SILPH_CO_ELEVATOR, $A,$5,SilphCoName
- IMAP AGATHAS_ROOM, $0,$2,PokemonLeagueName
- db $FF
--- a/data/town_map_order.asm
+++ /dev/null
@@ -1,49 +1,0 @@
-TownMapOrder:
- db PALLET_TOWN
- db ROUTE_1
- db VIRIDIAN_CITY
- db ROUTE_2
- db VIRIDIAN_FOREST
- db DIGLETTS_CAVE
- db PEWTER_CITY
- db ROUTE_3
- db MT_MOON_1F
- db ROUTE_4
- db CERULEAN_CITY
- db ROUTE_24
- db ROUTE_25
- db BILLS_HOUSE
- db ROUTE_5
- db ROUTE_6
- db VERMILION_CITY
- db SS_ANNE_1F
- db ROUTE_9
- db ROCK_TUNNEL_POKECENTER
- db ROUTE_10
- db LAVENDER_TOWN
- db POKEMON_TOWER_2F
- db ROUTE_8
- db ROUTE_7
- db CELADON_CITY
- db SAFFRON_CITY
- db ROUTE_11
- db ROUTE_12
- db ROUTE_13
- db ROUTE_14
- db ROUTE_15
- db ROUTE_16
- db ROUTE_17
- db ROUTE_18
- db FUCHSIA_CITY
- db SAFARI_ZONE_EAST
- db ROUTE_19
- db SEAFOAM_ISLANDS_B1F
- db ROUTE_20
- db CINNABAR_ISLAND
- db ROUTE_21
- db ROUTE_22
- db ROUTE_23
- db VICTORY_ROAD_3F
- db INDIGO_PLATEAU
- db POWER_PLANT
-TownMapOrderEnd:
--- a/data/trades.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-TradeMons:
-; givemonster, getmonster, textstring, nickname (11 bytes), 14 bytes total
- db NIDORINO, NIDORINA, 0,"TERRY@@@@@@"
- db ABRA, MR_MIME, 0,"MARCEL@@@@@"
- db BUTTERFREE,BEEDRILL, 2,"CHIKUCHIKU@"
- db PONYTA, SEEL, 0,"SAILOR@@@@@"
- db SPEAROW, FARFETCHD,2,"DUX@@@@@@@@"
- db SLOWBRO, LICKITUNG,0,"MARC@@@@@@@"
- db POLIWHIRL, JYNX, 1,"LOLA@@@@@@@"
- db RAICHU, ELECTRODE,1,"DORIS@@@@@@"
- db VENONAT, TANGELA, 2,"CRINKLES@@@"
- db NIDORAN_M, NIDORAN_F,2,"SPOT@@@@@@@"
--- a/data/trainer_ai_pointers.asm
+++ /dev/null
@@ -1,51 +1,0 @@
-TrainerAIPointers:
-; one entry per trainer class
-; first byte, number of times (per Pokémon) it can occur
-; next two bytes, pointer to AI subroutine for trainer class
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,JugglerAI ; juggler_x
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 3,JugglerAI ; juggler
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 2,BlackbeltAI ; blackbelt
- dbw 3,GenericAI
- dbw 3,GenericAI
- dbw 1,GenericAI ; chief
- dbw 3,GenericAI
- dbw 1,GiovanniAI ; giovanni
- dbw 3,GenericAI
- dbw 2,CooltrainerMAI ; cooltrainerm
- dbw 1,CooltrainerFAI ; cooltrainerf
- dbw 2,BrunoAI ; bruno
- dbw 5,BrockAI ; brock
- dbw 1,MistyAI ; misty
- dbw 1,LtSurgeAI ; surge
- dbw 1,ErikaAI ; erika
- dbw 2,KogaAI ; koga
- dbw 2,BlaineAI ; blaine
- dbw 1,SabrinaAI ; sabrina
- dbw 3,GenericAI
- dbw 1,Sony2AI ; sony2
- dbw 1,Sony3AI ; sony3
- dbw 2,LoreleiAI ; lorelei
- dbw 3,GenericAI
- dbw 2,AgathaAI ; agatha
- dbw 1,LanceAI ; lance
--- a/data/trainer_move_choices.asm
+++ /dev/null
@@ -1,50 +1,0 @@
-; move choice modification methods that are applied for each trainer class
-; 0 is sentinel value
-TrainerClassMoveChoiceModifications:
- db 0 ; YOUNGSTER
- db 1,0 ; BUG CATCHER
- db 1,0 ; LASS
- db 1,3,0 ; SAILOR
- db 1,0 ; JR_TRAINER_M
- db 1,0 ; JR_TRAINER_F
- db 1,2,3,0; POKEMANIAC
- db 1,2,0 ; SUPER_NERD
- db 1,0 ; HIKER
- db 1,0 ; BIKER
- db 1,3,0 ; BURGLAR
- db 1,0 ; ENGINEER
- db 1,2,0 ; JUGGLER_X
- db 1,3,0 ; FISHER
- db 1,3,0 ; SWIMMER
- db 0 ; CUE_BALL
- db 1,0 ; GAMBLER
- db 1,3,0 ; BEAUTY
- db 1,2,0 ; PSYCHIC_TR
- db 1,3,0 ; ROCKER
- db 1,0 ; JUGGLER
- db 1,0 ; TAMER
- db 1,0 ; BIRD_KEEPER
- db 1,0 ; BLACKBELT
- db 1,0 ; SONY1
- db 1,3,0 ; PROF_OAK
- db 1,2,0 ; CHIEF
- db 1,2,0 ; SCIENTIST
- db 1,3,0 ; GIOVANNI
- db 1,0 ; ROCKET
- db 1,3,0 ; COOLTRAINER_M
- db 1,3,0 ; COOLTRAINER_F
- db 1,0 ; BRUNO
- db 1,0 ; BROCK
- db 1,3,0 ; MISTY
- db 1,3,0 ; LT_SURGE
- db 1,3,0 ; ERIKA
- db 1,3,0 ; KOGA
- db 1,3,0 ; BLAINE
- db 1,3,0 ; SABRINA
- db 1,2,0 ; GENTLEMAN
- db 1,3,0 ; SONY2
- db 1,3,0 ; SONY3
- db 1,2,3,0; LORELEI
- db 1,0 ; CHANNELER
- db 1,0 ; AGATHA
- db 1,3,0 ; LANCE
--- a/data/trainer_moves.asm
+++ /dev/null
@@ -1,32 +1,0 @@
-LoneMoves:
-; these are used for gym leaders.
-; this is not automatic! you have to write the number you want to wLoneAttackNo
-; first. e.g., erika's script writes 4 to wLoneAttackNo to get mega drain,
-; the fourth entry in the list.
-
-; first byte: pokemon in the trainer's party that gets the move
-; second byte: move
-; unterminated
- db 1,BIDE
- db 1,BUBBLEBEAM
- db 2,THUNDERBOLT
- db 2,MEGA_DRAIN
- db 3,TOXIC
- db 3,PSYWAVE
- db 3,FIRE_BLAST
- db 4,FISSURE
-
-TeamMoves:
-; these are used for elite four.
-; this is automatic, based on trainer class.
-; don't be confused by LoneMoves above, the two data structures are
- ; _completely_ unrelated.
-
-; first byte: trainer (all trainers in this class have this move)
-; second byte: move
-; ff-terminated
- db LORELEI,BLIZZARD
- db BRUNO,FISSURE
- db AGATHA,TOXIC
- db LANCE,BARRIER
- db $FF
--- a/data/trainer_parties.asm
+++ /dev/null
@@ -1,696 +1,0 @@
-TrainerDataPointers:
- dw YoungsterData
- dw BugCatcherData
- dw LassData
- dw SailorData
- dw JrTrainerMData
- dw JrTrainerFData
- dw PokemaniacData
- dw SuperNerdData
- dw HikerData
- dw BikerData
- dw BurglarData
- dw EngineerData
- dw Juggler1Data
- dw FisherData
- dw SwimmerData
- dw CueBallData
- dw GamblerData
- dw BeautyData
- dw PsychicData
- dw RockerData
- dw JugglerData
- dw TamerData
- dw BirdKeeperData
- dw BlackbeltData
- dw Green1Data
- dw ProfOakData
- dw ChiefData
- dw ScientistData
- dw GiovanniData
- dw RocketData
- dw CooltrainerMData
- dw CooltrainerFData
- dw BrunoData
- dw BrockData
- dw MistyData
- dw LtSurgeData
- dw ErikaData
- dw KogaData
- dw BlaineData
- dw SabrinaData
- dw GentlemanData
- dw Green2Data
- dw Green3Data
- dw LoreleiData
- dw ChannelerData
- dw AgathaData
- dw LanceData
-
-; if first byte != FF, then
- ; first byte is level (of all pokemon on this team)
- ; all the next bytes are pokemon species
- ; null-terminated
-; if first byte == FF, then
- ; first byte is FF (obviously)
- ; every next two bytes are a level and species
- ; null-terminated
-
-YoungsterData:
-; Route 3
- db 11,RATTATA,EKANS,0
- db 14,SPEAROW,0
-; Mt. Moon 1F
- db 10,RATTATA,RATTATA,ZUBAT,0
-; Route 24
- db 14,RATTATA,EKANS,ZUBAT,0
-; Route 25
- db 15,RATTATA,SPEAROW,0
- db 17,SLOWPOKE,0
- db 14,EKANS,SANDSHREW,0
-; SS Anne 1F Rooms
- db 21,NIDORAN_M,0
-; Route 11
- db 21,EKANS,0
- db 19,SANDSHREW,ZUBAT,0
- db 17,RATTATA,RATTATA,RATICATE,0
- db 18,NIDORAN_M,NIDORINO,0
-; Unused
- db 17,SPEAROW,RATTATA,RATTATA,SPEAROW,0
-BugCatcherData:
-; Viridian Forest
- db 6,WEEDLE,CATERPIE,0
- db 7,WEEDLE,KAKUNA,WEEDLE,0
- db 9,WEEDLE,0
-; Route 3
- db 10,CATERPIE,WEEDLE,CATERPIE,0
- db 9,WEEDLE,KAKUNA,CATERPIE,METAPOD,0
- db 11,CATERPIE,METAPOD,0
-; Mt. Moon 1F
- db 11,WEEDLE,KAKUNA,0
- db 10,CATERPIE,METAPOD,CATERPIE,0
-; Route 24
- db 14,CATERPIE,WEEDLE,0
-; Route 6
- db 16,WEEDLE,CATERPIE,WEEDLE,0
- db 20,BUTTERFREE,0
-; Unused
- db 18,METAPOD,CATERPIE,VENONAT,0
-; Route 9
- db 19,BEEDRILL,BEEDRILL,0
- db 20,CATERPIE,WEEDLE,VENONAT,0
-LassData:
-; Route 3
- db 9,PIDGEY,PIDGEY,0
- db 10,RATTATA,NIDORAN_M,0
- db 14,JIGGLYPUFF,0
-; Route 4
- db 31,PARAS,PARAS,PARASECT,0
-; Mt. Moon 1F
- db 11,ODDISH,BELLSPROUT,0
- db 14,CLEFAIRY,0
-; Route 24
- db 16,PIDGEY,NIDORAN_F,0
- db 14,PIDGEY,NIDORAN_F,0
-; Route 25
- db 15,NIDORAN_M,NIDORAN_F,0
- db 13,ODDISH,PIDGEY,ODDISH,0
-; SS Anne 1F Rooms
- db 18,PIDGEY,NIDORAN_F,0
-; SS Anne 2F Rooms
- db 18,RATTATA,PIKACHU,0
-; Route 8
- db 23,NIDORAN_F,NIDORINA,0
- db 24,MEOWTH,MEOWTH,MEOWTH,0
- db 19,PIDGEY,RATTATA,NIDORAN_M,MEOWTH,PIKACHU,0
- db 22,CLEFAIRY,CLEFAIRY,0
-; Celadon Gym
- db 23,BELLSPROUT,WEEPINBELL,0
- db 23,ODDISH,GLOOM,0
-SailorData:
-; SS Anne Stern
- db 18,MACHOP,SHELLDER,0
- db 17,MACHOP,TENTACOOL,0
-; SS Anne B1F Rooms
- db 21,SHELLDER,0
- db 17,HORSEA,SHELLDER,TENTACOOL,0
- db 18,TENTACOOL,STARYU,0
- db 17,HORSEA,HORSEA,HORSEA,0
- db 20,MACHOP,0
-; Vermilion Gym
- db 21,PIKACHU,PIKACHU,0
-JrTrainerMData:
-; Pewter Gym
- db 11,DIGLETT,SANDSHREW,0
-; Route 24/Route 25
- db 14,RATTATA,EKANS,0
-; Route 24
- db 18,MANKEY,0
-; Route 6
- db 20,SQUIRTLE,0
- db 16,SPEAROW,RATICATE,0
-; Unused
- db 18,DIGLETT,DIGLETT,SANDSHREW,0
-; Route 9
- db 21,GROWLITHE,CHARMANDER,0
- db 19,RATTATA,DIGLETT,EKANS,SANDSHREW,0
-; Route 12
- db 29,NIDORAN_M,NIDORINO,0
-JrTrainerFData:
-; Cerulean Gym
- db 19,GOLDEEN,0
-; Route 6
- db 16,RATTATA,PIKACHU,0
- db 16,PIDGEY,PIDGEY,PIDGEY,0
-; Unused
- db 22,BULBASAUR,0
-; Route 9
- db 18,ODDISH,BELLSPROUT,ODDISH,BELLSPROUT,0
- db 23,MEOWTH,0
-; Route 10
- db 20,PIKACHU,CLEFAIRY,0
- db 21,PIDGEY,PIDGEOTTO,0
-; Rock Tunnel B1F
- db 21,JIGGLYPUFF,PIDGEY,MEOWTH,0
- db 22,ODDISH,BULBASAUR,0
-; Celadon Gym
- db 24,BULBASAUR,IVYSAUR,0
-; Route 13
- db 24,PIDGEY,MEOWTH,RATTATA,PIKACHU,MEOWTH,0
- db 30,POLIWAG,POLIWAG,0
- db 27,PIDGEY,MEOWTH,PIDGEY,PIDGEOTTO,0
- db 28,GOLDEEN,POLIWAG,HORSEA,0
-; Route 20
- db 31,GOLDEEN,SEAKING,0
-; Rock Tunnel 1F
- db 22,BELLSPROUT,CLEFAIRY,0
- db 20,MEOWTH,ODDISH,PIDGEY,0
- db 19,PIDGEY,RATTATA,RATTATA,BELLSPROUT,0
-; Route 15
- db 28,GLOOM,ODDISH,ODDISH,0
- db 29,PIKACHU,RAICHU,0
- db 33,CLEFAIRY,0
- db 29,BELLSPROUT,ODDISH,TANGELA,0
-; Route 20
- db 30,TENTACOOL,HORSEA,SEEL,0
-PokemaniacData:
-; Route 10
- db 30,RHYHORN,LICKITUNG,0
- db 20,CUBONE,SLOWPOKE,0
-; Rock Tunnel B1F
- db 20,SLOWPOKE,SLOWPOKE,SLOWPOKE,0
- db 22,CHARMANDER,CUBONE,0
- db 25,SLOWPOKE,0
-; Victory Road 2F
- db 40,CHARMELEON,LAPRAS,LICKITUNG,0
-; Rock Tunnel 1F
- db 23,CUBONE,SLOWPOKE,0
-SuperNerdData:
-; Mt. Moon 1F
- db 11,MAGNEMITE,VOLTORB,0
-; Mt. Moon B2F
- db 12,GRIMER,VOLTORB,KOFFING,0
-; Route 8
- db 20,VOLTORB,KOFFING,VOLTORB,MAGNEMITE,0
- db 22,GRIMER,MUK,GRIMER,0
- db 26,KOFFING,0
-; Unused
- db 22,KOFFING,MAGNEMITE,WEEZING,0
- db 20,MAGNEMITE,MAGNEMITE,KOFFING,MAGNEMITE,0
- db 24,MAGNEMITE,VOLTORB,0
-; Cinnabar Gym
- db 36,VULPIX,VULPIX,NINETALES,0
- db 34,PONYTA,CHARMANDER,VULPIX,GROWLITHE,0
- db 41,RAPIDASH,0
- db 37,GROWLITHE,VULPIX,0
-HikerData:
-; Mt. Moon 1F
- db 10,GEODUDE,GEODUDE,ONIX,0
-; Route 25
- db 15,MACHOP,GEODUDE,0
- db 13,GEODUDE,GEODUDE,MACHOP,GEODUDE,0
- db 17,ONIX,0
-; Route 9
- db 21,GEODUDE,ONIX,0
- db 20,GEODUDE,MACHOP,GEODUDE,0
-; Route 10
- db 21,GEODUDE,ONIX,0
- db 19,ONIX,GRAVELER,0
-; Rock Tunnel B1F
- db 21,GEODUDE,GEODUDE,GRAVELER,0
- db 25,GEODUDE,0
-; Route 9/Rock Tunnel B1F
- db 20,MACHOP,ONIX,0
-; Rock Tunnel 1F
- db 19,GEODUDE,MACHOP,GEODUDE,GEODUDE,0
- db 20,ONIX,ONIX,GEODUDE,0
- db 21,GEODUDE,GRAVELER,0
-BikerData:
-; Route 13
- db 28,KOFFING,KOFFING,KOFFING,0
-; Route 14
- db 29,KOFFING,GRIMER,0
-; Route 15
- db 25,KOFFING,KOFFING,WEEZING,KOFFING,GRIMER,0
- db 28,KOFFING,GRIMER,WEEZING,0
-; Route 16
- db 29,GRIMER,KOFFING,0
- db 33,WEEZING,0
- db 26,GRIMER,GRIMER,GRIMER,GRIMER,0
-; Route 17
- ; From https://www.smogon.com/smog/issue27/glitch:
- ; 0E:5FC2 is offset of the ending 0 for this first Biker on Route 17.
- ; BaseStats + (MonBaseStatsEnd - MonBaseStats) * (000 - 1) = $5FC2;
- ; that's the formula from GetMonHeader for the base stats of mon #000.
- ; (BaseStats = $43DE and BANK(BaseStats) = $0E.)
- ; Finally, PokedexOrder lists 0 as the dex ID for every MissingNo.
- ; The result is that this data gets interpreted as the base stats
- ; for MissingNo: 0,33,MUK,0,29,VOLTORB,VOLTORB,0,...,28,GRIMER,GRIMER.
- db 28,WEEZING,KOFFING,WEEZING,0
- db 33,MUK,0
- db 29,VOLTORB,VOLTORB,0
- db 29,WEEZING,MUK,0
- db 25,KOFFING,WEEZING,KOFFING,KOFFING,WEEZING,0
-; Route 14
- db 26,KOFFING,KOFFING,GRIMER,KOFFING,0
- db 28,GRIMER,GRIMER,KOFFING,0
- db 29,KOFFING,MUK,0
-BurglarData:
-; Unused
- db 29,GROWLITHE,VULPIX,0
- db 33,GROWLITHE,0
- db 28,VULPIX,CHARMANDER,PONYTA,0
-; Cinnabar Gym
- db 36,GROWLITHE,VULPIX,NINETALES,0
- db 41,PONYTA,0
- db 37,VULPIX,GROWLITHE,0
-; Mansion 2F
- db 34,CHARMANDER,CHARMELEON,0
-; Mansion 3F
- db 38,NINETALES,0
-; Mansion B1F
- db 34,GROWLITHE,PONYTA,0
-EngineerData:
-; Unused
- db 21,VOLTORB,MAGNEMITE,0
-; Route 11
- db 21,MAGNEMITE,0
- db 18,MAGNEMITE,MAGNEMITE,MAGNETON,0
-Juggler1Data:
-; none
-FisherData:
-; SS Anne 2F Rooms
- db 17,GOLDEEN,TENTACOOL,GOLDEEN,0
-; SS Anne B1F Rooms
- db 17,TENTACOOL,STARYU,SHELLDER,0
-; Route 12
- db 22,GOLDEEN,POLIWAG,GOLDEEN,0
- db 24,TENTACOOL,GOLDEEN,0
- db 27,GOLDEEN,0
- db 21,POLIWAG,SHELLDER,GOLDEEN,HORSEA,0
-; Route 21
- db 28,SEAKING,GOLDEEN,SEAKING,SEAKING,0
- db 31,SHELLDER,CLOYSTER,0
- db 27,MAGIKARP,MAGIKARP,MAGIKARP,MAGIKARP,MAGIKARP,MAGIKARP,0
- db 33,SEAKING,GOLDEEN,0
-; Route 12
- db 24,MAGIKARP,MAGIKARP,0
-SwimmerData:
-; Cerulean Gym
- db 16,HORSEA,SHELLDER,0
-; Route 19
- db 30,TENTACOOL,SHELLDER,0
- db 29,GOLDEEN,HORSEA,STARYU,0
- db 30,POLIWAG,POLIWHIRL,0
- db 27,HORSEA,TENTACOOL,TENTACOOL,GOLDEEN,0
- db 29,GOLDEEN,SHELLDER,SEAKING,0
- db 30,HORSEA,HORSEA,0
- db 27,TENTACOOL,TENTACOOL,STARYU,HORSEA,TENTACRUEL,0
-; Route 20
- db 31,SHELLDER,CLOYSTER,0
- db 35,STARYU,0
- db 28,HORSEA,HORSEA,SEADRA,HORSEA,0
-; Route 21
- db 33,SEADRA,TENTACRUEL,0
- db 37,STARMIE,0
- db 33,STARYU,WARTORTLE,0
- db 32,POLIWHIRL,TENTACOOL,SEADRA,0
-CueBallData:
-; Route 16
- db 28,MACHOP,MANKEY,MACHOP,0
- db 29,MANKEY,MACHOP,0
- db 33,MACHOP,0
-; Route 17
- db 29,MANKEY,PRIMEAPE,0
- db 29,MACHOP,MACHOKE,0
- db 33,MACHOKE,0
- db 26,MANKEY,MANKEY,MACHOKE,MACHOP,0
- db 29,PRIMEAPE,MACHOKE,0
-; Route 21
- db 31,TENTACOOL,TENTACOOL,TENTACRUEL,0
-GamblerData:
-; Route 11
- db 18,POLIWAG,HORSEA,0
- db 18,BELLSPROUT,ODDISH,0
- db 18,VOLTORB,MAGNEMITE,0
- db 18,GROWLITHE,VULPIX,0
-; Route 8
- db 22,POLIWAG,POLIWAG,POLIWHIRL,0
-; Unused
- db 22,ONIX,GEODUDE,GRAVELER,0
-; Route 8
- db 24,GROWLITHE,VULPIX,0
-BeautyData:
-; Celadon Gym
- db 21,ODDISH,BELLSPROUT,ODDISH,BELLSPROUT,0
- db 24,BELLSPROUT,BELLSPROUT,0
- db 26,EXEGGCUTE,0
-; Route 13
- db 27,RATTATA,PIKACHU,RATTATA,0
- db 29,CLEFAIRY,MEOWTH,0
-; Route 20
- db 35,SEAKING,0
- db 30,SHELLDER,SHELLDER,CLOYSTER,0
- db 31,POLIWAG,SEAKING,0
-; Route 15
- db 29,PIDGEOTTO,WIGGLYTUFF,0
- db 29,BULBASAUR,IVYSAUR,0
-; Unused
- db 33,WEEPINBELL,BELLSPROUT,WEEPINBELL,0
-; Route 19
- db 27,POLIWAG,GOLDEEN,SEAKING,GOLDEEN,POLIWAG,0
- db 30,GOLDEEN,SEAKING,0
- db 29,STARYU,STARYU,STARYU,0
-; Route 20
- db 30,SEADRA,HORSEA,SEADRA,0
-PsychicData:
-; Saffron Gym
- db 31,KADABRA,SLOWPOKE,MR_MIME,KADABRA,0
- db 34,MR_MIME,KADABRA,0
- db 33,SLOWPOKE,SLOWPOKE,SLOWBRO,0
- db 38,SLOWBRO,0
-RockerData:
-; Vermilion Gym
- db 20,VOLTORB,MAGNEMITE,VOLTORB,0
-; Route 12
- db 29,VOLTORB,ELECTRODE,0
-JugglerData:
-; Silph Co. 5F
- db 29,KADABRA,MR_MIME,0
-; Victory Road 2F
- db 41,DROWZEE,HYPNO,KADABRA,KADABRA,0
-; Fuchsia Gym
- db 31,DROWZEE,DROWZEE,KADABRA,DROWZEE,0
- db 34,DROWZEE,HYPNO,0
-; Victory Road 2F
- db 48,MR_MIME,0
-; Unused
- db 33,HYPNO,0
-; Fuchsia Gym
- db 38,HYPNO,0
- db 34,DROWZEE,KADABRA,0
-TamerData:
-; Fuchsia Gym
- db 34,SANDSLASH,ARBOK,0
- db 33,ARBOK,SANDSLASH,ARBOK,0
-; Viridian Gym
- db 43,RHYHORN,0
- db 39,ARBOK,TAUROS,0
-; Victory Road 2F
- db 44,PERSIAN,GOLDUCK,0
-; Unused
- db 42,RHYHORN,PRIMEAPE,ARBOK,TAUROS,0
-BirdKeeperData:
-; Route 13
- db 29,PIDGEY,PIDGEOTTO,0
- db 25,SPEAROW,PIDGEY,PIDGEY,SPEAROW,SPEAROW,0
- db 26,PIDGEY,PIDGEOTTO,SPEAROW,FEAROW,0
-; Route 14
- db 33,FARFETCHD,0
- db 29,SPEAROW,FEAROW,0
-; Route 15
- db 26,PIDGEOTTO,FARFETCHD,DODUO,PIDGEY,0
- db 28,DODRIO,DODUO,DODUO,0
-; Route 18
- db 29,SPEAROW,FEAROW,0
- db 34,DODRIO,0
- db 26,SPEAROW,SPEAROW,FEAROW,SPEAROW,0
-; Route 20
- db 30,FEAROW,FEAROW,PIDGEOTTO,0
-; Unused
- db 39,PIDGEOTTO,PIDGEOTTO,PIDGEY,PIDGEOTTO,0
- db 42,FARFETCHD,FEAROW,0
-; Route 14
- db 28,PIDGEY,DODUO,PIDGEOTTO,0
- db 26,PIDGEY,SPEAROW,PIDGEY,FEAROW,0
- db 29,PIDGEOTTO,FEAROW,0
- db 28,SPEAROW,DODUO,FEAROW,0
-BlackbeltData:
-; Fighting Dojo
- db 37,HITMONLEE,HITMONCHAN,0
- db 31,MANKEY,MANKEY,PRIMEAPE,0
- db 32,MACHOP,MACHOKE,0
- db 36,PRIMEAPE,0
- db 31,MACHOP,MANKEY,PRIMEAPE,0
-; Viridian Gym
- db 40,MACHOP,MACHOKE,0
- db 43,MACHOKE,0
- db 38,MACHOKE,MACHOP,MACHOKE,0
-; Victory Road 2F
- db 43,MACHOKE,MACHOP,MACHOKE,0
-Green1Data:
- db 5,SQUIRTLE,0
- db 5,BULBASAUR,0
- db 5,CHARMANDER,0
-; Route 22
- db $FF,9,PIDGEY,8,SQUIRTLE,0
- db $FF,9,PIDGEY,8,BULBASAUR,0
- db $FF,9,PIDGEY,8,CHARMANDER,0
-; Cerulean City
- db $FF,18,PIDGEOTTO,15,ABRA,15,RATTATA,17,SQUIRTLE,0
- db $FF,18,PIDGEOTTO,15,ABRA,15,RATTATA,17,BULBASAUR,0
- db $FF,18,PIDGEOTTO,15,ABRA,15,RATTATA,17,CHARMANDER,0
-ProfOakData:
-; Unused
- db $FF,66,TAUROS,67,EXEGGUTOR,68,ARCANINE,69,BLASTOISE,70,GYARADOS,0
- db $FF,66,TAUROS,67,EXEGGUTOR,68,ARCANINE,69,VENUSAUR,70,GYARADOS,0
- db $FF,66,TAUROS,67,EXEGGUTOR,68,ARCANINE,69,CHARIZARD,70,GYARADOS,0
-ChiefData:
-; none
-ScientistData:
-; Unused
- db 34,KOFFING,VOLTORB,0
-; Silph Co. 2F
- db 26,GRIMER,WEEZING,KOFFING,WEEZING,0
- db 28,MAGNEMITE,VOLTORB,MAGNETON,0
-; Silph Co. 3F/Mansion 1F
- db 29,ELECTRODE,WEEZING,0
-; Silph Co. 4F
- db 33,ELECTRODE,0
-; Silph Co. 5F
- db 26,MAGNETON,KOFFING,WEEZING,MAGNEMITE,0
-; Silph Co. 6F
- db 25,VOLTORB,KOFFING,MAGNETON,MAGNEMITE,KOFFING,0
-; Silph Co. 7F
- db 29,ELECTRODE,MUK,0
-; Silph Co. 8F
- db 29,GRIMER,ELECTRODE,0
-; Silph Co. 9F
- db 28,VOLTORB,KOFFING,MAGNETON,0
-; Silph Co. 10F
- db 29,MAGNEMITE,KOFFING,0
-; Mansion 3F
- db 33,MAGNEMITE,MAGNETON,VOLTORB,0
-; Mansion B1F
- db 34,MAGNEMITE,ELECTRODE,0
-GiovanniData:
-; Rocket Hideout B4F
- db $FF,25,ONIX,24,RHYHORN,29,KANGASKHAN,0
-; Silph Co. 11F
- db $FF,37,NIDORINO,35,KANGASKHAN,37,RHYHORN,41,NIDOQUEEN,0
-; Viridian Gym
- db $FF,45,RHYHORN,42,DUGTRIO,44,NIDOQUEEN,45,NIDOKING,50,RHYDON,0
-RocketData:
-; Mt. Moon B2F
- db 13,RATTATA,ZUBAT,0
- db 11,SANDSHREW,RATTATA,ZUBAT,0
- db 12,ZUBAT,EKANS,0
- db 16,RATICATE,0
-; Cerulean City
- db 17,MACHOP,DROWZEE,0
-; Route 24
- db 15,EKANS,ZUBAT,0
-; Game Corner
- db 20,RATICATE,ZUBAT,0
-; Rocket Hideout B1F
- db 21,DROWZEE,MACHOP,0
- db 21,RATICATE,RATICATE,0
- db 20,GRIMER,KOFFING,KOFFING,0
- db 19,RATTATA,RATICATE,RATICATE,RATTATA,0
- db 22,GRIMER,KOFFING,0
-; Rocket Hideout B2F
- db 17,ZUBAT,KOFFING,GRIMER,ZUBAT,RATICATE,0
-; Rocket Hideout B3F
- db 20,RATTATA,RATICATE,DROWZEE,0
- db 21,MACHOP,MACHOP,0
-; Rocket Hideout B4F
- db 23,SANDSHREW,EKANS,SANDSLASH,0
- db 23,EKANS,SANDSHREW,ARBOK,0
- db 21,KOFFING,ZUBAT,0
-; Pokémon Tower 7F
- db 25,ZUBAT,ZUBAT,GOLBAT,0
- db 26,KOFFING,DROWZEE,0
- db 23,ZUBAT,RATTATA,RATICATE,ZUBAT,0
-; Unused
- db 26,DROWZEE,KOFFING,0
-; Silph Co. 2F
- db 29,CUBONE,ZUBAT,0
- db 25,GOLBAT,ZUBAT,ZUBAT,RATICATE,ZUBAT,0
-; Silph Co. 3F
- db 28,RATICATE,HYPNO,RATICATE,0
-; Silph Co. 4F
- db 29,MACHOP,DROWZEE,0
- db 28,EKANS,ZUBAT,CUBONE,0
-; Silph Co. 5F
- db 33,ARBOK,0
- db 33,HYPNO,0
-; Silph Co. 6F
- db 29,MACHOP,MACHOKE,0
- db 28,ZUBAT,ZUBAT,GOLBAT,0
-; Silph Co. 7F
- db 26,RATICATE,ARBOK,KOFFING,GOLBAT,0
- db 29,CUBONE,CUBONE,0
- db 29,SANDSHREW,SANDSLASH,0
-; Silph Co. 8F
- db 26,RATICATE,ZUBAT,GOLBAT,RATTATA,0
- db 28,WEEZING,GOLBAT,KOFFING,0
-; Silph Co. 9F
- db 28,DROWZEE,GRIMER,MACHOP,0
- db 28,GOLBAT,DROWZEE,HYPNO,0
-; Silph Co. 10F
- db 33,MACHOKE,0
-; Silph Co. 11F
- db 25,RATTATA,RATTATA,ZUBAT,RATTATA,EKANS,0
- db 32,CUBONE,DROWZEE,MAROWAK,0
-CooltrainerMData:
-; Viridian Gym
- db 39,NIDORINO,NIDOKING,0
-; Victory Road 3F
- db 43,EXEGGUTOR,CLOYSTER,ARCANINE,0
- db 43,KINGLER,TENTACRUEL,BLASTOISE,0
-; Unused
- db 45,KINGLER,STARMIE,0
-; Victory Road 1F
- db 42,IVYSAUR,WARTORTLE,CHARMELEON,CHARIZARD,0
-; Unused
- db 44,IVYSAUR,WARTORTLE,CHARMELEON,0
- db 49,NIDOKING,0
- db 44,KINGLER,CLOYSTER,0
-; Viridian Gym
- db 39,SANDSLASH,DUGTRIO,0
- db 43,RHYHORN,0
-CooltrainerFData:
-; Celadon Gym
- db 24,WEEPINBELL,GLOOM,IVYSAUR,0
-; Victory Road 3F
- db 43,BELLSPROUT,WEEPINBELL,VICTREEBEL,0
- db 43,PARASECT,DEWGONG,CHANSEY,0
-; Unused
- db 46,VILEPLUME,BUTTERFREE,0
-; Victory Road 1F
- db 44,PERSIAN,NINETALES,0
-; Unused
- db 45,IVYSAUR,VENUSAUR,0
- db 45,NIDORINA,NIDOQUEEN,0
- db 43,PERSIAN,NINETALES,RAICHU,0
-BrunoData:
- db $FF,53,ONIX,55,HITMONCHAN,55,HITMONLEE,56,ONIX,58,MACHAMP,0
-BrockData:
- db $FF,12,GEODUDE,14,ONIX,0
-MistyData:
- db $FF,18,STARYU,21,STARMIE,0
-LtSurgeData:
- db $FF,21,VOLTORB,18,PIKACHU,24,RAICHU,0
-ErikaData:
- db $FF,29,VICTREEBEL,24,TANGELA,29,VILEPLUME,0
-KogaData:
- db $FF,37,KOFFING,39,MUK,37,KOFFING,43,WEEZING,0
-BlaineData:
- db $FF,42,GROWLITHE,40,PONYTA,42,RAPIDASH,47,ARCANINE,0
-SabrinaData:
- db $FF,38,KADABRA,37,MR_MIME,38,VENOMOTH,43,ALAKAZAM,0
-GentlemanData:
-; SS Anne 1F Rooms
- db 18,GROWLITHE,GROWLITHE,0
- db 19,NIDORAN_M,NIDORAN_F,0
-; SS Anne 2F Rooms/Vermilion Gym
- db 23,PIKACHU,0
-; Unused
- db 48,PRIMEAPE,0
-; SS Anne 2F Rooms
- db 17,GROWLITHE,PONYTA,0
-Green2Data:
-; SS Anne 2F
- db $FF,19,PIDGEOTTO,16,RATICATE,18,KADABRA,20,WARTORTLE,0
- db $FF,19,PIDGEOTTO,16,RATICATE,18,KADABRA,20,IVYSAUR,0
- db $FF,19,PIDGEOTTO,16,RATICATE,18,KADABRA,20,CHARMELEON,0
-; Pokémon Tower 2F
- db $FF,25,PIDGEOTTO,23,GROWLITHE,22,EXEGGCUTE,20,KADABRA,25,WARTORTLE,0
- db $FF,25,PIDGEOTTO,23,GYARADOS,22,GROWLITHE,20,KADABRA,25,IVYSAUR,0
- db $FF,25,PIDGEOTTO,23,EXEGGCUTE,22,GYARADOS,20,KADABRA,25,CHARMELEON,0
-; Silph Co. 7F
- db $FF,37,PIDGEOT,38,GROWLITHE,35,EXEGGCUTE,35,ALAKAZAM,40,BLASTOISE,0
- db $FF,37,PIDGEOT,38,GYARADOS,35,GROWLITHE,35,ALAKAZAM,40,VENUSAUR,0
- db $FF,37,PIDGEOT,38,EXEGGCUTE,35,GYARADOS,35,ALAKAZAM,40,CHARIZARD,0
-; Route 22
- db $FF,47,PIDGEOT,45,RHYHORN,45,GROWLITHE,47,EXEGGCUTE,50,ALAKAZAM,53,BLASTOISE,0
- db $FF,47,PIDGEOT,45,RHYHORN,45,GYARADOS,47,GROWLITHE,50,ALAKAZAM,53,VENUSAUR,0
- db $FF,47,PIDGEOT,45,RHYHORN,45,EXEGGCUTE,47,GYARADOS,50,ALAKAZAM,53,CHARIZARD,0
-Green3Data:
- db $FF,61,PIDGEOT,59,ALAKAZAM,61,RHYDON,61,ARCANINE,63,EXEGGUTOR,65,BLASTOISE,0
- db $FF,61,PIDGEOT,59,ALAKAZAM,61,RHYDON,61,GYARADOS,63,ARCANINE,65,VENUSAUR,0
- db $FF,61,PIDGEOT,59,ALAKAZAM,61,RHYDON,61,EXEGGUTOR,63,GYARADOS,65,CHARIZARD,0
-LoreleiData:
- db $FF,54,DEWGONG,53,CLOYSTER,54,SLOWBRO,56,JYNX,56,LAPRAS,0
-ChannelerData:
-; Unused
- db 22,GASTLY,0
- db 24,GASTLY,0
- db 23,GASTLY,GASTLY,0
- db 24,GASTLY,0
-; Pokémon Tower 3F
- db 23,GASTLY,0
- db 24,GASTLY,0
-; Unused
- db 24,HAUNTER,0
-; Pokémon Tower 3F
- db 22,GASTLY,0
-; Pokémon Tower 4F
- db 24,GASTLY,0
- db 23,GASTLY,GASTLY,0
-; Unused
- db 24,GASTLY,0
-; Pokémon Tower 4F
- db 22,GASTLY,0
-; Unused
- db 24,GASTLY,0
-; Pokémon Tower 5F
- db 23,HAUNTER,0
-; Unused
- db 24,GASTLY,0
-; Pokémon Tower 5F
- db 22,GASTLY,0
- db 24,GASTLY,0
- db 22,HAUNTER,0
-; Pokémon Tower 6F
- db 22,GASTLY,GASTLY,GASTLY,0
- db 24,GASTLY,0
- db 24,GASTLY,0
-; Saffron Gym
- db 34,GASTLY,HAUNTER,0
- db 38,HAUNTER,0
- db 33,GASTLY,GASTLY,HAUNTER,0
-AgathaData:
- db $FF,56,GENGAR,56,GOLBAT,55,HAUNTER,58,ARBOK,60,GENGAR,0
-LanceData:
- db $FF,58,GYARADOS,56,DRAGONAIR,56,DRAGONAIR,60,AERODACTYL,62,DRAGONITE,0
--- a/data/trainer_pic_money_pointers.asm
+++ /dev/null
@@ -1,143 +1,0 @@
-TrainerPicAndMoneyPointers::
-; trainer pic pointers and base money.
-; money received after battle = base money × level of highest-level enemy mon
- dw YoungsterPic
- money 1500
-
- dw BugCatcherPic
- money 1000
-
- dw LassPic
- money 1500
-
- dw SailorPic
- money 3000
-
- dw JrTrainerMPic
- money 2000
-
- dw JrTrainerFPic
- money 2000
-
- dw PokemaniacPic
- money 5000
-
- dw SuperNerdPic
- money 2500
-
- dw HikerPic
- money 3500
-
- dw BikerPic
- money 2000
-
- dw BurglarPic
- money 9000
-
- dw EngineerPic
- money 5000
-
- dw JugglerPic
- money 3500
-
- dw FisherPic
- money 3500
-
- dw SwimmerPic
- money 500
-
- dw CueBallPic
- money 2500
-
- dw GamblerPic
- money 7000
-
- dw BeautyPic
- money 7000
-
- dw PsychicPic
- money 1000
-
- dw RockerPic
- money 2500
-
- dw JugglerPic
- money 3500
-
- dw TamerPic
- money 4000
-
- dw BirdKeeperPic
- money 2500
-
- dw BlackbeltPic
- money 2500
-
- dw Rival1Pic
- money 3500
-
- dw ProfOakPic
- money 9900
-
- dw ChiefPic
- money 3000
-
- dw ScientistPic
- money 5000
-
- dw GiovanniPic
- money 9900
-
- dw RocketPic
- money 3000
-
- dw CooltrainerMPic
- money 3500
-
- dw CooltrainerFPic
- money 3500
-
- dw BrunoPic
- money 9900
-
- dw BrockPic
- money 9900
-
- dw MistyPic
- money 9900
-
- dw LtSurgePic
- money 9900
-
- dw ErikaPic
- money 9900
-
- dw KogaPic
- money 9900
-
- dw BlainePic
- money 9900
-
- dw SabrinaPic
- money 9900
-
- dw GentlemanPic
- money 7000
-
- dw Rival2Pic
- money 6500
-
- dw Rival3Pic
- money 9900
-
- dw LoreleiPic
- money 9900
-
- dw ChannelerPic
- money 3000
-
- dw AgathaPic
- money 9900
-
- dw LancePic
- money 9900
--- a/data/trainer_types.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-FemaleTrainerList::
- db OPP_LASS
- db OPP_JR_TRAINER_F
- db OPP_BEAUTY
- db OPP_COOLTRAINER_F
- db $FF
-
-EvilTrainerList::
- db OPP_JUGGLER_X
- db OPP_GAMBLER
- db OPP_ROCKER
- db OPP_JUGGLER
- db OPP_CHIEF
- db OPP_SCIENTIST
- db OPP_GIOVANNI
- db OPP_ROCKET
- db $FF
--- /dev/null
+++ b/data/trainers/ai_pointers.asm
@@ -1,0 +1,52 @@
+TrainerAIPointers:
+; one entry per trainer class
+; first byte, number of times (per Pokémon) it can occur
+; next two bytes, pointer to AI subroutine for trainer class
+; subroutines are defined in engine/battle/trainer_ai.asm
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,JugglerAI ; juggler_x
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 3,JugglerAI ; juggler
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 2,BlackbeltAI ; blackbelt
+ dbw 3,GenericAI
+ dbw 3,GenericAI
+ dbw 1,GenericAI ; chief
+ dbw 3,GenericAI
+ dbw 1,GiovanniAI ; giovanni
+ dbw 3,GenericAI
+ dbw 2,CooltrainerMAI ; cooltrainerm
+ dbw 1,CooltrainerFAI ; cooltrainerf
+ dbw 2,BrunoAI ; bruno
+ dbw 5,BrockAI ; brock
+ dbw 1,MistyAI ; misty
+ dbw 1,LtSurgeAI ; surge
+ dbw 1,ErikaAI ; erika
+ dbw 2,KogaAI ; koga
+ dbw 2,BlaineAI ; blaine
+ dbw 1,SabrinaAI ; sabrina
+ dbw 3,GenericAI
+ dbw 1,Sony2AI ; sony2
+ dbw 1,Sony3AI ; sony3
+ dbw 2,LoreleiAI ; lorelei
+ dbw 3,GenericAI
+ dbw 2,AgathaAI ; agatha
+ dbw 1,LanceAI ; lance
--- /dev/null
+++ b/data/trainers/encounter_types.asm
@@ -1,0 +1,17 @@
+FemaleTrainerList::
+ db OPP_LASS
+ db OPP_JR_TRAINER_F
+ db OPP_BEAUTY
+ db OPP_COOLTRAINER_F
+ db $FF
+
+EvilTrainerList::
+ db OPP_JUGGLER_X
+ db OPP_GAMBLER
+ db OPP_ROCKER
+ db OPP_JUGGLER
+ db OPP_CHIEF
+ db OPP_SCIENTIST
+ db OPP_GIOVANNI
+ db OPP_ROCKET
+ db $FF
--- /dev/null
+++ b/data/trainers/move_choices.asm
@@ -1,0 +1,50 @@
+; move choice modification methods that are applied for each trainer class
+; 0 is sentinel value
+TrainerClassMoveChoiceModifications:
+ db 0 ; YOUNGSTER
+ db 1,0 ; BUG CATCHER
+ db 1,0 ; LASS
+ db 1,3,0 ; SAILOR
+ db 1,0 ; JR_TRAINER_M
+ db 1,0 ; JR_TRAINER_F
+ db 1,2,3,0; POKEMANIAC
+ db 1,2,0 ; SUPER_NERD
+ db 1,0 ; HIKER
+ db 1,0 ; BIKER
+ db 1,3,0 ; BURGLAR
+ db 1,0 ; ENGINEER
+ db 1,2,0 ; JUGGLER_X
+ db 1,3,0 ; FISHER
+ db 1,3,0 ; SWIMMER
+ db 0 ; CUE_BALL
+ db 1,0 ; GAMBLER
+ db 1,3,0 ; BEAUTY
+ db 1,2,0 ; PSYCHIC_TR
+ db 1,3,0 ; ROCKER
+ db 1,0 ; JUGGLER
+ db 1,0 ; TAMER
+ db 1,0 ; BIRD_KEEPER
+ db 1,0 ; BLACKBELT
+ db 1,0 ; SONY1
+ db 1,3,0 ; PROF_OAK
+ db 1,2,0 ; CHIEF
+ db 1,2,0 ; SCIENTIST
+ db 1,3,0 ; GIOVANNI
+ db 1,0 ; ROCKET
+ db 1,3,0 ; COOLTRAINER_M
+ db 1,3,0 ; COOLTRAINER_F
+ db 1,0 ; BRUNO
+ db 1,0 ; BROCK
+ db 1,3,0 ; MISTY
+ db 1,3,0 ; LT_SURGE
+ db 1,3,0 ; ERIKA
+ db 1,3,0 ; KOGA
+ db 1,3,0 ; BLAINE
+ db 1,3,0 ; SABRINA
+ db 1,2,0 ; GENTLEMAN
+ db 1,3,0 ; SONY2
+ db 1,3,0 ; SONY3
+ db 1,2,3,0; LORELEI
+ db 1,0 ; CHANNELER
+ db 1,0 ; AGATHA
+ db 1,3,0 ; LANCE
--- /dev/null
+++ b/data/trainers/name_pointers.asm
@@ -1,0 +1,92 @@
+TrainerNamePointers:
+; what is the point of these?
+ dw YoungsterName
+ dw BugCatcherName
+ dw LassName
+ dw wTrainerName
+ dw JrTrainerMName
+ dw JrTrainerFName
+ dw PokemaniacName
+ dw SuperNerdName
+ dw wTrainerName
+ dw wTrainerName
+ dw BurglarName
+ dw EngineerName
+ dw JugglerXName
+ dw wTrainerName
+ dw SwimmerName
+ dw wTrainerName
+ dw wTrainerName
+ dw BeautyName
+ dw wTrainerName
+ dw RockerName
+ dw JugglerName
+ dw wTrainerName
+ dw wTrainerName
+ dw BlackbeltName
+ dw wTrainerName
+ dw ProfOakName
+ dw ChiefName
+ dw ScientistName
+ dw wTrainerName
+ dw RocketName
+ dw CooltrainerMName
+ dw CooltrainerFName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+ dw wTrainerName
+
+YoungsterName:
+ db "YOUNGSTER@"
+BugCatcherName:
+ db "BUG CATCHER@"
+LassName:
+ db "LASS@"
+JrTrainerMName:
+ db "JR.TRAINER♂@"
+JrTrainerFName:
+ db "JR.TRAINER♀@"
+PokemaniacName:
+ db "POKéMANIAC@"
+SuperNerdName:
+ db "SUPER NERD@"
+BurglarName:
+ db "BURGLAR@"
+EngineerName:
+ db "ENGINEER@"
+JugglerXName:
+ db "JUGGLER@"
+SwimmerName:
+ db "SWIMMER@"
+BeautyName:
+ db "BEAUTY@"
+RockerName:
+ db "ROCKER@"
+JugglerName:
+ db "JUGGLER@"
+BlackbeltName:
+ db "BLACKBELT@"
+ProfOakName:
+ db "PROF.OAK@"
+ChiefName:
+ db "CHIEF@"
+ScientistName:
+ db "SCIENTIST@"
+RocketName:
+ db "ROCKET@"
+CooltrainerMName:
+ db "COOLTRAINER♂@"
+CooltrainerFName:
+ db "COOLTRAINER♀@"
--- /dev/null
+++ b/data/trainers/names.asm
@@ -1,0 +1,48 @@
+TrainerNames::
+ db "YOUNGSTER@"
+ db "BUG CATCHER@"
+ db "LASS@"
+ db "SAILOR@"
+ db "JR.TRAINER♂@"
+ db "JR.TRAINER♀@"
+ db "POKéMANIAC@"
+ db "SUPER NERD@"
+ db "HIKER@"
+ db "BIKER@"
+ db "BURGLAR@"
+ db "ENGINEER@"
+ db "JUGGLER@"
+ db "FISHERMAN@"
+ db "SWIMMER@"
+ db "CUE BALL@"
+ db "GAMBLER@"
+ db "BEAUTY@"
+ db "PSYCHIC@"
+ db "ROCKER@"
+ db "JUGGLER@"
+ db "TAMER@"
+ db "BIRD KEEPER@"
+ db "BLACKBELT@"
+ db "RIVAL1@"
+ db "PROF.OAK@"
+ db "CHIEF@"
+ db "SCIENTIST@"
+ db "GIOVANNI@"
+ db "ROCKET@"
+ db "COOLTRAINER♂@"
+ db "COOLTRAINER♀@"
+ db "BRUNO@"
+ db "BROCK@"
+ db "MISTY@"
+ db "LT.SURGE@"
+ db "ERIKA@"
+ db "KOGA@"
+ db "BLAINE@"
+ db "SABRINA@"
+ db "GENTLEMAN@"
+ db "RIVAL2@"
+ db "RIVAL3@"
+ db "LORELEI@"
+ db "CHANNELER@"
+ db "AGATHA@"
+ db "LANCE@"
--- /dev/null
+++ b/data/trainers/parties.asm
@@ -1,0 +1,696 @@
+TrainerDataPointers:
+ dw YoungsterData
+ dw BugCatcherData
+ dw LassData
+ dw SailorData
+ dw JrTrainerMData
+ dw JrTrainerFData
+ dw PokemaniacData
+ dw SuperNerdData
+ dw HikerData
+ dw BikerData
+ dw BurglarData
+ dw EngineerData
+ dw Juggler1Data
+ dw FisherData
+ dw SwimmerData
+ dw CueBallData
+ dw GamblerData
+ dw BeautyData
+ dw PsychicData
+ dw RockerData
+ dw JugglerData
+ dw TamerData
+ dw BirdKeeperData
+ dw BlackbeltData
+ dw Green1Data
+ dw ProfOakData
+ dw ChiefData
+ dw ScientistData
+ dw GiovanniData
+ dw RocketData
+ dw CooltrainerMData
+ dw CooltrainerFData
+ dw BrunoData
+ dw BrockData
+ dw MistyData
+ dw LtSurgeData
+ dw ErikaData
+ dw KogaData
+ dw BlaineData
+ dw SabrinaData
+ dw GentlemanData
+ dw Green2Data
+ dw Green3Data
+ dw LoreleiData
+ dw ChannelerData
+ dw AgathaData
+ dw LanceData
+
+; if first byte != FF, then
+ ; first byte is level (of all pokemon on this team)
+ ; all the next bytes are pokemon species
+ ; null-terminated
+; if first byte == FF, then
+ ; first byte is FF (obviously)
+ ; every next two bytes are a level and species
+ ; null-terminated
+
+YoungsterData:
+; Route 3
+ db 11,RATTATA,EKANS,0
+ db 14,SPEAROW,0
+; Mt. Moon 1F
+ db 10,RATTATA,RATTATA,ZUBAT,0
+; Route 24
+ db 14,RATTATA,EKANS,ZUBAT,0
+; Route 25
+ db 15,RATTATA,SPEAROW,0
+ db 17,SLOWPOKE,0
+ db 14,EKANS,SANDSHREW,0
+; SS Anne 1F Rooms
+ db 21,NIDORAN_M,0
+; Route 11
+ db 21,EKANS,0
+ db 19,SANDSHREW,ZUBAT,0
+ db 17,RATTATA,RATTATA,RATICATE,0
+ db 18,NIDORAN_M,NIDORINO,0
+; Unused
+ db 17,SPEAROW,RATTATA,RATTATA,SPEAROW,0
+BugCatcherData:
+; Viridian Forest
+ db 6,WEEDLE,CATERPIE,0
+ db 7,WEEDLE,KAKUNA,WEEDLE,0
+ db 9,WEEDLE,0
+; Route 3
+ db 10,CATERPIE,WEEDLE,CATERPIE,0
+ db 9,WEEDLE,KAKUNA,CATERPIE,METAPOD,0
+ db 11,CATERPIE,METAPOD,0
+; Mt. Moon 1F
+ db 11,WEEDLE,KAKUNA,0
+ db 10,CATERPIE,METAPOD,CATERPIE,0
+; Route 24
+ db 14,CATERPIE,WEEDLE,0
+; Route 6
+ db 16,WEEDLE,CATERPIE,WEEDLE,0
+ db 20,BUTTERFREE,0
+; Unused
+ db 18,METAPOD,CATERPIE,VENONAT,0
+; Route 9
+ db 19,BEEDRILL,BEEDRILL,0
+ db 20,CATERPIE,WEEDLE,VENONAT,0
+LassData:
+; Route 3
+ db 9,PIDGEY,PIDGEY,0
+ db 10,RATTATA,NIDORAN_M,0
+ db 14,JIGGLYPUFF,0
+; Route 4
+ db 31,PARAS,PARAS,PARASECT,0
+; Mt. Moon 1F
+ db 11,ODDISH,BELLSPROUT,0
+ db 14,CLEFAIRY,0
+; Route 24
+ db 16,PIDGEY,NIDORAN_F,0
+ db 14,PIDGEY,NIDORAN_F,0
+; Route 25
+ db 15,NIDORAN_M,NIDORAN_F,0
+ db 13,ODDISH,PIDGEY,ODDISH,0
+; SS Anne 1F Rooms
+ db 18,PIDGEY,NIDORAN_F,0
+; SS Anne 2F Rooms
+ db 18,RATTATA,PIKACHU,0
+; Route 8
+ db 23,NIDORAN_F,NIDORINA,0
+ db 24,MEOWTH,MEOWTH,MEOWTH,0
+ db 19,PIDGEY,RATTATA,NIDORAN_M,MEOWTH,PIKACHU,0
+ db 22,CLEFAIRY,CLEFAIRY,0
+; Celadon Gym
+ db 23,BELLSPROUT,WEEPINBELL,0
+ db 23,ODDISH,GLOOM,0
+SailorData:
+; SS Anne Stern
+ db 18,MACHOP,SHELLDER,0
+ db 17,MACHOP,TENTACOOL,0
+; SS Anne B1F Rooms
+ db 21,SHELLDER,0
+ db 17,HORSEA,SHELLDER,TENTACOOL,0
+ db 18,TENTACOOL,STARYU,0
+ db 17,HORSEA,HORSEA,HORSEA,0
+ db 20,MACHOP,0
+; Vermilion Gym
+ db 21,PIKACHU,PIKACHU,0
+JrTrainerMData:
+; Pewter Gym
+ db 11,DIGLETT,SANDSHREW,0
+; Route 24/Route 25
+ db 14,RATTATA,EKANS,0
+; Route 24
+ db 18,MANKEY,0
+; Route 6
+ db 20,SQUIRTLE,0
+ db 16,SPEAROW,RATICATE,0
+; Unused
+ db 18,DIGLETT,DIGLETT,SANDSHREW,0
+; Route 9
+ db 21,GROWLITHE,CHARMANDER,0
+ db 19,RATTATA,DIGLETT,EKANS,SANDSHREW,0
+; Route 12
+ db 29,NIDORAN_M,NIDORINO,0
+JrTrainerFData:
+; Cerulean Gym
+ db 19,GOLDEEN,0
+; Route 6
+ db 16,RATTATA,PIKACHU,0
+ db 16,PIDGEY,PIDGEY,PIDGEY,0
+; Unused
+ db 22,BULBASAUR,0
+; Route 9
+ db 18,ODDISH,BELLSPROUT,ODDISH,BELLSPROUT,0
+ db 23,MEOWTH,0
+; Route 10
+ db 20,PIKACHU,CLEFAIRY,0
+ db 21,PIDGEY,PIDGEOTTO,0
+; Rock Tunnel B1F
+ db 21,JIGGLYPUFF,PIDGEY,MEOWTH,0
+ db 22,ODDISH,BULBASAUR,0
+; Celadon Gym
+ db 24,BULBASAUR,IVYSAUR,0
+; Route 13
+ db 24,PIDGEY,MEOWTH,RATTATA,PIKACHU,MEOWTH,0
+ db 30,POLIWAG,POLIWAG,0
+ db 27,PIDGEY,MEOWTH,PIDGEY,PIDGEOTTO,0
+ db 28,GOLDEEN,POLIWAG,HORSEA,0
+; Route 20
+ db 31,GOLDEEN,SEAKING,0
+; Rock Tunnel 1F
+ db 22,BELLSPROUT,CLEFAIRY,0
+ db 20,MEOWTH,ODDISH,PIDGEY,0
+ db 19,PIDGEY,RATTATA,RATTATA,BELLSPROUT,0
+; Route 15
+ db 28,GLOOM,ODDISH,ODDISH,0
+ db 29,PIKACHU,RAICHU,0
+ db 33,CLEFAIRY,0
+ db 29,BELLSPROUT,ODDISH,TANGELA,0
+; Route 20
+ db 30,TENTACOOL,HORSEA,SEEL,0
+PokemaniacData:
+; Route 10
+ db 30,RHYHORN,LICKITUNG,0
+ db 20,CUBONE,SLOWPOKE,0
+; Rock Tunnel B1F
+ db 20,SLOWPOKE,SLOWPOKE,SLOWPOKE,0
+ db 22,CHARMANDER,CUBONE,0
+ db 25,SLOWPOKE,0
+; Victory Road 2F
+ db 40,CHARMELEON,LAPRAS,LICKITUNG,0
+; Rock Tunnel 1F
+ db 23,CUBONE,SLOWPOKE,0
+SuperNerdData:
+; Mt. Moon 1F
+ db 11,MAGNEMITE,VOLTORB,0
+; Mt. Moon B2F
+ db 12,GRIMER,VOLTORB,KOFFING,0
+; Route 8
+ db 20,VOLTORB,KOFFING,VOLTORB,MAGNEMITE,0
+ db 22,GRIMER,MUK,GRIMER,0
+ db 26,KOFFING,0
+; Unused
+ db 22,KOFFING,MAGNEMITE,WEEZING,0
+ db 20,MAGNEMITE,MAGNEMITE,KOFFING,MAGNEMITE,0
+ db 24,MAGNEMITE,VOLTORB,0
+; Cinnabar Gym
+ db 36,VULPIX,VULPIX,NINETALES,0
+ db 34,PONYTA,CHARMANDER,VULPIX,GROWLITHE,0
+ db 41,RAPIDASH,0
+ db 37,GROWLITHE,VULPIX,0
+HikerData:
+; Mt. Moon 1F
+ db 10,GEODUDE,GEODUDE,ONIX,0
+; Route 25
+ db 15,MACHOP,GEODUDE,0
+ db 13,GEODUDE,GEODUDE,MACHOP,GEODUDE,0
+ db 17,ONIX,0
+; Route 9
+ db 21,GEODUDE,ONIX,0
+ db 20,GEODUDE,MACHOP,GEODUDE,0
+; Route 10
+ db 21,GEODUDE,ONIX,0
+ db 19,ONIX,GRAVELER,0
+; Rock Tunnel B1F
+ db 21,GEODUDE,GEODUDE,GRAVELER,0
+ db 25,GEODUDE,0
+; Route 9/Rock Tunnel B1F
+ db 20,MACHOP,ONIX,0
+; Rock Tunnel 1F
+ db 19,GEODUDE,MACHOP,GEODUDE,GEODUDE,0
+ db 20,ONIX,ONIX,GEODUDE,0
+ db 21,GEODUDE,GRAVELER,0
+BikerData:
+; Route 13
+ db 28,KOFFING,KOFFING,KOFFING,0
+; Route 14
+ db 29,KOFFING,GRIMER,0
+; Route 15
+ db 25,KOFFING,KOFFING,WEEZING,KOFFING,GRIMER,0
+ db 28,KOFFING,GRIMER,WEEZING,0
+; Route 16
+ db 29,GRIMER,KOFFING,0
+ db 33,WEEZING,0
+ db 26,GRIMER,GRIMER,GRIMER,GRIMER,0
+; Route 17
+ ; From https://www.smogon.com/smog/issue27/glitch:
+ ; 0E:5FC2 is offset of the ending 0 for this first Biker on Route 17.
+ ; BaseStats + (MonBaseStatsEnd - MonBaseStats) * (000 - 1) = $5FC2;
+ ; that's the formula from GetMonHeader for the base stats of mon #000.
+ ; (BaseStats = $43DE and BANK(BaseStats) = $0E.)
+ ; Finally, PokedexOrder lists 0 as the dex ID for every MissingNo.
+ ; The result is that this data gets interpreted as the base stats
+ ; for MissingNo: 0,33,MUK,0,29,VOLTORB,VOLTORB,0,...,28,GRIMER,GRIMER.
+ db 28,WEEZING,KOFFING,WEEZING,0
+ db 33,MUK,0
+ db 29,VOLTORB,VOLTORB,0
+ db 29,WEEZING,MUK,0
+ db 25,KOFFING,WEEZING,KOFFING,KOFFING,WEEZING,0
+; Route 14
+ db 26,KOFFING,KOFFING,GRIMER,KOFFING,0
+ db 28,GRIMER,GRIMER,KOFFING,0
+ db 29,KOFFING,MUK,0
+BurglarData:
+; Unused
+ db 29,GROWLITHE,VULPIX,0
+ db 33,GROWLITHE,0
+ db 28,VULPIX,CHARMANDER,PONYTA,0
+; Cinnabar Gym
+ db 36,GROWLITHE,VULPIX,NINETALES,0
+ db 41,PONYTA,0
+ db 37,VULPIX,GROWLITHE,0
+; Mansion 2F
+ db 34,CHARMANDER,CHARMELEON,0
+; Mansion 3F
+ db 38,NINETALES,0
+; Mansion B1F
+ db 34,GROWLITHE,PONYTA,0
+EngineerData:
+; Unused
+ db 21,VOLTORB,MAGNEMITE,0
+; Route 11
+ db 21,MAGNEMITE,0
+ db 18,MAGNEMITE,MAGNEMITE,MAGNETON,0
+Juggler1Data:
+; none
+FisherData:
+; SS Anne 2F Rooms
+ db 17,GOLDEEN,TENTACOOL,GOLDEEN,0
+; SS Anne B1F Rooms
+ db 17,TENTACOOL,STARYU,SHELLDER,0
+; Route 12
+ db 22,GOLDEEN,POLIWAG,GOLDEEN,0
+ db 24,TENTACOOL,GOLDEEN,0
+ db 27,GOLDEEN,0
+ db 21,POLIWAG,SHELLDER,GOLDEEN,HORSEA,0
+; Route 21
+ db 28,SEAKING,GOLDEEN,SEAKING,SEAKING,0
+ db 31,SHELLDER,CLOYSTER,0
+ db 27,MAGIKARP,MAGIKARP,MAGIKARP,MAGIKARP,MAGIKARP,MAGIKARP,0
+ db 33,SEAKING,GOLDEEN,0
+; Route 12
+ db 24,MAGIKARP,MAGIKARP,0
+SwimmerData:
+; Cerulean Gym
+ db 16,HORSEA,SHELLDER,0
+; Route 19
+ db 30,TENTACOOL,SHELLDER,0
+ db 29,GOLDEEN,HORSEA,STARYU,0
+ db 30,POLIWAG,POLIWHIRL,0
+ db 27,HORSEA,TENTACOOL,TENTACOOL,GOLDEEN,0
+ db 29,GOLDEEN,SHELLDER,SEAKING,0
+ db 30,HORSEA,HORSEA,0
+ db 27,TENTACOOL,TENTACOOL,STARYU,HORSEA,TENTACRUEL,0
+; Route 20
+ db 31,SHELLDER,CLOYSTER,0
+ db 35,STARYU,0
+ db 28,HORSEA,HORSEA,SEADRA,HORSEA,0
+; Route 21
+ db 33,SEADRA,TENTACRUEL,0
+ db 37,STARMIE,0
+ db 33,STARYU,WARTORTLE,0
+ db 32,POLIWHIRL,TENTACOOL,SEADRA,0
+CueBallData:
+; Route 16
+ db 28,MACHOP,MANKEY,MACHOP,0
+ db 29,MANKEY,MACHOP,0
+ db 33,MACHOP,0
+; Route 17
+ db 29,MANKEY,PRIMEAPE,0
+ db 29,MACHOP,MACHOKE,0
+ db 33,MACHOKE,0
+ db 26,MANKEY,MANKEY,MACHOKE,MACHOP,0
+ db 29,PRIMEAPE,MACHOKE,0
+; Route 21
+ db 31,TENTACOOL,TENTACOOL,TENTACRUEL,0
+GamblerData:
+; Route 11
+ db 18,POLIWAG,HORSEA,0
+ db 18,BELLSPROUT,ODDISH,0
+ db 18,VOLTORB,MAGNEMITE,0
+ db 18,GROWLITHE,VULPIX,0
+; Route 8
+ db 22,POLIWAG,POLIWAG,POLIWHIRL,0
+; Unused
+ db 22,ONIX,GEODUDE,GRAVELER,0
+; Route 8
+ db 24,GROWLITHE,VULPIX,0
+BeautyData:
+; Celadon Gym
+ db 21,ODDISH,BELLSPROUT,ODDISH,BELLSPROUT,0
+ db 24,BELLSPROUT,BELLSPROUT,0
+ db 26,EXEGGCUTE,0
+; Route 13
+ db 27,RATTATA,PIKACHU,RATTATA,0
+ db 29,CLEFAIRY,MEOWTH,0
+; Route 20
+ db 35,SEAKING,0
+ db 30,SHELLDER,SHELLDER,CLOYSTER,0
+ db 31,POLIWAG,SEAKING,0
+; Route 15
+ db 29,PIDGEOTTO,WIGGLYTUFF,0
+ db 29,BULBASAUR,IVYSAUR,0
+; Unused
+ db 33,WEEPINBELL,BELLSPROUT,WEEPINBELL,0
+; Route 19
+ db 27,POLIWAG,GOLDEEN,SEAKING,GOLDEEN,POLIWAG,0
+ db 30,GOLDEEN,SEAKING,0
+ db 29,STARYU,STARYU,STARYU,0
+; Route 20
+ db 30,SEADRA,HORSEA,SEADRA,0
+PsychicData:
+; Saffron Gym
+ db 31,KADABRA,SLOWPOKE,MR_MIME,KADABRA,0
+ db 34,MR_MIME,KADABRA,0
+ db 33,SLOWPOKE,SLOWPOKE,SLOWBRO,0
+ db 38,SLOWBRO,0
+RockerData:
+; Vermilion Gym
+ db 20,VOLTORB,MAGNEMITE,VOLTORB,0
+; Route 12
+ db 29,VOLTORB,ELECTRODE,0
+JugglerData:
+; Silph Co. 5F
+ db 29,KADABRA,MR_MIME,0
+; Victory Road 2F
+ db 41,DROWZEE,HYPNO,KADABRA,KADABRA,0
+; Fuchsia Gym
+ db 31,DROWZEE,DROWZEE,KADABRA,DROWZEE,0
+ db 34,DROWZEE,HYPNO,0
+; Victory Road 2F
+ db 48,MR_MIME,0
+; Unused
+ db 33,HYPNO,0
+; Fuchsia Gym
+ db 38,HYPNO,0
+ db 34,DROWZEE,KADABRA,0
+TamerData:
+; Fuchsia Gym
+ db 34,SANDSLASH,ARBOK,0
+ db 33,ARBOK,SANDSLASH,ARBOK,0
+; Viridian Gym
+ db 43,RHYHORN,0
+ db 39,ARBOK,TAUROS,0
+; Victory Road 2F
+ db 44,PERSIAN,GOLDUCK,0
+; Unused
+ db 42,RHYHORN,PRIMEAPE,ARBOK,TAUROS,0
+BirdKeeperData:
+; Route 13
+ db 29,PIDGEY,PIDGEOTTO,0
+ db 25,SPEAROW,PIDGEY,PIDGEY,SPEAROW,SPEAROW,0
+ db 26,PIDGEY,PIDGEOTTO,SPEAROW,FEAROW,0
+; Route 14
+ db 33,FARFETCHD,0
+ db 29,SPEAROW,FEAROW,0
+; Route 15
+ db 26,PIDGEOTTO,FARFETCHD,DODUO,PIDGEY,0
+ db 28,DODRIO,DODUO,DODUO,0
+; Route 18
+ db 29,SPEAROW,FEAROW,0
+ db 34,DODRIO,0
+ db 26,SPEAROW,SPEAROW,FEAROW,SPEAROW,0
+; Route 20
+ db 30,FEAROW,FEAROW,PIDGEOTTO,0
+; Unused
+ db 39,PIDGEOTTO,PIDGEOTTO,PIDGEY,PIDGEOTTO,0
+ db 42,FARFETCHD,FEAROW,0
+; Route 14
+ db 28,PIDGEY,DODUO,PIDGEOTTO,0
+ db 26,PIDGEY,SPEAROW,PIDGEY,FEAROW,0
+ db 29,PIDGEOTTO,FEAROW,0
+ db 28,SPEAROW,DODUO,FEAROW,0
+BlackbeltData:
+; Fighting Dojo
+ db 37,HITMONLEE,HITMONCHAN,0
+ db 31,MANKEY,MANKEY,PRIMEAPE,0
+ db 32,MACHOP,MACHOKE,0
+ db 36,PRIMEAPE,0
+ db 31,MACHOP,MANKEY,PRIMEAPE,0
+; Viridian Gym
+ db 40,MACHOP,MACHOKE,0
+ db 43,MACHOKE,0
+ db 38,MACHOKE,MACHOP,MACHOKE,0
+; Victory Road 2F
+ db 43,MACHOKE,MACHOP,MACHOKE,0
+Green1Data:
+ db 5,SQUIRTLE,0
+ db 5,BULBASAUR,0
+ db 5,CHARMANDER,0
+; Route 22
+ db $FF,9,PIDGEY,8,SQUIRTLE,0
+ db $FF,9,PIDGEY,8,BULBASAUR,0
+ db $FF,9,PIDGEY,8,CHARMANDER,0
+; Cerulean City
+ db $FF,18,PIDGEOTTO,15,ABRA,15,RATTATA,17,SQUIRTLE,0
+ db $FF,18,PIDGEOTTO,15,ABRA,15,RATTATA,17,BULBASAUR,0
+ db $FF,18,PIDGEOTTO,15,ABRA,15,RATTATA,17,CHARMANDER,0
+ProfOakData:
+; Unused
+ db $FF,66,TAUROS,67,EXEGGUTOR,68,ARCANINE,69,BLASTOISE,70,GYARADOS,0
+ db $FF,66,TAUROS,67,EXEGGUTOR,68,ARCANINE,69,VENUSAUR,70,GYARADOS,0
+ db $FF,66,TAUROS,67,EXEGGUTOR,68,ARCANINE,69,CHARIZARD,70,GYARADOS,0
+ChiefData:
+; none
+ScientistData:
+; Unused
+ db 34,KOFFING,VOLTORB,0
+; Silph Co. 2F
+ db 26,GRIMER,WEEZING,KOFFING,WEEZING,0
+ db 28,MAGNEMITE,VOLTORB,MAGNETON,0
+; Silph Co. 3F/Mansion 1F
+ db 29,ELECTRODE,WEEZING,0
+; Silph Co. 4F
+ db 33,ELECTRODE,0
+; Silph Co. 5F
+ db 26,MAGNETON,KOFFING,WEEZING,MAGNEMITE,0
+; Silph Co. 6F
+ db 25,VOLTORB,KOFFING,MAGNETON,MAGNEMITE,KOFFING,0
+; Silph Co. 7F
+ db 29,ELECTRODE,MUK,0
+; Silph Co. 8F
+ db 29,GRIMER,ELECTRODE,0
+; Silph Co. 9F
+ db 28,VOLTORB,KOFFING,MAGNETON,0
+; Silph Co. 10F
+ db 29,MAGNEMITE,KOFFING,0
+; Mansion 3F
+ db 33,MAGNEMITE,MAGNETON,VOLTORB,0
+; Mansion B1F
+ db 34,MAGNEMITE,ELECTRODE,0
+GiovanniData:
+; Rocket Hideout B4F
+ db $FF,25,ONIX,24,RHYHORN,29,KANGASKHAN,0
+; Silph Co. 11F
+ db $FF,37,NIDORINO,35,KANGASKHAN,37,RHYHORN,41,NIDOQUEEN,0
+; Viridian Gym
+ db $FF,45,RHYHORN,42,DUGTRIO,44,NIDOQUEEN,45,NIDOKING,50,RHYDON,0
+RocketData:
+; Mt. Moon B2F
+ db 13,RATTATA,ZUBAT,0
+ db 11,SANDSHREW,RATTATA,ZUBAT,0
+ db 12,ZUBAT,EKANS,0
+ db 16,RATICATE,0
+; Cerulean City
+ db 17,MACHOP,DROWZEE,0
+; Route 24
+ db 15,EKANS,ZUBAT,0
+; Game Corner
+ db 20,RATICATE,ZUBAT,0
+; Rocket Hideout B1F
+ db 21,DROWZEE,MACHOP,0
+ db 21,RATICATE,RATICATE,0
+ db 20,GRIMER,KOFFING,KOFFING,0
+ db 19,RATTATA,RATICATE,RATICATE,RATTATA,0
+ db 22,GRIMER,KOFFING,0
+; Rocket Hideout B2F
+ db 17,ZUBAT,KOFFING,GRIMER,ZUBAT,RATICATE,0
+; Rocket Hideout B3F
+ db 20,RATTATA,RATICATE,DROWZEE,0
+ db 21,MACHOP,MACHOP,0
+; Rocket Hideout B4F
+ db 23,SANDSHREW,EKANS,SANDSLASH,0
+ db 23,EKANS,SANDSHREW,ARBOK,0
+ db 21,KOFFING,ZUBAT,0
+; Pokémon Tower 7F
+ db 25,ZUBAT,ZUBAT,GOLBAT,0
+ db 26,KOFFING,DROWZEE,0
+ db 23,ZUBAT,RATTATA,RATICATE,ZUBAT,0
+; Unused
+ db 26,DROWZEE,KOFFING,0
+; Silph Co. 2F
+ db 29,CUBONE,ZUBAT,0
+ db 25,GOLBAT,ZUBAT,ZUBAT,RATICATE,ZUBAT,0
+; Silph Co. 3F
+ db 28,RATICATE,HYPNO,RATICATE,0
+; Silph Co. 4F
+ db 29,MACHOP,DROWZEE,0
+ db 28,EKANS,ZUBAT,CUBONE,0
+; Silph Co. 5F
+ db 33,ARBOK,0
+ db 33,HYPNO,0
+; Silph Co. 6F
+ db 29,MACHOP,MACHOKE,0
+ db 28,ZUBAT,ZUBAT,GOLBAT,0
+; Silph Co. 7F
+ db 26,RATICATE,ARBOK,KOFFING,GOLBAT,0
+ db 29,CUBONE,CUBONE,0
+ db 29,SANDSHREW,SANDSLASH,0
+; Silph Co. 8F
+ db 26,RATICATE,ZUBAT,GOLBAT,RATTATA,0
+ db 28,WEEZING,GOLBAT,KOFFING,0
+; Silph Co. 9F
+ db 28,DROWZEE,GRIMER,MACHOP,0
+ db 28,GOLBAT,DROWZEE,HYPNO,0
+; Silph Co. 10F
+ db 33,MACHOKE,0
+; Silph Co. 11F
+ db 25,RATTATA,RATTATA,ZUBAT,RATTATA,EKANS,0
+ db 32,CUBONE,DROWZEE,MAROWAK,0
+CooltrainerMData:
+; Viridian Gym
+ db 39,NIDORINO,NIDOKING,0
+; Victory Road 3F
+ db 43,EXEGGUTOR,CLOYSTER,ARCANINE,0
+ db 43,KINGLER,TENTACRUEL,BLASTOISE,0
+; Unused
+ db 45,KINGLER,STARMIE,0
+; Victory Road 1F
+ db 42,IVYSAUR,WARTORTLE,CHARMELEON,CHARIZARD,0
+; Unused
+ db 44,IVYSAUR,WARTORTLE,CHARMELEON,0
+ db 49,NIDOKING,0
+ db 44,KINGLER,CLOYSTER,0
+; Viridian Gym
+ db 39,SANDSLASH,DUGTRIO,0
+ db 43,RHYHORN,0
+CooltrainerFData:
+; Celadon Gym
+ db 24,WEEPINBELL,GLOOM,IVYSAUR,0
+; Victory Road 3F
+ db 43,BELLSPROUT,WEEPINBELL,VICTREEBEL,0
+ db 43,PARASECT,DEWGONG,CHANSEY,0
+; Unused
+ db 46,VILEPLUME,BUTTERFREE,0
+; Victory Road 1F
+ db 44,PERSIAN,NINETALES,0
+; Unused
+ db 45,IVYSAUR,VENUSAUR,0
+ db 45,NIDORINA,NIDOQUEEN,0
+ db 43,PERSIAN,NINETALES,RAICHU,0
+BrunoData:
+ db $FF,53,ONIX,55,HITMONCHAN,55,HITMONLEE,56,ONIX,58,MACHAMP,0
+BrockData:
+ db $FF,12,GEODUDE,14,ONIX,0
+MistyData:
+ db $FF,18,STARYU,21,STARMIE,0
+LtSurgeData:
+ db $FF,21,VOLTORB,18,PIKACHU,24,RAICHU,0
+ErikaData:
+ db $FF,29,VICTREEBEL,24,TANGELA,29,VILEPLUME,0
+KogaData:
+ db $FF,37,KOFFING,39,MUK,37,KOFFING,43,WEEZING,0
+BlaineData:
+ db $FF,42,GROWLITHE,40,PONYTA,42,RAPIDASH,47,ARCANINE,0
+SabrinaData:
+ db $FF,38,KADABRA,37,MR_MIME,38,VENOMOTH,43,ALAKAZAM,0
+GentlemanData:
+; SS Anne 1F Rooms
+ db 18,GROWLITHE,GROWLITHE,0
+ db 19,NIDORAN_M,NIDORAN_F,0
+; SS Anne 2F Rooms/Vermilion Gym
+ db 23,PIKACHU,0
+; Unused
+ db 48,PRIMEAPE,0
+; SS Anne 2F Rooms
+ db 17,GROWLITHE,PONYTA,0
+Green2Data:
+; SS Anne 2F
+ db $FF,19,PIDGEOTTO,16,RATICATE,18,KADABRA,20,WARTORTLE,0
+ db $FF,19,PIDGEOTTO,16,RATICATE,18,KADABRA,20,IVYSAUR,0
+ db $FF,19,PIDGEOTTO,16,RATICATE,18,KADABRA,20,CHARMELEON,0
+; Pokémon Tower 2F
+ db $FF,25,PIDGEOTTO,23,GROWLITHE,22,EXEGGCUTE,20,KADABRA,25,WARTORTLE,0
+ db $FF,25,PIDGEOTTO,23,GYARADOS,22,GROWLITHE,20,KADABRA,25,IVYSAUR,0
+ db $FF,25,PIDGEOTTO,23,EXEGGCUTE,22,GYARADOS,20,KADABRA,25,CHARMELEON,0
+; Silph Co. 7F
+ db $FF,37,PIDGEOT,38,GROWLITHE,35,EXEGGCUTE,35,ALAKAZAM,40,BLASTOISE,0
+ db $FF,37,PIDGEOT,38,GYARADOS,35,GROWLITHE,35,ALAKAZAM,40,VENUSAUR,0
+ db $FF,37,PIDGEOT,38,EXEGGCUTE,35,GYARADOS,35,ALAKAZAM,40,CHARIZARD,0
+; Route 22
+ db $FF,47,PIDGEOT,45,RHYHORN,45,GROWLITHE,47,EXEGGCUTE,50,ALAKAZAM,53,BLASTOISE,0
+ db $FF,47,PIDGEOT,45,RHYHORN,45,GYARADOS,47,GROWLITHE,50,ALAKAZAM,53,VENUSAUR,0
+ db $FF,47,PIDGEOT,45,RHYHORN,45,EXEGGCUTE,47,GYARADOS,50,ALAKAZAM,53,CHARIZARD,0
+Green3Data:
+ db $FF,61,PIDGEOT,59,ALAKAZAM,61,RHYDON,61,ARCANINE,63,EXEGGUTOR,65,BLASTOISE,0
+ db $FF,61,PIDGEOT,59,ALAKAZAM,61,RHYDON,61,GYARADOS,63,ARCANINE,65,VENUSAUR,0
+ db $FF,61,PIDGEOT,59,ALAKAZAM,61,RHYDON,61,EXEGGUTOR,63,GYARADOS,65,CHARIZARD,0
+LoreleiData:
+ db $FF,54,DEWGONG,53,CLOYSTER,54,SLOWBRO,56,JYNX,56,LAPRAS,0
+ChannelerData:
+; Unused
+ db 22,GASTLY,0
+ db 24,GASTLY,0
+ db 23,GASTLY,GASTLY,0
+ db 24,GASTLY,0
+; Pokémon Tower 3F
+ db 23,GASTLY,0
+ db 24,GASTLY,0
+; Unused
+ db 24,HAUNTER,0
+; Pokémon Tower 3F
+ db 22,GASTLY,0
+; Pokémon Tower 4F
+ db 24,GASTLY,0
+ db 23,GASTLY,GASTLY,0
+; Unused
+ db 24,GASTLY,0
+; Pokémon Tower 4F
+ db 22,GASTLY,0
+; Unused
+ db 24,GASTLY,0
+; Pokémon Tower 5F
+ db 23,HAUNTER,0
+; Unused
+ db 24,GASTLY,0
+; Pokémon Tower 5F
+ db 22,GASTLY,0
+ db 24,GASTLY,0
+ db 22,HAUNTER,0
+; Pokémon Tower 6F
+ db 22,GASTLY,GASTLY,GASTLY,0
+ db 24,GASTLY,0
+ db 24,GASTLY,0
+; Saffron Gym
+ db 34,GASTLY,HAUNTER,0
+ db 38,HAUNTER,0
+ db 33,GASTLY,GASTLY,HAUNTER,0
+AgathaData:
+ db $FF,56,GENGAR,56,GOLBAT,55,HAUNTER,58,ARBOK,60,GENGAR,0
+LanceData:
+ db $FF,58,GYARADOS,56,DRAGONAIR,56,DRAGONAIR,60,AERODACTYL,62,DRAGONITE,0
--- /dev/null
+++ b/data/trainers/pic_pointers_money.asm
@@ -1,0 +1,143 @@
+TrainerPicAndMoneyPointers::
+; trainer pic pointers and base money.
+; money received after battle = base money × level of highest-level enemy mon
+ dw YoungsterPic
+ money 1500
+
+ dw BugCatcherPic
+ money 1000
+
+ dw LassPic
+ money 1500
+
+ dw SailorPic
+ money 3000
+
+ dw JrTrainerMPic
+ money 2000
+
+ dw JrTrainerFPic
+ money 2000
+
+ dw PokemaniacPic
+ money 5000
+
+ dw SuperNerdPic
+ money 2500
+
+ dw HikerPic
+ money 3500
+
+ dw BikerPic
+ money 2000
+
+ dw BurglarPic
+ money 9000
+
+ dw EngineerPic
+ money 5000
+
+ dw JugglerPic
+ money 3500
+
+ dw FisherPic
+ money 3500
+
+ dw SwimmerPic
+ money 500
+
+ dw CueBallPic
+ money 2500
+
+ dw GamblerPic
+ money 7000
+
+ dw BeautyPic
+ money 7000
+
+ dw PsychicPic
+ money 1000
+
+ dw RockerPic
+ money 2500
+
+ dw JugglerPic
+ money 3500
+
+ dw TamerPic
+ money 4000
+
+ dw BirdKeeperPic
+ money 2500
+
+ dw BlackbeltPic
+ money 2500
+
+ dw Rival1Pic
+ money 3500
+
+ dw ProfOakPic
+ money 9900
+
+ dw ChiefPic
+ money 3000
+
+ dw ScientistPic
+ money 5000
+
+ dw GiovanniPic
+ money 9900
+
+ dw RocketPic
+ money 3000
+
+ dw CooltrainerMPic
+ money 3500
+
+ dw CooltrainerFPic
+ money 3500
+
+ dw BrunoPic
+ money 9900
+
+ dw BrockPic
+ money 9900
+
+ dw MistyPic
+ money 9900
+
+ dw LtSurgePic
+ money 9900
+
+ dw ErikaPic
+ money 9900
+
+ dw KogaPic
+ money 9900
+
+ dw BlainePic
+ money 9900
+
+ dw SabrinaPic
+ money 9900
+
+ dw GentlemanPic
+ money 7000
+
+ dw Rival2Pic
+ money 6500
+
+ dw Rival3Pic
+ money 9900
+
+ dw LoreleiPic
+ money 9900
+
+ dw ChannelerPic
+ money 3000
+
+ dw AgathaPic
+ money 9900
+
+ dw LancePic
+ money 9900
--- /dev/null
+++ b/data/trainers/special_moves.asm
@@ -1,0 +1,32 @@
+LoneMoves:
+; these are used for gym leaders.
+; this is not automatic! you have to write the number you want to wLoneAttackNo
+; first. e.g., erika's script writes 4 to wLoneAttackNo to get mega drain,
+; the fourth entry in the list.
+
+; first byte: pokemon in the trainer's party that gets the move
+; second byte: move
+; unterminated
+ db 1,BIDE
+ db 1,BUBBLEBEAM
+ db 2,THUNDERBOLT
+ db 2,MEGA_DRAIN
+ db 3,TOXIC
+ db 3,PSYWAVE
+ db 3,FIRE_BLAST
+ db 4,FISSURE
+
+TeamMoves:
+; these are used for elite four.
+; this is automatic, based on trainer class.
+; don't be confused by LoneMoves above, the two data structures are
+ ; _completely_ unrelated.
+
+; first byte: trainer (all trainers in this class have this move)
+; second byte: move
+; ff-terminated
+ db LORELEI,BLIZZARD
+ db BRUNO,FISSURE
+ db AGATHA,TOXIC
+ db LANCE,BARRIER
+ db $FF
--- a/data/type_effects.asm
+++ /dev/null
@@ -1,89 +1,0 @@
-TypeEffects:
-; format: attacking type, defending type, damage multiplier
-; the multiplier is a (decimal) fixed-point number:
-; 20 is ×2.0
-; 05 is ×0.5
-; 00 is ×0
- db WATER,FIRE,20
- db FIRE,GRASS,20
- db FIRE,ICE,20
- db GRASS,WATER,20
- db ELECTRIC,WATER,20
- db WATER,ROCK,20
- db GROUND,FLYING,00
- db WATER,WATER,05
- db FIRE,FIRE,05
- db ELECTRIC,ELECTRIC,05
- db ICE,ICE,05
- db GRASS,GRASS,05
- db PSYCHIC,PSYCHIC,05
- db FIRE,WATER,05
- db GRASS,FIRE,05
- db WATER,GRASS,05
- db ELECTRIC,GRASS,05
- db NORMAL,ROCK,05
- db NORMAL,GHOST,00
- db GHOST,GHOST,20
- db FIRE,BUG,20
- db FIRE,ROCK,05
- db WATER,GROUND,20
- db ELECTRIC,GROUND,00
- db ELECTRIC,FLYING,20
- db GRASS,GROUND,20
- db GRASS,BUG,05
- db GRASS,POISON,05
- db GRASS,ROCK,20
- db GRASS,FLYING,05
- db ICE,WATER,05
- db ICE,GRASS,20
- db ICE,GROUND,20
- db ICE,FLYING,20
- db FIGHTING,NORMAL,20
- db FIGHTING,POISON,05
- db FIGHTING,FLYING,05
- db FIGHTING,PSYCHIC,05
- db FIGHTING,BUG,05
- db FIGHTING,ROCK,20
- db FIGHTING,ICE,20
- db FIGHTING,GHOST,00
- db POISON,GRASS,20
- db POISON,POISON,05
- db POISON,GROUND,05
- db POISON,BUG,20
- db POISON,ROCK,05
- db POISON,GHOST,05
- db GROUND,FIRE,20
- db GROUND,ELECTRIC,20
- db GROUND,GRASS,05
- db GROUND,BUG,05
- db GROUND,ROCK,20
- db GROUND,POISON,20
- db FLYING,ELECTRIC,05
- db FLYING,FIGHTING,20
- db FLYING,BUG,20
- db FLYING,GRASS,20
- db FLYING,ROCK,05
- db PSYCHIC,FIGHTING,20
- db PSYCHIC,POISON,20
- db BUG,FIRE,05
- db BUG,GRASS,20
- db BUG,FIGHTING,05
- db BUG,FLYING,05
- db BUG,PSYCHIC,20
- db BUG,GHOST,05
- db BUG,POISON,20
- db ROCK,FIRE,20
- db ROCK,FIGHTING,05
- db ROCK,GROUND,05
- db ROCK,FLYING,20
- db ROCK,BUG,20
- db ROCK,ICE,20
- db GHOST,NORMAL,00
- db GHOST,PSYCHIC,00
- db FIRE,DRAGON,05
- db WATER,DRAGON,05
- db ELECTRIC,DRAGON,05
- db GRASS,DRAGON,05
- db ICE,DRAGON,20
- db DRAGON,DRAGON,20
- db $FF
--- /dev/null
+++ b/data/types/names.asm
@@ -1,0 +1,48 @@
+TypeNames:
+
+ dw .Normal
+ dw .Fighting
+ dw .Flying
+ dw .Poison
+ dw .Ground
+ dw .Rock
+ dw .Bird
+ dw .Bug
+ dw .Ghost
+
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+ dw .Normal
+
+ dw .Fire
+ dw .Water
+ dw .Grass
+ dw .Electric
+ dw .Psychic
+ dw .Ice
+ dw .Dragon
+
+.Normal: db "NORMAL@"
+.Fighting: db "FIGHTING@"
+.Flying: db "FLYING@"
+.Poison: db "POISON@"
+.Fire: db "FIRE@"
+.Water: db "WATER@"
+.Grass: db "GRASS@"
+.Electric: db "ELECTRIC@"
+.Psychic: db "PSYCHIC@"
+.Ice: db "ICE@"
+.Ground: db "GROUND@"
+.Rock: db "ROCK@"
+.Bird: db "BIRD@"
+.Bug: db "BUG@"
+.Ghost: db "GHOST@"
+.Dragon: db "DRAGON@"
--- /dev/null
+++ b/data/types/type_matchups.asm
@@ -1,0 +1,89 @@
+TypeEffects:
+; format: attacking type, defending type, damage multiplier
+; the multiplier is a (decimal) fixed-point number:
+; 20 is ×2.0
+; 05 is ×0.5
+; 00 is ×0
+ db WATER,FIRE,20
+ db FIRE,GRASS,20
+ db FIRE,ICE,20
+ db GRASS,WATER,20
+ db ELECTRIC,WATER,20
+ db WATER,ROCK,20
+ db GROUND,FLYING,00
+ db WATER,WATER,05
+ db FIRE,FIRE,05
+ db ELECTRIC,ELECTRIC,05
+ db ICE,ICE,05
+ db GRASS,GRASS,05
+ db PSYCHIC,PSYCHIC,05
+ db FIRE,WATER,05
+ db GRASS,FIRE,05
+ db WATER,GRASS,05
+ db ELECTRIC,GRASS,05
+ db NORMAL,ROCK,05
+ db NORMAL,GHOST,00
+ db GHOST,GHOST,20
+ db FIRE,BUG,20
+ db FIRE,ROCK,05
+ db WATER,GROUND,20
+ db ELECTRIC,GROUND,00
+ db ELECTRIC,FLYING,20
+ db GRASS,GROUND,20
+ db GRASS,BUG,05
+ db GRASS,POISON,05
+ db GRASS,ROCK,20
+ db GRASS,FLYING,05
+ db ICE,WATER,05
+ db ICE,GRASS,20
+ db ICE,GROUND,20
+ db ICE,FLYING,20
+ db FIGHTING,NORMAL,20
+ db FIGHTING,POISON,05
+ db FIGHTING,FLYING,05
+ db FIGHTING,PSYCHIC,05
+ db FIGHTING,BUG,05
+ db FIGHTING,ROCK,20
+ db FIGHTING,ICE,20
+ db FIGHTING,GHOST,00
+ db POISON,GRASS,20
+ db POISON,POISON,05
+ db POISON,GROUND,05
+ db POISON,BUG,20
+ db POISON,ROCK,05
+ db POISON,GHOST,05
+ db GROUND,FIRE,20
+ db GROUND,ELECTRIC,20
+ db GROUND,GRASS,05
+ db GROUND,BUG,05
+ db GROUND,ROCK,20
+ db GROUND,POISON,20
+ db FLYING,ELECTRIC,05
+ db FLYING,FIGHTING,20
+ db FLYING,BUG,20
+ db FLYING,GRASS,20
+ db FLYING,ROCK,05
+ db PSYCHIC,FIGHTING,20
+ db PSYCHIC,POISON,20
+ db BUG,FIRE,05
+ db BUG,GRASS,20
+ db BUG,FIGHTING,05
+ db BUG,FLYING,05
+ db BUG,PSYCHIC,20
+ db BUG,GHOST,05
+ db BUG,POISON,20
+ db ROCK,FIRE,20
+ db ROCK,FIGHTING,05
+ db ROCK,GROUND,05
+ db ROCK,FLYING,20
+ db ROCK,BUG,20
+ db ROCK,ICE,20
+ db GHOST,NORMAL,00
+ db GHOST,PSYCHIC,00
+ db FIRE,DRAGON,05
+ db WATER,DRAGON,05
+ db ELECTRIC,DRAGON,05
+ db GRASS,DRAGON,05
+ db ICE,DRAGON,20
+ db DRAGON,DRAGON,20
+ db $FF
--- a/data/vending_prices.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-VendingPrices:
- db FRESH_WATER
- money 200
- db SODA_POP
- money 300
- db LEMONADE
- money 350
--- a/data/warp_carpet_tile_ids.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-WarpTileListPointers:
- dw .facingDownWarpTiles
- dw .facingUpWarpTiles
- dw .facingLeftWarpTiles
- dw .facingRightWarpTiles
-
-.facingDownWarpTiles
- db $01,$12,$17,$3D,$04,$18,$33,$FF
-
-.facingUpWarpTiles
- db $01,$5C,$FF
-
-.facingLeftWarpTiles
- db $1A,$4B,$FF
-
-.facingRightWarpTiles
- db $0F,$4E,$FF
--- a/data/warp_pad_hole_tile_ids.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-; format: db tileset id, tile id, value to be put in [wStandingOnWarpPadOrHole]
-WarpPadAndHoleData:
- db FACILITY, $20, 1 ; warp pad
- db FACILITY, $11, 2 ; hole
- db CAVERN, $22, 2 ; hole
- db INTERIOR, $55, 1 ; warp pad
- db $FF
--- a/data/warp_tile_ids.asm
+++ /dev/null
@@ -1,85 +1,0 @@
-WarpTileIDPointers:
- dw OverworldWarpTileIDs
- dw RedsHouse1WarpTileIDs
- dw MartWarpTileIDs
- dw ForestWarpTileIDs
- dw RedsHouse2WarpTileIDs
- dw DojoWarpTileIDs
- dw PokecenterWarpTileIDs
- dw GymWarpTileIDs
- dw HouseWarpTileIDs
- dw ForestGateWarpTileIDs
- dw MuseumWarpTileIDs
- dw UndergroundWarpTileIDs
- dw GateWarpTileIDs
- dw ShipWarpTileIDs
- dw ShipPortWarpTileIDs
- dw CemeteryWarpTileIDs
- dw InteriorWarpTileIDs
- dw CavernWarpTileIDs
- dw LobbyWarpTileIDs
- dw MansionWarpTileIDs
- dw LabWarpTileIDs
- dw ClubWarpTileIDs
- dw FacilityWarpTileIDs
- dw PlateauWarpTileIDs
-
-OverworldWarpTileIDs:
- db $1B,$58,$FF
-
-ForestGateWarpTileIDs:
-MuseumWarpTileIDs:
-GateWarpTileIDs:
- db $3B
-
-RedsHouse1WarpTileIDs:
-RedsHouse2WarpTileIDs:
- db $1A,$1C,$FF
-
-MartWarpTileIDs:
-PokecenterWarpTileIDs:
- db $5E,$FF
-
-ForestWarpTileIDs:
- db $5A,$5C,$3A,$FF
-
-DojoWarpTileIDs:
-GymWarpTileIDs:
- db $4A,$FF
-
-HouseWarpTileIDs:
- db $54,$5C,$32,$FF
-
-ShipWarpTileIDs:
- db $37,$39,$1E,$4A,$FF
-
-InteriorWarpTileIDs:
- db $15,$55,$04,$FF
-
-CavernWarpTileIDs:
- db $18,$1A,$22,$FF
-
-LobbyWarpTileIDs:
- db $1A,$1C,$38,$FF
-
-MansionWarpTileIDs:
- db $1A,$1C,$53,$FF
-
-LabWarpTileIDs:
- db $34,$FF
-
-FacilityWarpTileIDs:
- db $43,$58,$20
-
-CemeteryWarpTileIDs:
- db $1B
-
-UndergroundWarpTileIDs:
- db $13,$FF
-
-PlateauWarpTileIDs:
- db $1B,$3B
-
-ShipPortWarpTileIDs:
-ClubWarpTileIDs:
- db $FF
--- a/data/water_tilesets.asm
+++ /dev/null
@@ -1,4 +1,0 @@
-; tilesets with water
-WaterTilesets:
- db OVERWORLD, FOREST, DOJO, GYM, SHIP, SHIP_PORT, CAVERN, FACILITY, PLATEAU
- db $ff ; terminator
--- /dev/null
+++ b/data/wild/good_rod.asm
@@ -1,0 +1,3 @@
+GoodRodMons:
+ db 10,GOLDEEN
+ db 10,POLIWAG
--- /dev/null
+++ b/data/wild/grass_water.asm
@@ -1,0 +1,321 @@
+WildDataPointers:
+ dw NoMons ; PALLET_TOWN
+ dw NoMons ; VIRIDIAN_CITY
+ dw NoMons ; PEWTER_CITY
+ dw NoMons ; CERULEAN_CITY
+ dw NoMons ; LAVENDER_TOWN
+ dw NoMons ; VERMILION_CITY
+ dw NoMons ; CELADON_CITY
+ dw NoMons ; FUCHSIA_CITY
+ dw NoMons ; CINNABAR_ISLAND
+ dw NoMons ; INDIGO_PLATEAU
+ dw NoMons ; SAFFRON_CITY
+ dw NoMons ; unused
+ dw Route1Mons ; ROUTE_1
+ dw Route2Mons ; ROUTE_2
+ dw Route3Mons ; ROUTE_3
+ dw Route4Mons ; ROUTE_4
+ dw Route5Mons ; ROUTE_5
+ dw Route6Mons ; ROUTE_6
+ dw Route7Mons ; ROUTE_7
+ dw Route8Mons ; ROUTE_8
+ dw Route9Mons ; ROUTE_9
+ dw Route10Mons ; ROUTE_10
+ dw Route11Mons ; ROUTE_11
+ dw Route12Mons ; ROUTE_12
+ dw Route13Mons ; ROUTE_13
+ dw Route14Mons ; ROUTE_14
+ dw Route15Mons ; ROUTE_15
+ dw Route16Mons ; ROUTE_16
+ dw Route17Mons ; ROUTE_17
+ dw Route18Mons ; ROUTE_18
+ dw WaterMons ; ROUTE_19
+ dw WaterMons ; ROUTE_20
+ dw Route21Mons ; ROUTE_21
+ dw Route22Mons ; ROUTE_22
+ dw Route23Mons ; ROUTE_23
+ dw Route24Mons ; ROUTE_24
+ dw Route25Mons ; ROUTE_25
+ dw NoMons ; REDS_HOUSE_1F
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw ForestMons ; ViridianForest
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw MoonMons1
+ dw MoonMonsB1
+ dw MoonMonsB2
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw TunnelMonsB1
+ dw PowerPlantMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw PlateauMons1
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw TowerMons1
+ dw TowerMons2
+ dw TowerMons3
+ dw TowerMons4
+ dw TowerMons5
+ dw TowerMons6
+ dw TowerMons7
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw IslandMonsB1
+ dw IslandMonsB2
+ dw IslandMonsB3
+ dw IslandMonsB4
+ dw NoMons
+ dw NoMons
+ dw MansionMons1
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw IslandMons1
+ dw NoMons
+ dw PlateauMons2
+ dw NoMons
+ dw NoMons
+ dw CaveMons
+ dw PlateauMons3
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw MansionMons2
+ dw MansionMons3
+ dw MansionMonsB1
+ dw ZoneMons1
+ dw ZoneMons2
+ dw ZoneMons3
+ dw ZoneMonsCenter
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw DungeonMons2
+ dw DungeonMonsB1
+ dw DungeonMons1
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw TunnelMonsB2
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw NoMons
+ dw -1 ; end
+
+; wild pokemon data is divided into two parts.
+; first part: pokemon found in grass
+; second part: pokemon found while surfing
+; each part goes as follows:
+ ; if first byte == 00, then
+ ; no wild pokemon on this map
+ ; if first byte != 00, then
+ ; first byte is encounter rate
+ ; followed by 20 bytes:
+ ; level, species (ten times)
+
+INCLUDE "data/wild/maps/nothing.asm"
+INCLUDE "data/wild/maps/Route1.asm"
+INCLUDE "data/wild/maps/Route2.asm"
+INCLUDE "data/wild/maps/Route22.asm"
+INCLUDE "data/wild/maps/ViridianForest.asm"
+INCLUDE "data/wild/maps/Route3.asm"
+INCLUDE "data/wild/maps/MtMoon1F.asm"
+INCLUDE "data/wild/maps/MtMoonB1F.asm"
+INCLUDE "data/wild/maps/MtMoonB2F.asm"
+INCLUDE "data/wild/maps/Route4.asm"
+INCLUDE "data/wild/maps/Route24.asm"
+INCLUDE "data/wild/maps/Route25.asm"
+INCLUDE "data/wild/maps/Route9.asm"
+INCLUDE "data/wild/maps/Route5.asm"
+INCLUDE "data/wild/maps/Route6.asm"
+INCLUDE "data/wild/maps/Route11.asm"
+INCLUDE "data/wild/maps/RockTunnel1F.asm"
+INCLUDE "data/wild/maps/RockTunnelB1F.asm"
+INCLUDE "data/wild/maps/Route10.asm"
+INCLUDE "data/wild/maps/Route12.asm"
+INCLUDE "data/wild/maps/Route8.asm"
+INCLUDE "data/wild/maps/Route7.asm"
+INCLUDE "data/wild/maps/PokemonTower1F.asm"
+INCLUDE "data/wild/maps/PokemonTower2F.asm"
+INCLUDE "data/wild/maps/PokemonTower3F.asm"
+INCLUDE "data/wild/maps/PokemonTower4F.asm"
+INCLUDE "data/wild/maps/PokemonTower5F.asm"
+INCLUDE "data/wild/maps/PokemonTower6F.asm"
+INCLUDE "data/wild/maps/PokemonTower7F.asm"
+INCLUDE "data/wild/maps/Route13.asm"
+INCLUDE "data/wild/maps/Route14.asm"
+INCLUDE "data/wild/maps/Route15.asm"
+INCLUDE "data/wild/maps/Route16.asm"
+INCLUDE "data/wild/maps/Route17.asm"
+INCLUDE "data/wild/maps/Route18.asm"
+INCLUDE "data/wild/maps/SafariZoneCenter.asm"
+INCLUDE "data/wild/maps/SafariZoneEast.asm"
+INCLUDE "data/wild/maps/SafariZoneNorth.asm"
+INCLUDE "data/wild/maps/SafariZoneWest.asm"
+INCLUDE "data/wild/maps/SeaRoutes.asm"
+INCLUDE "data/wild/maps/SeafoamIslands1F.asm"
+INCLUDE "data/wild/maps/SeafoamIslandsB1F.asm"
+INCLUDE "data/wild/maps/SeafoamIslandsB2F.asm"
+INCLUDE "data/wild/maps/SeafoamIslandsB3F.asm"
+INCLUDE "data/wild/maps/SeafoamIslandsB4F.asm"
+INCLUDE "data/wild/maps/PokemonMansion1F.asm"
+INCLUDE "data/wild/maps/PokemonMansion2F.asm"
+INCLUDE "data/wild/maps/PokemonMansion3F.asm"
+INCLUDE "data/wild/maps/PokemonMansionB1F.asm"
+INCLUDE "data/wild/maps/Route21.asm"
+INCLUDE "data/wild/maps/CeruleanCave1F.asm"
+INCLUDE "data/wild/maps/CeruleanCave2F.asm"
+INCLUDE "data/wild/maps/CeruleanCaveB1F.asm"
+INCLUDE "data/wild/maps/PowerPlant.asm"
+INCLUDE "data/wild/maps/Route23.asm"
+INCLUDE "data/wild/maps/VictoryRoad2F.asm"
+INCLUDE "data/wild/maps/VictoryRoad3F.asm"
+INCLUDE "data/wild/maps/VictoryRoad1F.asm"
+INCLUDE "data/wild/maps/DiglettsCave.asm"
--- /dev/null
+++ b/data/wild/maps/CeruleanCave1F.asm
@@ -1,0 +1,18 @@
+DungeonMons1:
+ db $0A
+ db 46,GOLBAT
+ db 46,HYPNO
+ db 46,MAGNETON
+ db 49,DODRIO
+ db 49,VENOMOTH
+ IF DEF(_RED)
+ db 52,ARBOK
+ ENDC
+ IF DEF(_BLUE)
+ db 52,SANDSLASH
+ ENDC
+ db 49,KADABRA
+ db 52,PARASECT
+ db 53,RAICHU
+ db 53,DITTO
+ db $00
--- /dev/null
+++ b/data/wild/maps/CeruleanCave2F.asm
@@ -1,0 +1,13 @@
+DungeonMons2:
+ db $0F
+ db 51,DODRIO
+ db 51,VENOMOTH
+ db 51,KADABRA
+ db 52,RHYDON
+ db 52,MAROWAK
+ db 52,ELECTRODE
+ db 56,CHANSEY
+ db 54,WIGGLYTUFF
+ db 55,DITTO
+ db 60,DITTO
+ db $00
--- /dev/null
+++ b/data/wild/maps/CeruleanCaveB1F.asm
@@ -1,0 +1,18 @@
+DungeonMonsB1:
+ db $19
+ db 55,RHYDON
+ db 55,MAROWAK
+ db 55,ELECTRODE
+ db 64,CHANSEY
+ db 64,PARASECT
+ db 64,RAICHU
+ IF DEF(_RED)
+ db 57,ARBOK
+ ENDC
+ IF DEF(_BLUE)
+ db 57,SANDSLASH
+ ENDC
+ db 65,DITTO
+ db 63,DITTO
+ db 67,DITTO
+ db $00
--- /dev/null
+++ b/data/wild/maps/DiglettsCave.asm
@@ -1,0 +1,13 @@
+CaveMons:
+ db $14
+ db 18,DIGLETT
+ db 19,DIGLETT
+ db 17,DIGLETT
+ db 20,DIGLETT
+ db 16,DIGLETT
+ db 15,DIGLETT
+ db 21,DIGLETT
+ db 22,DIGLETT
+ db 29,DUGTRIO
+ db 31,DUGTRIO
+ db $00
--- /dev/null
+++ b/data/wild/maps/MtMoon1F.asm
@@ -1,0 +1,13 @@
+MoonMons1:
+ db $0A
+ db 8,ZUBAT
+ db 7,ZUBAT
+ db 9,ZUBAT
+ db 8,GEODUDE
+ db 6,ZUBAT
+ db 10,ZUBAT
+ db 10,GEODUDE
+ db 8,PARAS
+ db 11,ZUBAT
+ db 8,CLEFAIRY
+ db $00
--- /dev/null
+++ b/data/wild/maps/MtMoonB1F.asm
@@ -1,0 +1,13 @@
+MoonMonsB1:
+ db $0A
+ db 8,ZUBAT
+ db 7,ZUBAT
+ db 7,GEODUDE
+ db 8,GEODUDE
+ db 9,ZUBAT
+ db 10,PARAS
+ db 10,ZUBAT
+ db 11,ZUBAT
+ db 9,CLEFAIRY
+ db 9,GEODUDE
+ db $00
--- /dev/null
+++ b/data/wild/maps/MtMoonB2F.asm
@@ -1,0 +1,13 @@
+MoonMonsB2:
+ db $0A
+ db 9,ZUBAT
+ db 9,GEODUDE
+ db 10,ZUBAT
+ db 10,GEODUDE
+ db 11,ZUBAT
+ db 10,PARAS
+ db 12,PARAS
+ db 10,CLEFAIRY
+ db 12,ZUBAT
+ db 12,CLEFAIRY
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonMansion1F.asm
@@ -1,0 +1,27 @@
+MansionMons1:
+ db $0A
+ IF DEF(_RED)
+ db 32,KOFFING
+ db 30,KOFFING
+ db 34,PONYTA
+ db 30,PONYTA
+ db 34,GROWLITHE
+ db 32,PONYTA
+ db 30,GRIMER
+ db 28,PONYTA
+ db 37,WEEZING
+ db 39,MUK
+ ENDC
+ IF DEF(_BLUE)
+ db 32,GRIMER
+ db 30,GRIMER
+ db 34,PONYTA
+ db 30,PONYTA
+ db 34,VULPIX
+ db 32,PONYTA
+ db 30,KOFFING
+ db 28,PONYTA
+ db 37,MUK
+ db 39,WEEZING
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonMansion2F.asm
@@ -1,0 +1,27 @@
+MansionMons2:
+ db $0A
+ IF DEF(_RED)
+ db 32,GROWLITHE
+ db 34,KOFFING
+ db 34,KOFFING
+ db 30,PONYTA
+ db 30,KOFFING
+ db 32,PONYTA
+ db 30,GRIMER
+ db 28,PONYTA
+ db 39,WEEZING
+ db 37,MUK
+ ENDC
+ IF DEF(_BLUE)
+ db 32,VULPIX
+ db 34,GRIMER
+ db 34,GRIMER
+ db 30,PONYTA
+ db 30,GRIMER
+ db 32,PONYTA
+ db 30,KOFFING
+ db 28,PONYTA
+ db 39,MUK
+ db 37,WEEZING
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonMansion3F.asm
@@ -1,0 +1,27 @@
+MansionMons3:
+ db $0A
+ IF DEF(_RED)
+ db 31,KOFFING
+ db 33,GROWLITHE
+ db 35,KOFFING
+ db 32,PONYTA
+ db 34,PONYTA
+ db 40,WEEZING
+ db 34,GRIMER
+ db 38,WEEZING
+ db 36,PONYTA
+ db 42,MUK
+ ENDC
+ IF DEF(_BLUE)
+ db 31,GRIMER
+ db 33,VULPIX
+ db 35,GRIMER
+ db 32,PONYTA
+ db 34,MAGMAR
+ db 40,MUK
+ db 34,KOFFING
+ db 38,MUK
+ db 36,PONYTA
+ db 42,WEEZING
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonMansionB1F.asm
@@ -1,0 +1,27 @@
+MansionMonsB1:
+ db $0A
+ IF DEF(_RED)
+ db 33,KOFFING
+ db 31,KOFFING
+ db 35,GROWLITHE
+ db 32,PONYTA
+ db 31,KOFFING
+ db 40,WEEZING
+ db 34,PONYTA
+ db 35,GRIMER
+ db 42,WEEZING
+ db 42,MUK
+ ENDC
+ IF DEF(_BLUE)
+ db 33,GRIMER
+ db 31,GRIMER
+ db 35,VULPIX
+ db 32,PONYTA
+ db 31,GRIMER
+ db 40,MUK
+ db 34,PONYTA
+ db 35,KOFFING
+ db 38,MAGMAR
+ db 42,WEEZING
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower1F.asm
@@ -1,0 +1,3 @@
+TowerMons1:
+ db $00
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower2F.asm
@@ -1,0 +1,3 @@
+TowerMons2:
+ db $00
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower3F.asm
@@ -1,0 +1,13 @@
+TowerMons3:
+ db $0A
+ db 20,GASTLY
+ db 21,GASTLY
+ db 22,GASTLY
+ db 23,GASTLY
+ db 19,GASTLY
+ db 18,GASTLY
+ db 24,GASTLY
+ db 20,CUBONE
+ db 22,CUBONE
+ db 25,HAUNTER
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower4F.asm
@@ -1,0 +1,13 @@
+TowerMons4:
+ db $0A
+ db 20,GASTLY
+ db 21,GASTLY
+ db 22,GASTLY
+ db 23,GASTLY
+ db 19,GASTLY
+ db 18,GASTLY
+ db 25,HAUNTER
+ db 20,CUBONE
+ db 22,CUBONE
+ db 24,GASTLY
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower5F.asm
@@ -1,0 +1,13 @@
+TowerMons5:
+ db $0A
+ db 20,GASTLY
+ db 21,GASTLY
+ db 22,GASTLY
+ db 23,GASTLY
+ db 19,GASTLY
+ db 18,GASTLY
+ db 25,HAUNTER
+ db 20,CUBONE
+ db 22,CUBONE
+ db 24,GASTLY
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower6F.asm
@@ -1,0 +1,13 @@
+TowerMons6:
+ db $0F
+ db 21,GASTLY
+ db 22,GASTLY
+ db 23,GASTLY
+ db 24,GASTLY
+ db 20,GASTLY
+ db 19,GASTLY
+ db 26,HAUNTER
+ db 22,CUBONE
+ db 24,CUBONE
+ db 28,HAUNTER
+ db $00
--- /dev/null
+++ b/data/wild/maps/PokemonTower7F.asm
@@ -1,0 +1,13 @@
+TowerMons7:
+ db $0F
+ db 21,GASTLY
+ db 22,GASTLY
+ db 23,GASTLY
+ db 24,GASTLY
+ db 20,GASTLY
+ db 28,HAUNTER
+ db 22,CUBONE
+ db 24,CUBONE
+ db 28,HAUNTER
+ db 30,HAUNTER
+ db $00
--- /dev/null
+++ b/data/wild/maps/PowerPlant.asm
@@ -1,0 +1,19 @@
+PowerPlantMons:
+ db $0A
+ db 21,VOLTORB
+ db 21,MAGNEMITE
+ db 20,PIKACHU
+ db 24,PIKACHU
+ db 23,MAGNEMITE
+ db 23,VOLTORB
+ db 32,MAGNETON
+ db 35,MAGNETON
+ IF DEF(_RED)
+ db 33,ELECTABUZZ
+ db 36,ELECTABUZZ
+ ENDC
+ IF DEF(_BLUE)
+ db 33,RAICHU
+ db 36,RAICHU
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/RockTunnel1F.asm
@@ -1,0 +1,13 @@
+TunnelMonsB1:
+ db $0F
+ db 16,ZUBAT
+ db 17,ZUBAT
+ db 17,GEODUDE
+ db 15,MACHOP
+ db 16,GEODUDE
+ db 18,ZUBAT
+ db 15,ZUBAT
+ db 17,MACHOP
+ db 13,ONIX
+ db 15,ONIX
+ db $00
--- /dev/null
+++ b/data/wild/maps/RockTunnelB1F.asm
@@ -1,0 +1,13 @@
+TunnelMonsB2:
+ db $0F
+ db 16,ZUBAT
+ db 17,ZUBAT
+ db 17,GEODUDE
+ db 15,MACHOP
+ db 16,GEODUDE
+ db 18,ZUBAT
+ db 17,MACHOP
+ db 17,ONIX
+ db 13,ONIX
+ db 18,GEODUDE
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route1.asm
@@ -1,0 +1,13 @@
+Route1Mons:
+ db $19
+ db 3,PIDGEY
+ db 3,RATTATA
+ db 3,RATTATA
+ db 2,RATTATA
+ db 2,PIDGEY
+ db 3,PIDGEY
+ db 3,PIDGEY
+ db 4,RATTATA
+ db 4,PIDGEY
+ db 5,PIDGEY
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route10.asm
@@ -1,0 +1,27 @@
+Route10Mons:
+ db $0F
+ IF DEF(_RED)
+ db 16,VOLTORB
+ db 16,SPEAROW
+ db 14,VOLTORB
+ db 11,EKANS
+ db 13,SPEAROW
+ db 15,EKANS
+ db 17,VOLTORB
+ db 17,SPEAROW
+ db 13,EKANS
+ db 17,EKANS
+ ENDC
+ IF DEF(_BLUE)
+ db 16,VOLTORB
+ db 16,SPEAROW
+ db 14,VOLTORB
+ db 11,SANDSHREW
+ db 13,SPEAROW
+ db 15,SANDSHREW
+ db 17,VOLTORB
+ db 17,SPEAROW
+ db 13,SANDSHREW
+ db 17,SANDSHREW
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route11.asm
@@ -1,0 +1,27 @@
+Route11Mons:
+ db $0F
+ IF DEF(_RED)
+ db 14,EKANS
+ db 15,SPEAROW
+ db 12,EKANS
+ db 9,DROWZEE
+ db 13,SPEAROW
+ db 13,DROWZEE
+ db 15,EKANS
+ db 17,SPEAROW
+ db 11,DROWZEE
+ db 15,DROWZEE
+ ENDC
+ IF DEF(_BLUE)
+ db 14,SANDSHREW
+ db 15,SPEAROW
+ db 12,SANDSHREW
+ db 9,DROWZEE
+ db 13,SPEAROW
+ db 13,DROWZEE
+ db 15,SANDSHREW
+ db 17,SPEAROW
+ db 11,DROWZEE
+ db 15,DROWZEE
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route12.asm
@@ -1,0 +1,27 @@
+Route12Mons:
+ db $0F
+ IF DEF(_RED)
+ db 24,ODDISH
+ db 25,PIDGEY
+ db 23,PIDGEY
+ db 24,VENONAT
+ db 22,ODDISH
+ db 26,VENONAT
+ db 26,ODDISH
+ db 27,PIDGEY
+ db 28,GLOOM
+ db 30,GLOOM
+ ENDC
+ IF DEF(_BLUE)
+ db 24,BELLSPROUT
+ db 25,PIDGEY
+ db 23,PIDGEY
+ db 24,VENONAT
+ db 22,BELLSPROUT
+ db 26,VENONAT
+ db 26,BELLSPROUT
+ db 27,PIDGEY
+ db 28,WEEPINBELL
+ db 30,WEEPINBELL
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route13.asm
@@ -1,0 +1,28 @@
+Route13Mons:
+ IF DEF(_RED)
+ db $14
+ db 24,ODDISH
+ db 25,PIDGEY
+ db 27,PIDGEY
+ db 24,VENONAT
+ db 22,ODDISH
+ db 26,VENONAT
+ db 26,ODDISH
+ db 25,DITTO
+ db 28,GLOOM
+ db 30,GLOOM
+ ENDC
+ IF DEF(_BLUE)
+ db $14
+ db 24,BELLSPROUT
+ db 25,PIDGEY
+ db 27,PIDGEY
+ db 24,VENONAT
+ db 22,BELLSPROUT
+ db 26,VENONAT
+ db 26,BELLSPROUT
+ db 25,DITTO
+ db 28,WEEPINBELL
+ db 30,WEEPINBELL
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route14.asm
@@ -1,0 +1,27 @@
+Route14Mons:
+ db $0F
+ IF DEF(_RED)
+ db 24,ODDISH
+ db 26,PIDGEY
+ db 23,DITTO
+ db 24,VENONAT
+ db 22,ODDISH
+ db 26,VENONAT
+ db 26,ODDISH
+ db 30,GLOOM
+ db 28,PIDGEOTTO
+ db 30,PIDGEOTTO
+ ENDC
+ IF DEF(_BLUE)
+ db 24,BELLSPROUT
+ db 26,PIDGEY
+ db 23,DITTO
+ db 24,VENONAT
+ db 22,BELLSPROUT
+ db 26,VENONAT
+ db 26,BELLSPROUT
+ db 30,WEEPINBELL
+ db 28,PIDGEOTTO
+ db 30,PIDGEOTTO
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route15.asm
@@ -1,0 +1,27 @@
+Route15Mons:
+ db $0F
+ IF DEF(_RED)
+ db 24,ODDISH
+ db 26,DITTO
+ db 23,PIDGEY
+ db 26,VENONAT
+ db 22,ODDISH
+ db 28,VENONAT
+ db 26,ODDISH
+ db 30,GLOOM
+ db 28,PIDGEOTTO
+ db 30,PIDGEOTTO
+ ENDC
+ IF DEF(_BLUE)
+ db 24,BELLSPROUT
+ db 26,DITTO
+ db 23,PIDGEY
+ db 26,VENONAT
+ db 22,BELLSPROUT
+ db 28,VENONAT
+ db 26,BELLSPROUT
+ db 30,WEEPINBELL
+ db 28,PIDGEOTTO
+ db 30,PIDGEOTTO
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route16.asm
@@ -1,0 +1,13 @@
+Route16Mons:
+ db $19
+ db 20,SPEAROW
+ db 22,SPEAROW
+ db 18,RATTATA
+ db 20,DODUO
+ db 20,RATTATA
+ db 18,DODUO
+ db 22,DODUO
+ db 22,RATTATA
+ db 23,RATICATE
+ db 25,RATICATE
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route17.asm
@@ -1,0 +1,13 @@
+Route17Mons:
+ db $19
+ db 20,SPEAROW
+ db 22,SPEAROW
+ db 25,RATICATE
+ db 24,DODUO
+ db 27,RATICATE
+ db 26,DODUO
+ db 28,DODUO
+ db 29,RATICATE
+ db 25,FEAROW
+ db 27,FEAROW
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route18.asm
@@ -1,0 +1,13 @@
+Route18Mons:
+ db $19
+ db 20,SPEAROW
+ db 22,SPEAROW
+ db 25,RATICATE
+ db 24,DODUO
+ db 25,FEAROW
+ db 26,DODUO
+ db 28,DODUO
+ db 29,RATICATE
+ db 27,FEAROW
+ db 29,FEAROW
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route2.asm
@@ -1,0 +1,24 @@
+Route2Mons:
+ db $19
+ db 3,RATTATA
+ db 3,PIDGEY
+ db 4,PIDGEY
+ db 4,RATTATA
+ db 5,PIDGEY
+ IF DEF(_RED)
+ db 3,WEEDLE
+ ENDC
+ IF DEF(_BLUE)
+ db 3,CATERPIE
+ ENDC
+ db 2,RATTATA
+ db 5,RATTATA
+ IF DEF(_RED)
+ db 4,WEEDLE
+ db 5,WEEDLE
+ ENDC
+ IF DEF(_BLUE)
+ db 4,CATERPIE
+ db 5,CATERPIE
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route21.asm
@@ -1,0 +1,23 @@
+Route21Mons:
+ db $19
+ db 21,RATTATA
+ db 23,PIDGEY
+ db 30,RATICATE
+ db 23,RATTATA
+ db 21,PIDGEY
+ db 30,PIDGEOTTO
+ db 32,PIDGEOTTO
+ db 28,TANGELA
+ db 30,TANGELA
+ db 32,TANGELA
+ db $05
+ db 5,TENTACOOL
+ db 10,TENTACOOL
+ db 15,TENTACOOL
+ db 5,TENTACOOL
+ db 10,TENTACOOL
+ db 15,TENTACOOL
+ db 20,TENTACOOL
+ db 30,TENTACOOL
+ db 35,TENTACOOL
+ db 40,TENTACOOL
--- /dev/null
+++ b/data/wild/maps/Route22.asm
@@ -1,0 +1,27 @@
+Route22Mons:
+ db $19
+ IF DEF(_RED)
+ db 3,RATTATA
+ db 3,NIDORAN_M
+ db 4,RATTATA
+ db 4,NIDORAN_M
+ db 2,RATTATA
+ db 2,NIDORAN_M
+ db 3,SPEAROW
+ db 5,SPEAROW
+ db 3,NIDORAN_F
+ db 4,NIDORAN_F
+ ENDC
+ IF DEF(_BLUE)
+ db 3,RATTATA
+ db 3,NIDORAN_F
+ db 4,RATTATA
+ db 4,NIDORAN_F
+ db 2,RATTATA
+ db 2,NIDORAN_F
+ db 3,SPEAROW
+ db 5,SPEAROW
+ db 3,NIDORAN_M
+ db 4,NIDORAN_M
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route23.asm
@@ -1,0 +1,23 @@
+Route23Mons:
+ db $0A
+ IF DEF(_RED)
+ db 26,EKANS
+ ENDC
+ IF DEF(_BLUE)
+ db 26,SANDSHREW
+ ENDC
+ db 33,DITTO
+ db 26,SPEAROW
+ db 38,FEAROW
+ db 38,DITTO
+ db 38,FEAROW
+ IF DEF(_RED)
+ db 41,ARBOK
+ ENDC
+ IF DEF(_BLUE)
+ db 41,SANDSLASH
+ ENDC
+ db 43,DITTO
+ db 41,FEAROW
+ db 43,FEAROW
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route24.asm
@@ -1,0 +1,27 @@
+Route24Mons:
+ db $19
+ IF DEF(_RED)
+ db 7,WEEDLE
+ db 8,KAKUNA
+ db 12,PIDGEY
+ db 12,ODDISH
+ db 13,ODDISH
+ db 10,ABRA
+ db 14,ODDISH
+ db 13,PIDGEY
+ db 8,ABRA
+ db 12,ABRA
+ ENDC
+ IF DEF(_BLUE)
+ db 7,CATERPIE
+ db 8,METAPOD
+ db 12,PIDGEY
+ db 12,BELLSPROUT
+ db 13,BELLSPROUT
+ db 10,ABRA
+ db 14,BELLSPROUT
+ db 13,PIDGEY
+ db 8,ABRA
+ db 12,ABRA
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route25.asm
@@ -1,0 +1,27 @@
+Route25Mons:
+ db $0F
+ IF DEF(_RED)
+ db 8,WEEDLE
+ db 9,KAKUNA
+ db 13,PIDGEY
+ db 12,ODDISH
+ db 13,ODDISH
+ db 12,ABRA
+ db 14,ODDISH
+ db 10,ABRA
+ db 7,METAPOD
+ db 8,CATERPIE
+ ENDC
+ IF DEF(_BLUE)
+ db 8,CATERPIE
+ db 9,METAPOD
+ db 13,PIDGEY
+ db 12,BELLSPROUT
+ db 13,BELLSPROUT
+ db 12,ABRA
+ db 14,BELLSPROUT
+ db 10,ABRA
+ db 7,KAKUNA
+ db 8,WEEDLE
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route3.asm
@@ -1,0 +1,13 @@
+Route3Mons:
+ db $14
+ db 6,PIDGEY
+ db 5,SPEAROW
+ db 7,PIDGEY
+ db 6,SPEAROW
+ db 7,SPEAROW
+ db 8,PIDGEY
+ db 8,SPEAROW
+ db 3,JIGGLYPUFF
+ db 5,JIGGLYPUFF
+ db 7,JIGGLYPUFF
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route4.asm
@@ -1,0 +1,27 @@
+Route4Mons:
+ db $14
+ IF DEF(_RED)
+ db 10,RATTATA
+ db 10,SPEAROW
+ db 8,RATTATA
+ db 6,EKANS
+ db 8,SPEAROW
+ db 10,EKANS
+ db 12,RATTATA
+ db 12,SPEAROW
+ db 8,EKANS
+ db 12,EKANS
+ ENDC
+ IF DEF(_BLUE)
+ db 10,RATTATA
+ db 10,SPEAROW
+ db 8,RATTATA
+ db 6,SANDSHREW
+ db 8,SPEAROW
+ db 10,SANDSHREW
+ db 12,RATTATA
+ db 12,SPEAROW
+ db 8,SANDSHREW
+ db 12,SANDSHREW
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route5.asm
@@ -1,0 +1,27 @@
+Route5Mons:
+ db $0F
+ IF DEF(_RED)
+ db 13,ODDISH
+ db 13,PIDGEY
+ db 15,PIDGEY
+ db 10,MANKEY
+ db 12,MANKEY
+ db 15,ODDISH
+ db 16,ODDISH
+ db 16,PIDGEY
+ db 14,MANKEY
+ db 16,MANKEY
+ ENDC
+ IF DEF(_BLUE)
+ db 13,BELLSPROUT
+ db 13,PIDGEY
+ db 15,PIDGEY
+ db 10,MEOWTH
+ db 12,MEOWTH
+ db 15,BELLSPROUT
+ db 16,BELLSPROUT
+ db 16,PIDGEY
+ db 14,MEOWTH
+ db 16,MEOWTH
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route6.asm
@@ -1,0 +1,27 @@
+Route6Mons:
+ db $0F
+ IF DEF(_RED)
+ db 13,ODDISH
+ db 13,PIDGEY
+ db 15,PIDGEY
+ db 10,MANKEY
+ db 12,MANKEY
+ db 15,ODDISH
+ db 16,ODDISH
+ db 16,PIDGEY
+ db 14,MANKEY
+ db 16,MANKEY
+ ENDC
+ IF DEF(_BLUE)
+ db 13,BELLSPROUT
+ db 13,PIDGEY
+ db 15,PIDGEY
+ db 10,MEOWTH
+ db 12,MEOWTH
+ db 15,BELLSPROUT
+ db 16,BELLSPROUT
+ db 16,PIDGEY
+ db 14,MEOWTH
+ db 16,MEOWTH
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route7.asm
@@ -1,0 +1,27 @@
+Route7Mons:
+ db $0F
+ IF DEF(_RED)
+ db 19,PIDGEY
+ db 19,ODDISH
+ db 17,MANKEY
+ db 22,ODDISH
+ db 22,PIDGEY
+ db 18,MANKEY
+ db 18,GROWLITHE
+ db 20,GROWLITHE
+ db 19,MANKEY
+ db 20,MANKEY
+ ENDC
+ IF DEF(_BLUE)
+ db 19,PIDGEY
+ db 19,BELLSPROUT
+ db 17,MEOWTH
+ db 22,BELLSPROUT
+ db 22,PIDGEY
+ db 18,MEOWTH
+ db 18,VULPIX
+ db 20,VULPIX
+ db 19,MEOWTH
+ db 20,MEOWTH
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route8.asm
@@ -1,0 +1,27 @@
+Route8Mons:
+ db $0F
+ IF DEF(_RED)
+ db 18,PIDGEY
+ db 18,MANKEY
+ db 17,EKANS
+ db 16,GROWLITHE
+ db 20,PIDGEY
+ db 20,MANKEY
+ db 19,EKANS
+ db 17,GROWLITHE
+ db 15,GROWLITHE
+ db 18,GROWLITHE
+ ENDC
+ IF DEF(_BLUE)
+ db 18,PIDGEY
+ db 18,MEOWTH
+ db 17,SANDSHREW
+ db 16,VULPIX
+ db 20,PIDGEY
+ db 20,MEOWTH
+ db 19,SANDSHREW
+ db 17,VULPIX
+ db 15,VULPIX
+ db 18,VULPIX
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/Route9.asm
@@ -1,0 +1,27 @@
+Route9Mons:
+ db $0F
+ IF DEF(_RED)
+ db 16,RATTATA
+ db 16,SPEAROW
+ db 14,RATTATA
+ db 11,EKANS
+ db 13,SPEAROW
+ db 15,EKANS
+ db 17,RATTATA
+ db 17,SPEAROW
+ db 13,EKANS
+ db 17,EKANS
+ ENDC
+ IF DEF(_BLUE)
+ db 16,RATTATA
+ db 16,SPEAROW
+ db 14,RATTATA
+ db 11,SANDSHREW
+ db 13,SPEAROW
+ db 15,SANDSHREW
+ db 17,RATTATA
+ db 17,SPEAROW
+ db 13,SANDSHREW
+ db 17,SANDSHREW
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SafariZoneCenter.asm
@@ -1,0 +1,27 @@
+ZoneMonsCenter:
+ db $1E
+ IF DEF(_RED)
+ db 22,NIDORAN_M
+ db 25,RHYHORN
+ db 22,VENONAT
+ db 24,EXEGGCUTE
+ db 31,NIDORINO
+ db 25,EXEGGCUTE
+ db 31,NIDORINA
+ db 30,PARASECT
+ db 23,SCYTHER
+ db 23,CHANSEY
+ ENDC
+ IF DEF(_BLUE)
+ db 22,NIDORAN_F
+ db 25,RHYHORN
+ db 22,VENONAT
+ db 24,EXEGGCUTE
+ db 31,NIDORINA
+ db 25,EXEGGCUTE
+ db 31,NIDORINO
+ db 30,PARASECT
+ db 23,PINSIR
+ db 23,CHANSEY
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SafariZoneEast.asm
@@ -1,0 +1,27 @@
+ZoneMons1:
+ db $1E
+ IF DEF(_RED)
+ db 24,NIDORAN_M
+ db 26,DODUO
+ db 22,PARAS
+ db 25,EXEGGCUTE
+ db 33,NIDORINO
+ db 23,EXEGGCUTE
+ db 24,NIDORAN_F
+ db 25,PARASECT
+ db 25,KANGASKHAN
+ db 28,SCYTHER
+ ENDC
+ IF DEF(_BLUE)
+ db 24,NIDORAN_F
+ db 26,DODUO
+ db 22,PARAS
+ db 25,EXEGGCUTE
+ db 33,NIDORINA
+ db 23,EXEGGCUTE
+ db 24,NIDORAN_M
+ db 25,PARASECT
+ db 25,KANGASKHAN
+ db 28,PINSIR
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SafariZoneNorth.asm
@@ -1,0 +1,28 @@
+ZoneMons2:
+ db $1E
+ IF DEF(_RED)
+ db 22,NIDORAN_M
+ ENDC
+ IF DEF(_BLUE)
+ db 22,NIDORAN_F
+ ENDC
+ db 26,RHYHORN
+ db 23,PARAS
+ db 25,EXEGGCUTE
+ IF DEF(_RED)
+ db 30,NIDORINO
+ ENDC
+ IF DEF(_BLUE)
+ db 30,NIDORINA
+ ENDC
+ db 27,EXEGGCUTE
+ IF DEF(_RED)
+ db 30,NIDORINA
+ ENDC
+ IF DEF(_BLUE)
+ db 30,NIDORINO
+ ENDC
+ db 32,VENOMOTH
+ db 26,CHANSEY
+ db 28,TAUROS
+ db $00
--- /dev/null
+++ b/data/wild/maps/SafariZoneWest.asm
@@ -1,0 +1,27 @@
+ZoneMons3:
+ db $1E
+ IF DEF(_RED)
+ db 25,NIDORAN_M
+ db 26,DODUO
+ db 23,VENONAT
+ db 24,EXEGGCUTE
+ db 33,NIDORINO
+ db 26,EXEGGCUTE
+ db 25,NIDORAN_F
+ db 31,VENOMOTH
+ db 26,TAUROS
+ db 28,KANGASKHAN
+ ENDC
+ IF DEF(_BLUE)
+ db 25,NIDORAN_F
+ db 26,DODUO
+ db 23,VENONAT
+ db 24,EXEGGCUTE
+ db 33,NIDORINA
+ db 26,EXEGGCUTE
+ db 25,NIDORAN_M
+ db 31,VENOMOTH
+ db 26,TAUROS
+ db 28,KANGASKHAN
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SeaRoutes.asm
@@ -1,0 +1,13 @@
+WaterMons:
+ db $00
+ db $05
+ db 5,TENTACOOL
+ db 10,TENTACOOL
+ db 15,TENTACOOL
+ db 5,TENTACOOL
+ db 10,TENTACOOL
+ db 15,TENTACOOL
+ db 20,TENTACOOL
+ db 30,TENTACOOL
+ db 35,TENTACOOL
+ db 40,TENTACOOL
--- /dev/null
+++ b/data/wild/maps/SeafoamIslands1F.asm
@@ -1,0 +1,27 @@
+IslandMons1:
+ db $0F
+ IF DEF(_RED)
+ db 30,SEEL
+ db 30,SLOWPOKE
+ db 30,SHELLDER
+ db 30,HORSEA
+ db 28,HORSEA
+ db 21,ZUBAT
+ db 29,GOLBAT
+ db 28,PSYDUCK
+ db 28,SHELLDER
+ db 38,GOLDUCK
+ ENDC
+ IF DEF(_BLUE)
+ db 30,SEEL
+ db 30,PSYDUCK
+ db 30,STARYU
+ db 30,KRABBY
+ db 28,KRABBY
+ db 21,ZUBAT
+ db 29,GOLBAT
+ db 28,SLOWPOKE
+ db 28,STARYU
+ db 38,SLOWBRO
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SeafoamIslandsB1F.asm
@@ -1,0 +1,27 @@
+IslandMonsB1:
+ db $0A
+ IF DEF(_RED)
+ db 30,STARYU
+ db 30,HORSEA
+ db 32,SHELLDER
+ db 32,HORSEA
+ db 28,SLOWPOKE
+ db 30,SEEL
+ db 30,SLOWPOKE
+ db 28,SEEL
+ db 38,DEWGONG
+ db 37,SEADRA
+ ENDC
+ IF DEF(_BLUE)
+ db 30,SHELLDER
+ db 30,KRABBY
+ db 32,STARYU
+ db 32,KRABBY
+ db 28,PSYDUCK
+ db 30,SEEL
+ db 30,PSYDUCK
+ db 28,SEEL
+ db 38,DEWGONG
+ db 37,KINGLER
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SeafoamIslandsB2F.asm
@@ -1,0 +1,27 @@
+IslandMonsB2:
+ db $0A
+ IF DEF(_RED)
+ db 30,SEEL
+ db 30,SLOWPOKE
+ db 32,SEEL
+ db 32,SLOWPOKE
+ db 28,HORSEA
+ db 30,STARYU
+ db 30,HORSEA
+ db 28,SHELLDER
+ db 30,GOLBAT
+ db 37,SLOWBRO
+ ENDC
+ IF DEF(_BLUE)
+ db 30,SEEL
+ db 30,PSYDUCK
+ db 32,SEEL
+ db 32,PSYDUCK
+ db 28,KRABBY
+ db 30,SHELLDER
+ db 30,KRABBY
+ db 28,STARYU
+ db 30,GOLBAT
+ db 37,GOLDUCK
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SeafoamIslandsB3F.asm
@@ -1,0 +1,27 @@
+IslandMonsB3:
+ db $0A
+ IF DEF(_RED)
+ db 31,SLOWPOKE
+ db 31,SEEL
+ db 33,SLOWPOKE
+ db 33,SEEL
+ db 29,HORSEA
+ db 31,SHELLDER
+ db 31,HORSEA
+ db 29,SHELLDER
+ db 39,SEADRA
+ db 37,DEWGONG
+ ENDC
+ IF DEF(_BLUE)
+ db 31,PSYDUCK
+ db 31,SEEL
+ db 33,PSYDUCK
+ db 33,SEEL
+ db 29,KRABBY
+ db 31,STARYU
+ db 31,KRABBY
+ db 29,STARYU
+ db 39,KINGLER
+ db 37,DEWGONG
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/SeafoamIslandsB4F.asm
@@ -1,0 +1,27 @@
+IslandMonsB4:
+ db $0A
+ IF DEF(_RED)
+ db 31,HORSEA
+ db 31,SHELLDER
+ db 33,HORSEA
+ db 33,SHELLDER
+ db 29,SLOWPOKE
+ db 31,SEEL
+ db 31,SLOWPOKE
+ db 29,SEEL
+ db 39,SLOWBRO
+ db 32,GOLBAT
+ ENDC
+ IF DEF(_BLUE)
+ db 31,KRABBY
+ db 31,STARYU
+ db 33,KRABBY
+ db 33,STARYU
+ db 29,PSYDUCK
+ db 31,SEEL
+ db 31,PSYDUCK
+ db 29,SEEL
+ db 39,GOLDUCK
+ db 32,GOLBAT
+ ENDC
+ db $00
--- /dev/null
+++ b/data/wild/maps/VictoryRoad1F.asm
@@ -1,0 +1,13 @@
+PlateauMons1:
+ db $0F
+ db 24,MACHOP
+ db 26,GEODUDE
+ db 22,ZUBAT
+ db 36,ONIX
+ db 39,ONIX
+ db 42,ONIX
+ db 41,GRAVELER
+ db 41,GOLBAT
+ db 42,MACHOKE
+ db 43,MAROWAK
+ db $00
--- /dev/null
+++ b/data/wild/maps/VictoryRoad2F.asm
@@ -1,0 +1,13 @@
+PlateauMons2:
+ db $0A
+ db 22,MACHOP
+ db 24,GEODUDE
+ db 26,ZUBAT
+ db 36,ONIX
+ db 39,ONIX
+ db 42,ONIX
+ db 41,MACHOKE
+ db 40,GOLBAT
+ db 40,MAROWAK
+ db 43,GRAVELER
+ db $00
--- /dev/null
+++ b/data/wild/maps/VictoryRoad3F.asm
@@ -1,0 +1,13 @@
+PlateauMons3:
+ db $0F
+ db 24,MACHOP
+ db 26,GEODUDE
+ db 22,ZUBAT
+ db 42,ONIX
+ db 40,VENOMOTH
+ db 45,ONIX
+ db 43,GRAVELER
+ db 41,GOLBAT
+ db 42,MACHOKE
+ db 45,MACHOKE
+ db $00
--- /dev/null
+++ b/data/wild/maps/ViridianForest.asm
@@ -1,0 +1,25 @@
+ForestMons:
+ db $08
+ IF DEF(_RED)
+ db 4,WEEDLE
+ db 5,KAKUNA
+ db 3,WEEDLE
+ db 5,WEEDLE
+ db 4,KAKUNA
+ db 6,KAKUNA
+ db 4,METAPOD
+ db 3,CATERPIE
+ ENDC
+ IF DEF(_BLUE)
+ db 4,CATERPIE
+ db 5,METAPOD
+ db 3,CATERPIE
+ db 5,CATERPIE
+ db 4,METAPOD
+ db 6,METAPOD
+ db 4,KAKUNA
+ db 3,WEEDLE
+ ENDC
+ db 3,PIKACHU
+ db 5,PIKACHU
+ db $00
--- /dev/null
+++ b/data/wild/maps/nothing.asm
@@ -1,0 +1,3 @@
+NoMons:
+ db $00
+ db $00
--- /dev/null
+++ b/data/wild/probabilities.asm
@@ -1,0 +1,15 @@
+WildMonEncounterSlotChances:
+; There are 10 slots for wild pokemon, and this is the table that defines how common each of
+; those 10 slots is. A random number is generated and then the first byte of each pair in this
+; table is compared against that random number. If the random number is less than or equal
+; to the first byte, then that slot is chosen. The second byte is double the slot number.
+ db $32, $00 ; 51/256 = 19.9% chance of slot 0
+ db $65, $02 ; 51/256 = 19.9% chance of slot 1
+ db $8C, $04 ; 39/256 = 15.2% chance of slot 2
+ db $A5, $06 ; 25/256 = 9.8% chance of slot 3
+ db $BE, $08 ; 25/256 = 9.8% chance of slot 4
+ db $D7, $0A ; 25/256 = 9.8% chance of slot 5
+ db $E4, $0C ; 13/256 = 5.1% chance of slot 6
+ db $F1, $0E ; 13/256 = 5.1% chance of slot 7
+ db $FC, $10 ; 11/256 = 4.3% chance of slot 8
+ db $FF, $12 ; 3/256 = 1.2% chance of slot 9
--- /dev/null
+++ b/data/wild/super_rod.asm
@@ -1,0 +1,100 @@
+; super rod data
+; format: map, pointer to fishing group
+SuperRodData:
+ dbw PALLET_TOWN, FishingGroup1
+ dbw VIRIDIAN_CITY, FishingGroup1
+ dbw CERULEAN_CITY, FishingGroup3
+ dbw VERMILION_CITY, FishingGroup4
+ dbw CELADON_CITY, FishingGroup5
+ dbw FUCHSIA_CITY, FishingGroup10
+ dbw CINNABAR_ISLAND, FishingGroup8
+ dbw ROUTE_4, FishingGroup3
+ dbw ROUTE_6, FishingGroup4
+ dbw ROUTE_10, FishingGroup5
+ dbw ROUTE_11, FishingGroup4
+ dbw ROUTE_12, FishingGroup7
+ dbw ROUTE_13, FishingGroup7
+ dbw ROUTE_17, FishingGroup7
+ dbw ROUTE_18, FishingGroup7
+ dbw ROUTE_19, FishingGroup8
+ dbw ROUTE_20, FishingGroup8
+ dbw ROUTE_21, FishingGroup8
+ dbw ROUTE_22, FishingGroup2
+ dbw ROUTE_23, FishingGroup9
+ dbw ROUTE_24, FishingGroup3
+ dbw ROUTE_25, FishingGroup3
+ dbw CERULEAN_GYM, FishingGroup3
+ dbw VERMILION_DOCK, FishingGroup4
+ dbw SEAFOAM_ISLANDS_B3F, FishingGroup8
+ dbw SEAFOAM_ISLANDS_B4F, FishingGroup8
+ dbw SAFARI_ZONE_EAST, FishingGroup6
+ dbw SAFARI_ZONE_NORTH, FishingGroup6
+ dbw SAFARI_ZONE_WEST, FishingGroup6
+ dbw SAFARI_ZONE_CENTER, FishingGroup6
+ dbw CERULEAN_CAVE_2F, FishingGroup9
+ dbw CERULEAN_CAVE_B1F, FishingGroup9
+ dbw CERULEAN_CAVE_1F, FishingGroup9
+ db $FF
+
+; fishing groups
+; number of monsters, followed by level/monster pairs
+FishingGroup1:
+ db 2
+ db 15,TENTACOOL
+ db 15,POLIWAG
+
+FishingGroup2:
+ db 2
+ db 15,GOLDEEN
+ db 15,POLIWAG
+
+FishingGroup3:
+ db 3
+ db 15,PSYDUCK
+ db 15,GOLDEEN
+ db 15,KRABBY
+
+FishingGroup4:
+ db 2
+ db 15,KRABBY
+ db 15,SHELLDER
+
+FishingGroup5:
+ db 2
+ db 23,POLIWHIRL
+ db 15,SLOWPOKE
+
+FishingGroup6:
+ db 4
+ db 15,DRATINI
+ db 15,KRABBY
+ db 15,PSYDUCK
+ db 15,SLOWPOKE
+
+FishingGroup7:
+ db 4
+ db 5,TENTACOOL
+ db 15,KRABBY
+ db 15,GOLDEEN
+ db 15,MAGIKARP
+
+FishingGroup8:
+ db 4
+ db 15,STARYU
+ db 15,HORSEA
+ db 15,SHELLDER
+ db 15,GOLDEEN
+
+FishingGroup9:
+ db 4
+ db 23,SLOWBRO
+ db 23,SEAKING
+ db 23,KINGLER
+ db 23,SEADRA
+
+FishingGroup10:
+ db 4
+ db 23,SEAKING
+ db 15,KRABBY
+ db 15,GOLDEEN
+ db 15,MAGIKARP
--- a/data/wildPokemon/ceruleancave1.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-DungeonMons1:
- db $0A
- db 46,GOLBAT
- db 46,HYPNO
- db 46,MAGNETON
- db 49,DODRIO
- db 49,VENOMOTH
- IF DEF(_RED)
- db 52,ARBOK
- ENDC
- IF DEF(_BLUE)
- db 52,SANDSLASH
- ENDC
- db 49,KADABRA
- db 52,PARASECT
- db 53,RAICHU
- db 53,DITTO
- db $00
--- a/data/wildPokemon/ceruleancave2.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-DungeonMons2:
- db $0F
- db 51,DODRIO
- db 51,VENOMOTH
- db 51,KADABRA
- db 52,RHYDON
- db 52,MAROWAK
- db 52,ELECTRODE
- db 56,CHANSEY
- db 54,WIGGLYTUFF
- db 55,DITTO
- db 60,DITTO
- db $00
--- a/data/wildPokemon/ceruleancaveb1.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-DungeonMonsB1:
- db $19
- db 55,RHYDON
- db 55,MAROWAK
- db 55,ELECTRODE
- db 64,CHANSEY
- db 64,PARASECT
- db 64,RAICHU
- IF DEF(_RED)
- db 57,ARBOK
- ENDC
- IF DEF(_BLUE)
- db 57,SANDSLASH
- ENDC
- db 65,DITTO
- db 63,DITTO
- db 67,DITTO
- db $00
--- a/data/wildPokemon/diglettscave.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-CaveMons:
- db $14
- db 18,DIGLETT
- db 19,DIGLETT
- db 17,DIGLETT
- db 20,DIGLETT
- db 16,DIGLETT
- db 15,DIGLETT
- db 21,DIGLETT
- db 22,DIGLETT
- db 29,DUGTRIO
- db 31,DUGTRIO
- db $00
--- a/data/wildPokemon/mansion1.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-MansionMons1:
- db $0A
- IF DEF(_RED)
- db 32,KOFFING
- db 30,KOFFING
- db 34,PONYTA
- db 30,PONYTA
- db 34,GROWLITHE
- db 32,PONYTA
- db 30,GRIMER
- db 28,PONYTA
- db 37,WEEZING
- db 39,MUK
- ENDC
- IF DEF(_BLUE)
- db 32,GRIMER
- db 30,GRIMER
- db 34,PONYTA
- db 30,PONYTA
- db 34,VULPIX
- db 32,PONYTA
- db 30,KOFFING
- db 28,PONYTA
- db 37,MUK
- db 39,WEEZING
- ENDC
- db $00
--- a/data/wildPokemon/mansion2.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-MansionMons2:
- db $0A
- IF DEF(_RED)
- db 32,GROWLITHE
- db 34,KOFFING
- db 34,KOFFING
- db 30,PONYTA
- db 30,KOFFING
- db 32,PONYTA
- db 30,GRIMER
- db 28,PONYTA
- db 39,WEEZING
- db 37,MUK
- ENDC
- IF DEF(_BLUE)
- db 32,VULPIX
- db 34,GRIMER
- db 34,GRIMER
- db 30,PONYTA
- db 30,GRIMER
- db 32,PONYTA
- db 30,KOFFING
- db 28,PONYTA
- db 39,MUK
- db 37,WEEZING
- ENDC
- db $00
--- a/data/wildPokemon/mansion3.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-MansionMons3:
- db $0A
- IF DEF(_RED)
- db 31,KOFFING
- db 33,GROWLITHE
- db 35,KOFFING
- db 32,PONYTA
- db 34,PONYTA
- db 40,WEEZING
- db 34,GRIMER
- db 38,WEEZING
- db 36,PONYTA
- db 42,MUK
- ENDC
- IF DEF(_BLUE)
- db 31,GRIMER
- db 33,VULPIX
- db 35,GRIMER
- db 32,PONYTA
- db 34,MAGMAR
- db 40,MUK
- db 34,KOFFING
- db 38,MUK
- db 36,PONYTA
- db 42,WEEZING
- ENDC
- db $00
--- a/data/wildPokemon/mansionb1.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-MansionMonsB1:
- db $0A
- IF DEF(_RED)
- db 33,KOFFING
- db 31,KOFFING
- db 35,GROWLITHE
- db 32,PONYTA
- db 31,KOFFING
- db 40,WEEZING
- db 34,PONYTA
- db 35,GRIMER
- db 42,WEEZING
- db 42,MUK
- ENDC
- IF DEF(_BLUE)
- db 33,GRIMER
- db 31,GRIMER
- db 35,VULPIX
- db 32,PONYTA
- db 31,GRIMER
- db 40,MUK
- db 34,PONYTA
- db 35,KOFFING
- db 38,MAGMAR
- db 42,WEEZING
- ENDC
- db $00
--- a/data/wildPokemon/mtmoon1.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-MoonMons1:
- db $0A
- db 8,ZUBAT
- db 7,ZUBAT
- db 9,ZUBAT
- db 8,GEODUDE
- db 6,ZUBAT
- db 10,ZUBAT
- db 10,GEODUDE
- db 8,PARAS
- db 11,ZUBAT
- db 8,CLEFAIRY
- db $00
--- a/data/wildPokemon/mtmoonb1.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-MoonMonsB1:
- db $0A
- db 8,ZUBAT
- db 7,ZUBAT
- db 7,GEODUDE
- db 8,GEODUDE
- db 9,ZUBAT
- db 10,PARAS
- db 10,ZUBAT
- db 11,ZUBAT
- db 9,CLEFAIRY
- db 9,GEODUDE
- db $00
--- a/data/wildPokemon/mtmoonb2.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-MoonMonsB2:
- db $0A
- db 9,ZUBAT
- db 9,GEODUDE
- db 10,ZUBAT
- db 10,GEODUDE
- db 11,ZUBAT
- db 10,PARAS
- db 12,PARAS
- db 10,CLEFAIRY
- db 12,ZUBAT
- db 12,CLEFAIRY
- db $00
--- a/data/wildPokemon/nomons.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-NoMons:
- db $00
- db $00
--- a/data/wildPokemon/pokemontower1.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-TowerMons1:
- db $00
- db $00
--- a/data/wildPokemon/pokemontower2.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-TowerMons2:
- db $00
- db $00
--- a/data/wildPokemon/pokemontower3.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TowerMons3:
- db $0A
- db 20,GASTLY
- db 21,GASTLY
- db 22,GASTLY
- db 23,GASTLY
- db 19,GASTLY
- db 18,GASTLY
- db 24,GASTLY
- db 20,CUBONE
- db 22,CUBONE
- db 25,HAUNTER
- db $00
--- a/data/wildPokemon/pokemontower4.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TowerMons4:
- db $0A
- db 20,GASTLY
- db 21,GASTLY
- db 22,GASTLY
- db 23,GASTLY
- db 19,GASTLY
- db 18,GASTLY
- db 25,HAUNTER
- db 20,CUBONE
- db 22,CUBONE
- db 24,GASTLY
- db $00
--- a/data/wildPokemon/pokemontower5.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TowerMons5:
- db $0A
- db 20,GASTLY
- db 21,GASTLY
- db 22,GASTLY
- db 23,GASTLY
- db 19,GASTLY
- db 18,GASTLY
- db 25,HAUNTER
- db 20,CUBONE
- db 22,CUBONE
- db 24,GASTLY
- db $00
--- a/data/wildPokemon/pokemontower6.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TowerMons6:
- db $0F
- db 21,GASTLY
- db 22,GASTLY
- db 23,GASTLY
- db 24,GASTLY
- db 20,GASTLY
- db 19,GASTLY
- db 26,HAUNTER
- db 22,CUBONE
- db 24,CUBONE
- db 28,HAUNTER
- db $00
--- a/data/wildPokemon/pokemontower7.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TowerMons7:
- db $0F
- db 21,GASTLY
- db 22,GASTLY
- db 23,GASTLY
- db 24,GASTLY
- db 20,GASTLY
- db 28,HAUNTER
- db 22,CUBONE
- db 24,CUBONE
- db 28,HAUNTER
- db 30,HAUNTER
- db $00
--- a/data/wildPokemon/powerplant.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-PowerPlantMons:
- db $0A
- db 21,VOLTORB
- db 21,MAGNEMITE
- db 20,PIKACHU
- db 24,PIKACHU
- db 23,MAGNEMITE
- db 23,VOLTORB
- db 32,MAGNETON
- db 35,MAGNETON
- IF DEF(_RED)
- db 33,ELECTABUZZ
- db 36,ELECTABUZZ
- ENDC
- IF DEF(_BLUE)
- db 33,RAICHU
- db 36,RAICHU
- ENDC
- db $00
--- a/data/wildPokemon/rocktunnel1.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TunnelMonsB1:
- db $0F
- db 16,ZUBAT
- db 17,ZUBAT
- db 17,GEODUDE
- db 15,MACHOP
- db 16,GEODUDE
- db 18,ZUBAT
- db 15,ZUBAT
- db 17,MACHOP
- db 13,ONIX
- db 15,ONIX
- db $00
--- a/data/wildPokemon/rocktunnel2.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-TunnelMonsB2:
- db $0F
- db 16,ZUBAT
- db 17,ZUBAT
- db 17,GEODUDE
- db 15,MACHOP
- db 16,GEODUDE
- db 18,ZUBAT
- db 17,MACHOP
- db 17,ONIX
- db 13,ONIX
- db 18,GEODUDE
- db $00
--- a/data/wildPokemon/route1.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-Route1Mons:
- db $19
- db 3,PIDGEY
- db 3,RATTATA
- db 3,RATTATA
- db 2,RATTATA
- db 2,PIDGEY
- db 3,PIDGEY
- db 3,PIDGEY
- db 4,RATTATA
- db 4,PIDGEY
- db 5,PIDGEY
- db $00
--- a/data/wildPokemon/route10.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route10Mons:
- db $0F
- IF DEF(_RED)
- db 16,VOLTORB
- db 16,SPEAROW
- db 14,VOLTORB
- db 11,EKANS
- db 13,SPEAROW
- db 15,EKANS
- db 17,VOLTORB
- db 17,SPEAROW
- db 13,EKANS
- db 17,EKANS
- ENDC
- IF DEF(_BLUE)
- db 16,VOLTORB
- db 16,SPEAROW
- db 14,VOLTORB
- db 11,SANDSHREW
- db 13,SPEAROW
- db 15,SANDSHREW
- db 17,VOLTORB
- db 17,SPEAROW
- db 13,SANDSHREW
- db 17,SANDSHREW
- ENDC
- db $00
--- a/data/wildPokemon/route11.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route11Mons:
- db $0F
- IF DEF(_RED)
- db 14,EKANS
- db 15,SPEAROW
- db 12,EKANS
- db 9,DROWZEE
- db 13,SPEAROW
- db 13,DROWZEE
- db 15,EKANS
- db 17,SPEAROW
- db 11,DROWZEE
- db 15,DROWZEE
- ENDC
- IF DEF(_BLUE)
- db 14,SANDSHREW
- db 15,SPEAROW
- db 12,SANDSHREW
- db 9,DROWZEE
- db 13,SPEAROW
- db 13,DROWZEE
- db 15,SANDSHREW
- db 17,SPEAROW
- db 11,DROWZEE
- db 15,DROWZEE
- ENDC
- db $00
--- a/data/wildPokemon/route12.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route12Mons:
- db $0F
- IF DEF(_RED)
- db 24,ODDISH
- db 25,PIDGEY
- db 23,PIDGEY
- db 24,VENONAT
- db 22,ODDISH
- db 26,VENONAT
- db 26,ODDISH
- db 27,PIDGEY
- db 28,GLOOM
- db 30,GLOOM
- ENDC
- IF DEF(_BLUE)
- db 24,BELLSPROUT
- db 25,PIDGEY
- db 23,PIDGEY
- db 24,VENONAT
- db 22,BELLSPROUT
- db 26,VENONAT
- db 26,BELLSPROUT
- db 27,PIDGEY
- db 28,WEEPINBELL
- db 30,WEEPINBELL
- ENDC
- db $00
--- a/data/wildPokemon/route13.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-Route13Mons:
- IF DEF(_RED)
- db $14
- db 24,ODDISH
- db 25,PIDGEY
- db 27,PIDGEY
- db 24,VENONAT
- db 22,ODDISH
- db 26,VENONAT
- db 26,ODDISH
- db 25,DITTO
- db 28,GLOOM
- db 30,GLOOM
- ENDC
- IF DEF(_BLUE)
- db $14
- db 24,BELLSPROUT
- db 25,PIDGEY
- db 27,PIDGEY
- db 24,VENONAT
- db 22,BELLSPROUT
- db 26,VENONAT
- db 26,BELLSPROUT
- db 25,DITTO
- db 28,WEEPINBELL
- db 30,WEEPINBELL
- ENDC
- db $00
--- a/data/wildPokemon/route14.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route14Mons:
- db $0F
- IF DEF(_RED)
- db 24,ODDISH
- db 26,PIDGEY
- db 23,DITTO
- db 24,VENONAT
- db 22,ODDISH
- db 26,VENONAT
- db 26,ODDISH
- db 30,GLOOM
- db 28,PIDGEOTTO
- db 30,PIDGEOTTO
- ENDC
- IF DEF(_BLUE)
- db 24,BELLSPROUT
- db 26,PIDGEY
- db 23,DITTO
- db 24,VENONAT
- db 22,BELLSPROUT
- db 26,VENONAT
- db 26,BELLSPROUT
- db 30,WEEPINBELL
- db 28,PIDGEOTTO
- db 30,PIDGEOTTO
- ENDC
- db $00
--- a/data/wildPokemon/route15.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route15Mons:
- db $0F
- IF DEF(_RED)
- db 24,ODDISH
- db 26,DITTO
- db 23,PIDGEY
- db 26,VENONAT
- db 22,ODDISH
- db 28,VENONAT
- db 26,ODDISH
- db 30,GLOOM
- db 28,PIDGEOTTO
- db 30,PIDGEOTTO
- ENDC
- IF DEF(_BLUE)
- db 24,BELLSPROUT
- db 26,DITTO
- db 23,PIDGEY
- db 26,VENONAT
- db 22,BELLSPROUT
- db 28,VENONAT
- db 26,BELLSPROUT
- db 30,WEEPINBELL
- db 28,PIDGEOTTO
- db 30,PIDGEOTTO
- ENDC
- db $00
--- a/data/wildPokemon/route16.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-Route16Mons:
- db $19
- db 20,SPEAROW
- db 22,SPEAROW
- db 18,RATTATA
- db 20,DODUO
- db 20,RATTATA
- db 18,DODUO
- db 22,DODUO
- db 22,RATTATA
- db 23,RATICATE
- db 25,RATICATE
- db $00
--- a/data/wildPokemon/route17.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-Route17Mons:
- db $19
- db 20,SPEAROW
- db 22,SPEAROW
- db 25,RATICATE
- db 24,DODUO
- db 27,RATICATE
- db 26,DODUO
- db 28,DODUO
- db 29,RATICATE
- db 25,FEAROW
- db 27,FEAROW
- db $00
--- a/data/wildPokemon/route18.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-Route18Mons:
- db $19
- db 20,SPEAROW
- db 22,SPEAROW
- db 25,RATICATE
- db 24,DODUO
- db 25,FEAROW
- db 26,DODUO
- db 28,DODUO
- db 29,RATICATE
- db 27,FEAROW
- db 29,FEAROW
- db $00
--- a/data/wildPokemon/route2.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-Route2Mons:
- db $19
- db 3,RATTATA
- db 3,PIDGEY
- db 4,PIDGEY
- db 4,RATTATA
- db 5,PIDGEY
- IF DEF(_RED)
- db 3,WEEDLE
- ENDC
- IF DEF(_BLUE)
- db 3,CATERPIE
- ENDC
- db 2,RATTATA
- db 5,RATTATA
- IF DEF(_RED)
- db 4,WEEDLE
- db 5,WEEDLE
- ENDC
- IF DEF(_BLUE)
- db 4,CATERPIE
- db 5,CATERPIE
- ENDC
- db $00
--- a/data/wildPokemon/route21.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-Route21Mons:
- db $19
- db 21,RATTATA
- db 23,PIDGEY
- db 30,RATICATE
- db 23,RATTATA
- db 21,PIDGEY
- db 30,PIDGEOTTO
- db 32,PIDGEOTTO
- db 28,TANGELA
- db 30,TANGELA
- db 32,TANGELA
- db $05
- db 5,TENTACOOL
- db 10,TENTACOOL
- db 15,TENTACOOL
- db 5,TENTACOOL
- db 10,TENTACOOL
- db 15,TENTACOOL
- db 20,TENTACOOL
- db 30,TENTACOOL
- db 35,TENTACOOL
- db 40,TENTACOOL
--- a/data/wildPokemon/route22.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route22Mons:
- db $19
- IF DEF(_RED)
- db 3,RATTATA
- db 3,NIDORAN_M
- db 4,RATTATA
- db 4,NIDORAN_M
- db 2,RATTATA
- db 2,NIDORAN_M
- db 3,SPEAROW
- db 5,SPEAROW
- db 3,NIDORAN_F
- db 4,NIDORAN_F
- ENDC
- IF DEF(_BLUE)
- db 3,RATTATA
- db 3,NIDORAN_F
- db 4,RATTATA
- db 4,NIDORAN_F
- db 2,RATTATA
- db 2,NIDORAN_F
- db 3,SPEAROW
- db 5,SPEAROW
- db 3,NIDORAN_M
- db 4,NIDORAN_M
- ENDC
- db $00
--- a/data/wildPokemon/route23.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-Route23Mons:
- db $0A
- IF DEF(_RED)
- db 26,EKANS
- ENDC
- IF DEF(_BLUE)
- db 26,SANDSHREW
- ENDC
- db 33,DITTO
- db 26,SPEAROW
- db 38,FEAROW
- db 38,DITTO
- db 38,FEAROW
- IF DEF(_RED)
- db 41,ARBOK
- ENDC
- IF DEF(_BLUE)
- db 41,SANDSLASH
- ENDC
- db 43,DITTO
- db 41,FEAROW
- db 43,FEAROW
- db $00
--- a/data/wildPokemon/route24.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route24Mons:
- db $19
- IF DEF(_RED)
- db 7,WEEDLE
- db 8,KAKUNA
- db 12,PIDGEY
- db 12,ODDISH
- db 13,ODDISH
- db 10,ABRA
- db 14,ODDISH
- db 13,PIDGEY
- db 8,ABRA
- db 12,ABRA
- ENDC
- IF DEF(_BLUE)
- db 7,CATERPIE
- db 8,METAPOD
- db 12,PIDGEY
- db 12,BELLSPROUT
- db 13,BELLSPROUT
- db 10,ABRA
- db 14,BELLSPROUT
- db 13,PIDGEY
- db 8,ABRA
- db 12,ABRA
- ENDC
- db $00
--- a/data/wildPokemon/route25.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route25Mons:
- db $0F
- IF DEF(_RED)
- db 8,WEEDLE
- db 9,KAKUNA
- db 13,PIDGEY
- db 12,ODDISH
- db 13,ODDISH
- db 12,ABRA
- db 14,ODDISH
- db 10,ABRA
- db 7,METAPOD
- db 8,CATERPIE
- ENDC
- IF DEF(_BLUE)
- db 8,CATERPIE
- db 9,METAPOD
- db 13,PIDGEY
- db 12,BELLSPROUT
- db 13,BELLSPROUT
- db 12,ABRA
- db 14,BELLSPROUT
- db 10,ABRA
- db 7,KAKUNA
- db 8,WEEDLE
- ENDC
- db $00
--- a/data/wildPokemon/route3.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-Route3Mons:
- db $14
- db 6,PIDGEY
- db 5,SPEAROW
- db 7,PIDGEY
- db 6,SPEAROW
- db 7,SPEAROW
- db 8,PIDGEY
- db 8,SPEAROW
- db 3,JIGGLYPUFF
- db 5,JIGGLYPUFF
- db 7,JIGGLYPUFF
- db $00
--- a/data/wildPokemon/route4.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route4Mons:
- db $14
- IF DEF(_RED)
- db 10,RATTATA
- db 10,SPEAROW
- db 8,RATTATA
- db 6,EKANS
- db 8,SPEAROW
- db 10,EKANS
- db 12,RATTATA
- db 12,SPEAROW
- db 8,EKANS
- db 12,EKANS
- ENDC
- IF DEF(_BLUE)
- db 10,RATTATA
- db 10,SPEAROW
- db 8,RATTATA
- db 6,SANDSHREW
- db 8,SPEAROW
- db 10,SANDSHREW
- db 12,RATTATA
- db 12,SPEAROW
- db 8,SANDSHREW
- db 12,SANDSHREW
- ENDC
- db $00
--- a/data/wildPokemon/route5.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route5Mons:
- db $0F
- IF DEF(_RED)
- db 13,ODDISH
- db 13,PIDGEY
- db 15,PIDGEY
- db 10,MANKEY
- db 12,MANKEY
- db 15,ODDISH
- db 16,ODDISH
- db 16,PIDGEY
- db 14,MANKEY
- db 16,MANKEY
- ENDC
- IF DEF(_BLUE)
- db 13,BELLSPROUT
- db 13,PIDGEY
- db 15,PIDGEY
- db 10,MEOWTH
- db 12,MEOWTH
- db 15,BELLSPROUT
- db 16,BELLSPROUT
- db 16,PIDGEY
- db 14,MEOWTH
- db 16,MEOWTH
- ENDC
- db $00
--- a/data/wildPokemon/route6.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route6Mons:
- db $0F
- IF DEF(_RED)
- db 13,ODDISH
- db 13,PIDGEY
- db 15,PIDGEY
- db 10,MANKEY
- db 12,MANKEY
- db 15,ODDISH
- db 16,ODDISH
- db 16,PIDGEY
- db 14,MANKEY
- db 16,MANKEY
- ENDC
- IF DEF(_BLUE)
- db 13,BELLSPROUT
- db 13,PIDGEY
- db 15,PIDGEY
- db 10,MEOWTH
- db 12,MEOWTH
- db 15,BELLSPROUT
- db 16,BELLSPROUT
- db 16,PIDGEY
- db 14,MEOWTH
- db 16,MEOWTH
- ENDC
- db $00
--- a/data/wildPokemon/route7.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route7Mons:
- db $0F
- IF DEF(_RED)
- db 19,PIDGEY
- db 19,ODDISH
- db 17,MANKEY
- db 22,ODDISH
- db 22,PIDGEY
- db 18,MANKEY
- db 18,GROWLITHE
- db 20,GROWLITHE
- db 19,MANKEY
- db 20,MANKEY
- ENDC
- IF DEF(_BLUE)
- db 19,PIDGEY
- db 19,BELLSPROUT
- db 17,MEOWTH
- db 22,BELLSPROUT
- db 22,PIDGEY
- db 18,MEOWTH
- db 18,VULPIX
- db 20,VULPIX
- db 19,MEOWTH
- db 20,MEOWTH
- ENDC
- db $00
--- a/data/wildPokemon/route8.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route8Mons:
- db $0F
- IF DEF(_RED)
- db 18,PIDGEY
- db 18,MANKEY
- db 17,EKANS
- db 16,GROWLITHE
- db 20,PIDGEY
- db 20,MANKEY
- db 19,EKANS
- db 17,GROWLITHE
- db 15,GROWLITHE
- db 18,GROWLITHE
- ENDC
- IF DEF(_BLUE)
- db 18,PIDGEY
- db 18,MEOWTH
- db 17,SANDSHREW
- db 16,VULPIX
- db 20,PIDGEY
- db 20,MEOWTH
- db 19,SANDSHREW
- db 17,VULPIX
- db 15,VULPIX
- db 18,VULPIX
- ENDC
- db $00
--- a/data/wildPokemon/route9.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-Route9Mons:
- db $0F
- IF DEF(_RED)
- db 16,RATTATA
- db 16,SPEAROW
- db 14,RATTATA
- db 11,EKANS
- db 13,SPEAROW
- db 15,EKANS
- db 17,RATTATA
- db 17,SPEAROW
- db 13,EKANS
- db 17,EKANS
- ENDC
- IF DEF(_BLUE)
- db 16,RATTATA
- db 16,SPEAROW
- db 14,RATTATA
- db 11,SANDSHREW
- db 13,SPEAROW
- db 15,SANDSHREW
- db 17,RATTATA
- db 17,SPEAROW
- db 13,SANDSHREW
- db 17,SANDSHREW
- ENDC
- db $00
--- a/data/wildPokemon/safarizone1.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-ZoneMons1:
- db $1E
- IF DEF(_RED)
- db 24,NIDORAN_M
- db 26,DODUO
- db 22,PARAS
- db 25,EXEGGCUTE
- db 33,NIDORINO
- db 23,EXEGGCUTE
- db 24,NIDORAN_F
- db 25,PARASECT
- db 25,KANGASKHAN
- db 28,SCYTHER
- ENDC
- IF DEF(_BLUE)
- db 24,NIDORAN_F
- db 26,DODUO
- db 22,PARAS
- db 25,EXEGGCUTE
- db 33,NIDORINA
- db 23,EXEGGCUTE
- db 24,NIDORAN_M
- db 25,PARASECT
- db 25,KANGASKHAN
- db 28,PINSIR
- ENDC
- db $00
--- a/data/wildPokemon/safarizone2.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-ZoneMons2:
- db $1E
- IF DEF(_RED)
- db 22,NIDORAN_M
- ENDC
- IF DEF(_BLUE)
- db 22,NIDORAN_F
- ENDC
- db 26,RHYHORN
- db 23,PARAS
- db 25,EXEGGCUTE
- IF DEF(_RED)
- db 30,NIDORINO
- ENDC
- IF DEF(_BLUE)
- db 30,NIDORINA
- ENDC
- db 27,EXEGGCUTE
- IF DEF(_RED)
- db 30,NIDORINA
- ENDC
- IF DEF(_BLUE)
- db 30,NIDORINO
- ENDC
- db 32,VENOMOTH
- db 26,CHANSEY
- db 28,TAUROS
- db $00
--- a/data/wildPokemon/safarizone3.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-ZoneMons3:
- db $1E
- IF DEF(_RED)
- db 25,NIDORAN_M
- db 26,DODUO
- db 23,VENONAT
- db 24,EXEGGCUTE
- db 33,NIDORINO
- db 26,EXEGGCUTE
- db 25,NIDORAN_F
- db 31,VENOMOTH
- db 26,TAUROS
- db 28,KANGASKHAN
- ENDC
- IF DEF(_BLUE)
- db 25,NIDORAN_F
- db 26,DODUO
- db 23,VENONAT
- db 24,EXEGGCUTE
- db 33,NIDORINA
- db 26,EXEGGCUTE
- db 25,NIDORAN_M
- db 31,VENOMOTH
- db 26,TAUROS
- db 28,KANGASKHAN
- ENDC
- db $00
--- a/data/wildPokemon/safarizonecenter.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-ZoneMonsCenter:
- db $1E
- IF DEF(_RED)
- db 22,NIDORAN_M
- db 25,RHYHORN
- db 22,VENONAT
- db 24,EXEGGCUTE
- db 31,NIDORINO
- db 25,EXEGGCUTE
- db 31,NIDORINA
- db 30,PARASECT
- db 23,SCYTHER
- db 23,CHANSEY
- ENDC
- IF DEF(_BLUE)
- db 22,NIDORAN_F
- db 25,RHYHORN
- db 22,VENONAT
- db 24,EXEGGCUTE
- db 31,NIDORINA
- db 25,EXEGGCUTE
- db 31,NIDORINO
- db 30,PARASECT
- db 23,PINSIR
- db 23,CHANSEY
- ENDC
- db $00
--- a/data/wildPokemon/seafoamisland1.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-IslandMons1:
- db $0F
- IF DEF(_RED)
- db 30,SEEL
- db 30,SLOWPOKE
- db 30,SHELLDER
- db 30,HORSEA
- db 28,HORSEA
- db 21,ZUBAT
- db 29,GOLBAT
- db 28,PSYDUCK
- db 28,SHELLDER
- db 38,GOLDUCK
- ENDC
- IF DEF(_BLUE)
- db 30,SEEL
- db 30,PSYDUCK
- db 30,STARYU
- db 30,KRABBY
- db 28,KRABBY
- db 21,ZUBAT
- db 29,GOLBAT
- db 28,SLOWPOKE
- db 28,STARYU
- db 38,SLOWBRO
- ENDC
- db $00
--- a/data/wildPokemon/seafoamislandb1.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-IslandMonsB1:
- db $0A
- IF DEF(_RED)
- db 30,STARYU
- db 30,HORSEA
- db 32,SHELLDER
- db 32,HORSEA
- db 28,SLOWPOKE
- db 30,SEEL
- db 30,SLOWPOKE
- db 28,SEEL
- db 38,DEWGONG
- db 37,SEADRA
- ENDC
- IF DEF(_BLUE)
- db 30,SHELLDER
- db 30,KRABBY
- db 32,STARYU
- db 32,KRABBY
- db 28,PSYDUCK
- db 30,SEEL
- db 30,PSYDUCK
- db 28,SEEL
- db 38,DEWGONG
- db 37,KINGLER
- ENDC
- db $00
--- a/data/wildPokemon/seafoamislandb2.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-IslandMonsB2:
- db $0A
- IF DEF(_RED)
- db 30,SEEL
- db 30,SLOWPOKE
- db 32,SEEL
- db 32,SLOWPOKE
- db 28,HORSEA
- db 30,STARYU
- db 30,HORSEA
- db 28,SHELLDER
- db 30,GOLBAT
- db 37,SLOWBRO
- ENDC
- IF DEF(_BLUE)
- db 30,SEEL
- db 30,PSYDUCK
- db 32,SEEL
- db 32,PSYDUCK
- db 28,KRABBY
- db 30,SHELLDER
- db 30,KRABBY
- db 28,STARYU
- db 30,GOLBAT
- db 37,GOLDUCK
- ENDC
- db $00
--- a/data/wildPokemon/seafoamislandb3.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-IslandMonsB3:
- db $0A
- IF DEF(_RED)
- db 31,SLOWPOKE
- db 31,SEEL
- db 33,SLOWPOKE
- db 33,SEEL
- db 29,HORSEA
- db 31,SHELLDER
- db 31,HORSEA
- db 29,SHELLDER
- db 39,SEADRA
- db 37,DEWGONG
- ENDC
- IF DEF(_BLUE)
- db 31,PSYDUCK
- db 31,SEEL
- db 33,PSYDUCK
- db 33,SEEL
- db 29,KRABBY
- db 31,STARYU
- db 31,KRABBY
- db 29,STARYU
- db 39,KINGLER
- db 37,DEWGONG
- ENDC
- db $00
--- a/data/wildPokemon/seafoamislandb4.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-IslandMonsB4:
- db $0A
- IF DEF(_RED)
- db 31,HORSEA
- db 31,SHELLDER
- db 33,HORSEA
- db 33,SHELLDER
- db 29,SLOWPOKE
- db 31,SEEL
- db 31,SLOWPOKE
- db 29,SEEL
- db 39,SLOWBRO
- db 32,GOLBAT
- ENDC
- IF DEF(_BLUE)
- db 31,KRABBY
- db 31,STARYU
- db 33,KRABBY
- db 33,STARYU
- db 29,PSYDUCK
- db 31,SEEL
- db 31,PSYDUCK
- db 29,SEEL
- db 39,GOLDUCK
- db 32,GOLBAT
- ENDC
- db $00
--- a/data/wildPokemon/victoryroad1.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-PlateauMons1:
- db $0F
- db 24,MACHOP
- db 26,GEODUDE
- db 22,ZUBAT
- db 36,ONIX
- db 39,ONIX
- db 42,ONIX
- db 41,GRAVELER
- db 41,GOLBAT
- db 42,MACHOKE
- db 43,MAROWAK
- db $00
--- a/data/wildPokemon/victoryroad2.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-PlateauMons2:
- db $0A
- db 22,MACHOP
- db 24,GEODUDE
- db 26,ZUBAT
- db 36,ONIX
- db 39,ONIX
- db 42,ONIX
- db 41,MACHOKE
- db 40,GOLBAT
- db 40,MAROWAK
- db 43,GRAVELER
- db $00
--- a/data/wildPokemon/victoryroad3.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-PlateauMons3:
- db $0F
- db 24,MACHOP
- db 26,GEODUDE
- db 22,ZUBAT
- db 42,ONIX
- db 40,VENOMOTH
- db 45,ONIX
- db 43,GRAVELER
- db 41,GOLBAT
- db 42,MACHOKE
- db 45,MACHOKE
- db $00
--- a/data/wildPokemon/viridianforest.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-ForestMons:
- db $08
- IF DEF(_RED)
- db 4,WEEDLE
- db 5,KAKUNA
- db 3,WEEDLE
- db 5,WEEDLE
- db 4,KAKUNA
- db 6,KAKUNA
- db 4,METAPOD
- db 3,CATERPIE
- ENDC
- IF DEF(_BLUE)
- db 4,CATERPIE
- db 5,METAPOD
- db 3,CATERPIE
- db 5,CATERPIE
- db 4,METAPOD
- db 6,METAPOD
- db 4,KAKUNA
- db 3,WEEDLE
- ENDC
- db 3,PIKACHU
- db 5,PIKACHU
- db $00
--- a/data/wildPokemon/waterpokemon.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-WaterMons:
- db $00
- db $05
- db 5,TENTACOOL
- db 10,TENTACOOL
- db 15,TENTACOOL
- db 5,TENTACOOL
- db 10,TENTACOOL
- db 15,TENTACOOL
- db 20,TENTACOOL
- db 30,TENTACOOL
- db 35,TENTACOOL
- db 40,TENTACOOL
--- a/data/wild_mons.asm
+++ /dev/null
@@ -1,321 +1,0 @@
-WildDataPointers:
- dw NoMons ; PALLET_TOWN
- dw NoMons ; VIRIDIAN_CITY
- dw NoMons ; PEWTER_CITY
- dw NoMons ; CERULEAN_CITY
- dw NoMons ; LAVENDER_TOWN
- dw NoMons ; VERMILION_CITY
- dw NoMons ; CELADON_CITY
- dw NoMons ; FUCHSIA_CITY
- dw NoMons ; CINNABAR_ISLAND
- dw NoMons ; INDIGO_PLATEAU
- dw NoMons ; SAFFRON_CITY
- dw NoMons ; unused
- dw Route1Mons ; ROUTE_1
- dw Route2Mons ; ROUTE_2
- dw Route3Mons ; ROUTE_3
- dw Route4Mons ; ROUTE_4
- dw Route5Mons ; ROUTE_5
- dw Route6Mons ; ROUTE_6
- dw Route7Mons ; ROUTE_7
- dw Route8Mons ; ROUTE_8
- dw Route9Mons ; ROUTE_9
- dw Route10Mons ; ROUTE_10
- dw Route11Mons ; ROUTE_11
- dw Route12Mons ; ROUTE_12
- dw Route13Mons ; ROUTE_13
- dw Route14Mons ; ROUTE_14
- dw Route15Mons ; ROUTE_15
- dw Route16Mons ; ROUTE_16
- dw Route17Mons ; ROUTE_17
- dw Route18Mons ; ROUTE_18
- dw WaterMons ; ROUTE_19
- dw WaterMons ; ROUTE_20
- dw Route21Mons ; ROUTE_21
- dw Route22Mons ; ROUTE_22
- dw Route23Mons ; ROUTE_23
- dw Route24Mons ; ROUTE_24
- dw Route25Mons ; ROUTE_25
- dw NoMons ; REDS_HOUSE_1F
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw ForestMons ; ViridianForest
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw MoonMons1
- dw MoonMonsB1
- dw MoonMonsB2
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw TunnelMonsB1
- dw PowerPlantMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw PlateauMons1
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw TowerMons1
- dw TowerMons2
- dw TowerMons3
- dw TowerMons4
- dw TowerMons5
- dw TowerMons6
- dw TowerMons7
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw IslandMonsB1
- dw IslandMonsB2
- dw IslandMonsB3
- dw IslandMonsB4
- dw NoMons
- dw NoMons
- dw MansionMons1
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw IslandMons1
- dw NoMons
- dw PlateauMons2
- dw NoMons
- dw NoMons
- dw CaveMons
- dw PlateauMons3
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw MansionMons2
- dw MansionMons3
- dw MansionMonsB1
- dw ZoneMons1
- dw ZoneMons2
- dw ZoneMons3
- dw ZoneMonsCenter
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw DungeonMons2
- dw DungeonMonsB1
- dw DungeonMons1
- dw NoMons
- dw NoMons
- dw NoMons
- dw TunnelMonsB2
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw NoMons
- dw $FFFF
-
-; wild pokemon data is divided into two parts.
-; first part: pokemon found in grass
-; second part: pokemon found while surfing
-; each part goes as follows:
- ; if first byte == 00, then
- ; no wild pokemon on this map
- ; if first byte != 00, then
- ; first byte is encounter rate
- ; followed by 20 bytes:
- ; level, species (ten times)
-
-INCLUDE "data/wildPokemon/nomons.asm"
-INCLUDE "data/wildPokemon/route1.asm"
-INCLUDE "data/wildPokemon/route2.asm"
-INCLUDE "data/wildPokemon/route22.asm"
-INCLUDE "data/wildPokemon/viridianforest.asm"
-INCLUDE "data/wildPokemon/route3.asm"
-INCLUDE "data/wildPokemon/mtmoon1.asm"
-INCLUDE "data/wildPokemon/mtmoonb1.asm"
-INCLUDE "data/wildPokemon/mtmoonb2.asm"
-INCLUDE "data/wildPokemon/route4.asm"
-INCLUDE "data/wildPokemon/route24.asm"
-INCLUDE "data/wildPokemon/route25.asm"
-INCLUDE "data/wildPokemon/route9.asm"
-INCLUDE "data/wildPokemon/route5.asm"
-INCLUDE "data/wildPokemon/route6.asm"
-INCLUDE "data/wildPokemon/route11.asm"
-INCLUDE "data/wildPokemon/rocktunnel1.asm"
-INCLUDE "data/wildPokemon/rocktunnel2.asm"
-INCLUDE "data/wildPokemon/route10.asm"
-INCLUDE "data/wildPokemon/route12.asm"
-INCLUDE "data/wildPokemon/route8.asm"
-INCLUDE "data/wildPokemon/route7.asm"
-INCLUDE "data/wildPokemon/pokemontower1.asm"
-INCLUDE "data/wildPokemon/pokemontower2.asm"
-INCLUDE "data/wildPokemon/pokemontower3.asm"
-INCLUDE "data/wildPokemon/pokemontower4.asm"
-INCLUDE "data/wildPokemon/pokemontower5.asm"
-INCLUDE "data/wildPokemon/pokemontower6.asm"
-INCLUDE "data/wildPokemon/pokemontower7.asm"
-INCLUDE "data/wildPokemon/route13.asm"
-INCLUDE "data/wildPokemon/route14.asm"
-INCLUDE "data/wildPokemon/route15.asm"
-INCLUDE "data/wildPokemon/route16.asm"
-INCLUDE "data/wildPokemon/route17.asm"
-INCLUDE "data/wildPokemon/route18.asm"
-INCLUDE "data/wildPokemon/safarizonecenter.asm"
-INCLUDE "data/wildPokemon/safarizone1.asm"
-INCLUDE "data/wildPokemon/safarizone2.asm"
-INCLUDE "data/wildPokemon/safarizone3.asm"
-INCLUDE "data/wildPokemon/waterpokemon.asm"
-INCLUDE "data/wildPokemon/seafoamisland1.asm"
-INCLUDE "data/wildPokemon/seafoamislandb1.asm"
-INCLUDE "data/wildPokemon/seafoamislandb2.asm"
-INCLUDE "data/wildPokemon/seafoamislandb3.asm"
-INCLUDE "data/wildPokemon/seafoamislandb4.asm"
-INCLUDE "data/wildPokemon/mansion1.asm"
-INCLUDE "data/wildPokemon/mansion2.asm"
-INCLUDE "data/wildPokemon/mansion3.asm"
-INCLUDE "data/wildPokemon/mansionb1.asm"
-INCLUDE "data/wildPokemon/route21.asm"
-INCLUDE "data/wildPokemon/ceruleancave1.asm"
-INCLUDE "data/wildPokemon/ceruleancave2.asm"
-INCLUDE "data/wildPokemon/ceruleancaveb1.asm"
-INCLUDE "data/wildPokemon/powerplant.asm"
-INCLUDE "data/wildPokemon/route23.asm"
-INCLUDE "data/wildPokemon/victoryroad2.asm"
-INCLUDE "data/wildPokemon/victoryroad3.asm"
-INCLUDE "data/wildPokemon/victoryroad1.asm"
-INCLUDE "data/wildPokemon/diglettscave.asm"
--- a/data/wild_probabilities.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-WildMonEncounterSlotChances:
-; There are 10 slots for wild pokemon, and this is the table that defines how common each of
-; those 10 slots is. A random number is generated and then the first byte of each pair in this
-; table is compared against that random number. If the random number is less than or equal
-; to the first byte, then that slot is chosen. The second byte is double the slot number.
- db $32, $00 ; 51/256 = 19.9% chance of slot 0
- db $65, $02 ; 51/256 = 19.9% chance of slot 1
- db $8C, $04 ; 39/256 = 15.2% chance of slot 2
- db $A5, $06 ; 25/256 = 9.8% chance of slot 3
- db $BE, $08 ; 25/256 = 9.8% chance of slot 4
- db $D7, $0A ; 25/256 = 9.8% chance of slot 5
- db $E4, $0C ; 13/256 = 5.1% chance of slot 6
- db $F1, $0E ; 13/256 = 5.1% chance of slot 7
- db $FC, $10 ; 11/256 = 4.3% chance of slot 8
- db $FF, $12 ; 3/256 = 1.2% chance of slot 9
--- a/engine/battle/animations.asm
+++ b/engine/battle/animations.asm
@@ -163,7 +163,7 @@
PlayAnimation:
xor a
- ld [$FF8B], a ; it looks like nothing reads this
+ ld [hROMBankTemp], a ; it looks like nothing reads this
ld [wSubAnimTransform], a
ld a, [wAnimationID] ; get animation number
dec a
@@ -308,7 +308,7 @@
; sets the transform to the subanimation type if it's the enemy's turn
GetSubanimationTransform1:
ld b, a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, b
ret nz
@@ -319,7 +319,7 @@
; sets the transform to 2 (i.e. horizontal and vertical flip) if it's the player's turn
; sets the transform to 0 (i.e. no transform) if it's the enemy's turn
GetSubanimationTransform2:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, 2 << 5
ret z
@@ -421,7 +421,7 @@
ShareMoveAnimations:
; some moves just reuse animations from status conditions
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ret z
@@ -649,7 +649,7 @@
pop hl
ret
-INCLUDE "data/move_animation_special_effects.asm"
+INCLUDE "data/moves/animation_special_effects.asm"
DoBallTossSpecialEffects:
ld a, [wcf91]
@@ -911,7 +911,7 @@
ld c, 20
jp DelayFrames
-INCLUDE "data/move_animation_pointers.asm"
+INCLUDE "data/moves/animation_special_effect_pointers.asm"
AnimationDelay10:
ld c, 10
@@ -920,16 +920,16 @@
; calls a function with the turn flipped from player to enemy or vice versa
; input - hl - address of function to call
CallWithTurnFlipped:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
push af
xor 1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld de, .returnAddress
push de
jp hl
.returnAddress
pop af
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ret
; flashes the screen for an extended period (48 frames)
@@ -1133,7 +1133,7 @@
AnimationSlideMonUp:
; Slides the mon's sprite upwards.
ld c, 7
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
coord hl, 1, 6
coord de, 1, 5
@@ -1201,7 +1201,7 @@
jr nz, .slideLoop
; Fill in the bottom row of the mon pic with the next row's tile IDs.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
coord hl, 1, 11
jr z, .next
@@ -1370,7 +1370,7 @@
AnimationShakeBackAndForth:
; Shakes the mon's sprite back and forth rapidly. This is used in Double Team.
; The mon's sprite disappears after this animation.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
coord hl, 0, 5
coord de, 2, 5
@@ -1418,7 +1418,7 @@
; Shifts the mon's sprite horizontally to a fixed location. Used by lots of
; animations like Tackle/Body Slam.
call AnimationHideMonPic
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
coord hl, 2, 5
jr z, .next
@@ -1434,7 +1434,7 @@
AnimationResetMonPosition:
; Resets the mon's sprites to be located at the normal coordinates.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, 5 * SCREEN_WIDTH + 2
jr z, .next
@@ -1446,7 +1446,7 @@
AnimationSpiralBallsInward:
; Creates an effect that looks like energy balls spiralling into the
; player mon's sprite. Used in Focus Energy, for example.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
ld a, -40
@@ -1530,7 +1530,7 @@
ld c, 4
.loop
push bc
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
coord hl, 16, 0
@@ -1583,7 +1583,7 @@
AnimationShootBallsUpward:
; Shoots one pillar of "energy" balls upwards. Used in Teleport/Sky Attack
; animations.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
lb bc, 0, 16 * 8
@@ -1651,7 +1651,7 @@
AnimationShootManyBallsUpward:
; Shoots several pillars of "energy" balls upward.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, UpwardBallsAnimXCoordinatesPlayerTurn
ld a, $50 ; y coordinate for "energy" ball pillar
@@ -1735,7 +1735,7 @@
jr nz, .loop
call AnimationHideMonPic
ld hl, wTempPic
- ld bc, $0310
+ ld bc, $310
xor a
call FillMemory
jp CopyTempPicToMonPic
@@ -1743,7 +1743,7 @@
_AnimationSlideMonOff:
; Slides the mon's sprite off the screen horizontally by e tiles and waits
; [wSlideMonDelay] V-blanks each time the pic is slid by one tile.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
coord hl, 12, 0
@@ -1758,7 +1758,7 @@
.rowLoop ; iterates once for each row
ld c, 8
.tileLoop ; iterates once for each tile in the row
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn2
call .EnemyNextTile
@@ -1821,7 +1821,7 @@
jp Delay3
CopyTempPicToMonPic:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, vBackPic ; player turn
jr z, .next
@@ -1837,7 +1837,7 @@
call BattleAnimCopyTileMapToVRAM
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, SCREEN_HEIGHT_PIXELS
ld [hWY], a
ld d, $80 ; terminator
@@ -1865,7 +1865,7 @@
call SaveScreenTilesToBuffer2
call ClearScreen
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
call LoadScreenTilesFromBuffer2
ld hl, vBGMap1
@@ -1896,9 +1896,9 @@
; Changes the pokemon's sprite to the mini sprite
ld hl, wTempPic
xor a
- ld bc, $0310
+ ld bc, $310
call FillMemory
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
ld hl, SlowbroSprite ; facing down sprite
@@ -1932,12 +1932,12 @@
jp AnimationShowMonPic
CopySlowbroSpriteData:
- ld bc, $0010
+ ld bc, $10
ld a, BANK(SlowbroSprite)
jp FarCopyData2
HideSubstituteShowMonAnim:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wPlayerMonMinimized
ld a, [wPlayerBattleStatus2]
@@ -1987,7 +1987,7 @@
ld [wChangeMonPicEnemyTurnSpecies], a
ChangeMonPic:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
ld a, [wChangeMonPicEnemyTurnSpecies]
@@ -2020,11 +2020,11 @@
AnimationHideEnemyMonPic:
; Hides the enemy mon's sprite
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, AnimationHideMonPic
call CallWithTurnFlipped
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
jp Delay3
InitMultipleObjectsOAM:
@@ -2050,7 +2050,7 @@
AnimationHideMonPic:
; Hides the mon's sprite.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
ld a, 12
@@ -2078,7 +2078,7 @@
; in order to show only a portion of the mon sprite.
GetMonSpriteTileMapPointerFromRowCount:
push de
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .enemyTurn
ld a, 20 * 5 + 1
@@ -2166,7 +2166,7 @@
ld b, a
call IsCryMove
jr nc, .NotCryMove
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .next
ld a, [wBattleMonSpecies] ; get number of current monster
@@ -2208,10 +2208,10 @@
scf
ret
-INCLUDE "data/move_sfx.asm"
+INCLUDE "data/moves/sfx.asm"
CopyPicTiles:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, $31 ; base tile ID of player mon sprite
jr z, .next
@@ -2235,7 +2235,7 @@
CopyTileIDs_NoBGTransfer:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
; fall through
; b = number of rows
@@ -2261,7 +2261,7 @@
dec b
jr nz, .rowLoop
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
pop hl
ret
@@ -2624,9 +2624,9 @@
BattleAnimCopyTileMapToVRAM:
ld a, h
- ld [H_AUTOBGTRANSFERDEST + 1], a
+ ld [hAutoBGTransferDest + 1], a
ld a, l
- ld [H_AUTOBGTRANSFERDEST], a
+ ld [hAutoBGTransferDest], a
jp Delay3
TossBallAnimation:
--- a/engine/battle/battle_transitions.asm
+++ b/engine/battle/battle_transitions.asm
@@ -1,6 +1,6 @@
BattleTransition:
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
xor a
ld [hWY], a
@@ -151,7 +151,7 @@
res 2, c
ret
-INCLUDE "data/dungeon_maps.asm"
+INCLUDE "data/maps/dungeon_maps.asm"
LoadBattleTransitionTile:
ld hl, vChars1 + $7f0
@@ -349,7 +349,7 @@
.loop
push bc
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 0, 7
coord de, 0, 8
ld bc, -SCREEN_WIDTH * 2
@@ -367,7 +367,7 @@
ld bc, 2
call BattleTransition_CopyTiles2
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld c, 6
call DelayFrames
pop bc
@@ -381,7 +381,7 @@
BattleTransition_Split:
ld c, SCREEN_HEIGHT / 2
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
.loop
push bc
coord hl, 0, 16
@@ -496,7 +496,7 @@
coord hl, 0, 0
coord de, 1, 17
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
.loop
push bc
push hl
@@ -535,7 +535,7 @@
coord hl, 0, 0
coord de, 19, 1
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
.loop
push bc
push hl
@@ -582,7 +582,7 @@
ld b, $3
call BattleTransition_FlashScreen_
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
BattleTransition_Circle_Sub1:
@@ -601,10 +601,10 @@
BattleTransition_TransferDelay3:
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
; used for low level wild non-dungeon battles
--- a/engine/battle/common_text.asm
+++ b/engine/battle/common_text.asm
@@ -101,16 +101,16 @@
ld hl, GoText
jr z, .printText
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld hl, wEnemyMonHP
ld a, [hli]
ld [wLastSwitchInEnemyMonHP], a
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hl]
ld [wLastSwitchInEnemyMonHP + 1], a
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, 25
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld hl, wEnemyMonMaxHP
ld a, [hli]
@@ -121,9 +121,9 @@
rr b
ld a, b
ld b, 4
- ld [H_DIVISOR], a ; enemy mon max HP divided by 4
+ ld [hDivisor], a ; enemy mon max HP divided by 4
call Divide
- ld a, [H_QUOTIENT + 3] ; a = (enemy mon current HP * 25) / (enemy max HP / 4); this approximates the current percentage of max HP
+ ld a, [hQuotient + 3] ; a = (enemy mon current HP * 25) / (enemy max HP / 4); this approximates the current percentage of max HP
ld hl, GoText ; 70% or greater
cp 70
jr nc, .printText
@@ -179,14 +179,14 @@
dec hl
ld a, [de]
sub b
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
dec de
ld b, [hl]
ld a, [de]
sbc b
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, 25
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld hl, wEnemyMonMaxHP
ld a, [hli]
@@ -197,11 +197,11 @@
rr b
ld a, b
ld b, 4
- ld [H_DIVISOR], a
+ ld [hDivisor], a
call Divide
pop bc
pop de
- ld a, [H_QUOTIENT + 3] ; a = ((LastSwitchInEnemyMonHP - CurrentEnemyMonHP) / 25) / (EnemyMonMaxHP / 4)
+ ld a, [hQuotient + 3] ; a = ((LastSwitchInEnemyMonHP - CurrentEnemyMonHP) / 25) / (EnemyMonMaxHP / 4)
; Assuming that the enemy mon hasn't gained HP since the last switch in,
; a approximates the percentage that the enemy mon's total HP has decreased
; since the last switch in.
--- a/engine/battle/core.asm
+++ b/engine/battle/core.asm
@@ -57,7 +57,7 @@
ld [wUpdateSpritesEnabled], a
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld b, $70
ld c, $90
ld a, c
@@ -83,7 +83,7 @@
dec c
jr nz, .slideSilhouettesLoop
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, $31
ld [hStartTileID], a
coord hl, 1, 5
@@ -92,7 +92,7 @@
ld [hWY], a
ld [rWY], a
inc a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
ld b, SET_PAL_BATTLE
call RunPaletteCommand
@@ -266,7 +266,7 @@
ld a, SFX_RUN
call PlaySoundWaitForCurrent
xor a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
jpab AnimationSlideEnemyMonOff
WildRanText:
@@ -412,7 +412,7 @@
jr .playerMovesFirst
.enemyMovesFirst
ld a, $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
callab TrainerAI
jr c, .AIActionUsedEnemyFirst
call ExecuteEnemyMove
@@ -450,7 +450,7 @@
jp z, HandlePlayerMonFainted
call DrawHUDsAndHPBars
ld a, $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
callab TrainerAI
jr c, .AIActionUsedPlayerFirst
call ExecuteEnemyMove
@@ -470,7 +470,7 @@
HandlePoisonBurnLeechSeed:
ld hl, wBattleMonHP
ld de, wBattleMonStatus
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playersTurn
ld hl, wEnemyMonHP
@@ -495,7 +495,7 @@
call HandlePoisonBurnLeechSeed_DecreaseOwnHP
.notBurnedOrPoisoned
ld de, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playersTurn2
ld de, wEnemyBattleStatus2
@@ -504,16 +504,16 @@
add a
jr nc, .notLeechSeeded
push hl
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
push af
xor $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
xor a
ld [wAnimationType], a
ld a, ABSORB
call PlayMoveAnimation ; play leech seed animation (from opposing mon)
pop af
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
pop hl
call HandlePoisonBurnLeechSeed_DecreaseOwnHP
call HandlePoisonBurnLeechSeed_IncreaseEnemyHP
@@ -571,7 +571,7 @@
.nonZeroDamage
ld hl, wPlayerBattleStatus3
ld de, wPlayerToxicCounter
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playersTurn
ld hl, wEnemyBattleStatus3
@@ -582,7 +582,7 @@
ld a, [de] ; increment toxic counter
inc a
ld [de], a
- ld hl, $0000
+ ld hl, 0
.toxicTicksLoop
add hl, bc
dec a
@@ -618,7 +618,7 @@
HandlePoisonBurnLeechSeed_IncreaseEnemyHP:
push hl
ld hl, wEnemyMonMaxHP
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playersTurn
ld hl, wBattleMonMaxHP
@@ -655,19 +655,19 @@
ld [hl], a
ld [wHPBarNewHP], a
.noOverfullHeal
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
call UpdateCurMonHPBar
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
pop hl
ret
UpdateCurMonHPBar:
coord hl, 10, 9 ; tile pointer to player HP bar
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, $1
jr z, .playersTurn
@@ -958,7 +958,7 @@
PlayBattleVictoryMusic:
push af
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySoundWaitForCurrent
ld c, BANK(Music_DefeatedTrainer)
@@ -1177,7 +1177,7 @@
db "@"
; slides pic of fainted mon downwards until it disappears
-; bug: when this is called, [H_AUTOBGTRANSFERENABLED] is non-zero, so there is screen tearing
+; bug: when this is called, [hAutoBGTransferEnabled] is non-zero, so there is screen tearing
SlideDownFaintedMonPic:
ld a, [wd730]
push af
@@ -1230,7 +1230,7 @@
; slides the player or enemy trainer off screen
; a is the number of tiles to slide it horizontally (always 9 for the player trainer or 8 for the enemy trainer)
; if a is 8, the slide is to the right, else it is to the left
-; bug: when this is called, [H_AUTOBGTRANSFERENABLED] is non-zero, so there is screen tearing
+; bug: when this is called, [hAutoBGTransferEnabled] is non-zero, so there is screen tearing
SlideTrainerPicOffScreen:
ld [hSlideAmount], a
ld c, a
@@ -1508,9 +1508,9 @@
inc a
ld [wNumRunAttempts], a
ld a, [hli]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hl]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, [de]
ld [hEnemySpeed], a
inc de
@@ -1517,20 +1517,20 @@
ld a, [de]
ld [hEnemySpeed + 1], a
call LoadScreenTilesFromBuffer1
- ld de, H_MULTIPLICAND + 1
+ ld de, hMultiplicand + 1
ld hl, hEnemySpeed
ld c, 2
call StringCmp
jr nc, .canEscape ; jump if player speed greater than enemy speed
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld a, 32
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply ; multiply player speed by 32
- ld a, [H_PRODUCT + 2]
- ld [H_DIVIDEND], a
- ld a, [H_PRODUCT + 3]
- ld [H_DIVIDEND + 1], a
+ ld a, [hProduct + 2]
+ ld [hDividend], a
+ ld a, [hProduct + 3]
+ ld [hDividend + 1], a
ld a, [hEnemySpeed]
ld b, a
ld a, [hEnemySpeed + 1]
@@ -1541,10 +1541,10 @@
rr a
and a
jr z, .canEscape ; jump if enemy speed divided by 4, mod 256 is 0
- ld [H_DIVISOR], a ; ((enemy speed / 4) % 256)
+ ld [hDivisor], a ; ((enemy speed / 4) % 256)
ld b, $2
call Divide ; divide (player speed * 32) by ((enemy speed / 4) % 256)
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
and a ; is the quotient greater than 256?
jr nz, .canEscape ; if so, the player can escape
ld a, [wNumRunAttempts]
@@ -1554,15 +1554,15 @@
dec c
jr z, .compareWithRandomValue
ld b, 30
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
add b
- ld [H_QUOTIENT + 3], a
+ ld [hQuotient + 3], a
jr c, .canEscape
jr .loop
.compareWithRandomValue
call BattleRandom
ld b, a
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
cp b
jr nc, .canEscape ; if the random value was less than or equal to the quotient
; plus 30 times the number of attempts, the player can escape
@@ -1754,7 +1754,7 @@
ld hl, wEnemyBattleStatus1
res USING_TRAPPING_MOVE, [hl]
ld a, $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld a, POOF_ANIM
call PlayMoveAnimation
coord hl, 4, 11
@@ -1812,7 +1812,7 @@
DrawPlayerHUDAndHPBar:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 9, 7
lb bc, 5, 11
call ClearScreenArea
@@ -1845,7 +1845,7 @@
coord hl, 10, 9
predef DrawHP
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, wPlayerHPBarColor
call GetBattleHealthBarColor
ld hl, wBattleMonHP
@@ -1873,7 +1873,7 @@
DrawEnemyHUDAndHPBar:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 0, 0
lb bc, 4, 12
call ClearScreenArea
@@ -1895,9 +1895,9 @@
.skipPrintLevel
ld hl, wEnemyMonHP
ld a, [hli]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hld]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
or [hl] ; is current HP zero?
jr nz, .hpNonzero
; current HP is 0
@@ -1908,45 +1908,45 @@
jp .drawHPBar
.hpNonzero
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld a, 48
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply ; multiply current HP by 48
ld hl, wEnemyMonMaxHP
ld a, [hli]
ld b, a
ld a, [hl]
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld a, b
and a ; is max HP > 255?
jr z, .doDivide
; if max HP > 255, scale both (current HP * 48) and max HP by dividing by 4 so that max HP fits in one byte
; (it needs to be one byte so it can be used as the divisor for the Divide function)
- ld a, [H_DIVISOR]
+ ld a, [hDivisor]
srl b
rr a
srl b
rr a
- ld [H_DIVISOR], a
- ld a, [H_PRODUCT + 2]
+ ld [hDivisor], a
+ ld a, [hProduct + 2]
ld b, a
srl b
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
rr a
srl b
rr a
- ld [H_PRODUCT + 3], a
+ ld [hProduct + 3], a
ld a, b
- ld [H_PRODUCT + 2], a
+ ld [hProduct + 2], a
.doDivide
- ld a, [H_PRODUCT + 2]
- ld [H_DIVIDEND], a
- ld a, [H_PRODUCT + 3]
- ld [H_DIVIDEND + 1], a
+ ld a, [hProduct + 2]
+ ld [hDividend], a
+ ld a, [hProduct + 3]
+ ld [hDividend + 1], a
ld a, $2
ld b, a
call Divide ; divide (current HP * 48) by max HP
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
; set variables for DrawHPBar
ld e, a
ld a, $6
@@ -1958,7 +1958,7 @@
coord hl, 2, 2
call DrawHPBar
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, wEnemyHPBarColor
GetBattleHealthBarColor:
@@ -2469,13 +2469,13 @@
.writemoves
ld de, wMovesString
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
set 2, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
call PlaceString
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
res 2, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
ret
.regularmenu
@@ -2595,10 +2595,10 @@
call AddNTimes
ld [hl], "▷"
.select
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
set 1, [hl]
call HandleMenuInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
res 1, [hl]
bit 6, a
jp nz, SelectMenuItem_CursorUp ; up
@@ -2825,7 +2825,7 @@
PrintMenuItem:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 0, 8
ld b, 3
ld c, 9
@@ -2847,7 +2847,7 @@
ld hl, wCurrentMenuItem
dec [hl]
xor a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld hl, wBattleMonMoves
ld a, [wCurrentMenuItem]
ld c, a
@@ -2891,7 +2891,7 @@
predef PrintMoveType
.moveDisabled
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
jp Delay3
DisabledText:
@@ -3043,7 +3043,7 @@
ExecutePlayerMove:
xor a
- ld [H_WHOSETURN], a ; set player's turn
+ ld [hWhoseTurn], a ; set player's turn
ld a, [wPlayerSelectedMove]
inc a
jp z, ExecutePlayerMoveDone ; for selected move = FF, skip most of player's turn
@@ -3252,7 +3252,7 @@
; print the ghost battle messages
call IsGhostBattle
ret nz
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .Ghost
ld a, [wBattleMonStatus] ; player’s turn
@@ -3619,7 +3619,7 @@
PrintMoveIsDisabledText:
ld hl, wPlayerSelectedMove
ld de, wPlayerBattleStatus1
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .removeChargingUp
inc hl
@@ -3675,11 +3675,11 @@
xor a
ld [wAnimationType], a
inc a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
call PlayMoveAnimation
call DrawPlayerHUDAndHPBar
xor a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
jp ApplyDamageToPlayerPokemon
PrintMonName1Text:
@@ -3694,7 +3694,7 @@
MonName1Text:
TX_FAR _MonName1Text
TX_ASM
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveNum]
ld hl, wPlayerUsedMove
@@ -3814,11 +3814,11 @@
pop bc
ret
-INCLUDE "data/move_grammar.asm"
+INCLUDE "data/moves/grammar.asm"
PrintMoveFailureText:
ld de, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playersTurn
ld de, wEnemyMoveEffect
@@ -3866,7 +3866,7 @@
call PrintText
ld b, $4
predef PredefShakeScreenHorizontally
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .enemyTurn
jp ApplyDamageToPlayerPokemon
@@ -4139,7 +4139,7 @@
ld d, a ; d = move power
ret z ; return if move power is zero
ld a, [hl] ; a = [wPlayerMoveType]
- cp FIRE ; types >= FIRE are all special
+ cp SPECIAL ; types >= SPECIAL are all special
jr nc, .specialAttack
.physicalAttack
ld hl, wEnemyMonDefense
@@ -4160,9 +4160,9 @@
; in the case of a critical hit, reset the player's attack and the enemy's defense to their base values
ld c, 3 ; defense stat
call GetEnemyMonStat
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
ld b, a
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
ld c, a
push bc
ld hl, wPartyMon1Attack
@@ -4192,9 +4192,9 @@
; in the case of a critical hit, reset the player's and enemy's specials to their base values
ld c, 5 ; special stat
call GetEnemyMonStat
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
ld b, a
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
ld c, a
push bc
ld hl, wPartyMon1Special
@@ -4252,7 +4252,7 @@
and a
ret z ; return if move power is zero
ld a, [hl] ; a = [wEnemyMoveType]
- cp FIRE ; types >= FIRE are all special
+ cp SPECIAL ; types >= SPECIAL are all special
jr nc, .specialAttack
.physicalAttack
ld hl, wBattleMonDefense
@@ -4281,7 +4281,7 @@
push bc
ld c, 2 ; attack stat
call GetEnemyMonStat
- ld hl, H_PRODUCT + 2
+ ld hl, hProduct + 2
pop bc
jr .scaleStats
.specialAttack
@@ -4313,7 +4313,7 @@
push bc
ld c, 5 ; special stat
call GetEnemyMonStat
- ld hl, H_PRODUCT + 2
+ ld hl, hProduct + 2
pop bc
; if either the offensive or defensive stat is too large to store in a byte, scale both stats by dividing them by 4
; this allows values with up to 10 bits (values up to 1023) to be handled
@@ -4371,9 +4371,9 @@
ld bc, wEnemyMon2 - wEnemyMon1
call AddNTimes
ld a, [hli]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hl]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
pop bc
pop de
ret
@@ -4404,7 +4404,7 @@
; d: base power
; e: level
- ld a, [H_WHOSETURN] ; whose turn?
+ ld a, [hWhoseTurn] ; whose turn?
and a
ld a, [wPlayerMoveEffect]
jr z, .effect
@@ -4436,7 +4436,7 @@
.skipbp
xor a
- ld hl, H_DIVIDEND
+ ld hl, hDividend
ldi [hl], a
ldi [hl], a
ld [hl], a
@@ -4487,41 +4487,41 @@
ld hl, wDamage
ld b, [hl]
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
add b
- ld [H_QUOTIENT + 3], a
+ ld [hQuotient + 3], a
jr nc, .asm_3dfd0
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
inc a
- ld [H_QUOTIENT + 2], a
+ ld [hQuotient + 2], a
and a
jr z, .asm_3e004
.asm_3dfd0
- ld a, [H_QUOTIENT]
+ ld a, [hQuotient]
ld b, a
- ld a, [H_QUOTIENT + 1]
+ ld a, [hQuotient + 1]
or a
jr nz, .asm_3e004
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
cp 998 / $100
jr c, .asm_3dfe8
cp 998 / $100 + 1
jr nc, .asm_3e004
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
cp 998 % $100
jr nc, .asm_3e004
.asm_3dfe8
inc hl
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld b, [hl]
add b
ld [hld], a
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld b, [hl]
adc b
ld [hl], a
@@ -4573,7 +4573,7 @@
CriticalHitTest:
xor a
ld [wCriticalHitOrOHKO], a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wEnemyMonSpecies]
jr nz, .handleEnemy
@@ -4584,7 +4584,7 @@
ld a, [wMonHBaseSpeed]
ld b, a
srl b ; (effective (base speed/2))
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wPlayerMovePower
ld de, wPlayerBattleStatus2
@@ -4646,7 +4646,7 @@
; the outcome may be affected by the player's actions in the move selection menu prior to switching the Pokemon.
; This might also lead to desync glitches in link battles.
- ld a, [H_WHOSETURN] ; whose turn
+ ld a, [hWhoseTurn] ; whose turn
and a
; player's turn
ld hl, wEnemySelectedMove
@@ -4954,7 +4954,7 @@
; values for player turn
ld de, wEnemySubstituteHP
ld bc, wEnemyBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .applyDamageToSubstitute
; values for enemy turn
@@ -4979,14 +4979,14 @@
ld hl, SubstituteBrokeText
call PrintText
; flip whose turn it is for the next function call
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor $01
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
callab HideSubstituteShowMonAnim ; animate the substitute breaking
; flip the turn back to the way it was
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor $01
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld hl, wPlayerMoveEffect ; value for player's turn
and a
jr z, .nullifyEffect
@@ -5010,7 +5010,7 @@
ld hl, wEnemyBattleStatus2
ld de, wEnemyMonStatMods
ld bc, wEnemyMoveNum
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .next
; values for the enemy turn
@@ -5023,9 +5023,9 @@
ld a, [de]
cp $0d ; maximum stat modifier value
ret z ; return if attack modifier is already maxed
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor $01 ; flip turn for the stat modifier raising function
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
; temporarily change the target pokemon's move to $00 and the effect to the one
; that causes the attack modifier to go up one stage
ld h, b
@@ -5042,9 +5042,9 @@
ldd [hl], a ; null move effect
ld a, RAGE
ld [hl], a ; restore the target pokemon's move number to Rage
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor $01 ; flip turn back to the way it was
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ret
BuildingRageText:
@@ -5060,7 +5060,7 @@
; wPlayerUsedMove is also set to 0 whenever the player is fast asleep or frozen solid.
; wEnemyUsedMove is also set to 0 whenever the enemy is fast asleep or frozen solid.
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
; values for player turn
ld a, [wEnemyUsedMove]
@@ -5113,7 +5113,7 @@
; values for player turn
ld de, wPlayerMoveNum
ld hl, wPlayerSelectedMove
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .pickMoveLoop
; values for enemy turn
@@ -5135,7 +5135,7 @@
; it's used to prevent moves that run another move within the same turn
; (like Mirror Move and Metronome) from losing 2 PP
IncrementMovePP:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
; values for player turn
ld hl, wBattleMonPP
@@ -5154,7 +5154,7 @@
ld h, d
ld l, e
add hl, bc
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMonNumber] ; value for player turn
jr z, .updatePP
@@ -5178,7 +5178,7 @@
ld e, [hl] ; e = type 2 of defender
ld a, [wPlayerMoveType]
ld [wMoveType], a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .next
; values for enemy turn
@@ -5242,25 +5242,25 @@
and $80
ld b, a
ld a, [hl] ; a = damage multiplier
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
add b
ld [wDamageMultipliers], a
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld hl, wDamage
ld a, [hli]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hld]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
call Multiply
ld a, 10
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $04
call Divide
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld [hli], a
ld b, a
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld [hl], a
or b ; is damage 0?
jr nz, .skipTypeImmunity
@@ -5317,7 +5317,7 @@
ld [wTypeEffectiveness], a ; store damage multiplier
ret
-INCLUDE "data/type_effects.asm"
+INCLUDE "data/types/type_matchups.asm"
; some tests that need to pass for a move to hit
MoveHitTest:
@@ -5325,7 +5325,7 @@
ld hl, wEnemyBattleStatus1
ld de, wPlayerMoveEffect
ld bc, wEnemyMonStatus
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .dreamEaterCheck
; enemy's turn
@@ -5345,8 +5345,8 @@
ret z ; Swift never misses (interestingly, Azure Heights lists this is a myth, but it appears to be true)
call CheckTargetSubstitute ; substitute check (note that this overwrites a)
jr z, .checkForDigOrFlyStatus
-; this code is buggy. it's supposed to prevent HP draining moves from working on substitutes.
-; since $7b79 overwrites a with either $00 or $01, it never works.
+; This code is buggy. It's supposed to prevent HP draining moves from working on substitutes.
+; Since CheckTargetSubstitute overwrites a with either $00 or $01, it never works.
cp DRAIN_HP_EFFECT
jp z, .moveMissed
cp DREAM_EATER_EFFECT
@@ -5354,7 +5354,7 @@
.checkForDigOrFlyStatus
bit INVULNERABLE, [hl]
jp nz, .moveMissed
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .enemyTurn
.playerTurn
@@ -5408,7 +5408,7 @@
call CalcHitChance ; scale the move accuracy according to attacker's accuracy and target's evasion
ld a, [wPlayerMoveAccuracy]
ld b, a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .doAccuracyCheck
ld a, [wEnemyMoveAccuracy]
@@ -5427,7 +5427,7 @@
ld [hl], a
inc a
ld [wMoveMissed], a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn2
.enemyTurn2
@@ -5442,7 +5442,7 @@
; values for player turn
CalcHitChance:
ld hl, wPlayerMoveAccuracy
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMonAccuracyMod]
ld b, a
@@ -5462,10 +5462,10 @@
; decreases the hit chance instead of increasing the hit chance)
; zero the high bytes of the multiplicand
xor a
- ld [H_MULTIPLICAND], a
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand], a
+ ld [hMultiplicand + 1], a
ld a, [hl]
- ld [H_MULTIPLICAND + 2], a ; set multiplicand to move accuracy
+ ld [hMultiplicand + 2], a ; set multiplicand to move accuracy
push hl
ld d, $02 ; loop has two iterations
; loop to do the calculations, the first iteration multiplies by the accuracy ratio and
@@ -5480,29 +5480,29 @@
add hl, bc ; hl = address of stat modifier ratio
pop bc
ld a, [hli]
- ld [H_MULTIPLIER], a ; set multiplier to the numerator of the ratio
+ ld [hMultiplier], a ; set multiplier to the numerator of the ratio
call Multiply
ld a, [hl]
- ld [H_DIVISOR], a ; set divisor to the the denominator of the ratio
+ ld [hDivisor], a ; set divisor to the the denominator of the ratio
; (the dividend is the product of the previous multiplication)
ld b, $04 ; number of bytes in the dividend
call Divide
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld b, a
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
or b
jp nz, .nextCalculation
; make sure the result is always at least one
- ld [H_QUOTIENT + 2], a
+ ld [hQuotient + 2], a
ld a, $01
- ld [H_QUOTIENT + 3], a
+ ld [hQuotient + 3], a
.nextCalculation
ld b, c
dec d
jr nz, .loop
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
and a ; is the calculated hit chance over 0xFF?
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
jr z, .storeAccuracy
; if calculated hit chance over 0xFF
ld a, $ff ; set the hit chance to 0xFF
@@ -5522,12 +5522,12 @@
ret c ; return if damage is equal to 0 or 1
.DamageGreaterThanOne
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
dec hl
ld a, [hli]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hl]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
; loop until a random number greater than or equal to 217 is generated
.loop
call BattleRandom
@@ -5534,17 +5534,17 @@
rrca
cp 217
jr c, .loop
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply ; multiply damage by the random number, which is in the range [217, 255]
ld a, 255
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide ; divide the result by 255
; store the modified damage
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld hl, wDamage
ld [hli], a
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld [hl], a
ret
@@ -5900,11 +5900,11 @@
ld [hl], a
xor a
ld [wAnimationType], a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld a, POUND
call PlayMoveAnimation
ld a, $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
call ApplyDamageToEnemyPokemon
jr .monHurtItselfOrFullyParalysed
.checkIfTriedToUseDisabledMove
@@ -6051,7 +6051,7 @@
ret
GetCurrentMove:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jp z, .player
ld de, wEnemyMoveNum
@@ -6257,13 +6257,13 @@
predef BattleTransition
callab LoadHudAndHpBarAndStatusTilePatterns
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, $ff
ld [wUpdateSpritesEnabled], a
call ClearSprites
call ClearScreen
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld [hWY], a
ld [rWY], a
ld [hTilesetType], a
@@ -6335,17 +6335,17 @@
ld de, vBackPic
call InterlaceMergeSpriteBuffers
ld a, $a
- ld [$0], a
+ ld [MBC1SRamEnable], a
xor a
- ld [$4000], a
+ ld [MBC1SRamBank], a
ld hl, vSprites
ld de, sSpriteBuffer1
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld b, a
ld c, 7 * 7
call CopyVideoData
xor a
- ld [$0], a
+ ld [MBC1SRamEnable], a
ld a, $31
ld [hStartTileID], a
coord hl, 1, 5
@@ -6367,12 +6367,12 @@
xor a
ApplyBurnAndParalysisPenalties:
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
call QuarterSpeedDueToParalysis
jp HalveAttackDueToBurn
QuarterSpeedDueToParalysis:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
.enemyTurn ; quarter the player's speed
@@ -6415,7 +6415,7 @@
ret
HalveAttackDueToBurn:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
.enemyTurn ; halve the player's attack
@@ -6505,35 +6505,35 @@
ld b, 0
add hl, bc
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld a, [de]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
inc de
ld a, [de]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, [hli]
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld a, [hl]
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
pop hl
- ld a, [H_DIVIDEND + 3]
+ ld a, [hDividend + 3]
sub 999 % $100
- ld a, [H_DIVIDEND + 2]
+ ld a, [hDividend + 2]
sbc 999 / $100
jp c, .storeNewStatValue
; cap the stat at 999
ld a, 999 / $100
- ld [H_DIVIDEND + 2], a
+ ld [hDividend + 2], a
ld a, 999 % $100
- ld [H_DIVIDEND + 3], a
+ ld [hDividend + 3], a
.storeNewStatValue
- ld a, [H_DIVIDEND + 2]
+ ld a, [hDividend + 2]
ld [hli], a
ld b, a
- ld a, [H_DIVIDEND + 3]
+ ld a, [hDividend + 3]
ld [hl], a
or b
jr nz, .done
@@ -6683,7 +6683,7 @@
HandleExplodingAnimation:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wEnemyMonType1
ld de, wEnemyBattleStatus1
@@ -6826,18 +6826,18 @@
call RunPaletteCommand
call SlidePlayerAndEnemySilhouettesOnScreen
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, .emptyString
call PrintText
call SaveScreenTilesToBuffer1
call ClearScreen
ld a, $98
- ld [H_AUTOBGTRANSFERDEST + 1], a
+ ld [hAutoBGTransferDest + 1], a
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
ld a, $9c
- ld [H_AUTOBGTRANSFERDEST + 1], a
+ ld [hAutoBGTransferDest + 1], a
call LoadScreenTilesFromBuffer1
coord hl, 9, 7
lb bc, 5, 10
@@ -6870,9 +6870,9 @@
ld d, a ; de contains pointer to trainer pic
ld a, [wLinkState]
and a
- ld a, Bank(TrainerPics) ; this is where all the trainer pics are (not counting Red's)
+ ld a, BANK(TrainerPics) ; this is where all the trainer pics are (not counting Red's)
jr z, .loadSprite
- ld a, Bank(RedPicFront)
+ ld a, BANK(RedPicFront)
.loadSprite
call UncompressSpriteFromDE
ld de, vFrontPic
@@ -6998,6 +6998,6 @@
ld hl, vSprites
ld de, vBackPic
ld c, (2*SPRITEBUFFERSIZE)/16 ; count of 16-byte chunks to be copied
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld b, a
jp CopyVideoData
--- a/engine/battle/effects.asm
+++ b/engine/battle/effects.asm
@@ -4,7 +4,7 @@
ret
_JumpMoveEffect:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveEffect]
jr z, .next1
@@ -21,12 +21,12 @@
ld l, a
jp hl ; jump to special effect handler
-INCLUDE "data/effects_pointers.asm"
+INCLUDE "data/moves/effects_pointers.asm"
SleepEffect:
ld de, wEnemyMonStatus
ld bc, wEnemyBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jp z, .sleepEffect
ld de, wBattleMonStatus
@@ -78,7 +78,7 @@
PoisonEffect:
ld hl, wEnemyMonStatus
ld de, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .poisonEffect
ld hl, wBattleMonStatus
@@ -121,7 +121,7 @@
set 3, [hl] ; mon is now poisoned
push de
dec de
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld b, ANIM_C7
ld hl, wPlayerBattleStatus3
@@ -175,7 +175,7 @@
ExplodeEffect:
ld hl, wBattleMonHP
ld de, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .faintUser
ld hl, wEnemyMonHP
@@ -196,7 +196,7 @@
ld [wAnimationType], a
call CheckTargetSubstitute ; test bit 4 of d063/d068 flags [target has substitute flag]
ret nz ; return if they have a substitute, can't effect them
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jp nz, opponentAttacker
ld a, [wEnemyMonStatus]
@@ -308,7 +308,7 @@
; any fire-type move that has a chance inflict burn (all but Fire Spin) will defrost a frozen target
and 1 << FRZ ; are they frozen?
ret z ; return if so
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .opponent
;player [attacker]
@@ -346,7 +346,7 @@
StatModifierUpEffect:
ld hl, wPlayerMonStatMods
ld de, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .statModifierUpEffect
ld hl, wEnemyMonStatMods
@@ -382,7 +382,7 @@
push hl
ld hl, wBattleMonAttack + 1
ld de, wPlayerMonUnmodifiedAttack
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .pointToStats
ld hl, wEnemyMonAttack + 1
@@ -417,35 +417,35 @@
add hl, bc
pop bc
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld a, [de]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
inc de
ld a, [de]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, [hli]
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld a, [hl]
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
pop hl
; cap at 999
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
sub 999 % $100
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
sbc 999 / $100
jp c, UpdateStat
ld a, 999 / $100
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, 999 % $100
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
UpdateStat:
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
ld [hli], a
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
ld [hl], a
pop hl
UpdateStatDone:
@@ -455,7 +455,7 @@
ld hl, wPlayerBattleStatus2
ld de, wPlayerMoveNum
ld bc, wPlayerMonMinimized
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .asm_3f4e6
ld hl, wEnemyBattleStatus2
@@ -488,7 +488,7 @@
pop af
call nz, Bankswitch
.applyBadgeBoostsAndStatusPenalties
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
call z, ApplyBadgeStatBoosts ; whenever the player uses a stat-up move, badge boosts get reapplied again to every stat,
; even to those not affected by the stat-up move (will be boosted further)
@@ -511,7 +511,7 @@
TX_FAR _MonsStatsRoseText
TX_ASM
ld hl, GreatlyRoseText
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveEffect]
jr z, .playerTurn
@@ -534,7 +534,7 @@
ld hl, wEnemyMonStatMods
ld de, wPlayerMoveEffect
ld bc, wEnemyBattleStatus1
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .statModifierDownEffect
ld hl, wPlayerMonStatMods
@@ -601,7 +601,7 @@
push de
ld hl, wEnemyMonAttack + 1
ld de, wEnemyMonUnmodifiedAttack
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .pointToStat
ld hl, wBattleMonAttack + 1
@@ -637,33 +637,33 @@
add hl, bc
pop bc
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld a, [de]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
inc de
ld a, [de]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, [hli]
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld a, [hl]
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
pop hl
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
ld b, a
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
or b
jp nz, UpdateLoweredStat
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, $1
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
UpdateLoweredStat:
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
ld [hli], a
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
ld [hl], a
pop de
pop hl
@@ -678,7 +678,7 @@
jr nc, .ApplyBadgeBoostsAndStatusPenalties
call PlayCurrentMoveAnimation2
.ApplyBadgeBoostsAndStatusPenalties
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
call nz, ApplyBadgeStatBoosts ; whenever the player uses a stat-down move, badge boosts get reapplied again to every stat,
; even to those not affected by the stat-up move (will be boosted further)
@@ -713,7 +713,7 @@
TX_FAR _MonsStatsFellText
TX_ASM
ld hl, FellText
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveEffect]
jr z, .playerTurn
@@ -751,7 +751,7 @@
ld bc, $a
jp CopyData
-INCLUDE "text/stat_names.asm"
+INCLUDE "data/battle/stat_names.asm"
INCLUDE "data/battle/stat_modifiers.asm"
@@ -759,7 +759,7 @@
ld hl, wPlayerBattleStatus1
ld de, wPlayerBideAccumulatedDamage
ld bc, wPlayerNumAttacksLeft
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .bideEffect
ld hl, wEnemyBattleStatus1
@@ -778,7 +778,7 @@
inc a
inc a
ld [bc], a ; set Bide counter to 2 or 3 at random
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
add XSTATITEM_ANIM
jp PlayBattleAnimation2
@@ -785,7 +785,7 @@
ThrashPetalDanceEffect:
ld hl, wPlayerBattleStatus1
ld de, wPlayerNumAttacksLeft
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .thrashPetalDanceEffect
ld hl, wEnemyBattleStatus1
@@ -797,12 +797,12 @@
inc a
inc a
ld [de], a ; set thrash/petal dance counter to 2 or 3 at random
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
add ANIM_B0
jp PlayBattleAnimation2
SwitchAndTeleportEffect:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .handleEnemy
ld a, [wIsInBattle]
@@ -920,7 +920,7 @@
ld hl, wPlayerBattleStatus1
ld de, wPlayerNumAttacksLeft
ld bc, wPlayerNumHits
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .twoToFiveAttacksEffect
ld hl, wEnemyBattleStatus1
@@ -931,7 +931,7 @@
ret nz
set ATTACKING_MULTIPLE_TIMES, [hl] ; mon is now attacking multiple times
ld hl, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .setNumberOfHits
ld hl, wEnemyMoveEffect
@@ -967,7 +967,7 @@
ret nz
ld hl, wEnemyBattleStatus1
ld de, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .flinchSideEffect
ld hl, wPlayerBattleStatus1
@@ -992,7 +992,7 @@
ChargeEffect:
ld hl, wPlayerBattleStatus1
ld de, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld b, XSTATITEM_ANIM
jr z, .chargeEffect
@@ -1074,7 +1074,7 @@
TrappingEffect:
ld hl, wPlayerBattleStatus1
ld de, wPlayerNumAttacksLeft
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .trappingEffect
ld hl, wEnemyBattleStatus1
@@ -1120,7 +1120,7 @@
jr nz, ConfusionEffectFailed
ConfusionSideEffectSuccess:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wEnemyBattleStatus1
ld bc, wEnemyConfusedCounter
@@ -1164,7 +1164,7 @@
HyperBeamEffect:
ld hl, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .hyperBeamEffect
ld hl, wEnemyBattleStatus2
@@ -1175,7 +1175,7 @@
ClearHyperBeam:
push hl
ld hl, wEnemyBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .playerTurn
ld hl, wPlayerBattleStatus2
@@ -1186,7 +1186,7 @@
RageEffect:
ld hl, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .player
ld hl, wEnemyBattleStatus2
@@ -1201,7 +1201,7 @@
ld a, [wMoveMissed]
and a
jr nz, .mimicMissed
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wBattleMonMoves
ld a, [wPlayerBattleStatus1]
@@ -1226,7 +1226,7 @@
and a
jr z, .getRandomMove
ld d, a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wBattleMonMoves
ld a, [wPlayerMoveListIndex]
@@ -1284,7 +1284,7 @@
jr nz, .moveMissed
ld de, wEnemyDisabledMove
ld hl, wEnemyMonMoves
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .disableEffect
ld de, wPlayerDisabledMove
@@ -1307,7 +1307,7 @@
jr z, .pickMoveToDisable ; loop until a non-00 move slot is found
ld [wd11e], a ; store move number
push hl
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld hl, wBattleMonPP
jr nz, .enemyTurn
@@ -1345,7 +1345,7 @@
ld [de], a
call PlayCurrentMoveAnimation2
ld hl, wPlayerDisabledMoveNumber
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .printDisableText
inc hl ; wEnemyDisabledMoveNumber
@@ -1430,7 +1430,7 @@
CheckTargetSubstitute:
push hl
ld hl, wEnemyBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .next1
ld hl, wPlayerBattleStatus2
@@ -1442,7 +1442,7 @@
PlayCurrentMoveAnimation2:
; animation at MOVENUM will be played unless MOVENUM is 0
; plays wAnimationType 3 or 6
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveNum]
jr z, .notEnemyTurn
@@ -1454,7 +1454,7 @@
PlayBattleAnimation2:
; play animation ID at a and animation type 6 or 3
ld [wAnimationID], a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, $6
jr z, .storeAnimationType
@@ -1468,7 +1468,7 @@
; resets wAnimationType
xor a
ld [wAnimationType], a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveNum]
jr z, .notEnemyTurn
--- a/engine/battle/experience.asm
+++ b/engine/battle/experience.asm
@@ -55,15 +55,15 @@
jr .gainStatExpLoop
.statExpDone
xor a
- ld [H_MULTIPLICAND], a
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand], a
+ ld [hMultiplicand + 1], a
ld a, [wEnemyMonBaseExp]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, [wEnemyMonLevel]
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld a, 7
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 4
call Divide
ld hl, wPartyMon1OTID - (wPartyMon1DVs - 1)
@@ -91,12 +91,12 @@
inc hl
; add the gained exp to the party mon's exp
ld b, [hl]
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld [wExpAmountGained + 1], a
add b
ld [hld], a
ld b, [hl]
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld [wExpAmountGained], a
adc b
ld [hl], a
@@ -311,14 +311,14 @@
ld c, wEnemyMonBaseExp + 1 - wEnemyMonBaseStats
.divideLoop
xor a
- ld [H_DIVIDEND], a
+ ld [hDividend], a
ld a, [hl]
- ld [H_DIVIDEND + 1], a
+ ld [hDividend + 1], a
ld a, [wd11e]
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $2
call Divide ; divide value by number of mons gaining exp
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld [hli], a
dec c
jr nz, .divideLoop
@@ -326,17 +326,17 @@
; multiplies exp by 1.5
BoostExp:
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld b, a
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld c, a
srl b
rr c
add c
- ld [H_QUOTIENT + 3], a
- ld a, [H_QUOTIENT + 2]
+ ld [hQuotient + 3], a
+ ld a, [hQuotient + 2]
adc b
- ld [H_QUOTIENT + 2], a
+ ld [hQuotient + 2], a
ret
GainedText:
--- a/engine/battle/ghost_marowak_anim.asm
+++ b/engine/battle/ghost_marowak_anim.asm
@@ -9,12 +9,12 @@
call ClearScreenArea
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a ; disable BG transfer so we don't see the Marowak too soon
+ ld [hAutoBGTransferEnabled], a ; disable BG transfer so we don't see the Marowak too soon
; replace ghost pic with Marowak in BG
ld a, MAROWAK
ld [wChangeMonPicEnemyTurnSpecies], a
ld a, $1
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
callab ChangeMonPic
; alternate between black and light grey 8 times.
; this makes the ghost's body appear to flash
@@ -44,7 +44,7 @@
and a
jr nz, .fadeInMarowakLoop
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a ; enable BG transfer so the BG Marowak pic will be visible after the sprite one is cleared
+ ld [hAutoBGTransferEnabled], a ; enable BG transfer so the BG Marowak pic will be visible after the sprite one is cleared
call Delay3
jp ClearSprites
--- a/engine/battle/move_effects/conversion.asm
+++ b/engine/battle/move_effects/conversion.asm
@@ -1,7 +1,7 @@
ConversionEffect_:
ld hl, wEnemyMonType1
ld de, wBattleMonType1
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wEnemyBattleStatus1]
jr z, .conversionEffect
--- a/engine/battle/move_effects/drain_hp.asm
+++ b/engine/battle/move_effects/drain_hp.asm
@@ -14,7 +14,7 @@
.getAttackerHP
ld hl, wBattleMonHP
ld de, wBattleMonMaxHP
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jp z, .addDamageToAttackerHP
ld hl, wEnemyMonHP
@@ -69,7 +69,7 @@
ld [wHPBarNewHP+1], a
inc de
.next
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
coord hl, 10, 9
ld a, $1
@@ -83,7 +83,7 @@
predef DrawEnemyHUDAndHPBar
callab ReadPlayerMonCurHPAndStatus
ld hl, SuckedHealthText
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveEffect]
jr z, .next3
--- a/engine/battle/move_effects/focus_energy.asm
+++ b/engine/battle/move_effects/focus_energy.asm
@@ -1,6 +1,6 @@
FocusEnergyEffect_:
ld hl, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .notEnemy
ld hl, wEnemyBattleStatus2
--- a/engine/battle/move_effects/haze.asm
+++ b/engine/battle/move_effects/haze.asm
@@ -15,7 +15,7 @@
; cure non-volatile status, but only for the target
ld hl, wEnemyMonStatus
ld de, wEnemySelectedMove
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .cureStatuses
ld hl, wBattleMonStatus
--- a/engine/battle/move_effects/heal.asm
+++ b/engine/battle/move_effects/heal.asm
@@ -1,5 +1,5 @@
HealEffect_:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld de, wBattleMonHP
ld hl, wBattleMonMaxHP
@@ -27,7 +27,7 @@
ld c, 50
call DelayFrames
ld hl, wBattleMonStatus
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .restEffect
ld hl, wEnemyMonStatus
@@ -87,7 +87,7 @@
.playAnim
ld hl, PlayCurrentMoveAnimation
call BankswitchEtoF
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
coord hl, 10, 9
ld a, $1
--- a/engine/battle/move_effects/leech_seed.asm
+++ b/engine/battle/move_effects/leech_seed.asm
@@ -5,7 +5,7 @@
jr nz, .moveMissed
ld hl, wEnemyBattleStatus2
ld de, wEnemyMonType1
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .leechSeedEffect
ld hl, wPlayerBattleStatus2
--- a/engine/battle/move_effects/mist.asm
+++ b/engine/battle/move_effects/mist.asm
@@ -1,6 +1,6 @@
MistEffect_:
ld hl, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .mistEffect
ld hl, wEnemyBattleStatus2
--- a/engine/battle/move_effects/one_hit_ko.asm
+++ b/engine/battle/move_effects/one_hit_ko.asm
@@ -7,7 +7,7 @@
ld [wCriticalHitOrOHKO], a
ld hl, wBattleMonSpeed + 1
ld de, wEnemyMonSpeed + 1
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .compareSpeed
ld hl, wEnemyMonSpeed + 1
--- a/engine/battle/move_effects/paralyze.asm
+++ b/engine/battle/move_effects/paralyze.asm
@@ -1,7 +1,7 @@
ParalyzeEffect_:
ld hl, wEnemyMonStatus
ld de, wPlayerMoveType
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jp z, .next
ld hl, wBattleMonStatus
--- a/engine/battle/move_effects/pay_day.asm
+++ b/engine/battle/move_effects/pay_day.asm
@@ -2,7 +2,7 @@
xor a
ld hl, wcd6d
ld [hli], a
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wBattleMonLevel]
jr z, .payDayEffect
@@ -10,28 +10,28 @@
.payDayEffect
; level * 2
add a
- ld [H_DIVIDEND + 3], a
+ ld [hDividend + 3], a
xor a
- ld [H_DIVIDEND], a
- ld [H_DIVIDEND + 1], a
- ld [H_DIVIDEND + 2], a
+ ld [hDividend], a
+ ld [hDividend + 1], a
+ ld [hDividend + 2], a
; convert to BCD
ld a, 100
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld [hli], a
- ld a, [H_REMAINDER]
- ld [H_DIVIDEND + 3], a
+ ld a, [hRemainder]
+ ld [hDividend + 3], a
ld a, 10
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
swap a
ld b, a
- ld a, [H_REMAINDER]
+ ld a, [hRemainder]
add b
ld [hl], a
ld de, wTotalPayDayMoney + 2
--- a/engine/battle/move_effects/recoil.asm
+++ b/engine/battle/move_effects/recoil.asm
@@ -1,5 +1,5 @@
RecoilEffect_:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerMoveNum]
ld hl, wBattleMonMaxHP
@@ -54,7 +54,7 @@
ld [hl], a
.getHPBarCoords
coord hl, 10, 9
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, $1
jr z, .updateHPBar
--- a/engine/battle/move_effects/reflect_light_screen.asm
+++ b/engine/battle/move_effects/reflect_light_screen.asm
@@ -1,7 +1,7 @@
ReflectLightScreenEffect_:
ld hl, wPlayerBattleStatus3
ld de, wPlayerMoveEffect
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .reflectLightScreenEffect
ld hl, wEnemyBattleStatus3
--- a/engine/battle/move_effects/substitute.asm
+++ b/engine/battle/move_effects/substitute.asm
@@ -4,7 +4,7 @@
ld hl, wBattleMonMaxHP
ld de, wPlayerSubstituteHP
ld bc, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .notEnemy
ld hl, wEnemyMonMaxHP
--- a/engine/battle/move_effects/transform.asm
+++ b/engine/battle/move_effects/transform.asm
@@ -3,7 +3,7 @@
ld de, wEnemyMonSpecies
ld bc, wEnemyBattleStatus3
ld a, [wEnemyBattleStatus1]
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr nz, .hitTest
ld hl, wEnemyMonSpecies
@@ -18,7 +18,7 @@
push de
push bc
ld hl, wPlayerBattleStatus2
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .transformEffect
ld hl, wEnemyBattleStatus2
@@ -64,7 +64,7 @@
inc bc
inc bc
call CopyData
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .next
; save enemy mon DVs at wTransformedEnemyMonOriginalDVs
@@ -128,7 +128,7 @@
jp PrintText
.copyBasedOnTurn
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
jr z, .gotStatsOrModsToCopy
push hl
--- a/engine/battle/print_type.asm
+++ b/engine/battle/print_type.asm
@@ -49,4 +49,4 @@
pop hl
jp PlaceString
-INCLUDE "text/type_names.asm"
+INCLUDE "data/types/names.asm"
--- a/engine/battle/save_trainer_name.asm
+++ b/engine/battle/save_trainer_name.asm
@@ -18,4 +18,4 @@
jr nz, .CopyCharacter
ret
-INCLUDE "text/trainer_name_pointers.asm"
+INCLUDE "data/trainers/name_pointers.asm"
--- a/engine/battle/scale_sprites.asm
+++ b/engine/battle/scale_sprites.asm
@@ -17,7 +17,7 @@
.columnInnerLoop
push bc
ld a, [de]
- ld bc, -(7*8)+1 ; $ffc9, scale lower nybble and seek to previous output column
+ ld bc, -(7*8)+1 ; -$37, scale lower nybble and seek to previous output column
call ScalePixelsByTwo
ld a, [de]
dec de
@@ -32,7 +32,7 @@
dec de
dec de
ld a, b
- ld bc, -7*8 ; $ffc8, skip one output column (which has already been written along with the current one)
+ ld bc, -7*8 ; -$38, skip one output column (which has already been written along with the current one)
add hl, bc
ld b, a
dec b
@@ -41,7 +41,7 @@
ScaleLastSpriteColumnByTwo:
ld a, 4*8 - 4 ; $1c, 4 tiles minus 4 unused rows
- ld [H_SPRITEINTERLACECOUNTER], a
+ ld [hSpriteInterlaceCounter], a
ld bc, -1
.columnInnerLoop
ld a, [de]
@@ -48,9 +48,9 @@
dec de
swap a ; only high nybble contains information
call ScalePixelsByTwo
- ld a, [H_SPRITEINTERLACECOUNTER]
+ ld a, [hSpriteInterlaceCounter]
dec a
- ld [H_SPRITEINTERLACECOUNTER], a
+ ld [hSpriteInterlaceCounter], a
jr nz, .columnInnerLoop
dec de ; skip last 4 rows of new column
dec de
--- a/engine/battle/trainer_ai.asm
+++ b/engine/battle/trainer_ai.asm
@@ -134,7 +134,7 @@
push de
push bc
ld hl, StatusAilmentMoveEffects
- ld de, $0001
+ ld de, 1
call IsInArray
pop bc
pop de
@@ -273,19 +273,19 @@
pop hl
ret
-INCLUDE "data/trainer_move_choices.asm"
+INCLUDE "data/trainers/move_choices.asm"
-INCLUDE "data/trainer_pic_money_pointers.asm"
+INCLUDE "data/trainers/pic_pointers_money.asm"
-INCLUDE "text/trainer_names.asm"
+INCLUDE "data/trainers/names.asm"
INCLUDE "engine/battle/misc.asm"
INCLUDE "engine/battle/read_trainer_party.asm"
-INCLUDE "data/trainer_moves.asm"
+INCLUDE "data/trainers/special_moves.asm"
-INCLUDE "data/trainer_parties.asm"
+INCLUDE "data/trainers/parties.asm"
TrainerAI:
and a
@@ -319,7 +319,7 @@
call Random
jp hl
-INCLUDE "data/trainer_ai_pointers.asm"
+INCLUDE "data/trainers/ai_pointers.asm"
JugglerAI:
cp 25 percent + 1
@@ -655,17 +655,17 @@
AICheckIfHPBelowFraction:
; return carry if enemy trainer's current HP is below 1 / a of the maximum
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld hl, wEnemyMonMaxHP
ld a, [hli]
- ld [H_DIVIDEND], a
+ ld [hDividend], a
ld a, [hl]
- ld [H_DIVIDEND + 1], a
+ ld [hDividend + 1], a
ld b, 2
call Divide
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld c, a
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld b, a
ld hl, wEnemyMonHP + 1
ld a, [hld]
--- a/engine/battle/unused_stats_functions.asm
+++ b/engine/battle/unused_stats_functions.asm
@@ -1,6 +1,6 @@
; does nothing since no stats are ever selected (barring glitches)
DoubleSelectedStats:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerStatsToDouble]
ld hl, wBattleMonAttack + 1
@@ -30,7 +30,7 @@
; does nothing since no stats are ever selected (barring glitches)
HalveSelectedStats:
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
and a
ld a, [wPlayerStatsToHalve]
ld hl, wBattleMonAttack
--- a/engine/battle/wild_encounters.asm
+++ b/engine/battle/wild_encounters.asm
@@ -101,4 +101,4 @@
xor a
ret
-INCLUDE "data/wild_probabilities.asm"
+INCLUDE "data/wild/probabilities.asm"
--- a/engine/debug/test_battle.asm
+++ b/engine/debug/test_battle.asm
@@ -41,5 +41,5 @@
; do it all again.
ld a, 1
ld [wUpdateSpritesEnabled], a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
jr .loop
--- a/engine/events/cinnabar_lab.asm
+++ b/engine/events/cinnabar_lab.asm
@@ -35,7 +35,7 @@
ld e, a
add hl, de
ld a, [hl]
- ld [$ffdb], a
+ ld [hItemToRemoveID], a
cp DOME_FOSSIL
jr z, .choseDomeFossil
cp HELIX_FOSSIL
--- a/engine/events/diploma.asm
+++ b/engine/events/diploma.asm
@@ -9,7 +9,7 @@
call DisableLCD
ld hl, CircleTile
ld de, vChars2 + $700
- ld bc, $0010
+ ld bc, $10
ld a, BANK(CircleTile)
call FarCopyData2
coord hl, 0, 0
@@ -73,7 +73,7 @@
; Unused function that does a calculation involving the length of the player's
; name.
ld hl, wPlayerName
- ld bc, $ff00
+ lb bc, $ff, $00
.loop
ld a, [hli]
cp "@"
--- a/engine/events/hidden_items.asm
+++ b/engine/events/hidden_items.asm
@@ -18,7 +18,7 @@
call GetItemName
tx_pre_jump FoundHiddenItemText
-INCLUDE "data/hidden_item_coords.asm"
+INCLUDE "data/events/hidden_item_coords.asm"
FoundHiddenItemText::
TX_FAR _FoundHiddenItemText
@@ -118,7 +118,7 @@
.done
jp PrintPredefTextID
-INCLUDE "data/hidden_coins.asm"
+INCLUDE "data/events/hidden_coins.asm"
FoundHiddenCoinsText::
TX_FAR _FoundHiddenCoinsText
--- a/engine/events/hidden_object_functions14.asm
+++ /dev/null
@@ -1,100 +1,0 @@
-PrintNotebookText:
- call EnableAutoTextBoxDrawing
- ld a, $1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- ld a, [wHiddenObjectFunctionArgument]
- jp PrintPredefTextID
-
-TMNotebook::
- TX_FAR TMNotebookText
- TX_WAIT
- db "@"
-
-ViridianSchoolNotebook::
- TX_ASM
- ld hl, ViridianSchoolNotebookText1
- call PrintText
- call TurnPageSchoolNotebook
- jr nz, .doneReading
- ld hl, ViridianSchoolNotebookText2
- call PrintText
- call TurnPageSchoolNotebook
- jr nz, .doneReading
- ld hl, ViridianSchoolNotebookText3
- call PrintText
- call TurnPageSchoolNotebook
- jr nz, .doneReading
- ld hl, ViridianSchoolNotebookText4
- call PrintText
- ld hl, ViridianSchoolNotebookText5
- call PrintText
-.doneReading
- jp TextScriptEnd
-
-TurnPageSchoolNotebook:
- ld hl, TurnPageText
- call PrintText
- call YesNoChoice
- ld a, [wCurrentMenuItem]
- and a
- ret
-
-TurnPageText:
- TX_FAR _TurnPageText
- db "@"
-
-ViridianSchoolNotebookText5:
- TX_FAR _ViridianSchoolNotebookText5
- TX_WAIT
- db "@"
-
-ViridianSchoolNotebookText1:
- TX_FAR _ViridianSchoolNotebookText1
- db "@"
-
-ViridianSchoolNotebookText2:
- TX_FAR _ViridianSchoolNotebookText2
- db "@"
-
-ViridianSchoolNotebookText3:
- TX_FAR _ViridianSchoolNotebookText3
- db "@"
-
-ViridianSchoolNotebookText4:
- TX_FAR _ViridianSchoolNotebookText4
- db "@"
-
-PrintFightingDojoText2:
- call EnableAutoTextBoxDrawing
- tx_pre_jump EnemiesOnEverySideText
-
-EnemiesOnEverySideText::
- TX_FAR _EnemiesOnEverySideText
- db "@"
-
-PrintFightingDojoText3:
- call EnableAutoTextBoxDrawing
- tx_pre_jump WhatGoesAroundComesAroundText
-
-WhatGoesAroundComesAroundText::
- TX_FAR _WhatGoesAroundComesAroundText
- db "@"
-
-PrintFightingDojoText:
- call EnableAutoTextBoxDrawing
- tx_pre_jump FightingDojoText
-
-FightingDojoText::
- TX_FAR _FightingDojoText
- db "@"
-
-PrintIndigoPlateauHQText:
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP
- ret nz
- call EnableAutoTextBoxDrawing
- tx_pre_jump IndigoPlateauHQText
-
-IndigoPlateauHQText::
- TX_FAR _IndigoPlateauHQText
- db "@"
--- a/engine/events/hidden_object_functions17.asm
+++ /dev/null
@@ -1,475 +1,0 @@
-PrintRedSNESText:
- call EnableAutoTextBoxDrawing
- tx_pre_jump RedBedroomSNESText
-
-RedBedroomSNESText::
- TX_FAR _RedBedroomSNESText
- db "@"
-
-OpenRedsPC:
- call EnableAutoTextBoxDrawing
- tx_pre_jump RedBedroomPCText
-
-RedBedroomPCText::
- TX_PLAYERS_PC
-
-Route15GateLeftBinoculars:
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP
- ret nz
- call EnableAutoTextBoxDrawing
- tx_pre Route15UpstairsBinocularsText
- ld a, ARTICUNO
- ld [wcf91], a
- call PlayCry
- jp DisplayMonFrontSpriteInBox
-
-Route15UpstairsBinocularsText::
- TX_FAR _Route15UpstairsBinocularsText
- db "@"
-
-AerodactylFossil:
- ld a, FOSSIL_AERODACTYL
- ld [wcf91], a
- call DisplayMonFrontSpriteInBox
- call EnableAutoTextBoxDrawing
- tx_pre AerodactylFossilText
- ret
-
-AerodactylFossilText::
- TX_FAR _AerodactylFossilText
- db "@"
-
-KabutopsFossil:
- ld a, FOSSIL_KABUTOPS
- ld [wcf91], a
- call DisplayMonFrontSpriteInBox
- call EnableAutoTextBoxDrawing
- tx_pre KabutopsFossilText
- ret
-
-KabutopsFossilText::
- TX_FAR _KabutopsFossilText
- db "@"
-
-DisplayMonFrontSpriteInBox:
-; Displays a pokemon's front sprite in a pop-up window.
-; [wcf91] = pokemon internal id number
- ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
- call Delay3
- xor a
- ld [hWY], a
- call SaveScreenTilesToBuffer1
- ld a, MON_SPRITE_POPUP
- ld [wTextBoxID], a
- call DisplayTextBoxID
- call UpdateSprites
- ld a, [wcf91]
- ld [wd0b5], a
- call GetMonHeader
- ld de, vChars1 + $310
- call LoadMonFrontSprite
- ld a, $80
- ld [hStartTileID], a
- coord hl, 10, 11
- predef AnimateSendingOutMon
- call WaitForTextScrollButtonPress
- call LoadScreenTilesFromBuffer1
- call Delay3
- ld a, $90
- ld [hWY], a
- ret
-
-PrintBlackboardLinkCableText:
- call EnableAutoTextBoxDrawing
- ld a, $1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- ld a, [wHiddenObjectFunctionArgument]
- call PrintPredefTextID
- ret
-
-LinkCableHelp::
- TX_ASM
- call SaveScreenTilesToBuffer1
- ld hl, LinkCableHelpText1
- call PrintText
- xor a
- ld [wMenuItemOffset], a ; not used
- ld [wCurrentMenuItem], a
- ld [wLastMenuItem], a
- ld a, A_BUTTON | B_BUTTON
- ld [wMenuWatchedKeys], a
- ld a, 3
- ld [wMaxMenuItem], a
- ld a, 2
- ld [wTopMenuItemY], a
- ld a, 1
- ld [wTopMenuItemX], a
-.linkHelpLoop
- ld hl, wd730
- set 6, [hl]
- coord hl, 0, 0
- ld b, 8
- ld c, 13
- call TextBoxBorder
- coord hl, 2, 2
- ld de, HowToLinkText
- call PlaceString
- ld hl, LinkCableHelpText2
- call PrintText
- call HandleMenuInput
- bit 1, a ; pressed b
- jr nz, .exit
- ld a, [wCurrentMenuItem]
- cp 3 ; pressed a on "STOP READING"
- jr z, .exit
- ld hl, wd730
- res 6, [hl]
- ld hl, LinkCableInfoTexts
- add a
- ld d, 0
- ld e, a
- add hl, de
- ld a, [hli]
- ld h, [hl]
- ld l, a
- call PrintText
- jp .linkHelpLoop
-.exit
- ld hl, wd730
- res 6, [hl]
- call LoadScreenTilesFromBuffer1
- jp TextScriptEnd
-
-LinkCableHelpText1:
- TX_FAR _LinkCableHelpText1
- db "@"
-
-LinkCableHelpText2:
- TX_FAR _LinkCableHelpText2
- db "@"
-
-HowToLinkText:
- db "HOW TO LINK"
- next "COLOSSEUM"
- next "TRADE CENTER"
- next "STOP READING@"
-
-LinkCableInfoTexts:
- dw LinkCableInfoText1
- dw LinkCableInfoText2
- dw LinkCableInfoText3
-
-LinkCableInfoText1:
- TX_FAR _LinkCableInfoText1
- db "@"
-
-LinkCableInfoText2:
- TX_FAR _LinkCableInfoText2
- db "@"
-
-LinkCableInfoText3:
- TX_FAR _LinkCableInfoText3
- db "@"
-
-ViridianSchoolBlackboard::
- TX_ASM
- call SaveScreenTilesToBuffer1
- ld hl, ViridianSchoolBlackboardText1
- call PrintText
- xor a
- ld [wMenuItemOffset], a
- ld [wCurrentMenuItem], a
- ld [wLastMenuItem], a
- ld a, D_LEFT | D_RIGHT | A_BUTTON | B_BUTTON
- ld [wMenuWatchedKeys], a
- ld a, 2
- ld [wMaxMenuItem], a
- ld a, 2
- ld [wTopMenuItemY], a
- ld a, 1
- ld [wTopMenuItemX], a
-.blackboardLoop
- ld hl, wd730
- set 6, [hl]
- coord hl, 0, 0
- lb bc, 6, 10
- call TextBoxBorder
- coord hl, 1, 2
- ld de, StatusAilmentText1
- call PlaceString
- coord hl, 6, 2
- ld de, StatusAilmentText2
- call PlaceString
- ld hl, ViridianSchoolBlackboardText2
- call PrintText
- call HandleMenuInput ; pressing up and down is handled in here
- bit 1, a ; pressed b
- jr nz, .exitBlackboard
- bit 4, a ; pressed right
- jr z, .didNotPressRight
- ; move cursor to right column
- ld a, 2
- ld [wMaxMenuItem], a
- ld a, 2
- ld [wTopMenuItemY], a
- ld a, 6
- ld [wTopMenuItemX], a
- ld a, 3 ; in the the right column, use an offset to prevent overlap
- ld [wMenuItemOffset], a
- jr .blackboardLoop
-.didNotPressRight
- bit 5, a ; pressed left
- jr z, .didNotPressLeftOrRight
- ; move cursor to left column
- ld a, 2
- ld [wMaxMenuItem], a
- ld a, 2
- ld [wTopMenuItemY], a
- ld a, 1
- ld [wTopMenuItemX], a
- xor a
- ld [wMenuItemOffset], a
- jr .blackboardLoop
-.didNotPressLeftOrRight
- ld a, [wCurrentMenuItem]
- ld b, a
- ld a, [wMenuItemOffset]
- add b
- cp 5 ; cursor is pointing to "QUIT"
- jr z, .exitBlackboard
- ; we must have pressed a on a status condition
- ; so print the text
- ld hl, wd730
- res 6, [hl]
- ld hl, ViridianBlackboardStatusPointers
- add a
- ld d, 0
- ld e, a
- add hl, de
- ld a, [hli]
- ld h, [hl]
- ld l, a
- call PrintText
- jp .blackboardLoop
-.exitBlackboard
- ld hl, wd730
- res 6, [hl]
- call LoadScreenTilesFromBuffer1
- jp TextScriptEnd
-
-ViridianSchoolBlackboardText1:
- TX_FAR _ViridianSchoolBlackboardText1
- db "@"
-
-ViridianSchoolBlackboardText2:
- TX_FAR _ViridianSchoolBlackboardText2
- db "@"
-
-StatusAilmentText1:
- db " SLP"
- next " PSN"
- next " PAR@"
-
-StatusAilmentText2:
- db " BRN"
- next " FRZ"
- next " QUIT@@"
-
-ViridianBlackboardStatusPointers:
- dw ViridianBlackboardSleepText
- dw ViridianBlackboardPoisonText
- dw ViridianBlackboardPrlzText
- dw ViridianBlackboardBurnText
- dw ViridianBlackboardFrozenText
-
-ViridianBlackboardSleepText:
- TX_FAR _ViridianBlackboardSleepText
- db "@"
-
-ViridianBlackboardPoisonText:
- TX_FAR _ViridianBlackboardPoisonText
- db "@"
-
-ViridianBlackboardPrlzText:
- TX_FAR _ViridianBlackboardPrlzText
- db "@"
-
-ViridianBlackboardBurnText:
- TX_FAR _ViridianBlackboardBurnText
- db "@"
-
-ViridianBlackboardFrozenText:
- TX_FAR _ViridianBlackboardFrozenText
- db "@"
-
-PrintTrashText:
- call EnableAutoTextBoxDrawing
- tx_pre_jump VermilionGymTrashText
-
-VermilionGymTrashText::
- TX_FAR _VermilionGymTrashText
- db "@"
-
-GymTrashScript:
- call EnableAutoTextBoxDrawing
- ld a, [wHiddenObjectFunctionArgument]
- ld [wGymTrashCanIndex], a
-
-; Don't do the trash can puzzle if it's already been done.
- CheckEvent EVENT_2ND_LOCK_OPENED
- jr z, .ok
-
- tx_pre_jump VermilionGymTrashText
-
-.ok
- CheckEventReuseA EVENT_1ST_LOCK_OPENED
- jr nz, .trySecondLock
-
- ld a, [wFirstLockTrashCanIndex]
- ld b, a
- ld a, [wGymTrashCanIndex]
- cp b
- jr z, .openFirstLock
-
- tx_pre_id VermilionGymTrashText
- jr .done
-
-.openFirstLock
-; Next can is trying for the second switch.
- SetEvent EVENT_1ST_LOCK_OPENED
-
- ld hl, GymTrashCans
- ld a, [wGymTrashCanIndex]
- ; * 5
- ld b, a
- add a
- add a
- add b
-
- ld d, 0
- ld e, a
- add hl, de
- ld a, [hli]
-
-; There is a bug in this code. It should calculate a value in the range [0, 3]
-; but if the mask and random number don't have any 1 bits in common, then
-; the result of the AND will be 0. When 1 is subtracted from that, the value
-; will become $ff. This will result in 255 being added to hl, which will cause
-; hl to point to one of the zero bytes that pad the end of the ROM bank.
-; Trash can 0 was intended to be able to have the second lock only when the
-; first lock was in trash can 1 or 3. However, due to this bug, trash can 0 can
-; have the second lock regardless of which trash can had the first lock.
-
- ld [hGymTrashCanRandNumMask], a
- push hl
- call Random
- swap a
- ld b, a
- ld a, [hGymTrashCanRandNumMask]
- and b
- dec a
- pop hl
-
- ld d, 0
- ld e, a
- add hl, de
- ld a, [hl]
- and $f
- ld [wSecondLockTrashCanIndex], a
-
- tx_pre_id VermilionGymTrashSuccessText1
- jr .done
-
-.trySecondLock
- ld a, [wSecondLockTrashCanIndex]
- ld b, a
- ld a, [wGymTrashCanIndex]
- cp b
- jr z, .openSecondLock
-
-; Reset the cans.
- ResetEvent EVENT_1ST_LOCK_OPENED
- call Random
-
- and $e
- ld [wFirstLockTrashCanIndex], a
-
- tx_pre_id VermilionGymTrashFailText
- jr .done
-
-.openSecondLock
-; Completed the trash can puzzle.
- SetEvent EVENT_2ND_LOCK_OPENED
- ld hl, wCurrentMapScriptFlags
- set 6, [hl]
-
- tx_pre_id VermilionGymTrashSuccessText3
-
-.done
- jp PrintPredefTextID
-
-GymTrashCans:
-; byte 0: mask for random number
-; bytes 1-4: indices of the trash cans that can have the second lock
-; (but see the comment above explaining a bug regarding this)
-; Note that the mask is simply the number of valid trash can indices that
-; follow. The remaining bytes are filled with 0 to pad the length of each entry
-; to 5 bytes.
- db 2, 1, 3, 0, 0 ; 0
- db 3, 0, 2, 4, 0 ; 1
- db 2, 1, 5, 0, 0 ; 2
- db 3, 0, 4, 6, 0 ; 3
- db 4, 1, 3, 5, 7 ; 4
- db 3, 2, 4, 8, 0 ; 5
- db 3, 3, 7, 9, 0 ; 6
- db 4, 4, 6, 8, 10 ; 7
- db 3, 5, 7, 11, 0 ; 8
- db 3, 6, 10, 12, 0 ; 9
- db 4, 7, 9, 11, 13 ; 10
- db 3, 8, 10, 14, 0 ; 11
- db 2, 9, 13, 0, 0 ; 12
- db 3, 10, 12, 14, 0 ; 13
- db 2, 11, 13, 0, 0 ; 14
-
-VermilionGymTrashSuccessText1::
- TX_FAR _VermilionGymTrashSuccessText1
- TX_ASM
- call WaitForSoundToFinish
- ld a, SFX_SWITCH
- call PlaySound
- call WaitForSoundToFinish
- jp TextScriptEnd
-
-; unused
-VermilionGymTrashSuccessText2::
- TX_FAR _VermilionGymTrashSuccessText2
- db "@"
-
-; unused
-VermilionGymTrashSuccesPlaySfx:
- TX_ASM
- call WaitForSoundToFinish
- ld a, SFX_SWITCH
- call PlaySound
- call WaitForSoundToFinish
- jp TextScriptEnd
-
-VermilionGymTrashSuccessText3::
- TX_FAR _VermilionGymTrashSuccessText3
- TX_ASM
- call WaitForSoundToFinish
- ld a, SFX_GO_INSIDE
- call PlaySound
- call WaitForSoundToFinish
- jp TextScriptEnd
-
-VermilionGymTrashFailText::
- TX_FAR _VermilionGymTrashFailText
- TX_ASM
- call WaitForSoundToFinish
- ld a, SFX_DENIED
- call PlaySound
- call WaitForSoundToFinish
- jp TextScriptEnd
--- a/engine/events/hidden_object_functions18.asm
+++ /dev/null
@@ -1,198 +1,0 @@
-GymStatues:
-; if in a gym and have the corresponding badge, a = GymStatueText2_id and jp PrintPredefTextID
-; if in a gym and don’t have the corresponding badge, a = GymStatueText1_id and jp PrintPredefTextID
-; else ret
- call EnableAutoTextBoxDrawing
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP
- ret nz
- ld hl, .BadgeFlags
- ld a, [wCurMap]
- ld b, a
-.loop
- ld a, [hli]
- cp $ff
- ret z
- cp b
- jr z, .match
- inc hl
- jr .loop
-.match
- ld b, [hl]
- ld a, [wBeatGymFlags]
- and b
- cp b
- tx_pre_id GymStatueText2
- jr z, .haveBadge
- tx_pre_id GymStatueText1
-.haveBadge
- jp PrintPredefTextID
-
-.BadgeFlags:
- db PEWTER_GYM, %00000001
- db CERULEAN_GYM, %00000010
- db VERMILION_GYM,%00000100
- db CELADON_GYM, %00001000
- db FUCHSIA_GYM, %00010000
- db SAFFRON_GYM, %00100000
- db CINNABAR_GYM, %01000000
- db VIRIDIAN_GYM, %10000000
- db $ff
-
-GymStatueText1::
- TX_FAR _GymStatueText1
- db "@"
-
-GymStatueText2::
- TX_FAR _GymStatueText2
- db "@"
-
-PrintBenchGuyText:
- call EnableAutoTextBoxDrawing
- ld hl, BenchGuyTextPointers
- ld a, [wCurMap]
- ld b, a
-.loop
- ld a, [hli]
- cp $ff
- ret z
- cp b
- jr z, .match
- inc hl
- inc hl
- jr .loop
-.match
- ld a, [hli]
- ld b, a
- ld a, [wSpriteStateData1 + 9]
- cp b
- jr nz, .loop ; player isn't facing left at the bench guy
- ld a, [hl]
- jp PrintPredefTextID
-
-; format: db map id, player sprite facing direction, text id of PredefTextIDPointerTable
-BenchGuyTextPointers:
- db VIRIDIAN_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre ViridianCityPokecenterBenchGuyText
- db PEWTER_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre PewterCityPokecenterBenchGuyText
- db CERULEAN_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre CeruleanCityPokecenterBenchGuyText
- db LAVENDER_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre LavenderCityPokecenterBenchGuyText
- db VERMILION_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre VermilionCityPokecenterBenchGuyText
- db CELADON_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre CeladonCityPokecenterBenchGuyText
- db CELADON_HOTEL, SPRITE_FACING_LEFT
- db_tx_pre CeladonCityHotelText
- db FUCHSIA_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre FuchsiaCityPokecenterBenchGuyText
- db CINNABAR_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre CinnabarIslandPokecenterBenchGuyText
- db SAFFRON_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre SaffronCityPokecenterBenchGuyText
- db MT_MOON_POKECENTER, SPRITE_FACING_LEFT
- db_tx_pre MtMoonPokecenterBenchGuyText
- db ROCK_TUNNEL_POKECENTER,SPRITE_FACING_LEFT
- db_tx_pre RockTunnelPokecenterBenchGuyText
- db $FF
-
-ViridianCityPokecenterBenchGuyText::
- TX_FAR _ViridianCityPokecenterGuyText
- db "@"
-
-PewterCityPokecenterBenchGuyText::
- TX_FAR _PewterCityPokecenterGuyText
- db "@"
-
-CeruleanCityPokecenterBenchGuyText::
- TX_FAR _CeruleanPokecenterGuyText
- db "@"
-
-LavenderCityPokecenterBenchGuyText::
- TX_FAR _LavenderPokecenterGuyText
- db "@"
-
-MtMoonPokecenterBenchGuyText::
- TX_FAR _MtMoonPokecenterBenchGuyText
- db "@"
-
-RockTunnelPokecenterBenchGuyText::
- TX_FAR _RockTunnelPokecenterGuyText
- db "@"
-
-UnusedBenchGuyText1::
- TX_FAR _UnusedBenchGuyText1
- db "@"
-
-UnusedBenchGuyText2::
- TX_FAR _UnusedBenchGuyText2
- db "@"
-
-UnusedBenchGuyText3::
- TX_FAR _UnusedBenchGuyText3
- db "@"
-
-VermilionCityPokecenterBenchGuyText::
- TX_FAR _VermilionPokecenterGuyText
- db "@"
-
-CeladonCityPokecenterBenchGuyText::
- TX_FAR _CeladonCityPokecenterGuyText
- db "@"
-
-FuchsiaCityPokecenterBenchGuyText::
- TX_FAR _FuchsiaCityPokecenterGuyText
- db "@"
-
-CinnabarIslandPokecenterBenchGuyText::
- TX_FAR _CinnabarPokecenterGuyText
- db "@"
-
-SaffronCityPokecenterBenchGuyText::
- TX_ASM
- CheckEvent EVENT_BEAT_SILPH_CO_GIOVANNI
- ld hl, SaffronCityPokecenterBenchGuyText2
- jr nz, .asm_624f2
- ld hl, SaffronCityPokecenterBenchGuyText1
-.asm_624f2
- call PrintText
- jp TextScriptEnd
-
-SaffronCityPokecenterBenchGuyText1:
- TX_FAR _SaffronCityPokecenterGuyText1
- db "@"
-
-SaffronCityPokecenterBenchGuyText2:
- TX_FAR _SaffronCityPokecenterGuyText2
- db "@"
-
-CeladonCityHotelText::
- TX_FAR _CeladonCityHotelText
- db "@"
-
- ret
-
-UnusedPredefText::
- db "@"
-
-PrintBookcaseText:
- call EnableAutoTextBoxDrawing
- tx_pre_jump BookcaseText
-
-BookcaseText::
- TX_FAR _BookcaseText
- db "@"
-
-OpenPokemonCenterPC:
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP ; check to see if player is facing up
- ret nz
- call EnableAutoTextBoxDrawing
- ld a, $1
- ld [wAutoTextBoxDrawingControl], a
- tx_pre_jump PokemonCenterPCText
-
-PokemonCenterPCText::
- TX_POKECENTER_PC
--- a/engine/events/hidden_object_functions3.asm
+++ /dev/null
@@ -1,117 +1,0 @@
-; prints text for bookshelves in buildings without sign events
-PrintBookshelfText::
- ld a, [wSpriteStateData1 + 9] ; player's sprite facing direction
- cp SPRITE_FACING_UP
- jr nz, .noMatch
-; facing up
- ld a, [wCurMapTileset]
- ld b, a
- aCoord 8, 7
- ld c, a
- ld hl, BookshelfTileIDs
-.loop
- ld a, [hli]
- cp $ff
- jr z, .noMatch
- cp b
- jr nz, .nextBookshelfEntry1
- ld a, [hli]
- cp c
- jr nz, .nextBookshelfEntry2
- ld a, [hl]
- push af
- call EnableAutoTextBoxDrawing
- pop af
- call PrintPredefTextID
- xor a
- ld [$ffdb], a
- ret
-.nextBookshelfEntry1
- inc hl
-.nextBookshelfEntry2
- inc hl
- jr .loop
-.noMatch
- ld a, $ff
- ld [$ffdb], a
- jpba PrintCardKeyText
-
-INCLUDE "data/bookshelf_tile_ids.asm"
-
-IndigoPlateauStatues::
- TX_ASM
- ld hl, IndigoPlateauStatuesText1
- call PrintText
- ld a, [wXCoord]
- bit 0, a
- ld hl, IndigoPlateauStatuesText2
- jr nz, .ok
- ld hl, IndigoPlateauStatuesText3
-.ok
- call PrintText
- jp TextScriptEnd
-
-IndigoPlateauStatuesText1:
- TX_FAR _IndigoPlateauStatuesText1
- db "@"
-
-IndigoPlateauStatuesText2:
- TX_FAR _IndigoPlateauStatuesText2
- db "@"
-
-IndigoPlateauStatuesText3:
- TX_FAR _IndigoPlateauStatuesText3
- db "@"
-
-BookOrSculptureText::
- TX_ASM
- ld hl, PokemonBooksText
- ld a, [wCurMapTileset]
- cp MANSION ; Celadon Mansion tileset
- jr nz, .ok
- aCoord 8, 6
- cp $38
- jr nz, .ok
- ld hl, DiglettSculptureText
-.ok
- call PrintText
- jp TextScriptEnd
-
-PokemonBooksText:
- TX_FAR _PokemonBooksText
- db "@"
-
-DiglettSculptureText:
- TX_FAR _DiglettSculptureText
- db "@"
-
-ElevatorText::
- TX_FAR _ElevatorText
- db "@"
-
-TownMapText::
- TX_FAR _TownMapText
- TX_BLINK
- TX_ASM
- ld a, $1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- ld hl, wd730
- set 6, [hl]
- call GBPalWhiteOutWithDelay3
- xor a
- ld [hWY], a
- inc a
- ld [H_AUTOBGTRANSFERENABLED], a
- call LoadFontTilePatterns
- callba DisplayTownMap
- ld hl, wd730
- res 6, [hl]
- ld de, TextScriptEnd
- push de
- ld a, [H_LOADEDROMBANK]
- push af
- jp CloseTextDisplay
-
-PokemonStuffText::
- TX_FAR _PokemonStuffText
- db "@"
--- a/engine/events/hidden_object_functions7.asm
+++ /dev/null
@@ -1,467 +1,0 @@
-PrintNewBikeText:
- call EnableAutoTextBoxDrawing
- tx_pre_jump NewBicycleText
-
-NewBicycleText::
- TX_FAR _NewBicycleText
- db "@"
-
-DisplayOakLabLeftPoster:
- call EnableAutoTextBoxDrawing
- tx_pre_jump PushStartText
-
-PushStartText::
- TX_FAR _PushStartText
- db "@"
-
-DisplayOakLabRightPoster:
- call EnableAutoTextBoxDrawing
- ld hl, wPokedexOwned
- ld b, wPokedexOwnedEnd - wPokedexOwned
- call CountSetBits
- ld a, [wNumSetBits]
- cp 2
- tx_pre_id SaveOptionText
- jr c, .ownLessThanTwo
- ; own two or more mon
- tx_pre_id StrengthsAndWeaknessesText
-.ownLessThanTwo
- jp PrintPredefTextID
-
-SaveOptionText::
- TX_FAR _SaveOptionText
- db "@"
-
-StrengthsAndWeaknessesText::
- TX_FAR _StrengthsAndWeaknessesText
- db "@"
-
-SafariZoneCheck::
- CheckEventHL EVENT_IN_SAFARI_ZONE ; if we are not in the Safari Zone,
- jr z, SafariZoneGameStillGoing ; don't bother printing game over text
- ld a, [wNumSafariBalls]
- and a
- jr z, SafariZoneGameOver
- jr SafariZoneGameStillGoing
-
-SafariZoneCheckSteps::
- ld a, [wSafariSteps]
- ld b, a
- ld a, [wSafariSteps + 1]
- ld c, a
- or b
- jr z, SafariZoneGameOver
- dec bc
- ld a, b
- ld [wSafariSteps], a
- ld a, c
- ld [wSafariSteps + 1], a
-SafariZoneGameStillGoing:
- xor a
- ld [wSafariZoneGameOver], a
- ret
-
-SafariZoneGameOver:
- call EnableAutoTextBoxDrawing
- xor a
- ld [wAudioFadeOutControl], a
- dec a
- call PlaySound
- ld c, BANK(SFX_Safari_Zone_PA)
- ld a, SFX_SAFARI_ZONE_PA
- call PlayMusic
-.waitForMusicToPlay
- ld a, [wChannelSoundIDs + Ch5]
- cp SFX_SAFARI_ZONE_PA
- jr nz, .waitForMusicToPlay
- ld a, TEXT_SAFARI_GAME_OVER
- ld [hSpriteIndexOrTextID], a
- call DisplayTextID
- xor a
- ld [wPlayerMovingDirection], a
- ld a, SAFARI_ZONE_GATE
- ld [hWarpDestinationMap], a
- ld a, $3
- ld [wDestinationWarpID], a
- ld a, $5
- ld [wSafariZoneGateCurScript], a
- SetEvent EVENT_SAFARI_GAME_OVER
- ld a, 1
- ld [wSafariZoneGameOver], a
- ret
-
-PrintSafariGameOverText::
- xor a
- ld [wJoyIgnore], a
- ld hl, SafariGameOverText
- jp PrintText
-
-SafariGameOverText:
- TX_ASM
- ld a, [wNumSafariBalls]
- and a
- jr z, .noMoreSafariBalls
- ld hl, TimesUpText
- call PrintText
-.noMoreSafariBalls
- ld hl, GameOverText
- call PrintText
- jp TextScriptEnd
-
-TimesUpText:
- TX_FAR _TimesUpText
- db "@"
-
-GameOverText:
- TX_FAR _GameOverText
- db "@"
-
-PrintCinnabarQuiz:
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP
- ret nz
- call EnableAutoTextBoxDrawing
- tx_pre_jump CinnabarGymQuiz
-
-CinnabarGymQuiz::
- TX_ASM
- xor a
- ld [wOpponentAfterWrongAnswer], a
- ld a, [wHiddenObjectFunctionArgument]
- push af
- and $f
- ld [hGymGateIndex], a
- pop af
- and $f0
- swap a
- ld [$ffdc], a
- ld hl, CinnabarGymQuizIntroText
- call PrintText
- ld a, [hGymGateIndex]
- dec a
- add a
- ld d, 0
- ld e, a
- ld hl, CinnabarQuizQuestions
- add hl, de
- ld a, [hli]
- ld h, [hl]
- ld l, a
- call PrintText
- ld a, 1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- call CinnabarGymQuiz_1ea92
- jp TextScriptEnd
-
-CinnabarGymQuizIntroText:
- TX_FAR _CinnabarGymQuizIntroText
- db "@"
-
-CinnabarQuizQuestions:
- dw CinnabarQuizQuestionsText1
- dw CinnabarQuizQuestionsText2
- dw CinnabarQuizQuestionsText3
- dw CinnabarQuizQuestionsText4
- dw CinnabarQuizQuestionsText5
- dw CinnabarQuizQuestionsText6
-
-CinnabarQuizQuestionsText1:
- TX_FAR _CinnabarQuizQuestionsText1
- db "@"
-
-CinnabarQuizQuestionsText2:
- TX_FAR _CinnabarQuizQuestionsText2
- db "@"
-
-CinnabarQuizQuestionsText3:
- TX_FAR _CinnabarQuizQuestionsText3
- db "@"
-
-CinnabarQuizQuestionsText4:
- TX_FAR _CinnabarQuizQuestionsText4
- db "@"
-
-CinnabarQuizQuestionsText5:
- TX_FAR _CinnabarQuizQuestionsText5
- db "@"
-
-CinnabarQuizQuestionsText6:
- TX_FAR _CinnabarQuizQuestionsText6
- db "@"
-
-CinnabarGymGateFlagAction:
- EventFlagAddress hl, EVENT_CINNABAR_GYM_GATE0_UNLOCKED
- predef_jump FlagActionPredef
-
-CinnabarGymQuiz_1ea92:
- call YesNoChoice
- ld a, [$ffdc]
- ld c, a
- ld a, [wCurrentMenuItem]
- cp c
- jr nz, .wrongAnswer
- ld hl, wCurrentMapScriptFlags
- set 5, [hl]
- ld a, [hGymGateIndex]
- ld [$ffe0], a
- ld hl, CinnabarGymQuizCorrectText
- call PrintText
- ld a, [$ffe0]
- AdjustEventBit EVENT_CINNABAR_GYM_GATE0_UNLOCKED, 0
- ld c, a
- ld b, FLAG_SET
- call CinnabarGymGateFlagAction
- jp UpdateCinnabarGymGateTileBlocks_
-.wrongAnswer
- call WaitForSoundToFinish
- ld a, SFX_DENIED
- call PlaySound
- call WaitForSoundToFinish
- ld hl, CinnabarGymQuizIncorrectText
- call PrintText
- ld a, [hGymGateIndex]
- add $2
- AdjustEventBit EVENT_BEAT_CINNABAR_GYM_TRAINER_0, 2
- ld c, a
- ld b, FLAG_TEST
- EventFlagAddress hl, EVENT_BEAT_CINNABAR_GYM_TRAINER_0
- predef FlagActionPredef
- ld a, c
- and a
- ret nz
- ld a, [hGymGateIndex]
- add $2
- ld [wOpponentAfterWrongAnswer], a
- ret
-
-CinnabarGymQuizCorrectText:
- TX_SFX_ITEM_1
- TX_FAR _CinnabarGymQuizCorrectText
- TX_BLINK
- TX_ASM
-
- ld a, [$ffe0]
- AdjustEventBit EVENT_CINNABAR_GYM_GATE0_UNLOCKED, 0
- ld c, a
- ld b, FLAG_TEST
- call CinnabarGymGateFlagAction
- ld a, c
- and a
- jp nz, TextScriptEnd
- call WaitForSoundToFinish
- ld a, SFX_GO_INSIDE
- call PlaySound
- call WaitForSoundToFinish
- jp TextScriptEnd
-
-CinnabarGymQuizIncorrectText:
- TX_FAR _CinnabarGymQuizIncorrectText
- db "@"
-
-UpdateCinnabarGymGateTileBlocks_::
-; Update the overworld map with open floor blocks or locked gate blocks
-; depending on event flags.
- ld a, 6
- ld [hGymGateIndex], a
-.loop
- ld a, [hGymGateIndex]
- dec a
- add a
- add a
- ld d, 0
- ld e, a
- ld hl, CinnabarGymGateCoords
- add hl, de
- ld a, [hli]
- ld b, [hl]
- ld c, a
- inc hl
- ld a, [hl]
- ld [wGymGateTileBlock], a
- push bc
- ld a, [hGymGateIndex]
- ld [$ffe0], a
- AdjustEventBit EVENT_CINNABAR_GYM_GATE0_UNLOCKED, 0
- ld c, a
- ld b, FLAG_TEST
- call CinnabarGymGateFlagAction
- ld a, c
- and a
- jr nz, .unlocked
- ld a, [wGymGateTileBlock]
- jr .next
-.unlocked
- ld a, $e
-.next
- pop bc
- ld [wNewTileBlockID], a
- predef ReplaceTileBlock
- ld hl, hGymGateIndex
- dec [hl]
- jr nz, .loop
- ret
-
-CinnabarGymGateCoords:
- ; format: x-coord, y-coord, direction, padding
- ; direction: $54 = horizontal gate, $5f = vertical gate
- db $09,$03,$54,$00
- db $06,$03,$54,$00
- db $06,$06,$54,$00
- db $03,$08,$5f,$00
- db $02,$06,$54,$00
- db $02,$03,$54,$00
-
-PrintMagazinesText:
- call EnableAutoTextBoxDrawing
- tx_pre MagazinesText
- ret
-
-MagazinesText::
- TX_FAR _MagazinesText
- db "@"
-
-BillsHousePC:
- call EnableAutoTextBoxDrawing
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP
- ret nz
- CheckEvent EVENT_LEFT_BILLS_HOUSE_AFTER_HELPING
- jr nz, .displayBillsHousePokemonList
- CheckEventReuseA EVENT_USED_CELL_SEPARATOR_ON_BILL
- jr nz, .displayBillsHouseMonitorText
- CheckEventReuseA EVENT_BILL_SAID_USE_CELL_SEPARATOR
- jr nz, .doCellSeparator
-.displayBillsHouseMonitorText
- tx_pre_jump BillsHouseMonitorText
-.doCellSeparator
- ld a, $1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- tx_pre BillsHouseInitiatedText
- ld c, 32
- call DelayFrames
- ld a, SFX_TINK
- call PlaySound
- call WaitForSoundToFinish
- ld c, 80
- call DelayFrames
- ld a, SFX_SHRINK
- call PlaySound
- call WaitForSoundToFinish
- ld c, 48
- call DelayFrames
- ld a, SFX_TINK
- call PlaySound
- call WaitForSoundToFinish
- ld c, 32
- call DelayFrames
- ld a, SFX_GET_ITEM_1
- call PlaySound
- call WaitForSoundToFinish
- call PlayDefaultMusic
- SetEvent EVENT_USED_CELL_SEPARATOR_ON_BILL
- ret
-.displayBillsHousePokemonList
- ld a, $1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- tx_pre BillsHousePokemonList
- ret
-
-BillsHouseMonitorText::
- TX_FAR _BillsHouseMonitorText
- db "@"
-
-BillsHouseInitiatedText::
- TX_FAR _BillsHouseInitiatedText
- TX_BLINK
- TX_ASM
- ld a, $ff
- ld [wNewSoundID], a
- call PlaySound
- ld c, 16
- call DelayFrames
- ld a, SFX_SWITCH
- call PlaySound
- call WaitForSoundToFinish
- ld c, 60
- call DelayFrames
- jp TextScriptEnd
-
-BillsHousePokemonList::
- TX_ASM
- call SaveScreenTilesToBuffer1
- ld hl, BillsHousePokemonListText1
- call PrintText
- xor a
- ld [wMenuItemOffset], a ; not used
- ld [wCurrentMenuItem], a
- ld [wLastMenuItem], a
- ld a, A_BUTTON | B_BUTTON
- ld [wMenuWatchedKeys], a
- ld a, 4
- ld [wMaxMenuItem], a
- ld a, 2
- ld [wTopMenuItemY], a
- ld a, 1
- ld [wTopMenuItemX], a
-.billsPokemonLoop
- ld hl, wd730
- set 6, [hl]
- coord hl, 0, 0
- ld b, 10
- ld c, 9
- call TextBoxBorder
- coord hl, 2, 2
- ld de, BillsMonListText
- call PlaceString
- ld hl, BillsHousePokemonListText2
- call PrintText
- call SaveScreenTilesToBuffer2
- call HandleMenuInput
- bit 1, a ; pressed b
- jr nz, .cancel
- ld a, [wCurrentMenuItem]
- add EEVEE
- cp EEVEE
- jr z, .displayPokedex
- cp FLAREON
- jr z, .displayPokedex
- cp JOLTEON
- jr z, .displayPokedex
- cp VAPOREON
- jr z, .displayPokedex
- jr .cancel
-.displayPokedex
- call DisplayPokedex
- call LoadScreenTilesFromBuffer2
- jr .billsPokemonLoop
-.cancel
- ld hl, wd730
- res 6, [hl]
- call LoadScreenTilesFromBuffer2
- jp TextScriptEnd
-
-BillsHousePokemonListText1:
- TX_FAR _BillsHousePokemonListText1
- db "@"
-
-BillsMonListText:
- db "EEVEE"
- next "FLAREON"
- next "JOLTEON"
- next "VAPOREON"
- next "CANCEL@"
-
-BillsHousePokemonListText2:
- TX_FAR _BillsHousePokemonListText2
- db "@"
-
-DisplayOakLabEmailText:
- ld a, [wSpriteStateData1 + 9]
- cp SPRITE_FACING_UP
- ret nz
- call EnableAutoTextBoxDrawing
- tx_pre_jump OakLabEmailText
-
-OakLabEmailText::
- TX_FAR _OakLabEmailText
- db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/bench_guys.asm
@@ -1,0 +1,124 @@
+PrintBenchGuyText:
+ call EnableAutoTextBoxDrawing
+ ld hl, BenchGuyTextPointers
+ ld a, [wCurMap]
+ ld b, a
+.loop
+ ld a, [hli]
+ cp $ff
+ ret z
+ cp b
+ jr z, .match
+ inc hl
+ inc hl
+ jr .loop
+.match
+ ld a, [hli]
+ ld b, a
+ ld a, [wSpriteStateData1 + 9]
+ cp b
+ jr nz, .loop ; player isn't facing left at the bench guy
+ ld a, [hl]
+ jp PrintPredefTextID
+
+; format: db map id, player sprite facing direction, text id of PredefTextIDPointerTable
+BenchGuyTextPointers:
+ db VIRIDIAN_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre ViridianCityPokecenterBenchGuyText
+ db PEWTER_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre PewterCityPokecenterBenchGuyText
+ db CERULEAN_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre CeruleanCityPokecenterBenchGuyText
+ db LAVENDER_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre LavenderCityPokecenterBenchGuyText
+ db VERMILION_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre VermilionCityPokecenterBenchGuyText
+ db CELADON_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre CeladonCityPokecenterBenchGuyText
+ db CELADON_HOTEL, SPRITE_FACING_LEFT
+ db_tx_pre CeladonCityHotelText
+ db FUCHSIA_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre FuchsiaCityPokecenterBenchGuyText
+ db CINNABAR_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre CinnabarIslandPokecenterBenchGuyText
+ db SAFFRON_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre SaffronCityPokecenterBenchGuyText
+ db MT_MOON_POKECENTER, SPRITE_FACING_LEFT
+ db_tx_pre MtMoonPokecenterBenchGuyText
+ db ROCK_TUNNEL_POKECENTER,SPRITE_FACING_LEFT
+ db_tx_pre RockTunnelPokecenterBenchGuyText
+ db $FF
+
+ViridianCityPokecenterBenchGuyText::
+ TX_FAR _ViridianCityPokecenterGuyText
+ db "@"
+
+PewterCityPokecenterBenchGuyText::
+ TX_FAR _PewterCityPokecenterGuyText
+ db "@"
+
+CeruleanCityPokecenterBenchGuyText::
+ TX_FAR _CeruleanPokecenterGuyText
+ db "@"
+
+LavenderCityPokecenterBenchGuyText::
+ TX_FAR _LavenderPokecenterGuyText
+ db "@"
+
+MtMoonPokecenterBenchGuyText::
+ TX_FAR _MtMoonPokecenterBenchGuyText
+ db "@"
+
+RockTunnelPokecenterBenchGuyText::
+ TX_FAR _RockTunnelPokecenterGuyText
+ db "@"
+
+UnusedBenchGuyText1::
+ TX_FAR _UnusedBenchGuyText1
+ db "@"
+
+UnusedBenchGuyText2::
+ TX_FAR _UnusedBenchGuyText2
+ db "@"
+
+UnusedBenchGuyText3::
+ TX_FAR _UnusedBenchGuyText3
+ db "@"
+
+VermilionCityPokecenterBenchGuyText::
+ TX_FAR _VermilionPokecenterGuyText
+ db "@"
+
+CeladonCityPokecenterBenchGuyText::
+ TX_FAR _CeladonCityPokecenterGuyText
+ db "@"
+
+FuchsiaCityPokecenterBenchGuyText::
+ TX_FAR _FuchsiaCityPokecenterGuyText
+ db "@"
+
+CinnabarIslandPokecenterBenchGuyText::
+ TX_FAR _CinnabarPokecenterGuyText
+ db "@"
+
+SaffronCityPokecenterBenchGuyText::
+ TX_ASM
+ CheckEvent EVENT_BEAT_SILPH_CO_GIOVANNI
+ ld hl, SaffronCityPokecenterBenchGuyText2
+ jr nz, .asm_624f2
+ ld hl, SaffronCityPokecenterBenchGuyText1
+.asm_624f2
+ call PrintText
+ jp TextScriptEnd
+
+SaffronCityPokecenterBenchGuyText1:
+ TX_FAR _SaffronCityPokecenterGuyText1
+ db "@"
+
+SaffronCityPokecenterBenchGuyText2:
+ TX_FAR _SaffronCityPokecenterGuyText2
+ db "@"
+
+CeladonCityHotelText::
+ TX_FAR _CeladonCityHotelText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/bills_house_pc.asm
@@ -1,0 +1,134 @@
+BillsHousePC:
+ call EnableAutoTextBoxDrawing
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP
+ ret nz
+ CheckEvent EVENT_LEFT_BILLS_HOUSE_AFTER_HELPING
+ jr nz, .displayBillsHousePokemonList
+ CheckEventReuseA EVENT_USED_CELL_SEPARATOR_ON_BILL
+ jr nz, .displayBillsHouseMonitorText
+ CheckEventReuseA EVENT_BILL_SAID_USE_CELL_SEPARATOR
+ jr nz, .doCellSeparator
+.displayBillsHouseMonitorText
+ tx_pre_jump BillsHouseMonitorText
+.doCellSeparator
+ ld a, $1
+ ld [wDoNotWaitForButtonPressAfterDisplayingText], a
+ tx_pre BillsHouseInitiatedText
+ ld c, 32
+ call DelayFrames
+ ld a, SFX_TINK
+ call PlaySound
+ call WaitForSoundToFinish
+ ld c, 80
+ call DelayFrames
+ ld a, SFX_SHRINK
+ call PlaySound
+ call WaitForSoundToFinish
+ ld c, 48
+ call DelayFrames
+ ld a, SFX_TINK
+ call PlaySound
+ call WaitForSoundToFinish
+ ld c, 32
+ call DelayFrames
+ ld a, SFX_GET_ITEM_1
+ call PlaySound
+ call WaitForSoundToFinish
+ call PlayDefaultMusic
+ SetEvent EVENT_USED_CELL_SEPARATOR_ON_BILL
+ ret
+.displayBillsHousePokemonList
+ ld a, $1
+ ld [wDoNotWaitForButtonPressAfterDisplayingText], a
+ tx_pre BillsHousePokemonList
+ ret
+
+BillsHouseMonitorText::
+ TX_FAR _BillsHouseMonitorText
+ db "@"
+
+BillsHouseInitiatedText::
+ TX_FAR _BillsHouseInitiatedText
+ TX_BLINK
+ TX_ASM
+ ld a, SFX_STOP_ALL_MUSIC
+ ld [wNewSoundID], a
+ call PlaySound
+ ld c, 16
+ call DelayFrames
+ ld a, SFX_SWITCH
+ call PlaySound
+ call WaitForSoundToFinish
+ ld c, 60
+ call DelayFrames
+ jp TextScriptEnd
+
+BillsHousePokemonList::
+ TX_ASM
+ call SaveScreenTilesToBuffer1
+ ld hl, BillsHousePokemonListText1
+ call PrintText
+ xor a
+ ld [wMenuItemOffset], a ; not used
+ ld [wCurrentMenuItem], a
+ ld [wLastMenuItem], a
+ ld a, A_BUTTON | B_BUTTON
+ ld [wMenuWatchedKeys], a
+ ld a, 4
+ ld [wMaxMenuItem], a
+ ld a, 2
+ ld [wTopMenuItemY], a
+ ld a, 1
+ ld [wTopMenuItemX], a
+.billsPokemonLoop
+ ld hl, wd730
+ set 6, [hl]
+ coord hl, 0, 0
+ ld b, 10
+ ld c, 9
+ call TextBoxBorder
+ coord hl, 2, 2
+ ld de, BillsMonListText
+ call PlaceString
+ ld hl, BillsHousePokemonListText2
+ call PrintText
+ call SaveScreenTilesToBuffer2
+ call HandleMenuInput
+ bit 1, a ; pressed b
+ jr nz, .cancel
+ ld a, [wCurrentMenuItem]
+ add EEVEE
+ cp EEVEE
+ jr z, .displayPokedex
+ cp FLAREON
+ jr z, .displayPokedex
+ cp JOLTEON
+ jr z, .displayPokedex
+ cp VAPOREON
+ jr z, .displayPokedex
+ jr .cancel
+.displayPokedex
+ call DisplayPokedex
+ call LoadScreenTilesFromBuffer2
+ jr .billsPokemonLoop
+.cancel
+ ld hl, wd730
+ res 6, [hl]
+ call LoadScreenTilesFromBuffer2
+ jp TextScriptEnd
+
+BillsHousePokemonListText1:
+ TX_FAR _BillsHousePokemonListText1
+ db "@"
+
+BillsMonListText:
+ db "EEVEE"
+ next "FLAREON"
+ next "JOLTEON"
+ next "VAPOREON"
+ next "CANCEL@"
+
+BillsHousePokemonListText2:
+ TX_FAR _BillsHousePokemonListText2
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/blues_room.asm
@@ -1,0 +1,13 @@
+
+ ret ; unused
+
+UnusedPredefText::
+ db "@"
+
+PrintBookcaseText:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump BookcaseText
+
+BookcaseText::
+ TX_FAR _BookcaseText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/book_or_sculpture.asm
@@ -1,0 +1,21 @@
+BookOrSculptureText::
+ TX_ASM
+ ld hl, PokemonBooksText
+ ld a, [wCurMapTileset]
+ cp MANSION ; Celadon Mansion tileset
+ jr nz, .ok
+ aCoord 8, 6
+ cp $38
+ jr nz, .ok
+ ld hl, DiglettSculptureText
+.ok
+ call PrintText
+ jp TextScriptEnd
+
+PokemonBooksText:
+ TX_FAR _PokemonBooksText
+ db "@"
+
+DiglettSculptureText:
+ TX_FAR _DiglettSculptureText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/bookshelves.asm
@@ -1,0 +1,39 @@
+; prints text for bookshelves in buildings without sign events
+PrintBookshelfText::
+ ld a, [wSpriteStateData1 + 9] ; player's sprite facing direction
+ cp SPRITE_FACING_UP
+ jr nz, .noMatch
+; facing up
+ ld a, [wCurMapTileset]
+ ld b, a
+ aCoord 8, 7
+ ld c, a
+ ld hl, BookshelfTileIDs
+.loop
+ ld a, [hli]
+ cp $ff
+ jr z, .noMatch
+ cp b
+ jr nz, .nextBookshelfEntry1
+ ld a, [hli]
+ cp c
+ jr nz, .nextBookshelfEntry2
+ ld a, [hl]
+ push af
+ call EnableAutoTextBoxDrawing
+ pop af
+ call PrintPredefTextID
+ xor a
+ ld [hFFDB], a
+ ret
+.nextBookshelfEntry1
+ inc hl
+.nextBookshelfEntry2
+ inc hl
+ jr .loop
+.noMatch
+ ld a, $ff
+ ld [hFFDB], a
+ jpba PrintCardKeyText
+
+INCLUDE "data/tilesets/bookshelf_tile_ids.asm"
--- /dev/null
+++ b/engine/events/hidden_objects/cinnabar_gym_quiz.asm
@@ -1,0 +1,194 @@
+PrintCinnabarQuiz:
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP
+ ret nz
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump CinnabarGymQuiz
+
+CinnabarGymQuiz::
+ TX_ASM
+ xor a
+ ld [wOpponentAfterWrongAnswer], a
+ ld a, [wHiddenObjectFunctionArgument]
+ push af
+ and $f
+ ld [hGymGateIndex], a
+ pop af
+ and $f0
+ swap a
+ ld [hGymGateAnswer], a
+ ld hl, CinnabarGymQuizIntroText
+ call PrintText
+ ld a, [hGymGateIndex]
+ dec a
+ add a
+ ld d, 0
+ ld e, a
+ ld hl, CinnabarQuizQuestions
+ add hl, de
+ ld a, [hli]
+ ld h, [hl]
+ ld l, a
+ call PrintText
+ ld a, 1
+ ld [wDoNotWaitForButtonPressAfterDisplayingText], a
+ call CinnabarGymQuiz_1ea92
+ jp TextScriptEnd
+
+CinnabarGymQuizIntroText:
+ TX_FAR _CinnabarGymQuizIntroText
+ db "@"
+
+CinnabarQuizQuestions:
+ dw CinnabarQuizQuestionsText1
+ dw CinnabarQuizQuestionsText2
+ dw CinnabarQuizQuestionsText3
+ dw CinnabarQuizQuestionsText4
+ dw CinnabarQuizQuestionsText5
+ dw CinnabarQuizQuestionsText6
+
+CinnabarQuizQuestionsText1:
+ TX_FAR _CinnabarQuizQuestionsText1
+ db "@"
+
+CinnabarQuizQuestionsText2:
+ TX_FAR _CinnabarQuizQuestionsText2
+ db "@"
+
+CinnabarQuizQuestionsText3:
+ TX_FAR _CinnabarQuizQuestionsText3
+ db "@"
+
+CinnabarQuizQuestionsText4:
+ TX_FAR _CinnabarQuizQuestionsText4
+ db "@"
+
+CinnabarQuizQuestionsText5:
+ TX_FAR _CinnabarQuizQuestionsText5
+ db "@"
+
+CinnabarQuizQuestionsText6:
+ TX_FAR _CinnabarQuizQuestionsText6
+ db "@"
+
+CinnabarGymGateFlagAction:
+ EventFlagAddress hl, EVENT_CINNABAR_GYM_GATE0_UNLOCKED
+ predef_jump FlagActionPredef
+
+CinnabarGymQuiz_1ea92:
+ call YesNoChoice
+ ld a, [hGymGateAnswer]
+ ld c, a
+ ld a, [wCurrentMenuItem]
+ cp c
+ jr nz, .wrongAnswer
+ ld hl, wCurrentMapScriptFlags
+ set 5, [hl]
+ ld a, [hGymGateIndex]
+ ld [hBackupGymGateIndex], a
+ ld hl, CinnabarGymQuizCorrectText
+ call PrintText
+ ld a, [hBackupGymGateIndex]
+ AdjustEventBit EVENT_CINNABAR_GYM_GATE0_UNLOCKED, 0
+ ld c, a
+ ld b, FLAG_SET
+ call CinnabarGymGateFlagAction
+ jp UpdateCinnabarGymGateTileBlocks_
+.wrongAnswer
+ call WaitForSoundToFinish
+ ld a, SFX_DENIED
+ call PlaySound
+ call WaitForSoundToFinish
+ ld hl, CinnabarGymQuizIncorrectText
+ call PrintText
+ ld a, [hGymGateIndex]
+ add $2
+ AdjustEventBit EVENT_BEAT_CINNABAR_GYM_TRAINER_0, 2
+ ld c, a
+ ld b, FLAG_TEST
+ EventFlagAddress hl, EVENT_BEAT_CINNABAR_GYM_TRAINER_0
+ predef FlagActionPredef
+ ld a, c
+ and a
+ ret nz
+ ld a, [hGymGateIndex]
+ add $2
+ ld [wOpponentAfterWrongAnswer], a
+ ret
+
+CinnabarGymQuizCorrectText:
+ TX_SFX_ITEM_1
+ TX_FAR _CinnabarGymQuizCorrectText
+ TX_BLINK
+ TX_ASM
+
+ ld a, [hBackupGymGateIndex]
+ AdjustEventBit EVENT_CINNABAR_GYM_GATE0_UNLOCKED, 0
+ ld c, a
+ ld b, FLAG_TEST
+ call CinnabarGymGateFlagAction
+ ld a, c
+ and a
+ jp nz, TextScriptEnd
+ call WaitForSoundToFinish
+ ld a, SFX_GO_INSIDE
+ call PlaySound
+ call WaitForSoundToFinish
+ jp TextScriptEnd
+
+CinnabarGymQuizIncorrectText:
+ TX_FAR _CinnabarGymQuizIncorrectText
+ db "@"
+
+UpdateCinnabarGymGateTileBlocks_::
+; Update the overworld map with open floor blocks or locked gate blocks
+; depending on event flags.
+ ld a, 6
+ ld [hGymGateIndex], a
+.loop
+ ld a, [hGymGateIndex]
+ dec a
+ add a
+ add a
+ ld d, 0
+ ld e, a
+ ld hl, CinnabarGymGateCoords
+ add hl, de
+ ld a, [hli]
+ ld b, [hl]
+ ld c, a
+ inc hl
+ ld a, [hl]
+ ld [wGymGateTileBlock], a
+ push bc
+ ld a, [hGymGateIndex]
+ ld [hBackupGymGateIndex], a
+ AdjustEventBit EVENT_CINNABAR_GYM_GATE0_UNLOCKED, 0
+ ld c, a
+ ld b, FLAG_TEST
+ call CinnabarGymGateFlagAction
+ ld a, c
+ and a
+ jr nz, .unlocked
+ ld a, [wGymGateTileBlock]
+ jr .next
+.unlocked
+ ld a, $e
+.next
+ pop bc
+ ld [wNewTileBlockID], a
+ predef ReplaceTileBlock
+ ld hl, hGymGateIndex
+ dec [hl]
+ jr nz, .loop
+ ret
+
+CinnabarGymGateCoords:
+ ; format: x-coord, y-coord, direction, padding
+ ; direction: $54 = horizontal gate, $5f = vertical gate
+ db $09,$03,$54,$00
+ db $06,$03,$54,$00
+ db $06,$06,$54,$00
+ db $03,$08,$5f,$00
+ db $02,$06,$54,$00
+ db $02,$03,$54,$00
--- /dev/null
+++ b/engine/events/hidden_objects/elevator.asm
@@ -1,0 +1,3 @@
+ElevatorText::
+ TX_FAR _ElevatorText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/fighting_dojo.asm
@@ -1,0 +1,23 @@
+PrintFightingDojoText2:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump EnemiesOnEverySideText
+
+EnemiesOnEverySideText::
+ TX_FAR _EnemiesOnEverySideText
+ db "@"
+
+PrintFightingDojoText3:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump WhatGoesAroundComesAroundText
+
+WhatGoesAroundComesAroundText::
+ TX_FAR _WhatGoesAroundComesAroundText
+ db "@"
+
+PrintFightingDojoText:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump FightingDojoText
+
+FightingDojoText::
+ TX_FAR _FightingDojoText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/gym_statues.asm
@@ -1,0 +1,48 @@
+GymStatues:
+; if in a gym and have the corresponding badge, a = GymStatueText2_id and jp PrintPredefTextID
+; if in a gym and don’t have the corresponding badge, a = GymStatueText1_id and jp PrintPredefTextID
+; else ret
+ call EnableAutoTextBoxDrawing
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP
+ ret nz
+ ld hl, .BadgeFlags
+ ld a, [wCurMap]
+ ld b, a
+.loop
+ ld a, [hli]
+ cp $ff
+ ret z
+ cp b
+ jr z, .match
+ inc hl
+ jr .loop
+.match
+ ld b, [hl]
+ ld a, [wBeatGymFlags]
+ and b
+ cp b
+ tx_pre_id GymStatueText2
+ jr z, .haveBadge
+ tx_pre_id GymStatueText1
+.haveBadge
+ jp PrintPredefTextID
+
+.BadgeFlags:
+ db PEWTER_GYM, %00000001
+ db CERULEAN_GYM, %00000010
+ db VERMILION_GYM,%00000100
+ db CELADON_GYM, %00001000
+ db FUCHSIA_GYM, %00010000
+ db SAFFRON_GYM, %00100000
+ db CINNABAR_GYM, %01000000
+ db VIRIDIAN_GYM, %10000000
+ db $ff
+
+GymStatueText1::
+ TX_FAR _GymStatueText1
+ db "@"
+
+GymStatueText2::
+ TX_FAR _GymStatueText2
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/indigo_plateau_hq.asm
@@ -1,0 +1,10 @@
+PrintIndigoPlateauHQText:
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP
+ ret nz
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump IndigoPlateauHQText
+
+IndigoPlateauHQText::
+ TX_FAR _IndigoPlateauHQText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/indigo_plateau_statues.asm
@@ -1,0 +1,24 @@
+IndigoPlateauStatues::
+ TX_ASM
+ ld hl, IndigoPlateauStatuesText1
+ call PrintText
+ ld a, [wXCoord]
+ bit 0, a
+ ld hl, IndigoPlateauStatuesText2
+ jr nz, .ok
+ ld hl, IndigoPlateauStatuesText3
+.ok
+ call PrintText
+ jp TextScriptEnd
+
+IndigoPlateauStatuesText1:
+ TX_FAR _IndigoPlateauStatuesText1
+ db "@"
+
+IndigoPlateauStatuesText2:
+ TX_FAR _IndigoPlateauStatuesText2
+ db "@"
+
+IndigoPlateauStatuesText3:
+ TX_FAR _IndigoPlateauStatuesText3
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/magazines.asm
@@ -1,0 +1,8 @@
+PrintMagazinesText:
+ call EnableAutoTextBoxDrawing
+ tx_pre MagazinesText
+ ret
+
+MagazinesText::
+ TX_FAR _MagazinesText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/museum_fossils.asm
@@ -1,0 +1,52 @@
+AerodactylFossil:
+ ld a, FOSSIL_AERODACTYL
+ ld [wcf91], a
+ call DisplayMonFrontSpriteInBox
+ call EnableAutoTextBoxDrawing
+ tx_pre AerodactylFossilText
+ ret
+
+AerodactylFossilText::
+ TX_FAR _AerodactylFossilText
+ db "@"
+
+KabutopsFossil:
+ ld a, FOSSIL_KABUTOPS
+ ld [wcf91], a
+ call DisplayMonFrontSpriteInBox
+ call EnableAutoTextBoxDrawing
+ tx_pre KabutopsFossilText
+ ret
+
+KabutopsFossilText::
+ TX_FAR _KabutopsFossilText
+ db "@"
+
+DisplayMonFrontSpriteInBox:
+; Displays a pokemon's front sprite in a pop-up window.
+; [wcf91] = pokemon internal id number
+ ld a, 1
+ ld [hAutoBGTransferEnabled], a
+ call Delay3
+ xor a
+ ld [hWY], a
+ call SaveScreenTilesToBuffer1
+ ld a, MON_SPRITE_POPUP
+ ld [wTextBoxID], a
+ call DisplayTextBoxID
+ call UpdateSprites
+ ld a, [wcf91]
+ ld [wd0b5], a
+ call GetMonHeader
+ ld de, vChars1 + $310
+ call LoadMonFrontSprite
+ ld a, $80
+ ld [hStartTileID], a
+ coord hl, 10, 11
+ predef AnimateSendingOutMon
+ call WaitForTextScrollButtonPress
+ call LoadScreenTilesFromBuffer1
+ call Delay3
+ ld a, $90
+ ld [hWY], a
+ ret
--- /dev/null
+++ b/engine/events/hidden_objects/new_bike.asm
@@ -1,0 +1,7 @@
+PrintNewBikeText:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump NewBicycleText
+
+NewBicycleText::
+ TX_FAR _NewBicycleText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/oaks_lab_email.asm
@@ -1,0 +1,10 @@
+DisplayOakLabEmailText:
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP
+ ret nz
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump OakLabEmailText
+
+OakLabEmailText::
+ TX_FAR _OakLabEmailText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/oaks_lab_posters.asm
@@ -1,0 +1,29 @@
+DisplayOakLabLeftPoster:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump PushStartText
+
+PushStartText::
+ TX_FAR _PushStartText
+ db "@"
+
+DisplayOakLabRightPoster:
+ call EnableAutoTextBoxDrawing
+ ld hl, wPokedexOwned
+ ld b, wPokedexOwnedEnd - wPokedexOwned
+ call CountSetBits
+ ld a, [wNumSetBits]
+ cp 2
+ tx_pre_id SaveOptionText
+ jr c, .ownLessThanTwo
+ ; own two or more mon
+ tx_pre_id StrengthsAndWeaknessesText
+.ownLessThanTwo
+ jp PrintPredefTextID
+
+SaveOptionText::
+ TX_FAR _SaveOptionText
+ db "@"
+
+StrengthsAndWeaknessesText::
+ TX_FAR _StrengthsAndWeaknessesText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/pokecenter_pc.asm
@@ -1,0 +1,11 @@
+OpenPokemonCenterPC:
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP ; check to see if player is facing up
+ ret nz
+ call EnableAutoTextBoxDrawing
+ ld a, $1
+ ld [wAutoTextBoxDrawingControl], a
+ tx_pre_jump PokemonCenterPCText
+
+PokemonCenterPCText::
+ TX_POKECENTER_PC
--- /dev/null
+++ b/engine/events/hidden_objects/pokemon_stuff.asm
@@ -1,0 +1,3 @@
+PokemonStuffText::
+ TX_FAR _PokemonStuffText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/reds_room.asm
@@ -1,0 +1,14 @@
+PrintRedSNESText:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump RedBedroomSNESText
+
+RedBedroomSNESText::
+ TX_FAR _RedBedroomSNESText
+ db "@"
+
+OpenRedsPC:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump RedBedroomPCText
+
+RedBedroomPCText::
+ TX_PLAYERS_PC
--- /dev/null
+++ b/engine/events/hidden_objects/route_15_binoculars.asm
@@ -1,0 +1,14 @@
+Route15GateLeftBinoculars:
+ ld a, [wSpriteStateData1 + 9]
+ cp SPRITE_FACING_UP
+ ret nz
+ call EnableAutoTextBoxDrawing
+ tx_pre Route15UpstairsBinocularsText
+ ld a, ARTICUNO
+ ld [wcf91], a
+ call PlayCry
+ jp DisplayMonFrontSpriteInBox
+
+Route15UpstairsBinocularsText::
+ TX_FAR _Route15UpstairsBinocularsText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/safari_game.asm
@@ -1,0 +1,79 @@
+SafariZoneCheck::
+ CheckEventHL EVENT_IN_SAFARI_ZONE ; if we are not in the Safari Zone,
+ jr z, SafariZoneGameStillGoing ; don't bother printing game over text
+ ld a, [wNumSafariBalls]
+ and a
+ jr z, SafariZoneGameOver
+ jr SafariZoneGameStillGoing
+
+SafariZoneCheckSteps::
+ ld a, [wSafariSteps]
+ ld b, a
+ ld a, [wSafariSteps + 1]
+ ld c, a
+ or b
+ jr z, SafariZoneGameOver
+ dec bc
+ ld a, b
+ ld [wSafariSteps], a
+ ld a, c
+ ld [wSafariSteps + 1], a
+SafariZoneGameStillGoing:
+ xor a
+ ld [wSafariZoneGameOver], a
+ ret
+
+SafariZoneGameOver:
+ call EnableAutoTextBoxDrawing
+ xor a
+ ld [wAudioFadeOutControl], a
+ dec a ; SFX_STOP_ALL_MUSIC
+ call PlaySound
+ ld c, BANK(SFX_Safari_Zone_PA)
+ ld a, SFX_SAFARI_ZONE_PA
+ call PlayMusic
+.waitForMusicToPlay
+ ld a, [wChannelSoundIDs + Ch5]
+ cp SFX_SAFARI_ZONE_PA
+ jr nz, .waitForMusicToPlay
+ ld a, TEXT_SAFARI_GAME_OVER
+ ld [hSpriteIndexOrTextID], a
+ call DisplayTextID
+ xor a
+ ld [wPlayerMovingDirection], a
+ ld a, SAFARI_ZONE_GATE
+ ld [hWarpDestinationMap], a
+ ld a, $3
+ ld [wDestinationWarpID], a
+ ld a, $5
+ ld [wSafariZoneGateCurScript], a
+ SetEvent EVENT_SAFARI_GAME_OVER
+ ld a, 1
+ ld [wSafariZoneGameOver], a
+ ret
+
+PrintSafariGameOverText::
+ xor a
+ ld [wJoyIgnore], a
+ ld hl, SafariGameOverText
+ jp PrintText
+
+SafariGameOverText:
+ TX_ASM
+ ld a, [wNumSafariBalls]
+ and a
+ jr z, .noMoreSafariBalls
+ ld hl, TimesUpText
+ call PrintText
+.noMoreSafariBalls
+ ld hl, GameOverText
+ call PrintText
+ jp TextScriptEnd
+
+TimesUpText:
+ TX_FAR _TimesUpText
+ db "@"
+
+GameOverText:
+ TX_FAR _GameOverText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/school_blackboard.asm
@@ -1,0 +1,222 @@
+PrintBlackboardLinkCableText:
+ call EnableAutoTextBoxDrawing
+ ld a, $1
+ ld [wDoNotWaitForButtonPressAfterDisplayingText], a
+ ld a, [wHiddenObjectFunctionArgument]
+ call PrintPredefTextID
+ ret
+
+LinkCableHelp::
+ TX_ASM
+ call SaveScreenTilesToBuffer1
+ ld hl, LinkCableHelpText1
+ call PrintText
+ xor a
+ ld [wMenuItemOffset], a ; not used
+ ld [wCurrentMenuItem], a
+ ld [wLastMenuItem], a
+ ld a, A_BUTTON | B_BUTTON
+ ld [wMenuWatchedKeys], a
+ ld a, 3
+ ld [wMaxMenuItem], a
+ ld a, 2
+ ld [wTopMenuItemY], a
+ ld a, 1
+ ld [wTopMenuItemX], a
+.linkHelpLoop
+ ld hl, wd730
+ set 6, [hl]
+ coord hl, 0, 0
+ ld b, 8
+ ld c, 13
+ call TextBoxBorder
+ coord hl, 2, 2
+ ld de, HowToLinkText
+ call PlaceString
+ ld hl, LinkCableHelpText2
+ call PrintText
+ call HandleMenuInput
+ bit 1, a ; pressed b
+ jr nz, .exit
+ ld a, [wCurrentMenuItem]
+ cp 3 ; pressed a on "STOP READING"
+ jr z, .exit
+ ld hl, wd730
+ res 6, [hl]
+ ld hl, LinkCableInfoTexts
+ add a
+ ld d, 0
+ ld e, a
+ add hl, de
+ ld a, [hli]
+ ld h, [hl]
+ ld l, a
+ call PrintText
+ jp .linkHelpLoop
+.exit
+ ld hl, wd730
+ res 6, [hl]
+ call LoadScreenTilesFromBuffer1
+ jp TextScriptEnd
+
+LinkCableHelpText1:
+ TX_FAR _LinkCableHelpText1
+ db "@"
+
+LinkCableHelpText2:
+ TX_FAR _LinkCableHelpText2
+ db "@"
+
+HowToLinkText:
+ db "HOW TO LINK"
+ next "COLOSSEUM"
+ next "TRADE CENTER"
+ next "STOP READING@"
+
+LinkCableInfoTexts:
+ dw LinkCableInfoText1
+ dw LinkCableInfoText2
+ dw LinkCableInfoText3
+
+LinkCableInfoText1:
+ TX_FAR _LinkCableInfoText1
+ db "@"
+
+LinkCableInfoText2:
+ TX_FAR _LinkCableInfoText2
+ db "@"
+
+LinkCableInfoText3:
+ TX_FAR _LinkCableInfoText3
+ db "@"
+
+ViridianSchoolBlackboard::
+ TX_ASM
+ call SaveScreenTilesToBuffer1
+ ld hl, ViridianSchoolBlackboardText1
+ call PrintText
+ xor a
+ ld [wMenuItemOffset], a
+ ld [wCurrentMenuItem], a
+ ld [wLastMenuItem], a
+ ld a, D_LEFT | D_RIGHT | A_BUTTON | B_BUTTON
+ ld [wMenuWatchedKeys], a
+ ld a, 2
+ ld [wMaxMenuItem], a
+ ld a, 2
+ ld [wTopMenuItemY], a
+ ld a, 1
+ ld [wTopMenuItemX], a
+.blackboardLoop
+ ld hl, wd730
+ set 6, [hl]
+ coord hl, 0, 0
+ lb bc, 6, 10
+ call TextBoxBorder
+ coord hl, 1, 2
+ ld de, StatusAilmentText1
+ call PlaceString
+ coord hl, 6, 2
+ ld de, StatusAilmentText2
+ call PlaceString
+ ld hl, ViridianSchoolBlackboardText2
+ call PrintText
+ call HandleMenuInput ; pressing up and down is handled in here
+ bit 1, a ; pressed b
+ jr nz, .exitBlackboard
+ bit 4, a ; pressed right
+ jr z, .didNotPressRight
+ ; move cursor to right column
+ ld a, 2
+ ld [wMaxMenuItem], a
+ ld a, 2
+ ld [wTopMenuItemY], a
+ ld a, 6
+ ld [wTopMenuItemX], a
+ ld a, 3 ; in the the right column, use an offset to prevent overlap
+ ld [wMenuItemOffset], a
+ jr .blackboardLoop
+.didNotPressRight
+ bit 5, a ; pressed left
+ jr z, .didNotPressLeftOrRight
+ ; move cursor to left column
+ ld a, 2
+ ld [wMaxMenuItem], a
+ ld a, 2
+ ld [wTopMenuItemY], a
+ ld a, 1
+ ld [wTopMenuItemX], a
+ xor a
+ ld [wMenuItemOffset], a
+ jr .blackboardLoop
+.didNotPressLeftOrRight
+ ld a, [wCurrentMenuItem]
+ ld b, a
+ ld a, [wMenuItemOffset]
+ add b
+ cp 5 ; cursor is pointing to "QUIT"
+ jr z, .exitBlackboard
+ ; we must have pressed a on a status condition
+ ; so print the text
+ ld hl, wd730
+ res 6, [hl]
+ ld hl, ViridianBlackboardStatusPointers
+ add a
+ ld d, 0
+ ld e, a
+ add hl, de
+ ld a, [hli]
+ ld h, [hl]
+ ld l, a
+ call PrintText
+ jp .blackboardLoop
+.exitBlackboard
+ ld hl, wd730
+ res 6, [hl]
+ call LoadScreenTilesFromBuffer1
+ jp TextScriptEnd
+
+ViridianSchoolBlackboardText1:
+ TX_FAR _ViridianSchoolBlackboardText1
+ db "@"
+
+ViridianSchoolBlackboardText2:
+ TX_FAR _ViridianSchoolBlackboardText2
+ db "@"
+
+StatusAilmentText1:
+ db " SLP"
+ next " PSN"
+ next " PAR@"
+
+StatusAilmentText2:
+ db " BRN"
+ next " FRZ"
+ next " QUIT@@"
+
+ViridianBlackboardStatusPointers:
+ dw ViridianBlackboardSleepText
+ dw ViridianBlackboardPoisonText
+ dw ViridianBlackboardPrlzText
+ dw ViridianBlackboardBurnText
+ dw ViridianBlackboardFrozenText
+
+ViridianBlackboardSleepText:
+ TX_FAR _ViridianBlackboardSleepText
+ db "@"
+
+ViridianBlackboardPoisonText:
+ TX_FAR _ViridianBlackboardPoisonText
+ db "@"
+
+ViridianBlackboardPrlzText:
+ TX_FAR _ViridianBlackboardPrlzText
+ db "@"
+
+ViridianBlackboardBurnText:
+ TX_FAR _ViridianBlackboardBurnText
+ db "@"
+
+ViridianBlackboardFrozenText:
+ TX_FAR _ViridianBlackboardFrozenText
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/school_notebooks.asm
@@ -1,0 +1,65 @@
+PrintNotebookText:
+ call EnableAutoTextBoxDrawing
+ ld a, $1
+ ld [wDoNotWaitForButtonPressAfterDisplayingText], a
+ ld a, [wHiddenObjectFunctionArgument]
+ jp PrintPredefTextID
+
+TMNotebook::
+ TX_FAR TMNotebookText
+ TX_WAIT
+ db "@"
+
+ViridianSchoolNotebook::
+ TX_ASM
+ ld hl, ViridianSchoolNotebookText1
+ call PrintText
+ call TurnPageSchoolNotebook
+ jr nz, .doneReading
+ ld hl, ViridianSchoolNotebookText2
+ call PrintText
+ call TurnPageSchoolNotebook
+ jr nz, .doneReading
+ ld hl, ViridianSchoolNotebookText3
+ call PrintText
+ call TurnPageSchoolNotebook
+ jr nz, .doneReading
+ ld hl, ViridianSchoolNotebookText4
+ call PrintText
+ ld hl, ViridianSchoolNotebookText5
+ call PrintText
+.doneReading
+ jp TextScriptEnd
+
+TurnPageSchoolNotebook:
+ ld hl, TurnPageText
+ call PrintText
+ call YesNoChoice
+ ld a, [wCurrentMenuItem]
+ and a
+ ret
+
+TurnPageText:
+ TX_FAR _TurnPageText
+ db "@"
+
+ViridianSchoolNotebookText5:
+ TX_FAR _ViridianSchoolNotebookText5
+ TX_WAIT
+ db "@"
+
+ViridianSchoolNotebookText1:
+ TX_FAR _ViridianSchoolNotebookText1
+ db "@"
+
+ViridianSchoolNotebookText2:
+ TX_FAR _ViridianSchoolNotebookText2
+ db "@"
+
+ViridianSchoolNotebookText3:
+ TX_FAR _ViridianSchoolNotebookText3
+ db "@"
+
+ViridianSchoolNotebookText4:
+ TX_FAR _ViridianSchoolNotebookText4
+ db "@"
--- /dev/null
+++ b/engine/events/hidden_objects/town_map.asm
@@ -1,0 +1,22 @@
+TownMapText::
+ TX_FAR _TownMapText
+ TX_BLINK
+ TX_ASM
+ ld a, $1
+ ld [wDoNotWaitForButtonPressAfterDisplayingText], a
+ ld hl, wd730
+ set 6, [hl]
+ call GBPalWhiteOutWithDelay3
+ xor a
+ ld [hWY], a
+ inc a
+ ld [hAutoBGTransferEnabled], a
+ call LoadFontTilePatterns
+ callba DisplayTownMap
+ ld hl, wd730
+ res 6, [hl]
+ ld de, TextScriptEnd
+ push de
+ ld a, [hLoadedROMBank]
+ push af
+ jp CloseTextDisplay
--- /dev/null
+++ b/engine/events/hidden_objects/vermilion_gym_trash.asm
@@ -1,0 +1,169 @@
+PrintTrashText:
+ call EnableAutoTextBoxDrawing
+ tx_pre_jump VermilionGymTrashText
+
+VermilionGymTrashText::
+ TX_FAR _VermilionGymTrashText
+ db "@"
+
+GymTrashScript:
+ call EnableAutoTextBoxDrawing
+ ld a, [wHiddenObjectFunctionArgument]
+ ld [wGymTrashCanIndex], a
+
+; Don't do the trash can puzzle if it's already been done.
+ CheckEvent EVENT_2ND_LOCK_OPENED
+ jr z, .ok
+
+ tx_pre_jump VermilionGymTrashText
+
+.ok
+ CheckEventReuseA EVENT_1ST_LOCK_OPENED
+ jr nz, .trySecondLock
+
+ ld a, [wFirstLockTrashCanIndex]
+ ld b, a
+ ld a, [wGymTrashCanIndex]
+ cp b
+ jr z, .openFirstLock
+
+ tx_pre_id VermilionGymTrashText
+ jr .done
+
+.openFirstLock
+; Next can is trying for the second switch.
+ SetEvent EVENT_1ST_LOCK_OPENED
+
+ ld hl, GymTrashCans
+ ld a, [wGymTrashCanIndex]
+ ; * 5
+ ld b, a
+ add a
+ add a
+ add b
+
+ ld d, 0
+ ld e, a
+ add hl, de
+ ld a, [hli]
+
+; There is a bug in this code. It should calculate a value in the range [0, 3]
+; but if the mask and random number don't have any 1 bits in common, then
+; the result of the AND will be 0. When 1 is subtracted from that, the value
+; will become $ff. This will result in 255 being added to hl, which will cause
+; hl to point to one of the zero bytes that pad the end of the ROM bank.
+; Trash can 0 was intended to be able to have the second lock only when the
+; first lock was in trash can 1 or 3. However, due to this bug, trash can 0 can
+; have the second lock regardless of which trash can had the first lock.
+
+ ld [hGymTrashCanRandNumMask], a
+ push hl
+ call Random
+ swap a
+ ld b, a
+ ld a, [hGymTrashCanRandNumMask]
+ and b
+ dec a
+ pop hl
+
+ ld d, 0
+ ld e, a
+ add hl, de
+ ld a, [hl]
+ and $f
+ ld [wSecondLockTrashCanIndex], a
+
+ tx_pre_id VermilionGymTrashSuccessText1
+ jr .done
+
+.trySecondLock
+ ld a, [wSecondLockTrashCanIndex]
+ ld b, a
+ ld a, [wGymTrashCanIndex]
+ cp b
+ jr z, .openSecondLock
+
+; Reset the cans.
+ ResetEvent EVENT_1ST_LOCK_OPENED
+ call Random
+
+ and $e
+ ld [wFirstLockTrashCanIndex], a
+
+ tx_pre_id VermilionGymTrashFailText
+ jr .done
+
+.openSecondLock
+; Completed the trash can puzzle.
+ SetEvent EVENT_2ND_LOCK_OPENED
+ ld hl, wCurrentMapScriptFlags
+ set 6, [hl]
+
+ tx_pre_id VermilionGymTrashSuccessText3
+
+.done
+ jp PrintPredefTextID
+
+GymTrashCans:
+; byte 0: mask for random number
+; bytes 1-4: indices of the trash cans that can have the second lock
+; (but see the comment above explaining a bug regarding this)
+; Note that the mask is simply the number of valid trash can indices that
+; follow. The remaining bytes are filled with 0 to pad the length of each entry
+; to 5 bytes.
+ db 2, 1, 3, 0, 0 ; 0
+ db 3, 0, 2, 4, 0 ; 1
+ db 2, 1, 5, 0, 0 ; 2
+ db 3, 0, 4, 6, 0 ; 3
+ db 4, 1, 3, 5, 7 ; 4
+ db 3, 2, 4, 8, 0 ; 5
+ db 3, 3, 7, 9, 0 ; 6
+ db 4, 4, 6, 8, 10 ; 7
+ db 3, 5, 7, 11, 0 ; 8
+ db 3, 6, 10, 12, 0 ; 9
+ db 4, 7, 9, 11, 13 ; 10
+ db 3, 8, 10, 14, 0 ; 11
+ db 2, 9, 13, 0, 0 ; 12
+ db 3, 10, 12, 14, 0 ; 13
+ db 2, 11, 13, 0, 0 ; 14
+
+VermilionGymTrashSuccessText1::
+ TX_FAR _VermilionGymTrashSuccessText1
+ TX_ASM
+ call WaitForSoundToFinish
+ ld a, SFX_SWITCH
+ call PlaySound
+ call WaitForSoundToFinish
+ jp TextScriptEnd
+
+; unused
+VermilionGymTrashSuccessText2::
+ TX_FAR _VermilionGymTrashSuccessText2
+ db "@"
+
+; unused
+VermilionGymTrashSuccesPlaySfx:
+ TX_ASM
+ call WaitForSoundToFinish
+ ld a, SFX_SWITCH
+ call PlaySound
+ call WaitForSoundToFinish
+ jp TextScriptEnd
+
+VermilionGymTrashSuccessText3::
+ TX_FAR _VermilionGymTrashSuccessText3
+ TX_ASM
+ call WaitForSoundToFinish
+ ld a, SFX_GO_INSIDE
+ call PlaySound
+ call WaitForSoundToFinish
+ jp TextScriptEnd
+
+VermilionGymTrashFailText::
+ TX_FAR _VermilionGymTrashFailText
+ TX_ASM
+ call WaitForSoundToFinish
+ ld a, SFX_DENIED
+ call PlaySound
+ call WaitForSoundToFinish
+ jp TextScriptEnd
--- a/engine/events/in_game_trades.asm
+++ b/engine/events/in_game_trades.asm
@@ -84,7 +84,7 @@
ld bc, NAME_LENGTH
jp CopyData
-INCLUDE "data/trades.asm"
+INCLUDE "data/events/trades.asm"
InGameTrade_DoTrade:
xor a ; NORMAL_PARTY_MENU
--- a/engine/events/pick_up_item.asm
+++ b/engine/events/pick_up_item.asm
@@ -15,7 +15,7 @@
.isMissable
ld a, [hl]
- ld [$ffdb], a
+ ld [hMissableObjectIndex], a
ld hl, wMapSpriteExtraData
ld a, [hSpriteIndexOrTextID]
@@ -30,7 +30,7 @@
call GiveItem
jr nc, .BagFull
- ld a, [$ffdb]
+ ld a, [hMissableObjectIndex]
ld [wMissableObjectIndex], a
predef HideObject
ld a, 1
--- a/engine/events/prize_menu.asm
+++ b/engine/events/prize_menu.asm
@@ -131,10 +131,8 @@
coord hl, 13, 5
; reg. c:
; [low nybble] number of bytes
-; [bit 765 = %100] space-padding (not zero-padding)
+; [bits 765 = %100] space-padding (not zero-padding)
ld c, (1 << 7 | 2)
-; Function $15CD displays BCD value (same routine
-; used by text-command $02)
call PrintBCDNumber
ld de, wPrize2Price
coord hl, 13, 7
@@ -145,7 +143,7 @@
ld c, (1 << 7 | 2)
jp PrintBCDNumber
-INCLUDE "data/prizes.asm"
+INCLUDE "data/events/prizes.asm"
PrintPrizePrice:
coord hl, 11, 0
@@ -303,4 +301,4 @@
ld [wCurEnemyLVL], a
ret
-INCLUDE "data/prize_mon_levels.asm"
+INCLUDE "data/events/prize_mon_levels.asm"
--- a/engine/events/saffron_guards.asm
+++ b/engine/events/saffron_guards.asm
@@ -2,7 +2,7 @@
ld hl, GuardDrinksList
.drinkLoop
ld a, [hli]
- ld [$ffdb], a
+ ld [hItemToRemoveID], a
and a
ret z
push hl
@@ -12,4 +12,4 @@
jr z, .drinkLoop
jpba RemoveItemByID
-INCLUDE "data/guard_drink_items.asm"
+INCLUDE "data/items/guard_drink_items.asm"
--- a/engine/events/set_blackout_map.asm
+++ b/engine/events/set_blackout_map.asm
@@ -22,4 +22,4 @@
pop hl
ret
-INCLUDE "data/rest_house_maps.asm"
+INCLUDE "data/maps/rest_house_maps.asm"
--- a/engine/events/vending_machine.asm
+++ b/engine/events/vending_machine.asm
@@ -130,4 +130,4 @@
ld [hVendingMachinePrice + 2], a
ret
-INCLUDE "data/vending_prices.asm"
+INCLUDE "data/items/vending_prices.asm"
--- a/engine/gfx/hp_bar.asm
+++ b/engine/gfx/hp_bar.asm
@@ -6,7 +6,7 @@
GetHPBarLength:
push hl
xor a
- ld hl, H_MULTIPLICAND
+ ld hl, hMultiplicand
ld [hli], a
ld a, b
ld [hli], a
@@ -21,22 +21,22 @@
rr e
srl d
rr e
- ld a, [H_MULTIPLICAND+1]
+ ld a, [hMultiplicand+1]
ld b, a
- ld a, [H_MULTIPLICAND+2]
+ ld a, [hMultiplicand+2]
srl b ; divide multiplication result as well
rr a
srl b
rr a
- ld [H_MULTIPLICAND+2], a
+ ld [hMultiplicand+2], a
ld a, b
- ld [H_MULTIPLICAND+1], a
+ ld [hMultiplicand+1], a
.maxHPSmaller256
ld a, e
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
- ld a, [H_MULTIPLICAND+2]
+ ld a, [hMultiplicand+2]
ld e, a ; e = bc * 48 / de (num of pixels of HP bar)
pop hl
and a
@@ -213,7 +213,7 @@
ld a, [wHPBarOldHP + 1]
ld [wHPBarTempHP], a
push hl
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
bit 0, a
jr z, .asm_fb15
ld de, $9
--- a/engine/gfx/mon_icons.asm
+++ b/engine/gfx/mon_icons.asm
@@ -162,7 +162,7 @@
jr nz, .loop
jp EnableLCD
-INCLUDE "data/mon_party_sprite_pointers.asm"
+INCLUDE "data/icon_pointers.asm"
WriteMonPartySpriteOAMByPartyIndex:
; Write OAM blocks for the party mon in [hPartyMonIndex].
@@ -278,7 +278,7 @@
srl a
ret
-INCLUDE "data/mon_party_sprites.asm"
+INCLUDE "data/pokemon/menu_icons.asm"
INC_FRAME_1 EQUS "0, $20"
INC_FRAME_2 EQUS "$20, $20"
--- a/engine/gfx/oam_dma.asm
+++ b/engine/gfx/oam_dma.asm
@@ -1,12 +1,12 @@
WriteDMACodeToHRAM::
; Since no other memory is available during OAM DMA,
; DMARoutine is copied to HRAM and executed there.
- ld c, $ff80 % $100
+ ld c, hDMARoutine % $100
ld b, DMARoutineEnd - DMARoutine
ld hl, DMARoutine
.copy
ld a, [hli]
- ld [$ff00+c], a
+ ldh [c], a
inc c
dec b
jr nz, .copy
--- a/engine/gfx/palettes.asm
+++ b/engine/gfx/palettes.asm
@@ -1,11 +1,11 @@
_RunPaletteCommand:
call GetPredefRegisters
ld a, b
- cp $ff
- jr nz, .next
- ld a, [wDefaultPaletteCommand] ; use default command if command ID is $ff
-.next
- cp UPDATE_PARTY_MENU_BLK_PACKET
+ cp SET_PAL_DEFAULT
+ jr nz, .not_default
+ ld a, [wDefaultPaletteCommand]
+.not_default
+ cp SET_PAL_PARTY_MENU_HP_BARS
jp z, UpdatePartyMenuBlkPacket
ld l, a
ld h, 0
@@ -632,10 +632,10 @@
jr nz, .tileLoop
ret
-INCLUDE "data/sgb_packets.asm"
+INCLUDE "data/sgb/sgb_packets.asm"
-INCLUDE "data/mon_palettes.asm"
+INCLUDE "data/pokemon/palettes.asm"
-INCLUDE "data/super_palettes.asm"
+INCLUDE "data/sgb/sgb_palettes.asm"
-INCLUDE "data/sgb_border.asm"
+INCLUDE "data/sgb/sgb_border.asm"
--- a/engine/gfx/screen_effects.asm
+++ b/engine/gfx/screen_effects.asm
@@ -19,7 +19,7 @@
ld [wDisableVBlankWYUpdate], a
xor a
.loop
- ld [$ff96], a
+ ld [hMutateWY], a
call .MutateWY
call .MutateWY
dec b
@@ -30,9 +30,9 @@
ret
.MutateWY
- ld a, [$ff96]
+ ld a, [hMutateWY]
xor b
- ld [$ff96], a
+ ld [hMutateWY], a
ld [rWY], a
ld c, 3
jp DelayFrames
@@ -43,7 +43,7 @@
call GetPredefRegisters
xor a
.loop
- ld [$ff97], a
+ ld [hMutateWX], a
call .MutateWX
ld c, 1
call DelayFrames
@@ -58,9 +58,9 @@
ret
.MutateWX
- ld a, [$ff97]
+ ld a, [hMutateWX]
xor b
- ld [$ff97], a
+ ld [hMutateWX], a
bit 7, a
jr z, .skipZeroing
xor a ; zero a if it's negative
--- a/engine/items/item_effects.asm
+++ b/engine/items/item_effects.asm
@@ -239,14 +239,14 @@
; Calculate MaxHP * 255.
xor a
- ld [H_MULTIPLICAND], a
+ ld [hMultiplicand], a
ld hl, wEnemyMonMaxHP
ld a, [hli]
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand + 1], a
ld a, [hl]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, 255
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
; Determine BallFactor. It's 8 for Great Balls and 12 for the others.
@@ -260,7 +260,7 @@
; Note that the results of all division operations are floored.
; Calculate (MaxHP * 255) / BallFactor.
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 4 ; number of bytes in dividend
call Divide
@@ -281,17 +281,17 @@
.skip2
; Let W = ((MaxHP * 255) / BallFactor) / max(HP / 4, 1). Calculate W.
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 4
call Divide
-; If W > 255, store 255 in [H_QUOTIENT + 3].
-; Let X = min(W, 255) = [H_QUOTIENT + 3].
- ld a, [H_QUOTIENT + 2]
+; If W > 255, store 255 in [hQuotient + 3].
+; Let X = min(W, 255) = [hQuotient + 3].
+ ld a, [hQuotient + 2]
and a
jr z, .skip3
ld a, 255
- ld [H_QUOTIENT + 3], a
+ ld [hQuotient + 3], a
.skip3
pop bc ; b = Rand1 - Status
@@ -302,7 +302,7 @@
jr c, .failedToCapture
; If W > 255, the ball captures the Pokémon.
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
and a
jr nz, .captured
@@ -310,7 +310,7 @@
; If Rand2 > X, the ball fails to capture the Pokémon.
ld b, a
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
cp b
jr c, .failedToCapture
@@ -318,17 +318,17 @@
jr .skipShakeCalculations
.failedToCapture
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
ld [wPokeBallCaptureCalcTemp], a ; Save X.
; Calculate CatchRate * 100.
xor a
- ld [H_MULTIPLICAND], a
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand], a
+ ld [hMultiplicand + 1], a
ld a, [wEnemyMonActualCatchRate]
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, 100
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
; Determine BallFactor2.
@@ -349,7 +349,7 @@
.skip4
; Let Y = (CatchRate * 100) / BallFactor2. Calculate Y.
ld a, b
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 4
call Divide
@@ -356,7 +356,7 @@
; If Y > 255, there are 3 shakes.
; Note that this shouldn't be possible.
; The maximum value of Y is (255 * 100) / 150 = 170.
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
and a
ld b, $63 ; 3 shakes
jr nz, .setAnimData
@@ -363,12 +363,12 @@
; Calculate X * Y.
ld a, [wPokeBallCaptureCalcTemp]
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
; Calculate (X * Y) / 255.
ld a, 255
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 4
call Divide
@@ -386,19 +386,19 @@
.addAilmentValue
; If the Pokémon has a status ailment, add Status2.
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
add b
- ld [H_QUOTIENT + 3], a
+ ld [hQuotient + 3], a
.skip5
; Finally determine the number of shakes.
-; Let Z = ((X * Y) / 255) + Status2 = [H_QUOTIENT + 3].
+; Let Z = ((X * Y) / 255) + Status2 = [hQuotient + 3].
; The number of shakes depend on the range Z is in.
; 0 ≤ Z < 10: 0 shakes (the ball misses)
; 10 ≤ Z < 30: 1 shake
; 30 ≤ Z < 70: 2 shakes
; 70 ≤ Z: 3 shakes
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
cp 10
ld b, $20
jr c, .setAnimData
@@ -422,7 +422,7 @@
ld a, TOSS_ANIM
ld [wAnimationID], a
xor a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld [wAnimationType], a
ld [wDamageMultipliers], a
ld a, [wWhichPokemon]
@@ -1018,18 +1018,18 @@
call AddNTimes
ld a, [hli]
ld [wHPBarMaxHP + 1], a
- ld [H_DIVIDEND], a
+ ld [hDividend], a
ld a, [hl]
ld [wHPBarMaxHP], a
- ld [H_DIVIDEND + 1], a
+ ld [hDividend + 1], a
ld a, 5
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 2 ; number of bytes
call Divide ; get 1/5 of max HP of pokemon that used Softboiled
ld bc, (wPartyMon1HP + 1) - (wPartyMon1MaxHP + 1)
add hl, bc ; hl now points to LSB of current HP of pokemon that used Softboiled
; subtract 1/5 of max HP from current HP of pokemon that used Softboiled
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
push af
ld b, a
ld a, [hl]
@@ -1037,7 +1037,7 @@
sub b
ld [hld], a
ld [wHPBarNewHP], a
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
ld b, a
ld a, [hl]
ld [wHPBarOldHP+1], a
@@ -1050,15 +1050,15 @@
call AddNTimes ; calculate coordinates of HP bar of pokemon that used Softboiled
ld a, SFX_HEAL_HP
call PlaySoundWaitForCurrent
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
set 0, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
ld a, $02
ld [wHPBarType], a
predef UpdateHPBar2 ; animate HP bar decrease of pokemon that used Softboiled
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
res 0, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
pop af
ld b, a ; store heal amount (1/5 of max HP)
ld hl, wHPBarOldHP + 1
@@ -1200,15 +1200,15 @@
jr z, .playStatusAilmentCuringSound
ld a, SFX_HEAL_HP
call PlaySoundWaitForCurrent
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
set 0, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
ld a, $02
ld [wHPBarType], a
predef UpdateHPBar2 ; animate the HP bar lengthening
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
res 0, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
ld a, REVIVE_MSG
ld [wPartyMenuTypeOrMessageID], a
ld a, [wcf91]
@@ -1224,13 +1224,13 @@
call PlaySoundWaitForCurrent
.showHealingItemMessage
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearScreen
dec a
ld [wUpdateSpritesEnabled], a
call RedrawPartyMenu ; redraws the party menu and displays the message
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld c, 50
call DelayFrames
call WaitForTextScrollButtonPress
@@ -1341,7 +1341,7 @@
push hl
push de
ld d, a
- callab CalcExperience ; calculate experience for next level and store it at $ff96
+ callab CalcExperience ; calculate experience for next level and store it at hExperience
pop de
pop hl
ld bc, wPartyMon1Exp - wPartyMon1Level
@@ -1459,7 +1459,7 @@
ld [wAnimationID], a
xor a
ld [wAnimationType], a
- ld [H_WHOSETURN], a
+ ld [hWhoseTurn], a
ld [de], a ; zero escape factor (for bait), zero bait factor (for rock)
.randomLoop ; loop until a random number less than 5 is generated
call Random
@@ -1698,7 +1698,7 @@
call LoadScreenTilesFromBuffer1 ; restore saved screen
call Delay3
xor a
- ld [H_WHOSETURN], a ; set turn to player's turn
+ ld [hWhoseTurn], a ; set turn to player's turn
callba StatModifierUpEffect ; do stat increase move
pop hl
pop af
@@ -1844,8 +1844,8 @@
and a
jr nz, .done
; play out-of-battle pokeflute music
- ld a, $ff
- call PlaySound ; turn off music
+ ld a, SFX_STOP_ALL_MUSIC
+ call PlaySound
ld a, SFX_POKEFLUTE
ld c, BANK(SFX_Pokeflute)
call PlayMusic
@@ -1901,7 +1901,7 @@
xor 1
jr RodResponse
-INCLUDE "data/good_rod.asm"
+INCLUDE "data/wild/good_rod.asm"
ItemUseSuperRod:
call FishingInit
@@ -2463,13 +2463,13 @@
AddBonusPP:
push bc
ld a, [de] ; normal max PP of move
- ld [H_DIVIDEND + 3], a
+ ld [hDividend + 3], a
xor a
- ld [H_DIVIDEND], a
- ld [H_DIVIDEND + 1], a
- ld [H_DIVIDEND + 2], a
+ ld [hDividend], a
+ ld [hDividend + 1], a
+ ld [hDividend + 2], a
ld a, 5
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 4
call Divide
ld a, [hl] ; move PP
@@ -2480,7 +2480,7 @@
srl a
ld c, a ; c = number of PP Ups used
.loop
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
cp 8 ; is the amount greater than or equal to 8?
jr c, .addAmount
ld a, 7 ; cap the amount at 7
@@ -2686,7 +2686,7 @@
ld [wIsKeyItem], a
ret
-INCLUDE "data/key_items.asm"
+INCLUDE "data/items/key_items.asm"
SendNewMonToBox:
ld de, wNumInBox
@@ -2881,7 +2881,7 @@
and a
ret
-INCLUDE "data/water_tilesets.asm"
+INCLUDE "data/tilesets/water_tilesets.asm"
ReadSuperRodData:
; return e = 2 if no fish on this map
@@ -2928,7 +2928,7 @@
ld e, $1 ; $1 if there's a bite
ret
-INCLUDE "data/super_rod.asm"
+INCLUDE "data/wild/super_rod.asm"
; reloads map view and processes sprite data
; for items that cause the overworld to be displayed
--- a/engine/items/tm_prices.asm
+++ b/engine/items/tm_prices.asm
@@ -22,4 +22,4 @@
ld [hItemPrice + 2], a
ret
-INCLUDE "data/tm_prices.asm"
+INCLUDE "data/items/tm_prices.asm"
--- a/engine/items/tms.asm
+++ b/engine/items/tms.asm
@@ -33,4 +33,4 @@
ld [wd11e], a
ret
-INCLUDE "data/tms.asm"
+INCLUDE "data/moves/tmhm_moves.asm"
--- a/engine/items/town_map.asm
+++ b/engine/items/town_map.asm
@@ -103,7 +103,7 @@
ld [wWhichTownMapLocation], a
jp .townMapLoop
-INCLUDE "data/town_map_order.asm"
+INCLUDE "data/maps/town_map_order.asm"
TownMapCursor:
INCBIN "gfx/town_map/town_map_cursor.1bpp"
@@ -581,9 +581,9 @@
ld l, a
ret
-INCLUDE "data/town_map_entries.asm"
+INCLUDE "data/maps/town_map_entries.asm"
-INCLUDE "text/map_names.asm"
+INCLUDE "data/maps/names.asm"
MonNestIcon:
INCBIN "gfx/town_map/mon_nest_icon.1bpp"
--- a/engine/link/cable_club.asm
+++ b/engine/link/cable_club.asm
@@ -139,7 +139,7 @@
call Serial_ExchangeBytes
ld a, (1 << SERIAL) | (1 << TIMER) | (1 << VBLANK)
ld [rIE], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
call PlaySound
ld a, [hSerialConnectionStatus]
cp USING_INTERNAL_CLOCK
@@ -261,7 +261,7 @@
ld [wUnusedCF8D + 1], a
xor a
ld [wTradeCenterPointerTableIndex], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
call PlaySound
ld a, [hSerialConnectionStatus]
cp USING_INTERNAL_CLOCK
@@ -338,10 +338,10 @@
ld a, 1
ld [wTopMenuItemX], a
.enemyMonMenu_HandleInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
set 1, [hl]
call HandleMenuInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
res 1, [hl]
and a
jp z, .getNewInput
@@ -403,10 +403,10 @@
lb bc, 6, 1
call ClearScreenArea
.playerMonMenu_HandleInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
set 1, [hl]
call HandleMenuInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
res 1, [hl]
and a ; was anything pressed?
jr nz, .playerMonMenu_SomethingPressed
@@ -663,7 +663,7 @@
push de
push hl
ld a, c
- ld [$ff95], a
+ ld [hPastLeadingZeros], a
call GetMonName
pop hl
call PlaceString
@@ -903,7 +903,7 @@
ld [wTilesetGfxPtr + 1], a
ld a, l
ld [wTilesetGfxPtr], a
- ld a, Bank(Club_GFX)
+ ld a, BANK(Club_GFX)
ld [wTilesetBank], a
ld hl, Club_Coll
ld a, h
--- a/engine/math/multiply_divide.asm
+++ b/engine/math/multiply_divide.asm
@@ -2,120 +2,120 @@
ld a, $8
ld b, a
xor a
- ld [H_PRODUCT], a
- ld [H_MULTIPLYBUFFER], a
- ld [H_MULTIPLYBUFFER+1], a
- ld [H_MULTIPLYBUFFER+2], a
- ld [H_MULTIPLYBUFFER+3], a
+ ld [hProduct], a
+ ld [hMultiplyBuffer], a
+ ld [hMultiplyBuffer+1], a
+ ld [hMultiplyBuffer+2], a
+ ld [hMultiplyBuffer+3], a
.loop
- ld a, [H_MULTIPLIER]
+ ld a, [hMultiplier]
srl a
- ld [H_MULTIPLIER], a ; (aliases: H_DIVISOR, H_MULTIPLIER, H_POWEROFTEN)
+ ld [hMultiplier], a ; (aliases: hDivisor, hMultiplier, hPowerOf10)
jr nc, .smallMultiplier
- ld a, [H_MULTIPLYBUFFER+3]
+ ld a, [hMultiplyBuffer+3]
ld c, a
- ld a, [H_MULTIPLICAND+2]
+ ld a, [hMultiplicand+2]
add c
- ld [H_MULTIPLYBUFFER+3], a
- ld a, [H_MULTIPLYBUFFER+2]
+ ld [hMultiplyBuffer+3], a
+ ld a, [hMultiplyBuffer+2]
ld c, a
- ld a, [H_MULTIPLICAND+1]
+ ld a, [hMultiplicand+1]
adc c
- ld [H_MULTIPLYBUFFER+2], a
- ld a, [H_MULTIPLYBUFFER+1]
+ ld [hMultiplyBuffer+2], a
+ ld a, [hMultiplyBuffer+1]
ld c, a
- ld a, [H_MULTIPLICAND] ; (aliases: H_MULTIPLICAND)
+ ld a, [hMultiplicand] ; (aliases: hMultiplicand)
adc c
- ld [H_MULTIPLYBUFFER+1], a
- ld a, [H_MULTIPLYBUFFER]
+ ld [hMultiplyBuffer+1], a
+ ld a, [hMultiplyBuffer]
ld c, a
- ld a, [H_PRODUCT] ; (aliases: H_PRODUCT, H_PASTLEADINGZEROES, H_QUOTIENT)
+ ld a, [hProduct] ; (aliases: hProduct, hPastLeadingZeros, hQuotient)
adc c
- ld [H_MULTIPLYBUFFER], a
+ ld [hMultiplyBuffer], a
.smallMultiplier
dec b
jr z, .done
- ld a, [H_MULTIPLICAND+2]
+ ld a, [hMultiplicand+2]
sla a
- ld [H_MULTIPLICAND+2], a
- ld a, [H_MULTIPLICAND+1]
+ ld [hMultiplicand+2], a
+ ld a, [hMultiplicand+1]
rl a
- ld [H_MULTIPLICAND+1], a
- ld a, [H_MULTIPLICAND]
+ ld [hMultiplicand+1], a
+ ld a, [hMultiplicand]
rl a
- ld [H_MULTIPLICAND], a
- ld a, [H_PRODUCT]
+ ld [hMultiplicand], a
+ ld a, [hProduct]
rl a
- ld [H_PRODUCT], a
+ ld [hProduct], a
jr .loop
.done
- ld a, [H_MULTIPLYBUFFER+3]
- ld [H_PRODUCT+3], a
- ld a, [H_MULTIPLYBUFFER+2]
- ld [H_PRODUCT+2], a
- ld a, [H_MULTIPLYBUFFER+1]
- ld [H_PRODUCT+1], a
- ld a, [H_MULTIPLYBUFFER]
- ld [H_PRODUCT], a
+ ld a, [hMultiplyBuffer+3]
+ ld [hProduct+3], a
+ ld a, [hMultiplyBuffer+2]
+ ld [hProduct+2], a
+ ld a, [hMultiplyBuffer+1]
+ ld [hProduct+1], a
+ ld a, [hMultiplyBuffer]
+ ld [hProduct], a
ret
_Divide::
xor a
- ld [H_DIVIDEBUFFER], a
- ld [H_DIVIDEBUFFER+1], a
- ld [H_DIVIDEBUFFER+2], a
- ld [H_DIVIDEBUFFER+3], a
- ld [H_DIVIDEBUFFER+4], a
+ ld [hDivideBuffer], a
+ ld [hDivideBuffer+1], a
+ ld [hDivideBuffer+2], a
+ ld [hDivideBuffer+3], a
+ ld [hDivideBuffer+4], a
ld a, $9
ld e, a
.asm_37db3
- ld a, [H_DIVIDEBUFFER]
+ ld a, [hDivideBuffer]
ld c, a
- ld a, [H_DIVIDEND+1] ; (aliases: H_MULTIPLICAND)
+ ld a, [hDividend+1] ; (aliases: hMultiplicand)
sub c
ld d, a
- ld a, [H_DIVISOR] ; (aliases: H_DIVISOR, H_MULTIPLIER, H_POWEROFTEN)
+ ld a, [hDivisor] ; (aliases: hDivisor, hMultiplier, hPowerOf10)
ld c, a
- ld a, [H_DIVIDEND] ; (aliases: H_PRODUCT, H_PASTLEADINGZEROES, H_QUOTIENT)
+ ld a, [hDividend] ; (aliases: hProduct, hPastLeadingZeros, hQuotient)
sbc c
jr c, .asm_37dce
- ld [H_DIVIDEND], a ; (aliases: H_PRODUCT, H_PASTLEADINGZEROES, H_QUOTIENT)
+ ld [hDividend], a ; (aliases: hProduct, hPastLeadingZeros, hQuotient)
ld a, d
- ld [H_DIVIDEND+1], a ; (aliases: H_MULTIPLICAND)
- ld a, [H_DIVIDEBUFFER+4]
+ ld [hDividend+1], a ; (aliases: hMultiplicand)
+ ld a, [hDivideBuffer+4]
inc a
- ld [H_DIVIDEBUFFER+4], a
+ ld [hDivideBuffer+4], a
jr .asm_37db3
.asm_37dce
ld a, b
cp $1
jr z, .asm_37e18
- ld a, [H_DIVIDEBUFFER+4]
+ ld a, [hDivideBuffer+4]
sla a
- ld [H_DIVIDEBUFFER+4], a
- ld a, [H_DIVIDEBUFFER+3]
+ ld [hDivideBuffer+4], a
+ ld a, [hDivideBuffer+3]
rl a
- ld [H_DIVIDEBUFFER+3], a
- ld a, [H_DIVIDEBUFFER+2]
+ ld [hDivideBuffer+3], a
+ ld a, [hDivideBuffer+2]
rl a
- ld [H_DIVIDEBUFFER+2], a
- ld a, [H_DIVIDEBUFFER+1]
+ ld [hDivideBuffer+2], a
+ ld a, [hDivideBuffer+1]
rl a
- ld [H_DIVIDEBUFFER+1], a
+ ld [hDivideBuffer+1], a
dec e
jr nz, .asm_37e04
ld a, $8
ld e, a
- ld a, [H_DIVIDEBUFFER]
- ld [H_DIVISOR], a ; (aliases: H_DIVISOR, H_MULTIPLIER, H_POWEROFTEN)
+ ld a, [hDivideBuffer]
+ ld [hDivisor], a ; (aliases: hDivisor, hMultiplier, hPowerOf10)
xor a
- ld [H_DIVIDEBUFFER], a
- ld a, [H_DIVIDEND+1] ; (aliases: H_MULTIPLICAND)
- ld [H_DIVIDEND], a ; (aliases: H_PRODUCT, H_PASTLEADINGZEROES, H_QUOTIENT)
- ld a, [H_DIVIDEND+2]
- ld [H_DIVIDEND+1], a ; (aliases: H_MULTIPLICAND)
- ld a, [H_DIVIDEND+3]
- ld [H_DIVIDEND+2], a
+ ld [hDivideBuffer], a
+ ld a, [hDividend+1] ; (aliases: hMultiplicand)
+ ld [hDividend], a ; (aliases: hProduct, hPastLeadingZeros, hQuotient)
+ ld a, [hDividend+2]
+ ld [hDividend+1], a ; (aliases: hMultiplicand)
+ ld a, [hDividend+3]
+ ld [hDividend+2], a
.asm_37e04
ld a, e
cp $1
@@ -122,22 +122,22 @@
jr nz, .asm_37e0a
dec b
.asm_37e0a
- ld a, [H_DIVISOR] ; (aliases: H_DIVISOR, H_MULTIPLIER, H_POWEROFTEN)
+ ld a, [hDivisor] ; (aliases: hDivisor, hMultiplier, hPowerOf10)
srl a
- ld [H_DIVISOR], a ; (aliases: H_DIVISOR, H_MULTIPLIER, H_POWEROFTEN)
- ld a, [H_DIVIDEBUFFER]
+ ld [hDivisor], a ; (aliases: hDivisor, hMultiplier, hPowerOf10)
+ ld a, [hDivideBuffer]
rr a
- ld [H_DIVIDEBUFFER], a
+ ld [hDivideBuffer], a
jr .asm_37db3
.asm_37e18
- ld a, [H_DIVIDEND+1] ; (aliases: H_MULTIPLICAND)
- ld [H_REMAINDER], a ; (aliases: H_DIVISOR, H_MULTIPLIER, H_POWEROFTEN)
- ld a, [H_DIVIDEBUFFER+4]
- ld [H_QUOTIENT+3], a
- ld a, [H_DIVIDEBUFFER+3]
- ld [H_QUOTIENT+2], a
- ld a, [H_DIVIDEBUFFER+2]
- ld [H_QUOTIENT+1], a ; (aliases: H_MULTIPLICAND)
- ld a, [H_DIVIDEBUFFER+1]
- ld [H_DIVIDEND], a ; (aliases: H_PRODUCT, H_PASTLEADINGZEROES, H_QUOTIENT)
+ ld a, [hDividend+1] ; (aliases: hMultiplicand)
+ ld [hRemainder], a ; (aliases: hDivisor, hMultiplier, hPowerOf10)
+ ld a, [hDivideBuffer+4]
+ ld [hQuotient+3], a
+ ld a, [hDivideBuffer+3]
+ ld [hQuotient+2], a
+ ld a, [hDivideBuffer+2]
+ ld [hQuotient+1], a ; (aliases: hMultiplicand)
+ ld a, [hDivideBuffer+1]
+ ld [hDividend], a ; (aliases: hProduct, hPastLeadingZeros, hQuotient)
ret
--- a/engine/menus/display_text_id_init.asm
+++ b/engine/menus/display_text_id_init.asm
@@ -43,7 +43,7 @@
; the original direction they were facing must be restored after the dialogue is over
ld hl, wSpriteStateData1 + $19
ld c, $0f
- ld de, $0010
+ ld de, $10
.spriteFacingDirectionCopyLoop
ld a, [hl]
inc h
@@ -55,7 +55,7 @@
; loop to force all the sprites in the middle of animation to stand still
; (so that they don't like they're frozen mid-step during the dialogue)
ld hl, wSpriteStateData1 + 2
- ld de, $0010
+ ld de, $10
ld c, e
.spriteStandStillLoop
ld a, [hl]
@@ -74,5 +74,5 @@
ld [hWY], a ; put the window on the screen
call LoadFontTilePatterns
ld a, $01
- ld [H_AUTOBGTRANSFERENABLED], a ; enable continuous WRAM to VRAM transfer each V-blank
+ ld [hAutoBGTransferEnabled], a ; enable continuous WRAM to VRAM transfer each V-blank
ret
--- a/engine/menus/main_menu.asm
+++ b/engine/menus/main_menu.asm
@@ -342,7 +342,7 @@
DisplayContinueGameInfo:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 4, 7
ld b, 8
ld c, 14
@@ -360,13 +360,13 @@
coord hl, 13, 15
call PrintPlayTime
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld c, 30
jp DelayFrames
PrintSaveScreenText:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 4, 0
ld b, $8
ld c, $e
@@ -386,7 +386,7 @@
coord hl, 13, 8
call PrintPlayTime
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld c, 30
jp DelayFrames
@@ -463,7 +463,7 @@
ld a, [wOptionsTextSpeedCursorX] ; text speed cursor X coordinate
ld [wTopMenuItemX], a
ld a, $01
- ld [H_AUTOBGTRANSFERENABLED], a ; enable auto background transfer
+ ld [hAutoBGTransferEnabled], a ; enable auto background transfer
call Delay3
.loop
call PlaceMenuCursor
--- a/engine/menus/naming_screen.asm
+++ b/engine/menus/naming_screen.asm
@@ -337,7 +337,7 @@
PrintAlphabet:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, [wAlphabetCase]
and a
ld de, LowerCaseAlphabet
@@ -362,10 +362,10 @@
jr nz, .outerLoop
call PlaceString
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
jp Delay3
-INCLUDE "text/alphabets.asm"
+INCLUDE "data/text/alphabets.asm"
PrintNicknameAndUnderscores:
call CalcStringLength
@@ -435,7 +435,7 @@
ld [wNamingScreenLetter], a
ret
-INCLUDE "text/dakutens.asm"
+INCLUDE "data/text/dakutens.asm"
; calculates the length of the string at wcf4b and stores it in c
CalcStringLength:
--- a/engine/menus/party_menu.asm
+++ b/engine/menus/party_menu.asm
@@ -19,7 +19,7 @@
; f8: leveled up
DrawPartyMenu_::
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearScreen
call UpdateSprites
callba LoadMonPartySpriteGfxWithLCDDisabled ; load pokemon icon graphics
@@ -88,14 +88,14 @@
pop hl
push hl
ld bc, SCREEN_WIDTH + 1 ; down 1 row and right 1 column
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
set 0, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
add hl, bc
predef DrawHP2 ; draw HP bar and prints current / max HP
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
res 0, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
call SetPartyMenuHPBarColor ; color the HP bar (on SGB)
pop hl
jr .printLevel
@@ -213,7 +213,7 @@
pop af
ld [hl], a
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
jp GBPalNormal
.printItemUseMessage
@@ -318,7 +318,7 @@
ld b, 0
add hl, bc
call GetHealthBarColor
- ld b, UPDATE_PARTY_MENU_BLK_PACKET
+ ld b, SET_PAL_PARTY_MENU_HP_BARS
call RunPaletteCommand
ld hl, wWhichPartyMenuHPBar
inc [hl]
--- a/engine/menus/pokedex.asm
+++ b/engine/menus/pokedex.asm
@@ -156,7 +156,7 @@
; sets carry flag if player presses A, unsets carry flag if player presses B
HandlePokedexListMenu:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
; draw the horizontal line separating the seen and owned amounts from the menu
coord hl, 15, 8
ld a, "─"
@@ -216,7 +216,7 @@
ld [wDexMaxSeenMon], a
.loop
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 4, 2
lb bc, 14, 10
call ClearScreenArea
@@ -280,7 +280,7 @@
dec d
jr nz, .printPokemonLoop
ld a, 01
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
call GBPalNormal
call HandleMenuInput
@@ -566,11 +566,11 @@
pop hl
inc hl ; hl = address of pokedex description text
coord bc, 1, 11
- ld a, 2
- ld [$fff4], a
+ ld a, %10
+ ld [hClearLetterPrintingDelayFlags], a
call TextCommandProcessor ; print pokedex description text
xor a
- ld [$fff4], a
+ ld [hClearLetterPrintingDelayFlags], a
.waitForButtonPress
call JoypadLowSensitivity
ld a, [hJoy5]
@@ -623,7 +623,7 @@
pop bc
ret
-INCLUDE "data/pokedex_entries.asm"
+INCLUDE "data/pokemon/dex_entries.asm"
PokedexToIndex:
; converts the Pokédex number at wd11e to an index
@@ -662,4 +662,4 @@
pop bc
ret
-INCLUDE "data/pokedex_order.asm"
+INCLUDE "data/pokemon/dex_order.asm"
--- a/engine/menus/save.asm
+++ b/engine/menus/save.asm
@@ -351,10 +351,10 @@
call z, EmptyAllSRAMBoxes ; if so, empty all boxes in SRAM
call DisplayChangeBoxMenu
call UpdateSprites
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
set 1, [hl]
call HandleMenuInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
res 1, [hl]
bit 1, a ; pressed b
ret nz
@@ -420,7 +420,7 @@
DisplayChangeBoxMenu:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, A_BUTTON | B_BUTTON
ld [wMenuWatchedKeys], a
ld a, 11
@@ -445,12 +445,12 @@
ld b, 12
ld c, 7
call TextBoxBorder
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
set 2, [hl]
ld de, BoxNames
coord hl, 13, 1
call PlaceString
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
res 2, [hl]
ld a, [wCurrentBoxNum]
and $7f
@@ -486,7 +486,7 @@
dec a
jr nz, .loop
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
ChooseABoxText:
@@ -601,9 +601,9 @@
ret
SAVCheckRandomID:
-;checks if Sav file is the same by checking player's name 1st letter ($a598)
+; checks if Sav file is the same by checking player's name 1st letter
; and the two random numbers generated at game beginning
-;(which are stored at wPlayerID)s
+; (which are stored at wPlayerID)s
ld a, $0a
ld [MBC1SRamEnable], a
ld a, $01
@@ -702,7 +702,7 @@
PadSRAM_FF:
ld [MBC1SRamBank], a
- ld hl, $a000
- ld bc, $2000
+ ld hl, SRAM_Begin
+ ld bc, SRAM_End - SRAM_Begin
ld a, $ff
jp FillMemory
--- a/engine/menus/start_sub_menus.asm
+++ b/engine/menus/start_sub_menus.asm
@@ -239,11 +239,11 @@
ld bc, wPartyMon2 - wPartyMon1
call AddNTimes
ld a, [hli]
- ld [H_DIVIDEND], a
+ ld [hDividend], a
ld a, [hl]
- ld [H_DIVIDEND + 1], a
+ ld [hDividend + 1], a
ld a, 5
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, 2 ; number of bytes
call Divide
ld bc, wPartyMon1HP - wPartyMon1MaxHP
@@ -250,10 +250,10 @@
add hl, bc
ld a, [hld]
ld b, a
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
sub b
ld b, [hl]
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
sbc b
jp nc, .notHealthyEnough
ld a, [wPartyAndBillsPCSavedMenuItem]
@@ -446,9 +446,9 @@
TX_FAR _CannotGetOffHereText
db "@"
-INCLUDE "data/party_items.asm"
+INCLUDE "data/items/use_party.asm"
-INCLUDE "data/overworld_items.asm"
+INCLUDE "data/items/use_overworld.asm"
StartMenu_TrainerInfo::
call GBPalWhiteOut
@@ -491,12 +491,12 @@
call CopyData
ld hl, TrainerInfoTextBoxTileGraphics ; trainer info text box tile patterns
ld de, vChars2 + $770
- ld bc, $0080
+ ld bc, $80
push bc
call TrainerInfo_FarCopyData
ld hl, BlankLeaderNames
ld de, vChars2 + $600
- ld bc, $0170
+ ld bc, $170
call TrainerInfo_FarCopyData
pop bc
ld hl, BadgeNumbersTileGraphics ; badge number tile patterns
@@ -504,14 +504,14 @@
call TrainerInfo_FarCopyData
ld hl, GymLeaderFaceAndBadgeTileGraphics ; gym leader face and badge tile patterns
ld de, vChars2 + $200
- ld bc, $0400
+ ld bc, $400
ld a, $03
call FarCopyData2
ld hl, TextBoxGraphics
- ld de, $00d0
+ ld de, $d0
add hl, de ; hl = colon tile pattern
ld de, vChars1 + $560
- ld bc, $0010
+ ld bc, $10
ld a, $04
push bc
call FarCopyData2
@@ -648,7 +648,7 @@
StartMenu_Option::
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearScreen
call UpdateSprites
callab DisplayOptionMenu
--- a/engine/menus/swap_items.asm
+++ b/engine/menus/swap_items.asm
@@ -77,18 +77,18 @@
cp b
jr z, .swapSameItemType
.swapDifferentItems
- ld [$ff95], a ; [$ff95] = second item ID
+ ld [hSwapItemID], a ; save second item ID
ld a, [hld]
- ld [$ff96], a ; [$ff96] = second item quantity
+ ld [hSwapItemQuantity], a ; save second item quantity
ld a, [de]
ld [hli], a ; put first item ID in second item slot
inc de
ld a, [de]
ld [hl], a ; put first item quantity in second item slot
- ld a, [$ff96]
+ ld a, [hSwapItemQuantity]
ld [de], a ; put second item quantity in first item slot
dec de
- ld a, [$ff95]
+ ld a, [hSwapItemID]
ld [de], a ; put second item ID in first item slot
xor a
ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
--- a/engine/movie/credits.asm
+++ b/engine/movie/credits.asm
@@ -21,7 +21,7 @@
ld a, %11000000
ld [rBGP], a
call EnableLCD
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
call PlaySoundWaitForCurrent
ld c, BANK(Music_Credits)
ld a, MUSIC_CREDITS
@@ -47,7 +47,7 @@
DisplayCreditsMon:
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call SaveScreenTilesToBuffer1
call FillMiddleOfScreenWithWhite
@@ -67,7 +67,7 @@
ld hl, vBGMap0 + $c
call CreditsCopyTileMapToVRAM
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call LoadScreenTilesFromBuffer1
ld hl, vBGMap0
call CreditsCopyTileMapToVRAM
@@ -104,7 +104,7 @@
ld [rBGP], a
ret
-INCLUDE "data/credit_mons.asm"
+INCLUDE "data/credits/credits_mons.asm"
ScrollCreditsMonLeft:
ld h, b
@@ -138,11 +138,11 @@
CreditsCopyTileMapToVRAM:
ld a, l
- ld [H_AUTOBGTRANSFERDEST], a
+ ld [hAutoBGTransferDest], a
ld a, h
- ld [H_AUTOBGTRANSFERDEST + 1], a
+ ld [hAutoBGTransferDest + 1], a
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
jp Delay3
ZeroMemory:
@@ -261,9 +261,9 @@
db $60," ",$62," ",$64," ",$64," ",$66," ",$68,"@"
db $61," ",$63," ",$65," ",$65," ",$67," ",$69,"@"
-INCLUDE "data/credits_order.asm"
+INCLUDE "data/credits/credits_order.asm"
-INCLUDE "text/credits_text.asm"
+INCLUDE "data/credits/credits_text.asm"
TheEndGfx:
INCBIN "gfx/intro_credits/the_end.2bpp"
--- a/engine/movie/evolution.asm
+++ b/engine/movie/evolution.asm
@@ -9,16 +9,16 @@
xor a
ld [wLowHealthAlarm], a
ld [wChannelSoundIDs + Ch5], a
- dec a
+ dec a ; SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, SFX_TINK
call PlaySound
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld [hTilesetType], a
ld a, [wEvoOldSpecies]
ld [wWholeScreenPaletteMonSpecies], a
@@ -37,7 +37,7 @@
ld [wd0b5], a
call Evolution_LoadPic
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, [wEvoOldSpecies]
call PlayCry
call WaitForSoundToFinish
@@ -67,7 +67,7 @@
ld a, [wEvoNewSpecies]
.done
ld [wWholeScreenPaletteMonSpecies], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld a, [wWholeScreenPaletteMonSpecies]
@@ -117,7 +117,7 @@
Evolution_ChangeMonPic:
push bc
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 7, 2
lb bc, 7, 7
ld de, SCREEN_WIDTH - 7
@@ -134,7 +134,7 @@
dec b
jr nz, .loop
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
pop bc
ret
--- a/engine/movie/hall_of_fame.asm
+++ b/engine/movie/hall_of_fame.asm
@@ -24,7 +24,7 @@
ld [wLetterPrintingDelayFlags], a ; no delay
ld [wHoFMonOrPlayer], a ; mon
inc a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, wNumHoFTeams
ld a, [hl]
inc a
--- a/engine/movie/intro.asm
+++ b/engine/movie/intro.asm
@@ -14,13 +14,13 @@
xor a
ld [hJoyHeld], a
inc a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call PlayShootingStar
call PlayIntroScene
call GBFadeOutToWhite
xor a
ld [hSCX], a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearSprites
call DelayFrame
ret
--- a/engine/movie/oak_speech/oak_speech.asm
+++ b/engine/movie/oak_speech/oak_speech.asm
@@ -32,8 +32,8 @@
jp CopyData
OakSpeech:
- ld a, $FF
- call PlaySound ; stop music
+ ld a, SFX_STOP_ALL_MUSIC
+ call PlaySound
ld a, BANK(Music_Routes2)
ld c, a
ld a, MUSIC_ROUTES2
@@ -57,7 +57,7 @@
bit 1, a ; possibly a debug mode bit
jp nz, .skipChoosingNames
ld de, ProfOakPic
- lb bc, Bank(ProfOakPic), $00
+ lb bc, BANK(ProfOakPic), $00
call IntroDisplayPicCenteredOrUpperRight
call FadeInIntroPic
ld hl, OakSpeechText1
@@ -76,7 +76,7 @@
call GBFadeOutToWhite
call ClearScreen
ld de, RedPicFront
- lb bc, Bank(RedPicFront), $00
+ lb bc, BANK(RedPicFront), $00
call IntroDisplayPicCenteredOrUpperRight
call MovePicLeft
ld hl, IntroducePlayerText
@@ -85,7 +85,7 @@
call GBFadeOutToWhite
call ClearScreen
ld de, Rival1Pic
- lb bc, Bank(Rival1Pic), $00
+ lb bc, BANK(Rival1Pic), $00
call IntroDisplayPicCenteredOrUpperRight
call FadeInIntroPic
ld hl, IntroduceRivalText
@@ -95,7 +95,7 @@
call GBFadeOutToWhite
call ClearScreen
ld de, RedPicFront
- lb bc, Bank(RedPicFront), $00
+ lb bc, BANK(RedPicFront), $00
call IntroDisplayPicCenteredOrUpperRight
call GBFadeInFromWhite
ld a, [wd72d]
@@ -104,12 +104,12 @@
ld hl, OakSpeechText3
call PrintText
.next
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, SFX_SHRINK
call PlaySound
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld c, 4
call DelayFrames
@@ -126,7 +126,7 @@
lb bc, BANK(ShrinkPic2), $00
call IntroDisplayPicCenteredOrUpperRight
call ResetPlayerSpriteData
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, BANK(Music_PalletTown)
ld [wAudioROMBank], a
@@ -133,11 +133,11 @@
ld [wAudioSavedROMBank], a
ld a, 10
ld [wAudioFadeOutControl], a
- ld a, $FF
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
- call PlaySound ; stop music
+ call PlaySound
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld c, 20
call DelayFrames
--- a/engine/movie/oak_speech/oak_speech2.asm
+++ b/engine/movie/oak_speech/oak_speech2.asm
@@ -107,7 +107,7 @@
ld e, l
.loop
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, [hSlideDirection]
and a
jr nz, .slideLeft
@@ -134,7 +134,7 @@
ld [hl], a
.next3
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
ld a, [hSlidingRegionSize]
ld c, a
@@ -187,7 +187,7 @@
.namestring
db "NAME@"
-INCLUDE "text/player_names.asm"
+INCLUDE "data/player_names.asm"
GetDefaultName:
; a = name index
@@ -213,7 +213,7 @@
ld bc, $14
jp CopyData
-INCLUDE "text/player_names_list.asm"
+INCLUDE "data/player_names_list.asm"
TextTerminator_6b20:
db "@"
--- /dev/null
+++ b/engine/movie/title.asm
@@ -1,0 +1,403 @@
+; copy text of fixed length NAME_LENGTH (like player name, rival name, mon names, ...)
+CopyFixedLengthText:
+ ld bc, NAME_LENGTH
+ jp CopyData
+
+SetDefaultNamesBeforeTitlescreen::
+ ld hl, NintenText
+ ld de, wPlayerName
+ call CopyFixedLengthText
+ ld hl, SonyText
+ ld de, wRivalName
+ call CopyFixedLengthText
+ xor a
+ ld [hWY], a
+ ld [wLetterPrintingDelayFlags], a
+ ld hl, wd732
+ ld [hli], a
+ ld [hli], a
+ ld [hl], a
+ ld a, BANK(Music_TitleScreen)
+ ld [wAudioROMBank], a
+ ld [wAudioSavedROMBank], a
+
+DisplayTitleScreen:
+ call GBPalWhiteOut
+ ld a, $1
+ ld [hAutoBGTransferEnabled], a
+ xor a
+ ld [hTilesetType], a
+ ld [hSCX], a
+ ld a, $40
+ ld [hSCY], a
+ ld a, $90
+ ld [hWY], a
+ call ClearScreen
+ call DisableLCD
+ call LoadFontTilePatterns
+ ld hl, NintendoCopyrightLogoGraphics
+ ld de, vTitleLogo2 + $100
+ ld bc, $50
+ ld a, BANK(NintendoCopyrightLogoGraphics)
+ call FarCopyData2
+ ld hl, GamefreakLogoGraphics
+ ld de, vTitleLogo2 + $100 + $50
+ ld bc, $90
+ ld a, BANK(GamefreakLogoGraphics)
+ call FarCopyData2
+ ld hl, PokemonLogoGraphics
+ ld de, vTitleLogo
+ ld bc, $600
+ ld a, BANK(PokemonLogoGraphics)
+ call FarCopyData2 ; first chunk
+ ld hl, PokemonLogoGraphics+$600
+ ld de, vTitleLogo2
+ ld bc, $100
+ ld a, BANK(PokemonLogoGraphics)
+ call FarCopyData2 ; second chunk
+ ld hl, Version_GFX
+ ld de, vChars2 + $600 - (Version_GFXEnd - Version_GFX - $50)
+ ld bc, Version_GFXEnd - Version_GFX
+ ld a, BANK(Version_GFX)
+ call FarCopyDataDouble
+ call ClearBothBGMaps
+
+; place tiles for pokemon logo (except for the last row)
+ coord hl, 2, 1
+ ld a, $80
+ ld de, SCREEN_WIDTH
+ ld c, 6
+.pokemonLogoTileLoop
+ ld b, $10
+ push hl
+.pokemonLogoTileRowLoop ; place tiles for one row
+ ld [hli], a
+ inc a
+ dec b
+ jr nz, .pokemonLogoTileRowLoop
+ pop hl
+ add hl, de
+ dec c
+ jr nz, .pokemonLogoTileLoop
+
+; place tiles for the last row of the pokemon logo
+ coord hl, 2, 7
+ ld a, $31
+ ld b, $10
+.pokemonLogoLastTileRowLoop
+ ld [hli], a
+ inc a
+ dec b
+ jr nz, .pokemonLogoLastTileRowLoop
+
+ call DrawPlayerCharacter
+
+; put a pokeball in the player's hand
+ ld hl, wOAMBuffer + $28
+ ld a, $74
+ ld [hl], a
+
+; place tiles for title screen copyright
+ coord hl, 2, 17
+ ld de, .tileScreenCopyrightTiles
+ ld b, $10
+.tileScreenCopyrightTilesLoop
+ ld a, [de]
+ ld [hli], a
+ inc de
+ dec b
+ jr nz, .tileScreenCopyrightTilesLoop
+
+ jr .next
+
+.tileScreenCopyrightTiles
+ db $41,$42,$43,$42,$44,$42,$45,$46,$47,$48,$49,$4A,$4B,$4C,$4D,$4E ; ©'95.'96.'98 GAME FREAK inc.
+
+.next
+ call SaveScreenTilesToBuffer2
+ call LoadScreenTilesFromBuffer2
+ call EnableLCD
+IF DEF(_RED)
+ ld a, CHARMANDER ; which Pokemon to show first on the title screen
+ENDC
+IF DEF(_BLUE)
+ ld a, SQUIRTLE ; which Pokemon to show first on the title screen
+ENDC
+
+ ld [wTitleMonSpecies], a
+ call LoadTitleMonSprite
+ ld a, (vBGMap0 + $300) / $100
+ call TitleScreenCopyTileMapToVRAM
+ call SaveScreenTilesToBuffer1
+ ld a, $40
+ ld [hWY], a
+ call LoadScreenTilesFromBuffer2
+ ld a, vBGMap0 / $100
+ call TitleScreenCopyTileMapToVRAM
+ ld b, SET_PAL_TITLE_SCREEN
+ call RunPaletteCommand
+ call GBPalNormal
+ ld a, %11100100
+ ld [rOBP0], a
+
+; make pokemon logo bounce up and down
+ ld bc, hSCY ; background scroll Y
+ ld hl, .TitleScreenPokemonLogoYScrolls
+.bouncePokemonLogoLoop
+ ld a, [hli]
+ and a
+ jr z, .finishedBouncingPokemonLogo
+ ld d, a
+ cp -3
+ jr nz, .skipPlayingSound
+ ld a, SFX_INTRO_CRASH
+ call PlaySound
+.skipPlayingSound
+ ld a, [hli]
+ ld e, a
+ call .ScrollTitleScreenPokemonLogo
+ jr .bouncePokemonLogoLoop
+
+.TitleScreenPokemonLogoYScrolls:
+; Controls the bouncing effect of the Pokemon logo on the title screen
+ db -4,16 ; y scroll amount, number of times to scroll
+ db 3,4
+ db -3,4
+ db 2,2
+ db -2,2
+ db 1,2
+ db -1,2
+ db 0 ; terminate list with 0
+
+.ScrollTitleScreenPokemonLogo:
+; Scrolls the Pokemon logo on the title screen to create the bouncing effect
+; Scrolls d pixels e times
+ call DelayFrame
+ ld a, [bc] ; background scroll Y
+ add d
+ ld [bc], a
+ dec e
+ jr nz, .ScrollTitleScreenPokemonLogo
+ ret
+
+.finishedBouncingPokemonLogo
+ call LoadScreenTilesFromBuffer1
+ ld c, 36
+ call DelayFrames
+ ld a, SFX_INTRO_WHOOSH
+ call PlaySound
+
+; scroll game version in from the right
+ call PrintGameVersionOnTitleScreen
+ ld a, SCREEN_HEIGHT_PIXELS
+ ld [hWY], a
+ ld d, 144
+.scrollTitleScreenGameVersionLoop
+ ld h, d
+ ld l, 64
+ call ScrollTitleScreenGameVersion
+ ld h, 0
+ ld l, 80
+ call ScrollTitleScreenGameVersion
+ ld a, d
+ add 4
+ ld d, a
+ and a
+ jr nz, .scrollTitleScreenGameVersionLoop
+
+ ld a, vBGMap1 / $100
+ call TitleScreenCopyTileMapToVRAM
+ call LoadScreenTilesFromBuffer2
+ call PrintGameVersionOnTitleScreen
+ call Delay3
+ call WaitForSoundToFinish
+ ld a, MUSIC_TITLE_SCREEN
+ ld [wNewSoundID], a
+ call PlaySound
+ xor a
+ ld [wUnusedCC5B], a
+
+; Keep scrolling in new mons indefinitely until the user performs input.
+.awaitUserInterruptionLoop
+ ld c, 200
+ call CheckForUserInterruption
+ jr c, .finishedWaiting
+ call TitleScreenScrollInMon
+ ld c, 1
+ call CheckForUserInterruption
+ jr c, .finishedWaiting
+ callba TitleScreenAnimateBallIfStarterOut
+ call TitleScreenPickNewMon
+ jr .awaitUserInterruptionLoop
+
+.finishedWaiting
+ ld a, [wTitleMonSpecies]
+ call PlayCry
+ call WaitForSoundToFinish
+ call GBPalWhiteOutWithDelay3
+ call ClearSprites
+ xor a
+ ld [hWY], a
+ inc a
+ ld [hAutoBGTransferEnabled], a
+ call ClearScreen
+ ld a, vBGMap0 / $100
+ call TitleScreenCopyTileMapToVRAM
+ ld a, vBGMap1 / $100
+ call TitleScreenCopyTileMapToVRAM
+ call Delay3
+ call LoadGBPal
+ ld a, [hJoyHeld]
+ ld b, a
+ and D_UP | SELECT | B_BUTTON
+ cp D_UP | SELECT | B_BUTTON
+ jp z, .doClearSaveDialogue
+ jp MainMenu
+
+.doClearSaveDialogue
+ jpba DoClearSaveDialogue
+
+TitleScreenPickNewMon:
+ ld a, vBGMap0 / $100
+ call TitleScreenCopyTileMapToVRAM
+
+.loop
+; Keep looping until a mon different from the current one is picked.
+ call Random
+ and $f
+ ld c, a
+ ld b, 0
+ ld hl, TitleMons
+ add hl, bc
+ ld a, [hl]
+ ld hl, wTitleMonSpecies
+
+; Can't be the same as before.
+ cp [hl]
+ jr z, .loop
+
+ ld [hl], a
+ call LoadTitleMonSprite
+
+ ld a, $90
+ ld [hWY], a
+ ld d, 1 ; scroll out
+ callba TitleScroll
+ ret
+
+TitleScreenScrollInMon:
+ ld d, 0 ; scroll in
+ callba TitleScroll
+ xor a
+ ld [hWY], a
+ ret
+
+ScrollTitleScreenGameVersion:
+.wait
+ ld a, [rLY]
+ cp l
+ jr nz, .wait
+
+ ld a, h
+ ld [rSCX], a
+
+.wait2
+ ld a, [rLY]
+ cp h
+ jr z, .wait2
+ ret
+
+DrawPlayerCharacter:
+ ld hl, PlayerCharacterTitleGraphics
+ ld de, vSprites
+ ld bc, PlayerCharacterTitleGraphicsEnd - PlayerCharacterTitleGraphics
+ ld a, BANK(PlayerCharacterTitleGraphics)
+ call FarCopyData2
+ call ClearSprites
+ xor a
+ ld [wPlayerCharacterOAMTile], a
+ ld hl, wOAMBuffer
+ lb de, $60, $5a
+ ld b, 7
+.loop
+ push de
+ ld c, 5
+.innerLoop
+ ld a, d
+ ld [hli], a ; Y
+ ld a, e
+ ld [hli], a ; X
+ add 8
+ ld e, a
+ ld a, [wPlayerCharacterOAMTile]
+ ld [hli], a ; tile
+ inc a
+ ld [wPlayerCharacterOAMTile], a
+ inc hl
+ dec c
+ jr nz, .innerLoop
+ pop de
+ ld a, 8
+ add d
+ ld d, a
+ dec b
+ jr nz, .loop
+ ret
+
+ClearBothBGMaps:
+ ld hl, vBGMap0
+ ld bc, $400 * 2
+ ld a, " "
+ jp FillMemory
+
+LoadTitleMonSprite:
+ ld [wcf91], a
+ ld [wd0b5], a
+ coord hl, 5, 10
+ call GetMonHeader
+ jp LoadFrontSpriteByMonIndex
+
+TitleScreenCopyTileMapToVRAM:
+ ld [hAutoBGTransferDest + 1], a
+ jp Delay3
+
+LoadCopyrightAndTextBoxTiles:
+ xor a
+ ld [hWY], a
+ call ClearScreen
+ call LoadTextBoxTilePatterns
+
+LoadCopyrightTiles:
+ ld de, NintendoCopyrightLogoGraphics
+ ld hl, vChars2 + $600
+ lb bc, BANK(NintendoCopyrightLogoGraphics), (GamefreakLogoGraphicsEnd - NintendoCopyrightLogoGraphics) / $10
+ call CopyVideoData
+ coord hl, 2, 7
+ ld de, CopyrightTextString
+ jp PlaceString
+
+CopyrightTextString:
+ db $60,$61,$62,$61,$63,$61,$64,$7F,$65,$66,$67,$68,$69,$6A ; ©'95.'96.'98 Nintendo
+ next $60,$61,$62,$61,$63,$61,$64,$7F,$6B,$6C,$6D,$6E,$6F,$70,$71,$72 ; ©'95.'96.'98 Creatures inc.
+ next $60,$61,$62,$61,$63,$61,$64,$7F,$73,$74,$75,$76,$77,$78,$79,$7A,$7B ; ©'95.'96.'98 GAME FREAK inc.
+ db "@"
+
+INCLUDE "data/pokemon/title_mons.asm"
+
+; prints version text (red, blue)
+PrintGameVersionOnTitleScreen:
+ coord hl, 7, 8
+ ld de, VersionOnTitleScreenText
+ jp PlaceString
+
+; these point to special tiles specifically loaded for that purpose and are not usual text
+VersionOnTitleScreenText:
+IF DEF(_RED)
+ db $60,$61,$7F,$65,$66,$67,$68,$69,"@" ; "Red Version"
+ENDC
+IF DEF(_BLUE)
+ db $61,$62,$63,$64,$65,$66,$67,$68,"@" ; "Blue Version"
+ENDC
+
+NintenText: db "NINTEN@"
+SonyText: db "SONY@"
--- /dev/null
+++ b/engine/movie/title2.asm
@@ -1,0 +1,120 @@
+TitleScroll_WaitBall:
+; Wait around for the TitleBall animation to play out.
+; hi: speed
+; lo: duration
+ db $05, $05, 0
+
+TitleScroll_In:
+; Scroll a TitleMon in from the right.
+; hi: speed
+; lo: duration
+ db $a2, $94, $84, $63, $52, $31, $11, 0
+
+TitleScroll_Out:
+; Scroll a TitleMon out to the left.
+; hi: speed
+; lo: duration
+ db $12, $22, $32, $42, $52, $62, $83, $93, 0
+
+TitleScroll:
+ ld a, d
+
+ ld bc, TitleScroll_In
+ ld d, $88
+ ld e, 0 ; don't animate titleball
+
+ and a
+ jr nz, .ok
+
+ ld bc, TitleScroll_Out
+ ld d, $00
+ ld e, 0 ; don't animate titleball
+.ok
+
+_TitleScroll:
+ ld a, [bc]
+ and a
+ ret z
+
+ inc bc
+ push bc
+
+ ld b, a
+ and $f
+ ld c, a
+ ld a, b
+ and $f0
+ swap a
+ ld b, a
+
+.loop
+ ld h, d
+ ld l, $48
+ call .ScrollBetween
+
+ ld h, $00
+ ld l, $88
+ call .ScrollBetween
+
+ ld a, d
+ add b
+ ld d, a
+
+ call GetTitleBallY
+ dec c
+ jr nz, .loop
+
+ pop bc
+ jr _TitleScroll
+
+.ScrollBetween:
+.wait
+ ld a, [rLY] ; rLY
+ cp l
+ jr nz, .wait
+
+ ld a, h
+ ld [rSCX], a
+
+.wait2
+ ld a, [rLY] ; rLY
+ cp h
+ jr z, .wait2
+ ret
+
+TitleBallYTable:
+; OBJ y-positions for the Poke Ball held by Red in the title screen.
+; This is really two 0-terminated lists. Initiated with an index of 1.
+ db 0, $71, $6f, $6e, $6d, $6c, $6d, $6e, $6f, $71, $74, 0
+
+TitleScreenAnimateBallIfStarterOut:
+; Animate the TitleBall if a starter just got scrolled out.
+ ld a, [wTitleMonSpecies]
+ cp STARTER1
+ jr z, .ok
+ cp STARTER2
+ jr z, .ok
+ cp STARTER3
+ ret nz
+.ok
+ ld e, 1 ; animate titleball
+ ld bc, TitleScroll_WaitBall
+ ld d, 0
+ jp _TitleScroll
+
+GetTitleBallY:
+; Get position e from TitleBallYTable
+ push de
+ push hl
+ xor a
+ ld d, a
+ ld hl, TitleBallYTable
+ add hl, de
+ ld a, [hl]
+ pop hl
+ pop de
+ and a
+ ret z
+ ld [wOAMBuffer + $28], a
+ inc e
+ ret
--- a/engine/movie/titlescreen.asm
+++ /dev/null
@@ -1,403 +1,0 @@
-; copy text of fixed length NAME_LENGTH (like player name, rival name, mon names, ...)
-CopyFixedLengthText:
- ld bc, NAME_LENGTH
- jp CopyData
-
-SetDefaultNamesBeforeTitlescreen::
- ld hl, NintenText
- ld de, wPlayerName
- call CopyFixedLengthText
- ld hl, SonyText
- ld de, wRivalName
- call CopyFixedLengthText
- xor a
- ld [hWY], a
- ld [wLetterPrintingDelayFlags], a
- ld hl, wd732
- ld [hli], a
- ld [hli], a
- ld [hl], a
- ld a, BANK(Music_TitleScreen)
- ld [wAudioROMBank], a
- ld [wAudioSavedROMBank], a
-
-DisplayTitleScreen:
- call GBPalWhiteOut
- ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
- xor a
- ld [hTilesetType], a
- ld [hSCX], a
- ld a, $40
- ld [hSCY], a
- ld a, $90
- ld [hWY], a
- call ClearScreen
- call DisableLCD
- call LoadFontTilePatterns
- ld hl, NintendoCopyrightLogoGraphics
- ld de, vTitleLogo2 + $100
- ld bc, $50
- ld a, BANK(NintendoCopyrightLogoGraphics)
- call FarCopyData2
- ld hl, GamefreakLogoGraphics
- ld de, vTitleLogo2 + $100 + $50
- ld bc, $90
- ld a, BANK(GamefreakLogoGraphics)
- call FarCopyData2
- ld hl, PokemonLogoGraphics
- ld de, vTitleLogo
- ld bc, $600
- ld a, BANK(PokemonLogoGraphics)
- call FarCopyData2 ; first chunk
- ld hl, PokemonLogoGraphics+$600
- ld de, vTitleLogo2
- ld bc, $100
- ld a, BANK(PokemonLogoGraphics)
- call FarCopyData2 ; second chunk
- ld hl, Version_GFX
- ld de, vChars2 + $600 - (Version_GFXEnd - Version_GFX - $50)
- ld bc, Version_GFXEnd - Version_GFX
- ld a, BANK(Version_GFX)
- call FarCopyDataDouble
- call ClearBothBGMaps
-
-; place tiles for pokemon logo (except for the last row)
- coord hl, 2, 1
- ld a, $80
- ld de, SCREEN_WIDTH
- ld c, 6
-.pokemonLogoTileLoop
- ld b, $10
- push hl
-.pokemonLogoTileRowLoop ; place tiles for one row
- ld [hli], a
- inc a
- dec b
- jr nz, .pokemonLogoTileRowLoop
- pop hl
- add hl, de
- dec c
- jr nz, .pokemonLogoTileLoop
-
-; place tiles for the last row of the pokemon logo
- coord hl, 2, 7
- ld a, $31
- ld b, $10
-.pokemonLogoLastTileRowLoop
- ld [hli], a
- inc a
- dec b
- jr nz, .pokemonLogoLastTileRowLoop
-
- call DrawPlayerCharacter
-
-; put a pokeball in the player's hand
- ld hl, wOAMBuffer + $28
- ld a, $74
- ld [hl], a
-
-; place tiles for title screen copyright
- coord hl, 2, 17
- ld de, .tileScreenCopyrightTiles
- ld b, $10
-.tileScreenCopyrightTilesLoop
- ld a, [de]
- ld [hli], a
- inc de
- dec b
- jr nz, .tileScreenCopyrightTilesLoop
-
- jr .next
-
-.tileScreenCopyrightTiles
- db $41,$42,$43,$42,$44,$42,$45,$46,$47,$48,$49,$4A,$4B,$4C,$4D,$4E ; ©'95.'96.'98 GAME FREAK inc.
-
-.next
- call SaveScreenTilesToBuffer2
- call LoadScreenTilesFromBuffer2
- call EnableLCD
-IF DEF(_RED)
- ld a, CHARMANDER ; which Pokemon to show first on the title screen
-ENDC
-IF DEF(_BLUE)
- ld a, SQUIRTLE ; which Pokemon to show first on the title screen
-ENDC
-
- ld [wTitleMonSpecies], a
- call LoadTitleMonSprite
- ld a, (vBGMap0 + $300) / $100
- call TitleScreenCopyTileMapToVRAM
- call SaveScreenTilesToBuffer1
- ld a, $40
- ld [hWY], a
- call LoadScreenTilesFromBuffer2
- ld a, vBGMap0 / $100
- call TitleScreenCopyTileMapToVRAM
- ld b, SET_PAL_TITLE_SCREEN
- call RunPaletteCommand
- call GBPalNormal
- ld a, %11100100
- ld [rOBP0], a
-
-; make pokemon logo bounce up and down
- ld bc, hSCY ; background scroll Y
- ld hl, .TitleScreenPokemonLogoYScrolls
-.bouncePokemonLogoLoop
- ld a, [hli]
- and a
- jr z, .finishedBouncingPokemonLogo
- ld d, a
- cp -3
- jr nz, .skipPlayingSound
- ld a, SFX_INTRO_CRASH
- call PlaySound
-.skipPlayingSound
- ld a, [hli]
- ld e, a
- call .ScrollTitleScreenPokemonLogo
- jr .bouncePokemonLogoLoop
-
-.TitleScreenPokemonLogoYScrolls:
-; Controls the bouncing effect of the Pokemon logo on the title screen
- db -4,16 ; y scroll amount, number of times to scroll
- db 3,4
- db -3,4
- db 2,2
- db -2,2
- db 1,2
- db -1,2
- db 0 ; terminate list with 0
-
-.ScrollTitleScreenPokemonLogo:
-; Scrolls the Pokemon logo on the title screen to create the bouncing effect
-; Scrolls d pixels e times
- call DelayFrame
- ld a, [bc] ; background scroll Y
- add d
- ld [bc], a
- dec e
- jr nz, .ScrollTitleScreenPokemonLogo
- ret
-
-.finishedBouncingPokemonLogo
- call LoadScreenTilesFromBuffer1
- ld c, 36
- call DelayFrames
- ld a, SFX_INTRO_WHOOSH
- call PlaySound
-
-; scroll game version in from the right
- call PrintGameVersionOnTitleScreen
- ld a, SCREEN_HEIGHT_PIXELS
- ld [hWY], a
- ld d, 144
-.scrollTitleScreenGameVersionLoop
- ld h, d
- ld l, 64
- call ScrollTitleScreenGameVersion
- ld h, 0
- ld l, 80
- call ScrollTitleScreenGameVersion
- ld a, d
- add 4
- ld d, a
- and a
- jr nz, .scrollTitleScreenGameVersionLoop
-
- ld a, vBGMap1 / $100
- call TitleScreenCopyTileMapToVRAM
- call LoadScreenTilesFromBuffer2
- call PrintGameVersionOnTitleScreen
- call Delay3
- call WaitForSoundToFinish
- ld a, MUSIC_TITLE_SCREEN
- ld [wNewSoundID], a
- call PlaySound
- xor a
- ld [wUnusedCC5B], a
-
-; Keep scrolling in new mons indefinitely until the user performs input.
-.awaitUserInterruptionLoop
- ld c, 200
- call CheckForUserInterruption
- jr c, .finishedWaiting
- call TitleScreenScrollInMon
- ld c, 1
- call CheckForUserInterruption
- jr c, .finishedWaiting
- callba TitleScreenAnimateBallIfStarterOut
- call TitleScreenPickNewMon
- jr .awaitUserInterruptionLoop
-
-.finishedWaiting
- ld a, [wTitleMonSpecies]
- call PlayCry
- call WaitForSoundToFinish
- call GBPalWhiteOutWithDelay3
- call ClearSprites
- xor a
- ld [hWY], a
- inc a
- ld [H_AUTOBGTRANSFERENABLED], a
- call ClearScreen
- ld a, vBGMap0 / $100
- call TitleScreenCopyTileMapToVRAM
- ld a, vBGMap1 / $100
- call TitleScreenCopyTileMapToVRAM
- call Delay3
- call LoadGBPal
- ld a, [hJoyHeld]
- ld b, a
- and D_UP | SELECT | B_BUTTON
- cp D_UP | SELECT | B_BUTTON
- jp z, .doClearSaveDialogue
- jp MainMenu
-
-.doClearSaveDialogue
- jpba DoClearSaveDialogue
-
-TitleScreenPickNewMon:
- ld a, vBGMap0 / $100
- call TitleScreenCopyTileMapToVRAM
-
-.loop
-; Keep looping until a mon different from the current one is picked.
- call Random
- and $f
- ld c, a
- ld b, 0
- ld hl, TitleMons
- add hl, bc
- ld a, [hl]
- ld hl, wTitleMonSpecies
-
-; Can't be the same as before.
- cp [hl]
- jr z, .loop
-
- ld [hl], a
- call LoadTitleMonSprite
-
- ld a, $90
- ld [hWY], a
- ld d, 1 ; scroll out
- callba TitleScroll
- ret
-
-TitleScreenScrollInMon:
- ld d, 0 ; scroll in
- callba TitleScroll
- xor a
- ld [hWY], a
- ret
-
-ScrollTitleScreenGameVersion:
-.wait
- ld a, [rLY]
- cp l
- jr nz, .wait
-
- ld a, h
- ld [rSCX], a
-
-.wait2
- ld a, [rLY]
- cp h
- jr z, .wait2
- ret
-
-DrawPlayerCharacter:
- ld hl, PlayerCharacterTitleGraphics
- ld de, vSprites
- ld bc, PlayerCharacterTitleGraphicsEnd - PlayerCharacterTitleGraphics
- ld a, BANK(PlayerCharacterTitleGraphics)
- call FarCopyData2
- call ClearSprites
- xor a
- ld [wPlayerCharacterOAMTile], a
- ld hl, wOAMBuffer
- ld de, $605a
- ld b, 7
-.loop
- push de
- ld c, 5
-.innerLoop
- ld a, d
- ld [hli], a ; Y
- ld a, e
- ld [hli], a ; X
- add 8
- ld e, a
- ld a, [wPlayerCharacterOAMTile]
- ld [hli], a ; tile
- inc a
- ld [wPlayerCharacterOAMTile], a
- inc hl
- dec c
- jr nz, .innerLoop
- pop de
- ld a, 8
- add d
- ld d, a
- dec b
- jr nz, .loop
- ret
-
-ClearBothBGMaps:
- ld hl, vBGMap0
- ld bc, $400 * 2
- ld a, " "
- jp FillMemory
-
-LoadTitleMonSprite:
- ld [wcf91], a
- ld [wd0b5], a
- coord hl, 5, 10
- call GetMonHeader
- jp LoadFrontSpriteByMonIndex
-
-TitleScreenCopyTileMapToVRAM:
- ld [H_AUTOBGTRANSFERDEST + 1], a
- jp Delay3
-
-LoadCopyrightAndTextBoxTiles:
- xor a
- ld [hWY], a
- call ClearScreen
- call LoadTextBoxTilePatterns
-
-LoadCopyrightTiles:
- ld de, NintendoCopyrightLogoGraphics
- ld hl, vChars2 + $600
- lb bc, BANK(NintendoCopyrightLogoGraphics), (GamefreakLogoGraphicsEnd - NintendoCopyrightLogoGraphics) / $10
- call CopyVideoData
- coord hl, 2, 7
- ld de, CopyrightTextString
- jp PlaceString
-
-CopyrightTextString:
- db $60,$61,$62,$61,$63,$61,$64,$7F,$65,$66,$67,$68,$69,$6A ; ©'95.'96.'98 Nintendo
- next $60,$61,$62,$61,$63,$61,$64,$7F,$6B,$6C,$6D,$6E,$6F,$70,$71,$72 ; ©'95.'96.'98 Creatures inc.
- next $60,$61,$62,$61,$63,$61,$64,$7F,$73,$74,$75,$76,$77,$78,$79,$7A,$7B ; ©'95.'96.'98 GAME FREAK inc.
- db "@"
-
-INCLUDE "data/title_mons.asm"
-
-; prints version text (red, blue)
-PrintGameVersionOnTitleScreen:
- coord hl, 7, 8
- ld de, VersionOnTitleScreenText
- jp PlaceString
-
-; these point to special tiles specifically loaded for that purpose and are not usual text
-VersionOnTitleScreenText:
-IF DEF(_RED)
- db $60,$61,$7F,$65,$66,$67,$68,$69,"@" ; "Red Version"
-ENDC
-IF DEF(_BLUE)
- db $61,$62,$63,$64,$65,$66,$67,$68,"@" ; "Blue Version"
-ENDC
-
-NintenText: db "NINTEN@"
-SonyText: db "SONY@"
--- a/engine/movie/titlescreen2.asm
+++ /dev/null
@@ -1,120 +1,0 @@
-TitleScroll_WaitBall:
-; Wait around for the TitleBall animation to play out.
-; hi: speed
-; lo: duration
- db $05, $05, 0
-
-TitleScroll_In:
-; Scroll a TitleMon in from the right.
-; hi: speed
-; lo: duration
- db $a2, $94, $84, $63, $52, $31, $11, 0
-
-TitleScroll_Out:
-; Scroll a TitleMon out to the left.
-; hi: speed
-; lo: duration
- db $12, $22, $32, $42, $52, $62, $83, $93, 0
-
-TitleScroll:
- ld a, d
-
- ld bc, TitleScroll_In
- ld d, $88
- ld e, 0 ; don't animate titleball
-
- and a
- jr nz, .ok
-
- ld bc, TitleScroll_Out
- ld d, $00
- ld e, 0 ; don't animate titleball
-.ok
-
-_TitleScroll:
- ld a, [bc]
- and a
- ret z
-
- inc bc
- push bc
-
- ld b, a
- and $f
- ld c, a
- ld a, b
- and $f0
- swap a
- ld b, a
-
-.loop
- ld h, d
- ld l, $48
- call .ScrollBetween
-
- ld h, $00
- ld l, $88
- call .ScrollBetween
-
- ld a, d
- add b
- ld d, a
-
- call GetTitleBallY
- dec c
- jr nz, .loop
-
- pop bc
- jr _TitleScroll
-
-.ScrollBetween:
-.wait
- ld a, [rLY] ; rLY
- cp l
- jr nz, .wait
-
- ld a, h
- ld [rSCX], a
-
-.wait2
- ld a, [rLY] ; rLY
- cp h
- jr z, .wait2
- ret
-
-TitleBallYTable:
-; OBJ y-positions for the Poke Ball held by Red in the title screen.
-; This is really two 0-terminated lists. Initiated with an index of 1.
- db 0, $71, $6f, $6e, $6d, $6c, $6d, $6e, $6f, $71, $74, 0
-
-TitleScreenAnimateBallIfStarterOut:
-; Animate the TitleBall if a starter just got scrolled out.
- ld a, [wTitleMonSpecies]
- cp STARTER1
- jr z, .ok
- cp STARTER2
- jr z, .ok
- cp STARTER3
- ret nz
-.ok
- ld e, 1 ; animate titleball
- ld bc, TitleScroll_WaitBall
- ld d, 0
- jp _TitleScroll
-
-GetTitleBallY:
-; Get position e from TitleBallYTable
- push de
- push hl
- xor a
- ld d, a
- ld hl, TitleBallYTable
- add hl, de
- ld a, [hl]
- pop hl
- pop de
- and a
- ret z
- ld [wOAMBuffer + $28], a
- inc e
- ret
--- a/engine/movie/trade.asm
+++ b/engine/movie/trade.asm
@@ -137,10 +137,10 @@
Trade_CopyTileMapToVRAM:
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
Trade_Delay80:
@@ -184,7 +184,7 @@
ld [rOBP0], a
call EnableLCD
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, [wTradedPlayerMonSpecies]
ld [wd11e], a
call GetMonName
@@ -231,7 +231,7 @@
ld [rWX], a
ld [hSCX], a
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 4, 0
ld b, 6
ld c, 10
@@ -261,7 +261,7 @@
ld a, [wTradedPlayerMonSpecies]
call PlayCry
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
Trade_DrawOpenEndOfLinkCable:
@@ -336,13 +336,13 @@
.ballSpriteReachedEdgeOfScreen
call ClearSprites
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearScreen
ld b, $98
call CopyScreenTileBufferToVRAM
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
Trade_BallInsideLinkCableOAM:
@@ -360,13 +360,13 @@
call Trade_PrintEnemyMonInfoText
call Trade_CopyTileMapToVRAM
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, [wTradedEnemyMonSpecies]
call Trade_LoadMonSprite
ld a, TRADE_BALL_POOF_ANIM
call Trade_ShowAnimation
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, [wTradedEnemyMonSpecies]
call PlayCry
call Trade_Delay100
@@ -397,7 +397,7 @@
ld b, $6
call Trade_AnimMonMoveHorizontal
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Trade_DrawCableAcrossScreen
ld b, $4
call Trade_AnimMonMoveHorizontal
@@ -405,7 +405,7 @@
ld b, $6
call Trade_AnimMonMoveHorizontal
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Trade_AnimMonMoveVertical
jp ClearSprites
@@ -430,7 +430,7 @@
ld b, $6
call Trade_AnimMonMoveHorizontal
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Trade_DrawCableAcrossScreen
ld b, $4
call Trade_AnimMonMoveHorizontal
@@ -438,16 +438,16 @@
ld b, $6
call Trade_AnimMonMoveHorizontal
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
jp ClearSprites
Trade_InitGameboyTransferGfx:
; Initialises the graphics for showing a mon moving between gameboys.
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearScreen
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Trade_LoadMonPartySpriteGfx
call DelayFrame
ld a, %10101011
@@ -731,9 +731,9 @@
ld b, SET_PAL_POKEMON_WHOLE_SCREEN
ld c, 0
call RunPaletteCommand
- ld a, [H_AUTOBGTRANSFERENABLED]
+ ld a, [hAutoBGTransferEnabled]
xor $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call GetMonHeader
coord hl, 7, 2
call LoadFlippedFrontSpriteByMonIndex
@@ -743,7 +743,7 @@
Trade_ShowClearedWindow:
; clears the window and covers the BG entirely with the window
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call ClearScreen
ld a, %11100011
ld [rLCDC], a
--- a/engine/overworld/auto_movement.asm
+++ b/engine/overworld/auto_movement.asm
@@ -66,7 +66,7 @@
call FillMemory
ld [hl], $ff
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, wNPCMovementDirections2
call MoveSprite
ld a, $1
@@ -282,7 +282,7 @@
jr .loop
.notRival
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
jp SetSpriteMovementBytesToFF
RivalIDs:
--- a/engine/overworld/clear_variables.asm
+++ b/engine/overworld/clear_variables.asm
@@ -3,7 +3,7 @@
ld [hWY], a
ld [rWY], a
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld [wStepCounter], a
ld [wLoneAttackNo], a
ld [hJoyPressed], a
--- a/engine/overworld/cut.asm
+++ b/engine/overworld/cut.asm
@@ -248,4 +248,4 @@
ld [hl], a
ret
-INCLUDE "data/cut_tree_blocks.asm"
+INCLUDE "data/tilesets/cut_tree_blocks.asm"
--- a/engine/overworld/doors.asm
+++ b/engine/overworld/doors.asm
@@ -25,4 +25,4 @@
and a
ret
-INCLUDE "data/door_tile_ids.asm"
+INCLUDE "data/tilesets/door_tile_ids.asm"
--- a/engine/overworld/elevator.asm
+++ b/engine/overworld/elevator.asm
@@ -4,7 +4,7 @@
ld de, SCREEN_HEIGHT * $20
call ShakeElevatorRedrawRow
call Delay3
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
call PlaySound
ld a, [hSCY]
ld d, a
@@ -27,7 +27,7 @@
jr nz, .shakeLoop
ld a, d
ld [hSCY], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
call PlaySound
ld c, BANK(SFX_Safari_Zone_PA)
ld a, SFX_SAFARI_ZONE_PA
--- a/engine/overworld/healing_machine.asm
+++ b/engine/overworld/healing_machine.asm
@@ -17,7 +17,7 @@
call CopyHealingMachineOAM
ld a, 4
ld [wAudioFadeOutControl], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
.waitLoop
@@ -38,7 +38,7 @@
cp BANK(Audio3_UpdateMusic)
ld [wAudioSavedROMBank], a
jr nz, .next
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld a, BANK(Music_PkmnHealed)
--- a/engine/overworld/hidden_objects.asm
+++ b/engine/overworld/hidden_objects.asm
@@ -14,14 +14,14 @@
set 4, [hl]
ret
-; if a hidden object was found, stores $00 in [$ffee], else stores $ff
+; if a hidden object was found, stores $00 in [hFoundHiddenObject], else stores $ff
CheckForHiddenObject::
- ld hl, $ffeb
+ ld hl, hFoundHiddenObjectOrBookshelf
xor a
- ld [hli], a
- ld [hli], a
- ld [hli], a
- ld [hl], a
+ ld [hli], a ; [hFoundHiddenObjectOrBookshelf]
+ ld [hli], a ; [hSavedMapTextPtr]
+ ld [hli], a ; [hSavedMapTextPtr + 1]
+ ld [hl], a ; [hFoundHiddenObject]
ld de, $0
ld hl, HiddenObjectMaps
.hiddenMapLoop
@@ -81,7 +81,7 @@
ret
.noMatch
ld a, $ff
- ld [$ffee], a
+ ld [hFoundHiddenObject], a
ret
; checks if the coordinates in front of the player's sprite match Y in b and X in c
@@ -130,4 +130,4 @@
ld [hCoordsInFrontOfPlayerMatch], a
ret
-INCLUDE "data/hidden_objects.asm"
+INCLUDE "data/events/hidden_objects.asm"
--- a/engine/overworld/ledges.asm
+++ b/engine/overworld/ledges.asm
@@ -54,7 +54,7 @@
call PlaySound
ret
-INCLUDE "data/ledge_tiles.asm"
+INCLUDE "data/tilesets/ledge_tiles.asm"
LoadHoppingShadowOAM:
ld hl, vChars1 + $7f0
--- a/engine/overworld/map_sprites.asm
+++ b/engine/overworld/map_sprites.asm
@@ -133,8 +133,7 @@
jr nc, .fourTileSpriteVRAMAddr
ld d, a
dec d
-; Equivalent to multiplying $C0 (number of bytes in 12 tiles) times the VRAM
-; slot and adding the result to $8000 (the VRAM base address).
+; vSprites += [hVRAMSlot] * $C0 (the number of bytes in 12 tiles)
.calculateVRAMAddrLoop
add hl, bc
dec d
@@ -437,4 +436,6 @@
ld a, $01
ret
-INCLUDE "data/sprite_sets.asm"
+INCLUDE "data/maps/sprite_sets.asm"
+
+INCLUDE "data/sprites/sprites.asm"
--- a/engine/overworld/missable_objects.asm
+++ b/engine/overworld/missable_objects.asm
@@ -31,19 +31,19 @@
sub d
ld h, a
ld a, h
- ld [H_DIVIDEND], a
+ ld [hDividend], a
ld a, l
- ld [H_DIVIDEND+1], a
+ ld [hDividend+1], a
xor a
- ld [H_DIVIDEND+2], a
- ld [H_DIVIDEND+3], a
+ ld [hDividend+2], a
+ ld [hDividend+3], a
ld a, $3
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $2
call Divide ; divide difference by 3, resulting in the global offset (number of missable items before ours)
ld a, [wCurMap]
ld b, a
- ld a, [H_DIVIDEND+3]
+ ld a, [hDividend+3]
ld c, a ; store global offset in c
ld de, wMissableObjectList
pop hl
@@ -99,7 +99,7 @@
; tests if current sprite is a missable object that is hidden/has been removed
IsObjectHidden:
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
swap a
ld b, a
ld hl, wMissableObjectList
@@ -120,7 +120,7 @@
.notHidden
xor a
.hidden
- ld [$ffe5], a
+ ld [hIsHiddenMissableObject], a
ret
; adds missable object (items, leg. pokemon, etc.) to the map
--- a/engine/overworld/movement.asm
+++ b/engine/overworld/movement.asm
@@ -63,7 +63,7 @@
ld a, [wd736]
bit 7, a ; is the player sprite spinning due to a spin tile?
jr nz, .skipSpriteAnim
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $7
ld l, a
ld a, [hl]
@@ -103,7 +103,7 @@
UnusedReadSpriteDataFunction:
push bc
push af
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
ld c, a
pop af
add c
@@ -112,7 +112,7 @@
ret
UpdateNPCSprite:
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
swap a
dec a
add a
@@ -122,7 +122,7 @@
ld a, [hl] ; read movement byte 2
ld [wCurSpriteMovement2], a
ld h, $c1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
ld l, a
inc l
ld a, [hl] ; c1x1
@@ -131,7 +131,7 @@
call CheckSpriteAvailability
ret c ; if sprite is invisible, on tile >=MAP_TILESET_SIZE, in grass or player is currently walking
ld h, $c1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
ld l, a
inc l
ld a, [hl] ; c1x1
@@ -151,7 +151,7 @@
ret nz ; don't do anything yet if player is currently moving (redundant, already tested in CheckSpriteAvailability)
call InitializeSpriteScreenPosition
ld h, $c2
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $6
ld l, a
ld a, [hl] ; c2x6: movement byte 1
@@ -264,11 +264,11 @@
TryWalking:
push hl
ld h, $c1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $9
ld l, a
ld [hl], c ; c1x9 (update facing direction)
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $3
ld l, a
ld [hl], d ; c1x3 (update Y movement delta)
@@ -282,7 +282,7 @@
pop de
ret c ; cannot walk there (reinitialization of delay values already done)
ld h, $c2
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $4
ld l, a
ld a, [hl] ; c2x4: Y position
@@ -291,7 +291,7 @@
ld a, [hl] ; c2x5: X position
add e
ld [hl], a ; update X position
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
ld l, a
ld [hl], $10 ; c2x0=16: walk animation counter
dec h
@@ -301,7 +301,7 @@
; update the walking animation parameters for a sprite that is currently walking
UpdateSpriteInWalkingAnimation:
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $7
ld l, a
ld a, [hl] ; c1x7 (counter until next walk animation frame)
@@ -317,7 +317,7 @@
and $3
ld [hl], a ; advance to next animation frame every 4 ticks (16 ticks total for one step)
.noNextAnimationFrame
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $3
ld l, a
ld a, [hli] ; c1x3 (movement Y delta)
@@ -330,7 +330,7 @@
ld a, [hl] ; c1x6 (screen X position)
add b
ld [hl], a ; update screen X position
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
ld l, a
inc h
ld a, [hl] ; c2x0 (walk animation counter)
@@ -343,7 +343,7 @@
ld a, [hl] ; c2x6 (movement byte 1)
cp $fe
jr nc, .initNextMovementCounter ; values $fe and $ff
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
inc a
ld l, a
dec h
@@ -351,7 +351,7 @@
ret
.initNextMovementCounter
call Random
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $8
ld l, a
ld a, [hRandomAdd]
@@ -358,7 +358,7 @@
and $7f
ld [hl], a ; c2x8: set next movement delay to a random value in [0,$7f]
dec h ; note that value 0 actually makes the delay $100 (bug?)
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
inc a
ld l, a
ld [hl], $2 ; c1x1 = 2 (movement status)
@@ -375,7 +375,7 @@
; update delay value (c2x8) for sprites in the delayed state (c1x1)
UpdateSpriteMovementDelay:
ld h, $c2
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $6
ld l, a
ld a, [hl] ; c2x6: movement byte 1
@@ -390,13 +390,13 @@
jr nz, notYetMoving
.moving
dec h
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
inc a
ld l, a
ld [hl], $1 ; c1x1 = 1 (mark as ready to move)
notYetMoving:
ld h, wSpriteStateData1 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $8
ld l, a
ld [hl], $0 ; c1x8 = 0 (walk animation frame)
@@ -429,7 +429,7 @@
.notFacingRight
ld c, SPRITE_FACING_LEFT
.facingDirectionDetermined
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $9
ld l, a
ld [hl], c ; c1x9: set facing direction
@@ -440,7 +440,7 @@
inc l
ld [hl], $ff ; $c1x2: set sprite image to $ff (invisible/off screen)
inc h
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $2
ld l, a
ld a, $8
@@ -451,7 +451,7 @@
; calculates the sprite's screen position form its map position and the player position
InitializeSpriteScreenPosition:
ld h, wSpriteStateData2 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $4
ld l, a
ld a, [wYCoord]
@@ -475,17 +475,17 @@
; tests if sprite is off screen or otherwise unable to do anything
CheckSpriteAvailability:
predef IsObjectHidden
- ld a, [$ffe5]
+ ld a, [hIsHiddenMissableObject]
and a
jp nz, .spriteInvisible
ld h, wSpriteStateData2 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $6
ld l, a
ld a, [hl] ; c2x6: movement byte 1
cp $fe
jr c, .skipXVisibilityTest ; movement byte 1 < $fe (i.e. the sprite's movement is scripted)
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $4
ld l, a
ld b, [hl] ; c2x4: Y pos (+4)
@@ -527,7 +527,7 @@
jr c, .spriteVisible ; standing on tile with ID >=MAP_TILESET_SIZE (top right tile)
.spriteInvisible
ld h, wSpriteStateData1 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $2
ld l, a
ld [hl], $ff ; c1x2
@@ -540,7 +540,7 @@
jr nz, .done ; if player is currently walking, we're done
call UpdateSpriteImage
inc h
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $7
ld l, a
ld a, [wGrassTile]
@@ -556,7 +556,7 @@
UpdateSpriteImage:
ld h, $c1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $8
ld l, a
ld a, [hli] ; c1x8: walk animation frame
@@ -564,10 +564,10 @@
ld a, [hl] ; c1x9: facing direction
add b
ld b, a
- ld a, [$ff93] ; current sprite offset
+ ld a, [hTilePlayerStandingOn]
add b
ld b, a
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $2
ld l, a
ld [hl], b ; c1x2: sprite to display
@@ -581,7 +581,7 @@
; set carry on failure, clears carry on success
CanWalkOntoTile:
ld h, wSpriteStateData2 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $6
ld l, a
ld a, [hl] ; c2x6 (movement byte 1)
@@ -602,7 +602,7 @@
cp c
jr nz, .tilePassableLoop
ld h, $c2
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $6
ld l, a
ld a, [hl] ; $c2x6 (movement byte 1)
@@ -609,7 +609,7 @@
inc a
jr z, .impassable ; if $ff, no movement allowed (however, changing direction is)
ld h, wSpriteStateData1 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $4
ld l, a
ld a, [hli] ; c1x4 (screen Y pos)
@@ -628,7 +628,7 @@
pop bc
pop de
ld h, wSpriteStateData1 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $c
ld l, a
ld a, [hl] ; c1xc (directions in which sprite collision would occur)
@@ -635,7 +635,7 @@
and b ; check against chosen direction (1,2,4 or 8)
jr nz, .impassable ; collision between sprites, don't go there
ld h, wSpriteStateData2 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $2
ld l, a
ld a, [hli] ; c2x2 (sprite Y displacement, initialized at $8, keep track of where a sprite did go)
@@ -666,7 +666,7 @@
ret
.impassable
ld h, $c1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
inc a
ld l, a
ld [hl], $2 ; c1x1 = 2 (set movement status to delayed)
@@ -677,7 +677,7 @@
inc l
ld [hl], a ; c1x5 = 0 (clear X movement delta)
inc h
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $8
ld l, a
call Random
@@ -692,7 +692,7 @@
; hl: output pointer
GetTileSpriteStandsOn:
ld h, wSpriteStateData1 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $4
ld l, a
ld a, [hli] ; c1x4: screen Y position
@@ -784,7 +784,7 @@
ld a, [hl]
add b
ld [hl], a
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $9
ld l, a
ld a, c
@@ -817,7 +817,7 @@
GetSpriteScreenXYPointerCommon:
ld hl, wSpriteStateData1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add l
add b
ld l, a
@@ -825,7 +825,7 @@
AnimScriptedNPCMovement:
ld hl, wSpriteStateData2
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $e
ld l, a
ld a, [hl] ; VRAM slot
@@ -833,7 +833,7 @@
swap a
ld b, a
ld hl, wSpriteStateData1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $9
ld l, a
ld a, [hl] ; facing direction
@@ -852,7 +852,7 @@
ld [hSpriteVRAMSlotAndFacing], a
call AdvanceScriptedNPCAnimFrameCounter
ld hl, wSpriteStateData1
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $2
ld l, a
ld a, [hSpriteVRAMSlotAndFacing]
@@ -863,7 +863,7 @@
ret
AdvanceScriptedNPCAnimFrameCounter:
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $7
ld l, a
ld a, [hl] ; intra-animation frame counter
--- a/engine/overworld/player_animations.asm
+++ b/engine/overworld/player_animations.asm
@@ -373,7 +373,7 @@
ld [wStandingOnWarpPadOrHole], a
ret
-INCLUDE "data/warp_pad_hole_tile_ids.asm"
+INCLUDE "data/tilesets/warp_pad_hole_tile_ids.asm"
FishingAnim:
ld c, 10
--- a/engine/overworld/player_state.asm
+++ b/engine/overworld/player_state.asm
@@ -82,7 +82,7 @@
ld [wWalkBikeSurfStateCopy], a
jp ForceBikeOrSurf
-INCLUDE "data/force_bike_surf.asm"
+INCLUDE "data/maps/force_bike_surf.asm"
IsPlayerFacingEdgeOfMap::
push hl
@@ -176,7 +176,7 @@
pop hl
ret
-INCLUDE "data/warp_carpet_tile_ids.asm"
+INCLUDE "data/tilesets/warp_carpet_tile_ids.asm"
IsSSAnneBowWarpTileInFrontOfPlayer:
ld a, [wTileInFrontOfPlayer]
@@ -215,7 +215,7 @@
pop hl
ret
-INCLUDE "data/warp_tile_ids.asm"
+INCLUDE "data/tilesets/warp_tile_ids.asm"
PrintSafariZoneSteps::
ld a, [wCurMap]
@@ -297,7 +297,7 @@
GetTileTwoStepsInFrontOfPlayer:
xor a
- ld [$ffdb], a
+ ld [hPlayerFacing], a
ld hl, wYCoord
ld a, [hli]
ld d, a
@@ -306,7 +306,7 @@
and a ; cp SPRITE_FACING_DOWN
jr nz, .notFacingDown
; facing down
- ld hl, $ffdb
+ ld hl, hPlayerFacing
set 0, [hl]
aCoord 8, 13
inc d
@@ -315,7 +315,7 @@
cp SPRITE_FACING_UP
jr nz, .notFacingUp
; facing up
- ld hl, $ffdb
+ ld hl, hPlayerFacing
set 1, [hl]
aCoord 8, 5
dec d
@@ -324,7 +324,7 @@
cp SPRITE_FACING_LEFT
jr nz, .notFacingLeft
; facing left
- ld hl, $ffdb
+ ld hl, hPlayerFacing
set 2, [hl]
aCoord 4, 9
dec e
@@ -333,7 +333,7 @@
cp SPRITE_FACING_RIGHT
jr nz, .storeTile
; facing right
- ld hl, $ffdb
+ ld hl, hPlayerFacing
set 3, [hl]
aCoord 12, 9
inc e
@@ -378,33 +378,33 @@
ld hl, wSpriteStateData2 + $14
add hl, de
ld a, [hli] ; map Y position
- ld [$ffdc], a
+ ld [hPlayerYCoord], a
ld a, [hl] ; map X position
- ld [$ffdd], a
+ ld [hPlayerXCoord], a
ld a, [wNumSprites]
ld c, a
ld de, $f
ld hl, wSpriteStateData2 + $14
- ld a, [$ffdb]
+ ld a, [hPlayerFacing]
and $3 ; facing up or down?
jr z, .pushingHorizontallyLoop
.pushingVerticallyLoop
inc hl
- ld a, [$ffdd]
+ ld a, [hPlayerXCoord]
cp [hl]
jr nz, .nextSprite1 ; if X coordinates don't match
dec hl
ld a, [hli]
ld b, a
- ld a, [$ffdb]
+ ld a, [hPlayerFacing]
rrca
jr c, .pushingDown
; pushing up
- ld a, [$ffdc]
+ ld a, [hPlayerYCoord]
dec a
jr .compareYCoords
.pushingDown
- ld a, [$ffdc]
+ ld a, [hPlayerYCoord]
inc a
.compareYCoords
cp b
@@ -417,19 +417,19 @@
.pushingHorizontallyLoop
ld a, [hli]
ld b, a
- ld a, [$ffdc]
+ ld a, [hPlayerYCoord]
cp b
jr nz, .nextSprite2
ld b, [hl]
- ld a, [$ffdb]
+ ld a, [hPlayerFacing]
bit 2, a
jr nz, .pushingLeft
; pushing right
- ld a, [$ffdd]
+ ld a, [hPlayerXCoord]
inc a
jr .compareXCoords
.pushingLeft
- ld a, [$ffdd]
+ ld a, [hPlayerXCoord]
dec a
.compareXCoords
cp b
--- a/engine/overworld/push_boulder.asm
+++ b/engine/overworld/push_boulder.asm
@@ -92,7 +92,7 @@
call ResetBoulderPushFlags
set 7, [hl]
ld a, [wBoulderSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call GetSpriteMovementByte2Pointer
ld [hl], $10
ld a, SFX_CUT
--- a/engine/overworld/special_warps.asm
+++ b/engine/overworld/special_warps.asm
@@ -146,4 +146,4 @@
ld [wDestinationWarpID], a
ret
-INCLUDE "data/special_warps.asm"
+INCLUDE "data/maps/special_warps.asm"
--- a/engine/overworld/sprite_collisions.asm
+++ b/engine/overworld/sprite_collisions.asm
@@ -6,7 +6,7 @@
ld l, a
sub $e
ld c, a
- ld [H_CURRENTSPRITEOFFSET], a
+ ld [hCurrentSpriteOffset], a
ld a, [hl]
and a
jr z, .skipSprite ; tests $c2Xe
@@ -31,10 +31,10 @@
UpdateNonPlayerSprite:
dec a
swap a
- ld [$ff93], a ; $10 * sprite#
+ ld [hTilePlayerStandingOn], a ; $10 * sprite#
ld a, [wNPCMovementScriptSpriteOffset] ; some sprite offset?
ld b, a
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
cp b
jr nz, .unequal
jp DoScriptedNPCMovement
@@ -41,7 +41,7 @@
.unequal
jp UpdateNPCSprite
-; This detects if the current sprite (whose offset is at H_CURRENTSPRITEOFFSET)
+; This detects if the current sprite (whose offset is at hCurrentSpriteOffset)
; is going to collide with another sprite by looping over the other sprites.
; The current sprite's offset will be labelled with i (e.g. $c1i0).
; The loop sprite's offset will labelled with j (e.g. $c1j0).
@@ -54,7 +54,7 @@
nop
ld h, wSpriteStateData1 / $100
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add wSpriteStateData1 % $100
ld l, a
@@ -79,7 +79,7 @@
and $f0
or c
- ld [$ff90], a ; store Y coordinate adjusted for direction of movement
+ ld [hFF90], a ; store Y coordinate adjusted for direction of movement
ld a, [hli] ; a = [$c1i5] (delta X) (-1, 0, or 1)
call SetSpriteCollisionValues
@@ -92,7 +92,7 @@
and $f0
or c
- ld [$ff91], a ; store X coordinate adjusted for direction of movement
+ ld [hFF91], a ; store X coordinate adjusted for direction of movement
ld a, l
add 7
@@ -102,18 +102,18 @@
ld [hld], a ; zero [$c1id] XXX what's [$c1id] for?
ld [hld], a ; zero [$c1ic] (directions in which collisions occurred)
- ld a, [$ff91]
+ ld a, [hFF91]
ld [hld], a ; [$c1ib] = adjusted X coordinate
- ld a, [$ff90]
+ ld a, [hFF90]
ld [hl], a ; [$c1ia] = adjusted Y coordinate
xor a ; zero the loop counter
.loop
- ld [$ff8f], a ; store loop counter
+ ld [hFF8F], a ; store loop counter
swap a
ld e, a
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
cp e ; does the loop sprite match the current sprite?
jp z, .next ; go to the next sprite if they match
@@ -128,7 +128,7 @@
inc a
jp z, .next ; go the next sprite if offscreen
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add 10
ld l, a
@@ -154,7 +154,7 @@
cpl
inc a
.noCarry1
- ld [$ff90], a ; store the distance between the two sprites' adjusted Y values
+ ld [hFF90], a ; store the distance between the two sprites' adjusted Y values
; Use the carry flag set by the above subtraction to determine which sprite's
; Y coordinate is larger. This information is used later to set [$c1ic],
@@ -176,11 +176,11 @@
ld b, 9
.next1
- ld a, [$ff90] ; a = distance between adjusted Y coordinates
+ ld a, [hFF90] ; a = distance between adjusted Y coordinates
sub b
- ld [$ff92], a ; store distance adjusted using sprite i's direction
+ ld [hFF92], a ; store distance adjusted using sprite i's direction
ld a, b
- ld [$ff90], a ; store 7 or 9 depending on sprite i's delta Y
+ ld [hFF90], a ; store 7 or 9 depending on sprite i's delta Y
jr c, .checkXDistance
; If sprite j's delta Y is 0, then b = 7, else b = 9.
@@ -193,7 +193,7 @@
ld b, 9
.next2
- ld a, [$ff92] ; a = distance adjusted using sprite i's direction
+ ld a, [hFF92] ; a = distance adjusted using sprite i's direction
sub b ; adjust distance using sprite j's direction
jr z, .checkXDistance
jr nc, .next ; go to next sprite if distance is still positive after both adjustments
@@ -225,7 +225,7 @@
cpl
inc a
.noCarry2
- ld [$ff91], a ; store the distance between the two sprites' adjusted X values
+ ld [hFF91], a ; store the distance between the two sprites' adjusted X values
; Use the carry flag set by the above subtraction to determine which sprite's
; X coordinate is larger. This information is used later to set [$c1ic],
@@ -247,11 +247,11 @@
ld b, 9
.next3
- ld a, [$ff91] ; a = distance between adjusted X coordinates
+ ld a, [hFF91] ; a = distance between adjusted X coordinates
sub b
- ld [$ff92], a ; store distance adjusted using sprite i's direction
+ ld [hFF92], a ; store distance adjusted using sprite i's direction
ld a, b
- ld [$ff91], a ; store 7 or 9 depending on sprite i's delta X
+ ld [hFF91], a ; store 7 or 9 depending on sprite i's delta X
jr c, .collision
; If sprite j's delta X is 0, then b = 7, else b = 9.
@@ -264,15 +264,15 @@
ld b, 9
.next4
- ld a, [$ff92] ; a = distance adjusted using sprite i's direction
+ ld a, [hFF92] ; a = distance adjusted using sprite i's direction
sub b ; adjust distance using sprite j's direction
jr z, .collision
jr nc, .next ; go to next sprite if distance is still positive after both adjustments
.collision
- ld a, [$ff91] ; a = 7 or 9 depending on sprite i's delta X
+ ld a, [hFF91] ; a = 7 or 9 depending on sprite i's delta X
ld b, a
- ld a, [$ff90] ; a = 7 or 9 depending on sprite i's delta Y
+ ld a, [hFF90] ; a = 7 or 9 depending on sprite i's delta Y
inc l
; If delta X isn't 0 and delta Y is 0, then b = %0011, else b = %1100.
@@ -294,7 +294,7 @@
; set bit in [$c1ie] or [$c1if] to indicate which sprite the collision occurred with
inc l
inc l
- ld a, [$ff8f] ; a = loop counter
+ ld a, [hFF8F] ; a = loop counter
ld de, SpriteCollisionBitTable
add a
add e
@@ -311,7 +311,7 @@
ld [hl], a
.next
- ld a, [$ff8f] ; a = loop counter
+ ld a, [hFF8F] ; a = loop counter
inc a
cp $10
jp nz, .loop
--- a/engine/overworld/tilesets.asm
+++ b/engine/overworld/tilesets.asm
@@ -25,7 +25,7 @@
ld a, [hl]
ld [hTilesetType], a
xor a
- ld [$ffd8], a
+ ld [hMovingBGTilesCounter1], a
pop hl
ld a, [wCurMapTileset]
push hl
@@ -55,6 +55,6 @@
.done
ret
-INCLUDE "data/dungeon_tilesets.asm"
+INCLUDE "data/tilesets/dungeon_tilesets.asm"
-INCLUDE "data/tileset_headers.asm"
+INCLUDE "data/tilesets/tileset_headers.asm"
--- a/engine/overworld/trainer_sight.asm
+++ b/engine/overworld/trainer_sight.asm
@@ -2,19 +2,19 @@
ld hl, wSpriteStateData1
ld de, $4
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call GetSpriteDataPointer
ld a, [hli] ; c1x4 (screen Y pos)
- ld [$ffeb], a
+ ld [hSpriteScreenYCoord], a
inc hl
ld a, [hl] ; c1x6 (screen X pos)
- ld [$ffec], a
+ ld [hSpriteScreenXCoord], a
ld de, (wSpriteStateData2 + $4) - (wSpriteStateData1 + $6)
add hl, de
ld a, [hli] ; c2x4 (map Y pos)
- ld [$ffed], a
+ ld [hSpriteMapYCoord], a
ld a, [hl] ; c2x5 (map X pos)
- ld [$ffee], a
+ ld [hSpriteMapXCoord], a
ret
_GetSpritePosition2::
@@ -21,7 +21,7 @@
ld hl, wSpriteStateData1
ld de, $4
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call GetSpriteDataPointer
ld a, [hli] ; c1x4 (screen Y pos)
ld [wSavedSpriteScreenY], a
@@ -40,18 +40,18 @@
ld hl, wSpriteStateData1
ld de, $4
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call GetSpriteDataPointer
- ld a, [$ffeb] ; c1x4 (screen Y pos)
+ ld a, [hSpriteScreenYCoord] ; c1x4 (screen Y pos)
ld [hli], a
inc hl
- ld a, [$ffec] ; c1x6 (screen X pos)
+ ld a, [hSpriteScreenXCoord] ; c1x6 (screen X pos)
ld [hl], a
ld de, (wSpriteStateData2 + $4) - (wSpriteStateData1 + $6)
add hl, de
- ld a, [$ffed] ; c2x4 (map Y pos)
+ ld a, [hSpriteMapYCoord] ; c2x4 (map Y pos)
ld [hli], a
- ld a, [$ffee] ; c2x5 (map X pos)
+ ld a, [hSpriteMapXCoord] ; c2x5 (map X pos)
ld [hl], a
ret
@@ -59,7 +59,7 @@
ld hl, wSpriteStateData1
ld de, 4
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call GetSpriteDataPointer
ld a, [wSavedSpriteScreenY]
ld [hli], a ; c1x4 (screen Y pos)
@@ -144,7 +144,7 @@
call FillMemory ; write the necessary steps to reach player
ld [hl], $ff ; write end of list sentinel
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
jp MoveSprite_
; input: de = offset within sprite entry
@@ -152,7 +152,7 @@
GetSpriteDataPointer:
push de
add hl, de
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
swap a
ld d, $0
ld e, a
--- a/engine/overworld/turn_sprite.asm
+++ b/engine/overworld/turn_sprite.asm
@@ -1,12 +1,12 @@
UpdateSpriteFacingOffsetAndDelayMovement::
ld h, $c2
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $8
ld l, a
ld a, $7f ; maximum movement delay
ld [hl], a ; c2x8 (movement delay)
dec h
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $9
ld l, a
ld a, [hld] ; c1x9 (facing direction)
@@ -14,7 +14,7 @@
xor a
ld [hld], a
ld [hl], a ; c1x8 (walk animation frame)
- ld a, [H_CURRENTSPRITEOFFSET]
+ ld a, [hCurrentSpriteOffset]
add $2
ld l, a
ld a, [hl] ; c1x2 (facing and animation table offset)
--- a/engine/overworld/update_map.asm
+++ b/engine/overworld/update_map.asm
@@ -50,12 +50,12 @@
ld a, [wIsInBattle]
inc a
ret z
- ld a, [H_AUTOBGTRANSFERENABLED]
+ ld a, [hAutoBGTransferEnabled]
push af
ld a, [hTilesetType]
push af
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld [hTilesetType], a ; no flower/water BG tile animations
call LoadCurrentMapView
call RunDefaultPaletteCommand
@@ -63,7 +63,7 @@
ld a, [hli]
ld h, [hl]
ld l, a
- ld de, -2 * 32
+ ld de, -2 * BG_MAP_WIDTH
add hl, de
ld a, h
and $3
@@ -73,8 +73,8 @@
ld a, h
ld [wBuffer + 1], a ; this copy of the address is not used
ld a, 2
- ld [$ffbe], a
- ld c, 9 ; number of rows of 2x2 tiles (this covers the whole screen)
+ ld [hRedrawMapViewRowOffset], a
+ ld c, SCREEN_HEIGHT / 2 ; number of rows of 2x2 tiles (this covers the whole screen)
.redrawRowLoop
push bc
push hl
@@ -81,7 +81,7 @@
push hl
ld hl, wTileMap - 2 * SCREEN_WIDTH
ld de, SCREEN_WIDTH
- ld a, [$ffbe]
+ ld a, [hRedrawMapViewRowOffset]
.calcWRAMAddrLoop
add hl, de
dec a
@@ -88,8 +88,8 @@
jr nz, .calcWRAMAddrLoop
call CopyToRedrawRowOrColumnSrcTiles
pop hl
- ld de, $20
- ld a, [$ffbe]
+ ld de, BG_MAP_WIDTH
+ ld a, [hRedrawMapViewRowOffset]
ld c, a
.calcVRAMAddrLoop
add hl, de
@@ -104,7 +104,7 @@
ld a, REDRAW_ROW
ld [hRedrawRowOrColumnMode], a
call DelayFrame
- ld hl, $ffbe
+ ld hl, hRedrawMapViewRowOffset
inc [hl]
inc [hl]
pop hl
@@ -114,7 +114,7 @@
pop af
ld [hTilesetType], a
pop af
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
CompareHLWithBC:
--- a/engine/overworld/wild_mons.asm
+++ b/engine/overworld/wild_mons.asm
@@ -16,10 +16,10 @@
jr z, .NoGrassData ; if no grass data, skip to surfing data
push hl
ld de, wGrassMons ; otherwise, load grass data
- ld bc, $0014
+ ld bc, $14
call CopyData
pop hl
- ld bc, $0014
+ ld bc, $14
add hl, bc
.NoGrassData
ld a, [hli]
@@ -27,7 +27,7 @@
and a
ret z ; if no water data, we're done
ld de, wWaterMons ; otherwise, load surfing data
- ld bc, $0014
+ ld bc, $14
jp CopyData
-INCLUDE "data/wild_mons.asm"
+INCLUDE "data/wild/grass_water.asm"
--- a/engine/pokemon/add_mon.asm
+++ b/engine/pokemon/add_mon.asm
@@ -129,10 +129,10 @@
xor a
ld b, a
call CalcStat ; calc HP stat (set cur Hp to max HP)
- ld a, [H_MULTIPLICAND+1]
+ ld a, [hMultiplicand+1]
ld [de], a
inc de
- ld a, [H_MULTIPLICAND+2]
+ ld a, [hMultiplicand+2]
ld [de], a
inc de
xor a
--- a/engine/pokemon/bills_pc.asm
+++ b/engine/pokemon/bills_pc.asm
@@ -1,6 +1,6 @@
DisplayPCMainMenu::
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call SaveScreenTilesToBuffer2
ld a, [wNumHoFTeams]
and a
@@ -82,7 +82,7 @@
ld [wCurrentMenuItem], a
ld [wLastMenuItem], a
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
SomeonesPCText: db "SOMEONE's PC@"
@@ -168,7 +168,7 @@
ld de, BoxNoPCText
call PlaceString
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
call HandleMenuInput
bit 1, a
@@ -376,7 +376,8 @@
and a
ret
-INCLUDE "data/hm_moves.asm"
+HMMoveArray:
+INCLUDE "data/moves/hm_moves.asm"
DisplayDepositWithdrawMenu:
coord hl, 9, 10
--- a/engine/pokemon/evos_moves.asm
+++ b/engine/pokemon/evos_moves.asm
@@ -120,12 +120,12 @@
ld c, 50
call DelayFrames
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
coord hl, 0, 0
lb bc, 12, 20
call ClearScreenArea
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld a, $ff
ld [wUpdateSpritesEnabled], a
call ClearSprites
@@ -510,4 +510,4 @@
Evolution_FlagAction:
predef_jump FlagActionPredef
-INCLUDE "data/evos_moves.asm"
+INCLUDE "data/pokemon/evos_moves.asm"
--- a/engine/pokemon/experience.asm
+++ b/engine/pokemon/experience.asm
@@ -38,58 +38,58 @@
add hl, bc
call CalcDSquared
ld a, d
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld a, [hl]
and $f0
swap a
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld a, [hli]
and $f
- ld [H_DIVISOR], a
+ ld [hDivisor], a
ld b, $4
call Divide
- ld a, [H_QUOTIENT + 1]
+ ld a, [hQuotient + 1]
push af
- ld a, [H_QUOTIENT + 2]
+ ld a, [hQuotient + 2]
push af
- ld a, [H_QUOTIENT + 3]
+ ld a, [hQuotient + 3]
push af
call CalcDSquared
ld a, [hl]
and $7f
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
- ld a, [H_PRODUCT + 1]
+ ld a, [hProduct + 1]
push af
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
push af
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
push af
ld a, [hli]
push af
xor a
- ld [H_MULTIPLICAND], a
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand], a
+ ld [hMultiplicand + 1], a
ld a, d
- ld [H_MULTIPLICAND + 2], a
+ ld [hMultiplicand + 2], a
ld a, [hli]
- ld [H_MULTIPLIER], a
+ ld [hMultiplier], a
call Multiply
ld b, [hl]
- ld a, [H_PRODUCT + 3]
+ ld a, [hProduct + 3]
sub b
- ld [H_PRODUCT + 3], a
+ ld [hProduct + 3], a
ld b, $0
- ld a, [H_PRODUCT + 2]
+ ld a, [hProduct + 2]
sbc b
- ld [H_PRODUCT + 2], a
- ld a, [H_PRODUCT + 1]
+ ld [hProduct + 2], a
+ ld a, [hProduct + 1]
sbc b
- ld [H_PRODUCT + 1], a
+ ld [hProduct + 1], a
; The difference of the linear term and the constant term consists of 3 bytes
-; starting at H_PRODUCT + 1. Below, hExperience (an alias of that address) will
+; starting at hProduct + 1. Below, hExperience (an alias of that address) will
; be used instead for the further work of adding or subtracting the squared
; term and adding the cubed term.
pop af
@@ -139,11 +139,11 @@
; calculates d*d
CalcDSquared:
xor a
- ld [H_MULTIPLICAND], a
- ld [H_MULTIPLICAND + 1], a
+ ld [hMultiplicand], a
+ ld [hMultiplicand + 1], a
ld a, d
- ld [H_MULTIPLICAND + 2], a
- ld [H_MULTIPLIER], a
+ ld [hMultiplicand + 2], a
+ ld [hMultiplier], a
jp Multiply
INCLUDE "data/growth_rates.asm"
--- a/engine/pokemon/learn_move.asm
+++ b/engine/pokemon/learn_move.asm
@@ -126,13 +126,13 @@
call TextBoxBorder
coord hl, 6, 8
ld de, wMovesString
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
set 2, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
call PlaceString
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
res 2, a
- ld [hFlags_0xFFF6], a
+ ld [hFlagsFFF6], a
ld hl, wTopMenuItemY
ld a, 8
ld [hli], a ; wTopMenuItemY
@@ -146,10 +146,10 @@
ld a, A_BUTTON | B_BUTTON
ld [hli], a ; wMenuWatchedKeys
ld [hl], 0 ; wLastMenuItem
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
set 1, [hl]
call HandleMenuInput
- ld hl, hFlags_0xFFF6
+ ld hl, hFlagsFFF6
res 1, [hl]
push af
call LoadScreenTilesFromBuffer1
--- a/engine/pokemon/status_screen.asm
+++ b/engine/pokemon/status_screen.asm
@@ -40,7 +40,7 @@
push hl
call DrawHPBar
pop hl
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
bit 0, a
jr z, .printFractionBelowBar
ld bc, $9 ; right of bar
@@ -254,7 +254,7 @@
ld c, 8
call TextBoxBorder ; Draws the box
coord hl, 1, 9 ; Start printing stats from here
- ld bc, $0019 ; Number offset
+ ld bc, $19 ; Number offset
jr .PrintStats
.DifferentBox
coord hl, 9, 2
@@ -262,7 +262,7 @@
ld c, 9
call TextBoxBorder
coord hl, 11, 3
- ld bc, $0018
+ ld bc, $18
.PrintStats
push bc
push hl
@@ -299,7 +299,7 @@
push af
xor a
ld [hTilesetType], a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld bc, NUM_MOVES + 1
ld hl, wMoves
call FillMemory
@@ -424,7 +424,7 @@
coord hl, 9, 1
call PlaceString
ld a, $1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
call WaitForTextScrollButtonPress ; wait for button
pop af
--- a/engine/slots/game_corner_slots.asm
+++ b/engine/slots/game_corner_slots.asm
@@ -22,7 +22,7 @@
ld a, 250
.next
ld [wSlotMachineSevenAndBarModeChance], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [wSlotMachineSavedROMBank], a
call PromptUserToPlaySlots
ret
--- a/engine/slots/slot_machine.asm
+++ b/engine/slots/slot_machine.asm
@@ -31,7 +31,7 @@
xor a
ld [wSlotMachineAllowMatchesCounter], a
ld hl, wStoppingWhichSlotMachineWheel
- ld bc, $0014
+ ld bc, $14
call FillMemory
call MainSlotMachineLoop
ld hl, wd730
@@ -881,7 +881,7 @@
INCBIN "gfx/slots/slots.tilemap"
SlotMachineMapEnd:
-INCLUDE "data/slot_machine_wheels.asm"
+INCLUDE "data/events/slot_machine_wheels.asm"
SlotMachineTiles1:
IF DEF(_RED)
--- /dev/null
+++ b/gfx/fishing.asm
@@ -1,0 +1,4 @@
+RedFishingTilesFront: INCBIN "gfx/overworld/red_fish_front.2bpp"
+RedFishingTilesBack: INCBIN "gfx/overworld/red_fish_back.2bpp"
+RedFishingTilesSide: INCBIN "gfx/overworld/red_fish_side.2bpp"
+RedFishingRodTiles: INCBIN "gfx/overworld/fishing_rod.2bpp"
--- /dev/null
+++ b/gfx/font.asm
@@ -1,0 +1,31 @@
+PokemonLogoGraphics: INCBIN "gfx/title/pokemon_logo.2bpp"
+FontGraphics:: INCBIN "gfx/font/font.1bpp"
+FontGraphicsEnd::
+
+ABTiles: INCBIN "gfx/font/AB.2bpp"
+
+HpBarAndStatusGraphics:: INCBIN "gfx/font/font_battle_extra.2bpp"
+HpBarAndStatusGraphicsEnd::
+
+BattleHudTiles1: INCBIN "gfx/battle/battle_hud_1.1bpp"
+BattleHudTiles1End:
+BattleHudTiles2: INCBIN "gfx/battle/battle_hud_2.1bpp"
+BattleHudTiles3: INCBIN "gfx/battle/battle_hud_3.1bpp"
+BattleHudTiles3End:
+
+NintendoCopyrightLogoGraphics: INCBIN "gfx/intro_credits/copyright.2bpp"
+
+GamefreakLogoGraphics: INCBIN "gfx/title/gamefreak_inc.2bpp"
+GamefreakLogoGraphicsEnd:
+
+TextBoxGraphics:: INCBIN "gfx/font/font_extra.2bpp"
+TextBoxGraphicsEnd::
+
+PokedexTileGraphics: INCBIN "gfx/pokedex/pokedex.2bpp"
+PokedexTileGraphicsEnd:
+
+WorldMapTileGraphics: INCBIN "gfx/town_map/town_map.2bpp"
+WorldMapTileGraphicsEnd:
+
+PlayerCharacterTitleGraphics: INCBIN "gfx/title/player.2bpp"
+PlayerCharacterTitleGraphicsEnd:
--- /dev/null
+++ b/gfx/pics.asm
@@ -1,0 +1,376 @@
+SECTION "Pics 1", ROMX
+
+RhydonPicFront:: INCBIN "gfx/pokemon/front/rhydon.pic"
+RhydonPicBack:: INCBIN "gfx/pokemon/back/rhydonb.pic"
+KangaskhanPicFront:: INCBIN "gfx/pokemon/front/kangaskhan.pic"
+KangaskhanPicBack:: INCBIN "gfx/pokemon/back/kangaskhanb.pic"
+NidoranMPicFront:: INCBIN "gfx/pokemon/front/nidoranm.pic"
+NidoranMPicBack:: INCBIN "gfx/pokemon/back/nidoranmb.pic"
+ClefairyPicFront:: INCBIN "gfx/pokemon/front/clefairy.pic"
+ClefairyPicBack:: INCBIN "gfx/pokemon/back/clefairyb.pic"
+SpearowPicFront:: INCBIN "gfx/pokemon/front/spearow.pic"
+SpearowPicBack:: INCBIN "gfx/pokemon/back/spearowb.pic"
+VoltorbPicFront:: INCBIN "gfx/pokemon/front/voltorb.pic"
+VoltorbPicBack:: INCBIN "gfx/pokemon/back/voltorbb.pic"
+NidokingPicFront:: INCBIN "gfx/pokemon/front/nidoking.pic"
+NidokingPicBack:: INCBIN "gfx/pokemon/back/nidokingb.pic"
+SlowbroPicFront:: INCBIN "gfx/pokemon/front/slowbro.pic"
+SlowbroPicBack:: INCBIN "gfx/pokemon/back/slowbrob.pic"
+IvysaurPicFront:: INCBIN "gfx/pokemon/front/ivysaur.pic"
+IvysaurPicBack:: INCBIN "gfx/pokemon/back/ivysaurb.pic"
+ExeggutorPicFront:: INCBIN "gfx/pokemon/front/exeggutor.pic"
+ExeggutorPicBack:: INCBIN "gfx/pokemon/back/exeggutorb.pic"
+LickitungPicFront:: INCBIN "gfx/pokemon/front/lickitung.pic"
+LickitungPicBack:: INCBIN "gfx/pokemon/back/lickitungb.pic"
+ExeggcutePicFront:: INCBIN "gfx/pokemon/front/exeggcute.pic"
+ExeggcutePicBack:: INCBIN "gfx/pokemon/back/exeggcuteb.pic"
+GrimerPicFront:: INCBIN "gfx/pokemon/front/grimer.pic"
+GrimerPicBack:: INCBIN "gfx/pokemon/back/grimerb.pic"
+GengarPicFront:: INCBIN "gfx/pokemon/front/gengar.pic"
+GengarPicBack:: INCBIN "gfx/pokemon/back/gengarb.pic"
+NidoranFPicFront:: INCBIN "gfx/pokemon/front/nidoranf.pic"
+NidoranFPicBack:: INCBIN "gfx/pokemon/back/nidoranfb.pic"
+NidoqueenPicFront:: INCBIN "gfx/pokemon/front/nidoqueen.pic"
+NidoqueenPicBack:: INCBIN "gfx/pokemon/back/nidoqueenb.pic"
+CubonePicFront:: INCBIN "gfx/pokemon/front/cubone.pic"
+CubonePicBack:: INCBIN "gfx/pokemon/back/cuboneb.pic"
+RhyhornPicFront:: INCBIN "gfx/pokemon/front/rhyhorn.pic"
+RhyhornPicBack:: INCBIN "gfx/pokemon/back/rhyhornb.pic"
+LaprasPicFront:: INCBIN "gfx/pokemon/front/lapras.pic"
+LaprasPicBack:: INCBIN "gfx/pokemon/back/laprasb.pic"
+ArcaninePicFront:: INCBIN "gfx/pokemon/front/arcanine.pic"
+ArcaninePicBack:: INCBIN "gfx/pokemon/back/arcanineb.pic"
+GyaradosPicFront:: INCBIN "gfx/pokemon/front/gyarados.pic"
+GyaradosPicBack:: INCBIN "gfx/pokemon/back/gyaradosb.pic"
+ShellderPicFront:: INCBIN "gfx/pokemon/front/shellder.pic"
+ShellderPicBack:: INCBIN "gfx/pokemon/back/shellderb.pic"
+TentacoolPicFront:: INCBIN "gfx/pokemon/front/tentacool.pic"
+TentacoolPicBack:: INCBIN "gfx/pokemon/back/tentacoolb.pic"
+GastlyPicFront:: INCBIN "gfx/pokemon/front/gastly.pic"
+GastlyPicBack:: INCBIN "gfx/pokemon/back/gastlyb.pic"
+ScytherPicFront:: INCBIN "gfx/pokemon/front/scyther.pic"
+ScytherPicBack:: INCBIN "gfx/pokemon/back/scytherb.pic"
+StaryuPicFront:: INCBIN "gfx/pokemon/front/staryu.pic"
+StaryuPicBack:: INCBIN "gfx/pokemon/back/staryub.pic"
+BlastoisePicFront:: INCBIN "gfx/pokemon/front/blastoise.pic"
+BlastoisePicBack:: INCBIN "gfx/pokemon/back/blastoiseb.pic"
+PinsirPicFront:: INCBIN "gfx/pokemon/front/pinsir.pic"
+PinsirPicBack:: INCBIN "gfx/pokemon/back/pinsirb.pic"
+TangelaPicFront:: INCBIN "gfx/pokemon/front/tangela.pic"
+TangelaPicBack:: INCBIN "gfx/pokemon/back/tangelab.pic"
+
+
+SECTION "Pics 2", ROMX
+
+GrowlithePicFront:: INCBIN "gfx/pokemon/front/growlithe.pic"
+GrowlithePicBack:: INCBIN "gfx/pokemon/back/growlitheb.pic"
+OnixPicFront:: INCBIN "gfx/pokemon/front/onix.pic"
+OnixPicBack:: INCBIN "gfx/pokemon/back/onixb.pic"
+FearowPicFront:: INCBIN "gfx/pokemon/front/fearow.pic"
+FearowPicBack:: INCBIN "gfx/pokemon/back/fearowb.pic"
+PidgeyPicFront:: INCBIN "gfx/pokemon/front/pidgey.pic"
+PidgeyPicBack:: INCBIN "gfx/pokemon/back/pidgeyb.pic"
+SlowpokePicFront:: INCBIN "gfx/pokemon/front/slowpoke.pic"
+SlowpokePicBack:: INCBIN "gfx/pokemon/back/slowpokeb.pic"
+KadabraPicFront:: INCBIN "gfx/pokemon/front/kadabra.pic"
+KadabraPicBack:: INCBIN "gfx/pokemon/back/kadabrab.pic"
+GravelerPicFront:: INCBIN "gfx/pokemon/front/graveler.pic"
+GravelerPicBack:: INCBIN "gfx/pokemon/back/gravelerb.pic"
+ChanseyPicFront:: INCBIN "gfx/pokemon/front/chansey.pic"
+ChanseyPicBack:: INCBIN "gfx/pokemon/back/chanseyb.pic"
+MachokePicFront:: INCBIN "gfx/pokemon/front/machoke.pic"
+MachokePicBack:: INCBIN "gfx/pokemon/back/machokeb.pic"
+MrMimePicFront:: INCBIN "gfx/pokemon/front/mr.mime.pic"
+MrMimePicBack:: INCBIN "gfx/pokemon/back/mr.mimeb.pic"
+HitmonleePicFront:: INCBIN "gfx/pokemon/front/hitmonlee.pic"
+HitmonleePicBack:: INCBIN "gfx/pokemon/back/hitmonleeb.pic"
+HitmonchanPicFront:: INCBIN "gfx/pokemon/front/hitmonchan.pic"
+HitmonchanPicBack:: INCBIN "gfx/pokemon/back/hitmonchanb.pic"
+ArbokPicFront:: INCBIN "gfx/pokemon/front/arbok.pic"
+ArbokPicBack:: INCBIN "gfx/pokemon/back/arbokb.pic"
+ParasectPicFront:: INCBIN "gfx/pokemon/front/parasect.pic"
+ParasectPicBack:: INCBIN "gfx/pokemon/back/parasectb.pic"
+PsyduckPicFront:: INCBIN "gfx/pokemon/front/psyduck.pic"
+PsyduckPicBack:: INCBIN "gfx/pokemon/back/psyduckb.pic"
+DrowzeePicFront:: INCBIN "gfx/pokemon/front/drowzee.pic"
+DrowzeePicBack:: INCBIN "gfx/pokemon/back/drowzeeb.pic"
+GolemPicFront:: INCBIN "gfx/pokemon/front/golem.pic"
+GolemPicBack:: INCBIN "gfx/pokemon/back/golemb.pic"
+MagmarPicFront:: INCBIN "gfx/pokemon/front/magmar.pic"
+MagmarPicBack:: INCBIN "gfx/pokemon/back/magmarb.pic"
+ElectabuzzPicFront:: INCBIN "gfx/pokemon/front/electabuzz.pic"
+ElectabuzzPicBack:: INCBIN "gfx/pokemon/back/electabuzzb.pic"
+MagnetonPicFront:: INCBIN "gfx/pokemon/front/magneton.pic"
+MagnetonPicBack:: INCBIN "gfx/pokemon/back/magnetonb.pic"
+KoffingPicFront:: INCBIN "gfx/pokemon/front/koffing.pic"
+KoffingPicBack:: INCBIN "gfx/pokemon/back/koffingb.pic"
+MankeyPicFront:: INCBIN "gfx/pokemon/front/mankey.pic"
+MankeyPicBack:: INCBIN "gfx/pokemon/back/mankeyb.pic"
+SeelPicFront:: INCBIN "gfx/pokemon/front/seel.pic"
+SeelPicBack:: INCBIN "gfx/pokemon/back/seelb.pic"
+DiglettPicFront:: INCBIN "gfx/pokemon/front/diglett.pic"
+DiglettPicBack:: INCBIN "gfx/pokemon/back/diglettb.pic"
+TaurosPicFront:: INCBIN "gfx/pokemon/front/tauros.pic"
+TaurosPicBack:: INCBIN "gfx/pokemon/back/taurosb.pic"
+FarfetchdPicFront:: INCBIN "gfx/pokemon/front/farfetchd.pic"
+FarfetchdPicBack:: INCBIN "gfx/pokemon/back/farfetchdb.pic"
+VenonatPicFront:: INCBIN "gfx/pokemon/front/venonat.pic"
+VenonatPicBack:: INCBIN "gfx/pokemon/back/venonatb.pic"
+DragonitePicFront:: INCBIN "gfx/pokemon/front/dragonite.pic"
+DragonitePicBack:: INCBIN "gfx/pokemon/back/dragoniteb.pic"
+DoduoPicFront:: INCBIN "gfx/pokemon/front/doduo.pic"
+DoduoPicBack:: INCBIN "gfx/pokemon/back/doduob.pic"
+PoliwagPicFront:: INCBIN "gfx/pokemon/front/poliwag.pic"
+PoliwagPicBack:: INCBIN "gfx/pokemon/back/poliwagb.pic"
+JynxPicFront:: INCBIN "gfx/pokemon/front/jynx.pic"
+JynxPicBack:: INCBIN "gfx/pokemon/back/jynxb.pic"
+MoltresPicFront:: INCBIN "gfx/pokemon/front/moltres.pic"
+MoltresPicBack:: INCBIN "gfx/pokemon/back/moltresb.pic"
+
+
+SECTION "Pics 3", ROMX
+
+ArticunoPicFront:: INCBIN "gfx/pokemon/front/articuno.pic"
+ArticunoPicBack:: INCBIN "gfx/pokemon/back/articunob.pic"
+ZapdosPicFront:: INCBIN "gfx/pokemon/front/zapdos.pic"
+ZapdosPicBack:: INCBIN "gfx/pokemon/back/zapdosb.pic"
+DittoPicFront:: INCBIN "gfx/pokemon/front/ditto.pic"
+DittoPicBack:: INCBIN "gfx/pokemon/back/dittob.pic"
+MeowthPicFront:: INCBIN "gfx/pokemon/front/meowth.pic"
+MeowthPicBack:: INCBIN "gfx/pokemon/back/meowthb.pic"
+KrabbyPicFront:: INCBIN "gfx/pokemon/front/krabby.pic"
+KrabbyPicBack:: INCBIN "gfx/pokemon/back/krabbyb.pic"
+VulpixPicFront:: INCBIN "gfx/pokemon/front/vulpix.pic"
+VulpixPicBack:: INCBIN "gfx/pokemon/back/vulpixb.pic"
+NinetalesPicFront:: INCBIN "gfx/pokemon/front/ninetales.pic"
+NinetalesPicBack:: INCBIN "gfx/pokemon/back/ninetalesb.pic"
+PikachuPicFront:: INCBIN "gfx/pokemon/front/pikachu.pic"
+PikachuPicBack:: INCBIN "gfx/pokemon/back/pikachub.pic"
+RaichuPicFront:: INCBIN "gfx/pokemon/front/raichu.pic"
+RaichuPicBack:: INCBIN "gfx/pokemon/back/raichub.pic"
+DratiniPicFront:: INCBIN "gfx/pokemon/front/dratini.pic"
+DratiniPicBack:: INCBIN "gfx/pokemon/back/dratinib.pic"
+DragonairPicFront:: INCBIN "gfx/pokemon/front/dragonair.pic"
+DragonairPicBack:: INCBIN "gfx/pokemon/back/dragonairb.pic"
+KabutoPicFront:: INCBIN "gfx/pokemon/front/kabuto.pic"
+KabutoPicBack:: INCBIN "gfx/pokemon/back/kabutob.pic"
+KabutopsPicFront:: INCBIN "gfx/pokemon/front/kabutops.pic"
+KabutopsPicBack:: INCBIN "gfx/pokemon/back/kabutopsb.pic"
+HorseaPicFront:: INCBIN "gfx/pokemon/front/horsea.pic"
+HorseaPicBack:: INCBIN "gfx/pokemon/back/horseab.pic"
+SeadraPicFront:: INCBIN "gfx/pokemon/front/seadra.pic"
+SeadraPicBack:: INCBIN "gfx/pokemon/back/seadrab.pic"
+SandshrewPicFront:: INCBIN "gfx/pokemon/front/sandshrew.pic"
+SandshrewPicBack:: INCBIN "gfx/pokemon/back/sandshrewb.pic"
+SandslashPicFront:: INCBIN "gfx/pokemon/front/sandslash.pic"
+SandslashPicBack:: INCBIN "gfx/pokemon/back/sandslashb.pic"
+OmanytePicFront:: INCBIN "gfx/pokemon/front/omanyte.pic"
+OmanytePicBack:: INCBIN "gfx/pokemon/back/omanyteb.pic"
+OmastarPicFront:: INCBIN "gfx/pokemon/front/omastar.pic"
+OmastarPicBack:: INCBIN "gfx/pokemon/back/omastarb.pic"
+JigglypuffPicFront:: INCBIN "gfx/pokemon/front/jigglypuff.pic"
+JigglypuffPicBack:: INCBIN "gfx/pokemon/back/jigglypuffb.pic"
+WigglytuffPicFront:: INCBIN "gfx/pokemon/front/wigglytuff.pic"
+WigglytuffPicBack:: INCBIN "gfx/pokemon/back/wigglytuffb.pic"
+EeveePicFront:: INCBIN "gfx/pokemon/front/eevee.pic"
+EeveePicBack:: INCBIN "gfx/pokemon/back/eeveeb.pic"
+FlareonPicFront:: INCBIN "gfx/pokemon/front/flareon.pic"
+FlareonPicBack:: INCBIN "gfx/pokemon/back/flareonb.pic"
+JolteonPicFront:: INCBIN "gfx/pokemon/front/jolteon.pic"
+JolteonPicBack:: INCBIN "gfx/pokemon/back/jolteonb.pic"
+VaporeonPicFront:: INCBIN "gfx/pokemon/front/vaporeon.pic"
+VaporeonPicBack:: INCBIN "gfx/pokemon/back/vaporeonb.pic"
+MachopPicFront:: INCBIN "gfx/pokemon/front/machop.pic"
+MachopPicBack:: INCBIN "gfx/pokemon/back/machopb.pic"
+ZubatPicFront:: INCBIN "gfx/pokemon/front/zubat.pic"
+ZubatPicBack:: INCBIN "gfx/pokemon/back/zubatb.pic"
+EkansPicFront:: INCBIN "gfx/pokemon/front/ekans.pic"
+EkansPicBack:: INCBIN "gfx/pokemon/back/ekansb.pic"
+ParasPicFront:: INCBIN "gfx/pokemon/front/paras.pic"
+ParasPicBack:: INCBIN "gfx/pokemon/back/parasb.pic"
+PoliwhirlPicFront:: INCBIN "gfx/pokemon/front/poliwhirl.pic"
+PoliwhirlPicBack:: INCBIN "gfx/pokemon/back/poliwhirlb.pic"
+PoliwrathPicFront:: INCBIN "gfx/pokemon/front/poliwrath.pic"
+PoliwrathPicBack:: INCBIN "gfx/pokemon/back/poliwrathb.pic"
+WeedlePicFront:: INCBIN "gfx/pokemon/front/weedle.pic"
+WeedlePicBack:: INCBIN "gfx/pokemon/back/weedleb.pic"
+KakunaPicFront:: INCBIN "gfx/pokemon/front/kakuna.pic"
+KakunaPicBack:: INCBIN "gfx/pokemon/back/kakunab.pic"
+BeedrillPicFront:: INCBIN "gfx/pokemon/front/beedrill.pic"
+BeedrillPicBack:: INCBIN "gfx/pokemon/back/beedrillb.pic"
+
+FossilKabutopsPic:: INCBIN "gfx/pokemon/front/fossilkabutops.pic"
+
+
+SECTION "Pics 4", ROMX
+
+DodrioPicFront:: INCBIN "gfx/pokemon/front/dodrio.pic"
+DodrioPicBack:: INCBIN "gfx/pokemon/back/dodriob.pic"
+PrimeapePicFront:: INCBIN "gfx/pokemon/front/primeape.pic"
+PrimeapePicBack:: INCBIN "gfx/pokemon/back/primeapeb.pic"
+DugtrioPicFront:: INCBIN "gfx/pokemon/front/dugtrio.pic"
+DugtrioPicBack:: INCBIN "gfx/pokemon/back/dugtriob.pic"
+VenomothPicFront:: INCBIN "gfx/pokemon/front/venomoth.pic"
+VenomothPicBack:: INCBIN "gfx/pokemon/back/venomothb.pic"
+DewgongPicFront:: INCBIN "gfx/pokemon/front/dewgong.pic"
+DewgongPicBack:: INCBIN "gfx/pokemon/back/dewgongb.pic"
+CaterpiePicFront:: INCBIN "gfx/pokemon/front/caterpie.pic"
+CaterpiePicBack:: INCBIN "gfx/pokemon/back/caterpieb.pic"
+MetapodPicFront:: INCBIN "gfx/pokemon/front/metapod.pic"
+MetapodPicBack:: INCBIN "gfx/pokemon/back/metapodb.pic"
+ButterfreePicFront:: INCBIN "gfx/pokemon/front/butterfree.pic"
+ButterfreePicBack:: INCBIN "gfx/pokemon/back/butterfreeb.pic"
+MachampPicFront:: INCBIN "gfx/pokemon/front/machamp.pic"
+MachampPicBack:: INCBIN "gfx/pokemon/back/machampb.pic"
+GolduckPicFront:: INCBIN "gfx/pokemon/front/golduck.pic"
+GolduckPicBack:: INCBIN "gfx/pokemon/back/golduckb.pic"
+HypnoPicFront:: INCBIN "gfx/pokemon/front/hypno.pic"
+HypnoPicBack:: INCBIN "gfx/pokemon/back/hypnob.pic"
+GolbatPicFront:: INCBIN "gfx/pokemon/front/golbat.pic"
+GolbatPicBack:: INCBIN "gfx/pokemon/back/golbatb.pic"
+MewtwoPicFront:: INCBIN "gfx/pokemon/front/mewtwo.pic"
+MewtwoPicBack:: INCBIN "gfx/pokemon/back/mewtwob.pic"
+SnorlaxPicFront:: INCBIN "gfx/pokemon/front/snorlax.pic"
+SnorlaxPicBack:: INCBIN "gfx/pokemon/back/snorlaxb.pic"
+MagikarpPicFront:: INCBIN "gfx/pokemon/front/magikarp.pic"
+MagikarpPicBack:: INCBIN "gfx/pokemon/back/magikarpb.pic"
+MukPicFront:: INCBIN "gfx/pokemon/front/muk.pic"
+MukPicBack:: INCBIN "gfx/pokemon/back/mukb.pic"
+KinglerPicFront:: INCBIN "gfx/pokemon/front/kingler.pic"
+KinglerPicBack:: INCBIN "gfx/pokemon/back/kinglerb.pic"
+CloysterPicFront:: INCBIN "gfx/pokemon/front/cloyster.pic"
+CloysterPicBack:: INCBIN "gfx/pokemon/back/cloysterb.pic"
+ElectrodePicFront:: INCBIN "gfx/pokemon/front/electrode.pic"
+ElectrodePicBack:: INCBIN "gfx/pokemon/back/electrodeb.pic"
+ClefablePicFront:: INCBIN "gfx/pokemon/front/clefable.pic"
+ClefablePicBack:: INCBIN "gfx/pokemon/back/clefableb.pic"
+WeezingPicFront:: INCBIN "gfx/pokemon/front/weezing.pic"
+WeezingPicBack:: INCBIN "gfx/pokemon/back/weezingb.pic"
+PersianPicFront:: INCBIN "gfx/pokemon/front/persian.pic"
+PersianPicBack:: INCBIN "gfx/pokemon/back/persianb.pic"
+MarowakPicFront:: INCBIN "gfx/pokemon/front/marowak.pic"
+MarowakPicBack:: INCBIN "gfx/pokemon/back/marowakb.pic"
+HaunterPicFront:: INCBIN "gfx/pokemon/front/haunter.pic"
+HaunterPicBack:: INCBIN "gfx/pokemon/back/haunterb.pic"
+AbraPicFront:: INCBIN "gfx/pokemon/front/abra.pic"
+AbraPicBack:: INCBIN "gfx/pokemon/back/abrab.pic"
+AlakazamPicFront:: INCBIN "gfx/pokemon/front/alakazam.pic"
+AlakazamPicBack:: INCBIN "gfx/pokemon/back/alakazamb.pic"
+PidgeottoPicFront:: INCBIN "gfx/pokemon/front/pidgeotto.pic"
+PidgeottoPicBack:: INCBIN "gfx/pokemon/back/pidgeottob.pic"
+PidgeotPicFront:: INCBIN "gfx/pokemon/front/pidgeot.pic"
+PidgeotPicBack:: INCBIN "gfx/pokemon/back/pidgeotb.pic"
+StarmiePicFront:: INCBIN "gfx/pokemon/front/starmie.pic"
+StarmiePicBack:: INCBIN "gfx/pokemon/back/starmieb.pic"
+
+RedPicBack:: INCBIN "gfx/player/redb.pic"
+OldManPic:: INCBIN "gfx/battle/oldman.pic"
+
+
+SECTION "Pics 5", ROMX
+
+BulbasaurPicFront:: INCBIN "gfx/pokemon/front/bulbasaur.pic"
+BulbasaurPicBack:: INCBIN "gfx/pokemon/back/bulbasaurb.pic"
+VenusaurPicFront:: INCBIN "gfx/pokemon/front/venusaur.pic"
+VenusaurPicBack:: INCBIN "gfx/pokemon/back/venusaurb.pic"
+TentacruelPicFront:: INCBIN "gfx/pokemon/front/tentacruel.pic"
+TentacruelPicBack:: INCBIN "gfx/pokemon/back/tentacruelb.pic"
+GoldeenPicFront:: INCBIN "gfx/pokemon/front/goldeen.pic"
+GoldeenPicBack:: INCBIN "gfx/pokemon/back/goldeenb.pic"
+SeakingPicFront:: INCBIN "gfx/pokemon/front/seaking.pic"
+SeakingPicBack:: INCBIN "gfx/pokemon/back/seakingb.pic"
+PonytaPicFront:: INCBIN "gfx/pokemon/front/ponyta.pic"
+RapidashPicFront:: INCBIN "gfx/pokemon/front/rapidash.pic"
+PonytaPicBack:: INCBIN "gfx/pokemon/back/ponytab.pic"
+RapidashPicBack:: INCBIN "gfx/pokemon/back/rapidashb.pic"
+RattataPicFront:: INCBIN "gfx/pokemon/front/rattata.pic"
+RattataPicBack:: INCBIN "gfx/pokemon/back/rattatab.pic"
+RaticatePicFront:: INCBIN "gfx/pokemon/front/raticate.pic"
+RaticatePicBack:: INCBIN "gfx/pokemon/back/raticateb.pic"
+NidorinoPicFront:: INCBIN "gfx/pokemon/front/nidorino.pic"
+NidorinoPicBack:: INCBIN "gfx/pokemon/back/nidorinob.pic"
+NidorinaPicFront:: INCBIN "gfx/pokemon/front/nidorina.pic"
+NidorinaPicBack:: INCBIN "gfx/pokemon/back/nidorinab.pic"
+GeodudePicFront:: INCBIN "gfx/pokemon/front/geodude.pic"
+GeodudePicBack:: INCBIN "gfx/pokemon/back/geodudeb.pic"
+PorygonPicFront:: INCBIN "gfx/pokemon/front/porygon.pic"
+PorygonPicBack:: INCBIN "gfx/pokemon/back/porygonb.pic"
+AerodactylPicFront:: INCBIN "gfx/pokemon/front/aerodactyl.pic"
+AerodactylPicBack:: INCBIN "gfx/pokemon/back/aerodactylb.pic"
+MagnemitePicFront:: INCBIN "gfx/pokemon/front/magnemite.pic"
+MagnemitePicBack:: INCBIN "gfx/pokemon/back/magnemiteb.pic"
+CharmanderPicFront:: INCBIN "gfx/pokemon/front/charmander.pic"
+CharmanderPicBack:: INCBIN "gfx/pokemon/back/charmanderb.pic"
+SquirtlePicFront:: INCBIN "gfx/pokemon/front/squirtle.pic"
+SquirtlePicBack:: INCBIN "gfx/pokemon/back/squirtleb.pic"
+CharmeleonPicFront:: INCBIN "gfx/pokemon/front/charmeleon.pic"
+CharmeleonPicBack:: INCBIN "gfx/pokemon/back/charmeleonb.pic"
+WartortlePicFront:: INCBIN "gfx/pokemon/front/wartortle.pic"
+WartortlePicBack:: INCBIN "gfx/pokemon/back/wartortleb.pic"
+CharizardPicFront:: INCBIN "gfx/pokemon/front/charizard.pic"
+CharizardPicBack:: INCBIN "gfx/pokemon/back/charizardb.pic"
+FossilAerodactylPic:: INCBIN "gfx/pokemon/front/fossilaerodactyl.pic"
+GhostPic:: INCBIN "gfx/battle/ghost.pic"
+OddishPicFront:: INCBIN "gfx/pokemon/front/oddish.pic"
+OddishPicBack:: INCBIN "gfx/pokemon/back/oddishb.pic"
+GloomPicFront:: INCBIN "gfx/pokemon/front/gloom.pic"
+GloomPicBack:: INCBIN "gfx/pokemon/back/gloomb.pic"
+VileplumePicFront:: INCBIN "gfx/pokemon/front/vileplume.pic"
+VileplumePicBack:: INCBIN "gfx/pokemon/back/vileplumeb.pic"
+BellsproutPicFront:: INCBIN "gfx/pokemon/front/bellsprout.pic"
+BellsproutPicBack:: INCBIN "gfx/pokemon/back/bellsproutb.pic"
+WeepinbellPicFront:: INCBIN "gfx/pokemon/front/weepinbell.pic"
+WeepinbellPicBack:: INCBIN "gfx/pokemon/back/weepinbellb.pic"
+VictreebelPicFront:: INCBIN "gfx/pokemon/front/victreebel.pic"
+VictreebelPicBack:: INCBIN "gfx/pokemon/back/victreebelb.pic"
+
+
+SECTION "Pics 6", ROMX
+
+TrainerPics::
+YoungsterPic:: INCBIN "gfx/trainers/youngster.pic"
+BugCatcherPic:: INCBIN "gfx/trainers/bugcatcher.pic"
+LassPic:: INCBIN "gfx/trainers/lass.pic"
+SailorPic:: INCBIN "gfx/trainers/sailor.pic"
+JrTrainerMPic:: INCBIN "gfx/trainers/jr.trainerm.pic"
+JrTrainerFPic:: INCBIN "gfx/trainers/jr.trainerf.pic"
+PokemaniacPic:: INCBIN "gfx/trainers/pokemaniac.pic"
+SuperNerdPic:: INCBIN "gfx/trainers/supernerd.pic"
+HikerPic:: INCBIN "gfx/trainers/hiker.pic"
+BikerPic:: INCBIN "gfx/trainers/biker.pic"
+BurglarPic:: INCBIN "gfx/trainers/burglar.pic"
+EngineerPic:: INCBIN "gfx/trainers/engineer.pic"
+FisherPic:: INCBIN "gfx/trainers/fisher.pic"
+SwimmerPic:: INCBIN "gfx/trainers/swimmer.pic"
+CueBallPic:: INCBIN "gfx/trainers/cueball.pic"
+GamblerPic:: INCBIN "gfx/trainers/gambler.pic"
+BeautyPic:: INCBIN "gfx/trainers/beauty.pic"
+PsychicPic:: INCBIN "gfx/trainers/psychic.pic"
+RockerPic:: INCBIN "gfx/trainers/rocker.pic"
+JugglerPic:: INCBIN "gfx/trainers/juggler.pic"
+TamerPic:: INCBIN "gfx/trainers/tamer.pic"
+BirdKeeperPic:: INCBIN "gfx/trainers/birdkeeper.pic"
+BlackbeltPic:: INCBIN "gfx/trainers/blackbelt.pic"
+Rival1Pic:: INCBIN "gfx/trainers/rival1.pic"
+ProfOakPic:: INCBIN "gfx/trainers/prof.oak.pic"
+ChiefPic::
+ScientistPic:: INCBIN "gfx/trainers/scientist.pic"
+GiovanniPic:: INCBIN "gfx/trainers/giovanni.pic"
+RocketPic:: INCBIN "gfx/trainers/rocket.pic"
+CooltrainerMPic:: INCBIN "gfx/trainers/cooltrainerm.pic"
+CooltrainerFPic:: INCBIN "gfx/trainers/cooltrainerf.pic"
+BrunoPic:: INCBIN "gfx/trainers/bruno.pic"
+BrockPic:: INCBIN "gfx/trainers/brock.pic"
+MistyPic:: INCBIN "gfx/trainers/misty.pic"
+LtSurgePic:: INCBIN "gfx/trainers/lt.surge.pic"
+ErikaPic:: INCBIN "gfx/trainers/erika.pic"
+KogaPic:: INCBIN "gfx/trainers/koga.pic"
+BlainePic:: INCBIN "gfx/trainers/blaine.pic"
+SabrinaPic:: INCBIN "gfx/trainers/sabrina.pic"
+GentlemanPic:: INCBIN "gfx/trainers/gentleman.pic"
+Rival2Pic:: INCBIN "gfx/trainers/rival2.pic"
+Rival3Pic:: INCBIN "gfx/trainers/rival3.pic"
+LoreleiPic:: INCBIN "gfx/trainers/lorelei.pic"
+ChannelerPic:: INCBIN "gfx/trainers/channeler.pic"
+AgathaPic:: INCBIN "gfx/trainers/agatha.pic"
+LancePic:: INCBIN "gfx/trainers/lance.pic"
--- /dev/null
+++ b/gfx/player.asm
@@ -1,0 +1,3 @@
+RedPicFront:: INCBIN "gfx/player/red.pic"
+ShrinkPic1:: INCBIN "gfx/player/shrink1.pic"
+ShrinkPic2:: INCBIN "gfx/player/shrink2.pic"
--- /dev/null
+++ b/gfx/sprites.asm
@@ -1,0 +1,73 @@
+SECTION "NPC Sprites 1", ROMX
+
+OakAideSprite:: INCBIN "gfx/sprites/oak_aide.2bpp"
+RockerSprite:: INCBIN "gfx/sprites/rocker.2bpp"
+SwimmerSprite:: INCBIN "gfx/sprites/swimmer.2bpp"
+WhitePlayerSprite:: INCBIN "gfx/sprites/white_player.2bpp"
+GymHelperSprite:: INCBIN "gfx/sprites/gym_helper.2bpp"
+OldPersonSprite:: INCBIN "gfx/sprites/old_person.2bpp"
+MartGuySprite:: INCBIN "gfx/sprites/mart_guy.2bpp"
+FisherSprite:: INCBIN "gfx/sprites/fisher.2bpp"
+OldMediumWomanSprite:: INCBIN "gfx/sprites/old_medium_woman.2bpp"
+NurseSprite:: INCBIN "gfx/sprites/nurse.2bpp"
+CableClubWomanSprite:: INCBIN "gfx/sprites/cable_club_woman.2bpp"
+MrMasterballSprite:: INCBIN "gfx/sprites/mr_masterball.2bpp"
+LaprasGiverSprite:: INCBIN "gfx/sprites/lapras_giver.2bpp"
+WardenSprite:: INCBIN "gfx/sprites/warden.2bpp"
+SsCaptainSprite:: INCBIN "gfx/sprites/ss_captain.2bpp"
+Fisher2Sprite:: INCBIN "gfx/sprites/fisher2.2bpp"
+BlackbeltSprite:: INCBIN "gfx/sprites/blackbelt.2bpp"
+GuardSprite:: INCBIN "gfx/sprites/guard.2bpp"
+BallSprite:: INCBIN "gfx/sprites/ball.2bpp"
+OmanyteSprite:: INCBIN "gfx/sprites/omanyte.2bpp"
+BoulderSprite:: INCBIN "gfx/sprites/boulder.2bpp"
+PaperSheetSprite:: INCBIN "gfx/sprites/paper_sheet.2bpp"
+BookMapDexSprite:: INCBIN "gfx/sprites/book_map_dex.2bpp"
+ClipboardSprite:: INCBIN "gfx/sprites/clipboard.2bpp"
+SnorlaxSprite:: INCBIN "gfx/sprites/snorlax.2bpp"
+OldAmberSprite:: INCBIN "gfx/sprites/old_amber.2bpp"
+LyingOldManSprite:: INCBIN "gfx/sprites/lying_old_man.2bpp"
+
+
+SECTION "NPC Sprites 2", ROMX
+
+RedCyclingSprite:: INCBIN "gfx/sprites/cycling.2bpp"
+RedSprite:: INCBIN "gfx/sprites/red.2bpp"
+BlueSprite:: INCBIN "gfx/sprites/blue.2bpp"
+OakSprite:: INCBIN "gfx/sprites/oak.2bpp"
+BugCatcherSprite:: INCBIN "gfx/sprites/bug_catcher.2bpp"
+SlowbroSprite:: INCBIN "gfx/sprites/slowbro.2bpp"
+LassSprite:: INCBIN "gfx/sprites/lass.2bpp"
+BlackHairBoy1Sprite:: INCBIN "gfx/sprites/black_hair_boy_1.2bpp"
+LittleGirlSprite:: INCBIN "gfx/sprites/little_girl.2bpp"
+BirdSprite:: INCBIN "gfx/sprites/bird.2bpp"
+FatBaldGuySprite:: INCBIN "gfx/sprites/fat_bald_guy.2bpp"
+GamblerSprite:: INCBIN "gfx/sprites/gambler.2bpp"
+BlackHairBoy2Sprite:: INCBIN "gfx/sprites/black_hair_boy_2.2bpp"
+GirlSprite:: INCBIN "gfx/sprites/girl.2bpp"
+HikerSprite:: INCBIN "gfx/sprites/hiker.2bpp"
+FoulardWomanSprite:: INCBIN "gfx/sprites/foulard_woman.2bpp"
+GentlemanSprite:: INCBIN "gfx/sprites/gentleman.2bpp"
+DaisySprite:: INCBIN "gfx/sprites/daisy.2bpp"
+BikerSprite:: INCBIN "gfx/sprites/biker.2bpp"
+SailorSprite:: INCBIN "gfx/sprites/sailor.2bpp"
+CookSprite:: INCBIN "gfx/sprites/cook.2bpp"
+BikeShopGuySprite:: INCBIN "gfx/sprites/bike_shop_guy.2bpp"
+MrFujiSprite:: INCBIN "gfx/sprites/mr_fuji.2bpp"
+GiovanniSprite:: INCBIN "gfx/sprites/giovanni.2bpp"
+RocketSprite:: INCBIN "gfx/sprites/rocket.2bpp"
+MediumSprite:: INCBIN "gfx/sprites/medium.2bpp"
+WaiterSprite:: INCBIN "gfx/sprites/waiter.2bpp"
+ErikaSprite:: INCBIN "gfx/sprites/erika.2bpp"
+MomGeishaSprite:: INCBIN "gfx/sprites/mom_geisha.2bpp"
+BrunetteGirlSprite:: INCBIN "gfx/sprites/brunette_girl.2bpp"
+LanceSprite:: INCBIN "gfx/sprites/lance.2bpp"
+MomSprite:: INCBIN "gfx/sprites/mom.2bpp"
+BaldingGuySprite:: INCBIN "gfx/sprites/balding_guy.2bpp"
+YoungBoySprite:: INCBIN "gfx/sprites/young_boy.2bpp"
+GameboyKidSprite:: INCBIN "gfx/sprites/gameboy_kid.2bpp"
+ClefairySprite:: INCBIN "gfx/sprites/clefairy.2bpp"
+AgathaSprite:: INCBIN "gfx/sprites/agatha.2bpp"
+BrunoSprite:: INCBIN "gfx/sprites/bruno.2bpp"
+LoreleiSprite:: INCBIN "gfx/sprites/lorelei.2bpp"
+SeelSprite:: INCBIN "gfx/sprites/seel.2bpp"
--- /dev/null
+++ b/gfx/tilesets.asm
@@ -1,0 +1,63 @@
+SECTION "Tilesets 1", ROMX
+
+Overworld_GFX:: INCBIN "gfx/tilesets/overworld.2bpp"
+Overworld_Block:: INCBIN "gfx/blocksets/overworld.bst"
+
+RedsHouse1_GFX::
+RedsHouse2_GFX:: INCBIN "gfx/tilesets/reds_house.2bpp"
+RedsHouse1_Block::
+RedsHouse2_Block:: INCBIN "gfx/blocksets/reds_house.bst"
+
+House_GFX:: INCBIN "gfx/tilesets/house.2bpp"
+House_Block:: INCBIN "gfx/blocksets/house.bst"
+Mansion_GFX:: INCBIN "gfx/tilesets/mansion.2bpp"
+Mansion_Block:: INCBIN "gfx/blocksets/mansion.bst"
+ShipPort_GFX:: INCBIN "gfx/tilesets/ship_port.2bpp"
+ShipPort_Block:: INCBIN "gfx/blocksets/ship_port.bst"
+Interior_GFX:: INCBIN "gfx/tilesets/interior.2bpp"
+Interior_Block:: INCBIN "gfx/blocksets/interior.bst"
+Plateau_GFX:: INCBIN "gfx/tilesets/plateau.2bpp"
+Plateau_Block:: INCBIN "gfx/blocksets/plateau.bst"
+
+
+SECTION "Tilesets 2", ROMX
+
+Dojo_GFX::
+Gym_GFX:: INCBIN "gfx/tilesets/gym.2bpp"
+Dojo_Block::
+Gym_Block:: INCBIN "gfx/blocksets/gym.bst"
+
+Mart_GFX::
+Pokecenter_GFX:: INCBIN "gfx/tilesets/pokecenter.2bpp"
+Mart_Block::
+Pokecenter_Block:: INCBIN "gfx/blocksets/pokecenter.bst"
+
+ForestGate_GFX::
+Museum_GFX::
+Gate_GFX:: INCBIN "gfx/tilesets/gate.2bpp"
+ForestGate_Block::
+Museum_Block::
+Gate_Block:: INCBIN "gfx/blocksets/gate.bst"
+
+Forest_GFX:: INCBIN "gfx/tilesets/forest.2bpp"
+Forest_Block:: INCBIN "gfx/blocksets/forest.bst"
+Facility_GFX:: INCBIN "gfx/tilesets/facility.2bpp"
+Facility_Block:: INCBIN "gfx/blocksets/facility.bst"
+
+
+SECTION "Tilesets 3", ROMX
+
+Cemetery_GFX:: INCBIN "gfx/tilesets/cemetery.2bpp"
+Cemetery_Block:: INCBIN "gfx/blocksets/cemetery.bst"
+Cavern_GFX:: INCBIN "gfx/tilesets/cavern.2bpp"
+Cavern_Block:: INCBIN "gfx/blocksets/cavern.bst"
+Lobby_GFX:: INCBIN "gfx/tilesets/lobby.2bpp"
+Lobby_Block:: INCBIN "gfx/blocksets/lobby.bst"
+Ship_GFX:: INCBIN "gfx/tilesets/ship.2bpp"
+Ship_Block:: INCBIN "gfx/blocksets/ship.bst"
+Lab_GFX:: INCBIN "gfx/tilesets/lab.2bpp"
+Lab_Block:: INCBIN "gfx/blocksets/lab.bst"
+Club_GFX:: INCBIN "gfx/tilesets/club.2bpp"
+Club_Block:: INCBIN "gfx/blocksets/club.bst"
+Underground_GFX:: INCBIN "gfx/tilesets/underground.2bpp"
+Underground_Block:: INCBIN "gfx/blocksets/underground.bst"
--- /dev/null
+++ b/gfx/trade.asm
@@ -1,0 +1,7 @@
+TradingAnimationGraphics:
+INCBIN "gfx/trade/game_boy.2bpp"
+INCBIN "gfx/trade/link_cable.2bpp"
+TradingAnimationGraphicsEnd:
+
+TradingAnimationGraphics2: INCBIN "gfx/trade/cable_ball.2bpp"
+TradingAnimationGraphics2End:
--- /dev/null
+++ b/gfx/trainer_card.asm
@@ -1,0 +1,8 @@
+TrainerInfoTextBoxTileGraphics: INCBIN "gfx/trainer_card/trainer_info.2bpp"
+TrainerInfoTextBoxTileGraphicsEnd:
+
+BlankLeaderNames: INCBIN "gfx/trainer_card/blank_leader_names.2bpp"
+
+CircleTile: INCBIN "gfx/trainer_card/circle_tile.2bpp"
+
+BadgeNumbersTileGraphics: INCBIN "gfx/trainer_card/badge_numbers.2bpp"
--- /dev/null
+++ b/gfx/version.asm
@@ -1,0 +1,8 @@
+Version_GFX:
+IF DEF(_RED)
+ INCBIN "gfx/title/red_version.1bpp" ; 10 tiles
+ENDC
+IF DEF(_BLUE)
+ INCBIN "gfx/title/blue_version.1bpp" ; 8 tiles
+ENDC
+Version_GFXEnd:
--- a/home.asm
+++ b/home.asm
@@ -1,120 +1,24 @@
INCLUDE "constants.asm"
-; The rst vectors are unused.
-SECTION "rst 00", ROM0
- rst $38
-SECTION "rst 08", ROM0
- rst $38
-SECTION "rst 10", ROM0
- rst $38
-SECTION "rst 18", ROM0
- rst $38
-SECTION "rst 20", ROM0
- rst $38
-SECTION "rst 28", ROM0
- rst $38
-SECTION "rst 30", ROM0
- rst $38
-SECTION "rst 38", ROM0
- rst $38
+SECTION "NULL", ROM0
+NULL::
-; Hardware interrupts
-SECTION "vblank", ROM0
- jp VBlank
-SECTION "hblank", ROM0
- rst $38
-SECTION "timer", ROM0
- jp Timer
-SECTION "serial", ROM0
- jp Serial
-SECTION "joypad", ROM0
- reti
+INCLUDE "home/header.asm"
-SECTION "Home", ROM0
+SECTION "High Home", ROM0
-DisableLCD::
- xor a
- ld [rIF], a
- ld a, [rIE]
- ld b, a
- res 0, a
- ld [rIE], a
-
-.wait
- ld a, [rLY]
- cp LY_VBLANK
- jr nz, .wait
-
- ld a, [rLCDC]
- and $ff ^ rLCDC_ENABLE_MASK
- ld [rLCDC], a
- ld a, b
- ld [rIE], a
- ret
-
-EnableLCD::
- ld a, [rLCDC]
- set rLCDC_ENABLE, a
- ld [rLCDC], a
- ret
-
-ClearSprites::
- xor a
- ld hl, wOAMBuffer
- ld b, 40 * 4
-.loop
- ld [hli], a
- dec b
- jr nz, .loop
- ret
-
-HideSprites::
- ld a, 160
- ld hl, wOAMBuffer
- ld de, 4
- ld b, 40
-.loop
- ld [hl], a
- add hl, de
- dec b
- jr nz, .loop
- ret
-
+INCLUDE "home/lcd.asm"
+INCLUDE "home/clear_sprites.asm"
INCLUDE "home/copy.asm"
-SECTION "Entry", ROM0
+SECTION "Home", ROM0
- nop
- jp Start
-
-
-SECTION "Header", ROM0
-
- ; The header is generated by rgbfix.
- ; The space here is allocated to prevent code from being overwritten.
-
- ds $150 - $104
-
-
-SECTION "Main", ROM0
-
-Start::
- cp GBC
- jr z, .gbc
- xor a
- jr .ok
-.gbc
- ld a, 0
-.ok
- ld [wGBC], a
- jp Init
-
-
+INCLUDE "home/start.asm"
INCLUDE "home/joypad.asm"
-INCLUDE "data/map_header_pointers.asm"
+INCLUDE "data/maps/map_header_pointers.asm"
INCLUDE "home/overworld.asm"
CheckForUserInterruption::
@@ -149,10 +53,10 @@
; a = ID of destination warp within destination map
LoadDestinationWarpPosition::
ld b, a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wPredefParentBank]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld a, b
add a
@@ -164,753 +68,14 @@
ld de, wCurrentTileBlockMapViewPointer
call CopyData
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
-
-DrawHPBar::
-; Draw an HP bar d tiles long, and fill it to e pixels.
-; If c is nonzero, show at least a sliver regardless.
-; The right end of the bar changes with [wHPBarType].
-
- push hl
- push de
- push bc
-
- ; Left
- ld a, $71 ; "HP:"
- ld [hli], a
- ld a, $62
- ld [hli], a
-
- push hl
-
- ; Middle
- ld a, $63 ; empty
-.draw
- ld [hli], a
- dec d
- jr nz, .draw
-
- ; Right
- ld a, [wHPBarType]
- dec a
- ld a, $6d ; status screen and battle
- jr z, .ok
- dec a ; pokemon menu
-.ok
- ld [hl], a
-
- pop hl
-
- ld a, e
- and a
- jr nz, .fill
-
- ; If c is nonzero, draw a pixel anyway.
- ld a, c
- and a
- jr z, .done
- ld e, 1
-
-.fill
- ld a, e
- sub 8
- jr c, .partial
- ld e, a
- ld a, $6b ; full
- ld [hli], a
- ld a, e
- and a
- jr z, .done
- jr .fill
-
-.partial
- ; Fill remaining pixels at the end if necessary.
- ld a, $63 ; empty
- add e
- ld [hl], a
-.done
- pop bc
- pop de
- pop hl
- ret
-
-
-; loads pokemon data from one of multiple sources to wLoadedMon
-; loads base stats to wMonHeader
-; INPUT:
-; [wWhichPokemon] = index of pokemon within party/box
-; [wMonDataLocation] = source
-; 00: player's party
-; 01: enemy's party
-; 02: current box
-; 03: daycare
-; OUTPUT:
-; [wcf91] = pokemon ID
-; wLoadedMon = base address of pokemon data
-; wMonHeader = base address of base stats
-LoadMonData::
- jpab LoadMonData_
-
-OverwritewMoves::
-; Write c to [wMoves + b]. Unused.
- ld hl, wMoves
- ld e, b
- ld d, 0
- add hl, de
- ld a, c
- ld [hl], a
- ret
-
-LoadFlippedFrontSpriteByMonIndex::
- ld a, 1
- ld [wSpriteFlipped], a
-
-LoadFrontSpriteByMonIndex::
- push hl
- ld a, [wd11e]
- push af
- ld a, [wcf91]
- ld [wd11e], a
- predef IndexToPokedex
- ld hl, wd11e
- ld a, [hl]
- pop bc
- ld [hl], b
- and a
- pop hl
- jr z, .invalidDexNumber ; dex #0 invalid
- cp NUM_POKEMON + 1
- jr c, .validDexNumber ; dex >#151 invalid
-.invalidDexNumber
- ld a, RHYDON ; $1
- ld [wcf91], a
- ret
-.validDexNumber
- push hl
- ld de, vFrontPic
- call LoadMonFrontSprite
- pop hl
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, Bank(CopyUncompressedPicToHL)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- xor a
- ld [hStartTileID], a
- call CopyUncompressedPicToHL
- xor a
- ld [wSpriteFlipped], a
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-
-PlayCry::
-; Play monster a's cry.
- call GetCryData
- call PlaySound
- jp WaitForSoundToFinish
-
-GetCryData::
-; Load cry data for monster a.
- dec a
- ld c, a
- ld b, 0
- ld hl, CryData
- add hl, bc
- add hl, bc
- add hl, bc
-
- ld a, BANK(CryData)
- call BankswitchHome
- ld a, [hli]
- ld b, a ; cry id
- ld a, [hli]
- ld [wFrequencyModifier], a
- ld a, [hl]
- ld [wTempoModifier], a
- call BankswitchBack
-
- ; Cry headers have 3 channels,
- ; and start from index CRY_SFX_START,
- ; so add 3 times the cry id.
- ld a, b
- ld c, CRY_SFX_START
- rlca ; * 2
- add b
- add c
- ret
-
-DisplayPartyMenu::
- ld a, [hTilesetType]
- push af
- xor a
- ld [hTilesetType], a
- call GBPalWhiteOutWithDelay3
- call ClearSprites
- call PartyMenuInit
- call DrawPartyMenu
- jp HandlePartyMenuInput
-
-GoBackToPartyMenu::
- ld a, [hTilesetType]
- push af
- xor a
- ld [hTilesetType], a
- call PartyMenuInit
- call RedrawPartyMenu
- jp HandlePartyMenuInput
-
-PartyMenuInit::
- ld a, 1 ; hardcoded bank
- call BankswitchHome
- call LoadHpBarAndStatusTilePatterns
- ld hl, wd730
- set 6, [hl] ; turn off letter printing delay
- xor a ; PLAYER_PARTY_DATA
- ld [wMonDataLocation], a
- ld [wMenuWatchMovingOutOfBounds], a
- ld hl, wTopMenuItemY
- inc a
- ld [hli], a ; top menu item Y
- xor a
- ld [hli], a ; top menu item X
- ld a, [wPartyAndBillsPCSavedMenuItem]
- push af
- ld [hli], a ; current menu item ID
- inc hl
- ld a, [wPartyCount]
- and a ; are there more than 0 pokemon in the party?
- jr z, .storeMaxMenuItemID
- dec a
-; if party is not empty, the max menu item ID is ([wPartyCount] - 1)
-; otherwise, it is 0
-.storeMaxMenuItemID
- ld [hli], a ; max menu item ID
- ld a, [wForcePlayerToChooseMon]
- and a
- ld a, A_BUTTON | B_BUTTON
- jr z, .next
- xor a
- ld [wForcePlayerToChooseMon], a
- inc a ; a = A_BUTTON
-.next
- ld [hli], a ; menu watched keys
- pop af
- ld [hl], a ; old menu item ID
- ret
-
-HandlePartyMenuInput::
- ld a, 1
- ld [wMenuWrappingEnabled], a
- ld a, $40
- ld [wPartyMenuAnimMonEnabled], a
- call HandleMenuInput_
- call PlaceUnfilledArrowMenuCursor
- ld b, a
- xor a
- ld [wPartyMenuAnimMonEnabled], a
- ld a, [wCurrentMenuItem]
- ld [wPartyAndBillsPCSavedMenuItem], a
- ld hl, wd730
- res 6, [hl] ; turn on letter printing delay
- ld a, [wMenuItemToSwap]
- and a
- jp nz, .swappingPokemon
- pop af
- ld [hTilesetType], a
- bit 1, b
- jr nz, .noPokemonChosen
- ld a, [wPartyCount]
- and a
- jr z, .noPokemonChosen
- ld a, [wCurrentMenuItem]
- ld [wWhichPokemon], a
- ld hl, wPartySpecies
- ld b, 0
- ld c, a
- add hl, bc
- ld a, [hl]
- ld [wcf91], a
- ld [wBattleMonSpecies2], a
- call BankswitchBack
- and a
- ret
-.noPokemonChosen
- call BankswitchBack
- scf
- ret
-.swappingPokemon
- bit 1, b ; was the B button pressed?
- jr z, .handleSwap ; if not, handle swapping the pokemon
-.cancelSwap ; if the B button was pressed
- callba ErasePartyMenuCursors
- xor a
- ld [wMenuItemToSwap], a
- ld [wPartyMenuTypeOrMessageID], a
- call RedrawPartyMenu
- jr HandlePartyMenuInput
-.handleSwap
- ld a, [wCurrentMenuItem]
- ld [wWhichPokemon], a
- callba SwitchPartyMon
- jr HandlePartyMenuInput
-
-DrawPartyMenu::
- ld hl, DrawPartyMenu_
- jr DrawPartyMenuCommon
-
-RedrawPartyMenu::
- ld hl, RedrawPartyMenu_
-
-DrawPartyMenuCommon::
- ld b, BANK(RedrawPartyMenu_)
- jp Bankswitch
-
-; prints a pokemon's status condition
-; INPUT:
-; de = address of status condition
-; hl = destination address
-PrintStatusCondition::
- push de
- dec de
- dec de ; de = address of current HP
- ld a, [de]
- ld b, a
- dec de
- ld a, [de]
- or b ; is the pokemon's HP zero?
- pop de
- jr nz, PrintStatusConditionNotFainted
-; if the pokemon's HP is 0, print "FNT"
- ld a, "F"
- ld [hli], a
- ld a, "N"
- ld [hli], a
- ld [hl], "T"
- and a
- ret
-
-PrintStatusConditionNotFainted::
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, BANK(PrintStatusAilment)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call PrintStatusAilment ; print status condition
- pop bc
- ld a, b
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-; function to print pokemon level, leaving off the ":L" if the level is at least 100
-; INPUT:
-; hl = destination address
-; [wLoadedMonLevel] = level
-PrintLevel::
- ld a, $6e ; ":L" tile ID
- ld [hli], a
- ld c, 2 ; number of digits
- ld a, [wLoadedMonLevel] ; level
- cp 100
- jr c, PrintLevelCommon
-; if level at least 100, write over the ":L" tile
- dec hl
- inc c ; increment number of digits to 3
- jr PrintLevelCommon
-
-; prints the level without leaving off ":L" regardless of level
-; INPUT:
-; hl = destination address
-; [wLoadedMonLevel] = level
-PrintLevelFull::
- ld a, $6e ; ":L" tile ID
- ld [hli], a
- ld c, 3 ; number of digits
- ld a, [wLoadedMonLevel] ; level
-
-PrintLevelCommon::
- ld [wd11e], a
- ld de, wd11e
- ld b, LEFT_ALIGN | 1 ; 1 byte
- jp PrintNumber
-
-GetwMoves::
-; Unused. Returns the move at index a from wMoves in a
- ld hl, wMoves
- ld c, a
- ld b, 0
- add hl, bc
- ld a, [hl]
- ret
-
-; copies the base stat data of a pokemon to wMonHeader
-; INPUT:
-; [wd0b5] = pokemon ID
-GetMonHeader::
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, BANK(BaseStats)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- push bc
- push de
- push hl
- ld a, [wd11e]
- push af
- ld a, [wd0b5]
- ld [wd11e], a
- ld de, FossilKabutopsPic
- ld b, $66 ; size of Kabutops fossil and Ghost sprites
- cp FOSSIL_KABUTOPS ; Kabutops fossil
- jr z, .specialID
- ld de, GhostPic
- cp MON_GHOST ; Ghost
- jr z, .specialID
- ld de, FossilAerodactylPic
- ld b, $77 ; size of Aerodactyl fossil sprite
- cp FOSSIL_AERODACTYL ; Aerodactyl fossil
- jr z, .specialID
- cp MEW
- jr z, .mew
- predef IndexToPokedex ; convert pokemon ID in [wd11e] to pokedex number
- ld a, [wd11e]
- dec a
- ld bc, MonBaseStatsEnd - MonBaseStats
- ld hl, BaseStats
- call AddNTimes
- ld de, wMonHeader
- ld bc, MonBaseStatsEnd - MonBaseStats
- call CopyData
- jr .done
-.specialID
- ld hl, wMonHSpriteDim
- ld [hl], b ; write sprite dimensions
- inc hl
- ld [hl], e ; write front sprite pointer
- inc hl
- ld [hl], d
- jr .done
-.mew
- ld hl, MewBaseStats
- ld de, wMonHeader
- ld bc, MonBaseStatsEnd - MonBaseStats
- ld a, BANK(MewBaseStats)
- call FarCopyData
-.done
- ld a, [wd0b5]
- ld [wMonHIndex], a
- pop af
- ld [wd11e], a
- pop hl
- pop de
- pop bc
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-; copy party pokemon's name to wcd6d
-GetPartyMonName2::
- ld a, [wWhichPokemon] ; index within party
- ld hl, wPartyMonNicks
-
-; this is called more often
-GetPartyMonName::
- push hl
- push bc
- call SkipFixedLengthTextEntries ; add NAME_LENGTH to hl, a times
- ld de, wcd6d
- push de
- ld bc, NAME_LENGTH
- call CopyData
- pop de
- pop bc
- pop hl
- ret
-
-; function to print a BCD (Binary-coded decimal) number
-; de = address of BCD number
-; hl = destination address
-; c = flags and length
-; bit 7: if set, do not print leading zeroes
-; if unset, print leading zeroes
-; bit 6: if set, left-align the string (do not pad empty digits with spaces)
-; if unset, right-align the string
-; bit 5: if set, print currency symbol at the beginning of the string
-; if unset, do not print the currency symbol
-; bits 0-4: length of BCD number in bytes
-; Note that bits 5 and 7 are modified during execution. The above reflects
-; their meaning at the beginning of the functions's execution.
-PrintBCDNumber::
- ld b, c ; save flags in b
- res 7, c
- res 6, c
- res 5, c ; c now holds the length
- bit 5, b
- jr z, .loop
- bit 7, b
- jr nz, .loop
- ld [hl], "¥"
- inc hl
-.loop
- ld a, [de]
- swap a
- call PrintBCDDigit ; print upper digit
- ld a, [de]
- call PrintBCDDigit ; print lower digit
- inc de
- dec c
- jr nz, .loop
- bit 7, b ; were any non-zero digits printed?
- jr z, .done ; if so, we are done
-.numberEqualsZero ; if every digit of the BCD number is zero
- bit 6, b ; left or right alignment?
- jr nz, .skipRightAlignmentAdjustment
- dec hl ; if the string is right-aligned, it needs to be moved back one space
-.skipRightAlignmentAdjustment
- bit 5, b
- jr z, .skipCurrencySymbol
- ld [hl], "¥"
- inc hl
-.skipCurrencySymbol
- ld [hl], "0"
- call PrintLetterDelay
- inc hl
-.done
- ret
-
-PrintBCDDigit::
- and $f
- and a
- jr z, .zeroDigit
-.nonzeroDigit
- bit 7, b ; have any non-space characters been printed?
- jr z, .outputDigit
-; if bit 7 is set, then no numbers have been printed yet
- bit 5, b ; print the currency symbol?
- jr z, .skipCurrencySymbol
- ld [hl], "¥"
- inc hl
- res 5, b
-.skipCurrencySymbol
- res 7, b ; unset 7 to indicate that a nonzero digit has been reached
-.outputDigit
- add "0"
- ld [hli], a
- jp PrintLetterDelay
-.zeroDigit
- bit 7, b ; either printing leading zeroes or already reached a nonzero digit?
- jr z, .outputDigit ; if so, print a zero digit
- bit 6, b ; left or right alignment?
- ret nz
- inc hl ; if right-aligned, "print" a space by advancing the pointer
- ret
-
-; uncompresses the front or back sprite of the specified mon
-; assumes the corresponding mon header is already loaded
-; hl contains offset to sprite pointer ($b for front or $d for back)
-UncompressMonSprite::
- ld bc, wMonHeader
- add hl, bc
- ld a, [hli]
- ld [wSpriteInputPtr], a ; fetch sprite input pointer
- ld a, [hl]
- ld [wSpriteInputPtr+1], a
-; define (by index number) the bank that a pokemon's image is in
-; index = Mew, bank 1
-; index = Kabutops fossil, bank $B
-; index < $1F, bank 9
-; $1F ≤ index < $4A, bank $A
-; $4A ≤ index < $74, bank $B
-; $74 ≤ index < $99, bank $C
-; $99 ≤ index, bank $D
- ld a, [wcf91] ; XXX name for this ram location
- ld b, a
- cp MEW
- ld a, BANK(MewPicFront)
- jr z, .GotBank
- ld a, b
- cp FOSSIL_KABUTOPS
- ld a, BANK(FossilKabutopsPic)
- jr z, .GotBank
- ld a, b
- cp TANGELA + 1
- ld a, BANK(TangelaPicFront)
- jr c, .GotBank
- ld a, b
- cp MOLTRES + 1
- ld a, BANK(MoltresPicFront)
- jr c, .GotBank
- ld a, b
- cp BEEDRILL + 2
- ld a, BANK(BeedrillPicFront)
- jr c, .GotBank
- ld a, b
- cp STARMIE + 1
- ld a, BANK(StarmiePicFront)
- jr c, .GotBank
- ld a, BANK(VictreebelPicFront)
-.GotBank
- jp UncompressSpriteData
-
-; de: destination location
-LoadMonFrontSprite::
- push de
- ld hl, wMonHFrontSprite - wMonHeader
- call UncompressMonSprite
- ld hl, wMonHSpriteDim
- ld a, [hli]
- ld c, a
- pop de
- ; fall through
-
-; postprocesses uncompressed sprite chunks to a 2bpp sprite and loads it into video ram
-; calculates alignment parameters to place both sprite chunks in the center of the 7*7 tile sprite buffers
-; de: destination location
-; a,c: sprite dimensions (in tiles of 8x8 each)
-LoadUncompressedSpriteData::
- push de
- and $f
- ld [H_SPRITEWIDTH], a ; each byte contains 8 pixels (in 1bpp), so tiles=bytes for width
- ld b, a
- ld a, $7
- sub b ; 7-w
- inc a ; 8-w
- srl a ; (8-w)/2 ; horizontal center (in tiles, rounded up)
- ld b, a
- add a
- add a
- add a
- sub b ; 7*((8-w)/2) ; skip for horizontal center (in tiles)
- ld [H_SPRITEOFFSET], a
- ld a, c
- swap a
- and $f
- ld b, a
- add a
- add a
- add a ; 8*tiles is height in bytes
- ld [H_SPRITEHEIGHT], a
- ld a, $7
- sub b ; 7-h ; skip for vertical center (in tiles, relative to current column)
- ld b, a
- ld a, [H_SPRITEOFFSET]
- add b ; 7*((8-w)/2) + 7-h ; combined overall offset (in tiles)
- add a
- add a
- add a ; 8*(7*((8-w)/2) + 7-h) ; combined overall offset (in bytes)
- ld [H_SPRITEOFFSET], a
- xor a
- ld [$4000], a
- ld hl, sSpriteBuffer0
- call ZeroSpriteBuffer ; zero buffer 0
- ld de, sSpriteBuffer1
- ld hl, sSpriteBuffer0
- call AlignSpriteDataCentered ; copy and align buffer 1 to 0 (containing the MSB of the 2bpp sprite)
- ld hl, sSpriteBuffer1
- call ZeroSpriteBuffer ; zero buffer 1
- ld de, sSpriteBuffer2
- ld hl, sSpriteBuffer1
- call AlignSpriteDataCentered ; copy and align buffer 2 to 1 (containing the LSB of the 2bpp sprite)
- pop de
- jp InterlaceMergeSpriteBuffers
-
-; copies and aligns the sprite data properly inside the sprite buffer
-; sprite buffers are 7*7 tiles in size, the loaded sprite is centered within this area
-AlignSpriteDataCentered::
- ld a, [H_SPRITEOFFSET]
- ld b, $0
- ld c, a
- add hl, bc
- ld a, [H_SPRITEWIDTH]
-.columnLoop
- push af
- push hl
- ld a, [H_SPRITEHEIGHT]
- ld c, a
-.columnInnerLoop
- ld a, [de]
- inc de
- ld [hli], a
- dec c
- jr nz, .columnInnerLoop
- pop hl
- ld bc, 7*8 ; 7 tiles
- add hl, bc ; advance one full column
- pop af
- dec a
- jr nz, .columnLoop
- ret
-
-; fills the sprite buffer (pointed to in hl) with zeros
-ZeroSpriteBuffer::
- ld bc, SPRITEBUFFERSIZE
-.nextByteLoop
- xor a
- ld [hli], a
- dec bc
- ld a, b
- or c
- jr nz, .nextByteLoop
- ret
-
-; combines the (7*7 tiles, 1bpp) sprite chunks in buffer 0 and 1 into a 2bpp sprite located in buffer 1 through 2
-; in the resulting sprite, the rows of the two source sprites are interlaced
-; de: output address
-InterlaceMergeSpriteBuffers::
- xor a
- ld [$4000], a
- push de
- ld hl, sSpriteBuffer2 + (SPRITEBUFFERSIZE - 1) ; destination: end of buffer 2
- ld de, sSpriteBuffer1 + (SPRITEBUFFERSIZE - 1) ; source 2: end of buffer 1
- ld bc, sSpriteBuffer0 + (SPRITEBUFFERSIZE - 1) ; source 1: end of buffer 0
- ld a, SPRITEBUFFERSIZE/2 ; $c4
- ld [H_SPRITEINTERLACECOUNTER], a
-.interlaceLoop
- ld a, [de]
- dec de
- ld [hld], a ; write byte of source 2
- ld a, [bc]
- dec bc
- ld [hld], a ; write byte of source 1
- ld a, [de]
- dec de
- ld [hld], a ; write byte of source 2
- ld a, [bc]
- dec bc
- ld [hld], a ; write byte of source 1
- ld a, [H_SPRITEINTERLACECOUNTER]
- dec a
- ld [H_SPRITEINTERLACECOUNTER], a
- jr nz, .interlaceLoop
- ld a, [wSpriteFlipped]
- and a
- jr z, .notFlipped
- ld bc, 2*SPRITEBUFFERSIZE
- ld hl, sSpriteBuffer1
-.swapLoop
- swap [hl] ; if flipped swap nybbles in all bytes
- inc hl
- dec bc
- ld a, b
- or c
- jr nz, .swapLoop
-.notFlipped
- pop hl
- ld de, sSpriteBuffer1
- ld c, (2*SPRITEBUFFERSIZE)/16 ; $31, number of 16 byte chunks to be copied
- ld a, [H_LOADEDROMBANK]
- ld b, a
- jp CopyVideoData
-
-
-INCLUDE "data/collision_tile_ids.asm"
+INCLUDE "home/pokemon.asm"
+INCLUDE "home/print_bcd.asm"
+INCLUDE "home/pics.asm"
+INCLUDE "data/tilesets/collision_tile_ids.asm"
INCLUDE "home/copy2.asm"
INCLUDE "home/text.asm"
INCLUDE "home/vcopy.asm"
@@ -921,59 +86,25 @@
INCLUDE "home/timer.asm"
INCLUDE "home/audio.asm"
-
UpdateSprites::
ld a, [wUpdateSpritesEnabled]
dec a
ret nz
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
- ld a, Bank(_UpdateSprites)
- ld [H_LOADEDROMBANK], a
+ ld a, BANK(_UpdateSprites)
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call _UpdateSprites
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
-INCLUDE "data/mart_inventories.asm"
+INCLUDE "data/items/marts.asm"
+INCLUDE "home/overworld_text.asm"
+INCLUDE "home/uncompress.asm"
-TextScriptEndingChar::
- db "@"
-TextScriptEnd::
- ld hl, TextScriptEndingChar
- ret
-
-ExclamationText::
- TX_FAR _ExclamationText
- db "@"
-
-GroundRoseText::
- TX_FAR _GroundRoseText
- db "@"
-
-BoulderText::
- TX_FAR _BoulderText
- db "@"
-
-MartSignText::
- TX_FAR _MartSignText
- db "@"
-
-PokeCenterSignText::
- TX_FAR _PokeCenterSignText
- db "@"
-
-PickUpItemText::
- TX_ASM
- predef PickUpItem
- jp TextScriptEnd
-
-
-INCLUDE "home/pic.asm"
-
-
ResetPlayerSpriteData::
ld hl, wSpriteStateData1
call ResetPlayerSpriteData_ClearSpriteData
@@ -1035,7 +166,7 @@
ld b, a
xor a
ld [wAudioFadeOutControl], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld a, [wAudioSavedROMBank]
@@ -1044,244 +175,7 @@
ld [wNewSoundID], a
jp PlaySound
-; this function is used to display sign messages, sprite dialog, etc.
-; INPUT: [hSpriteIndexOrTextID] = sprite ID or text ID
-DisplayTextID::
- ld a, [H_LOADEDROMBANK]
- push af
- callba DisplayTextIDInit ; initialization
- ld hl, wTextPredefFlag
- bit 0, [hl]
- res 0, [hl]
- jr nz, .skipSwitchToMapBank
- ld a, [wCurMap]
- call SwitchToMapRomBank
-.skipSwitchToMapBank
- ld a, 30 ; half a second
- ld [H_FRAMECOUNTER], a ; used as joypad poll timer
- ld hl, wMapTextPtr
- ld a, [hli]
- ld h, [hl]
- ld l, a ; hl = map text pointer
- ld d, $00
- ld a, [hSpriteIndexOrTextID] ; text ID
- ld [wSpriteIndex], a
- and a
- jp z, DisplayStartMenu
- cp TEXT_SAFARI_GAME_OVER
- jp z, DisplaySafariGameOverText
- cp TEXT_MON_FAINTED
- jp z, DisplayPokemonFaintedText
- cp TEXT_BLACKED_OUT
- jp z, DisplayPlayerBlackedOutText
- cp TEXT_REPEL_WORE_OFF
- jp z, DisplayRepelWoreOffText
- ld a, [wNumSprites]
- ld e, a
- ld a, [hSpriteIndexOrTextID] ; sprite ID
- cp e
- jr z, .spriteHandling
- jr nc, .skipSpriteHandling
-.spriteHandling
-; get the text ID of the sprite
- push hl
- push de
- push bc
- callba UpdateSpriteFacingOffsetAndDelayMovement ; update the graphics of the sprite the player is talking to (to face the right direction)
- pop bc
- pop de
- ld hl, wMapSpriteData ; NPC text entries
- ld a, [hSpriteIndexOrTextID]
- dec a
- add a
- add l
- ld l, a
- jr nc, .noCarry
- inc h
-.noCarry
- inc hl
- ld a, [hl] ; a = text ID of the sprite
- pop hl
-.skipSpriteHandling
-; look up the address of the text in the map's text entries
- dec a
- ld e, a
- sla e
- add hl, de
- ld a, [hli]
- ld h, [hl]
- ld l, a ; hl = address of the text
- ld a, [hl] ; a = first byte of text
-; check first byte of text for special cases
- cp $fe ; Pokemart NPC
- jp z, DisplayPokemartDialogue
- cp $ff ; Pokemon Center NPC
- jp z, DisplayPokemonCenterDialogue
- cp $fc ; Item Storage PC
- jp z, FuncTX_ItemStoragePC
- cp $fd ; Bill's PC
- jp z, FuncTX_BillsPC
- cp $f9 ; Pokemon Center PC
- jp z, FuncTX_PokemonCenterPC
- cp $f5 ; Vending Machine
- jr nz, .notVendingMachine
- callba VendingMachineMenu ; jump banks to vending machine routine
- jr AfterDisplayingTextID
-.notVendingMachine
- cp $f7 ; prize menu
- jp z, FuncTX_GameCornerPrizeMenu
- cp $f6 ; cable connection NPC in Pokemon Center
- jr nz, .notSpecialCase
- callab CableClubNPC
- jr AfterDisplayingTextID
-.notSpecialCase
- call PrintText_NoCreatingTextBox ; display the text
- ld a, [wDoNotWaitForButtonPressAfterDisplayingText]
- and a
- jr nz, HoldTextDisplayOpen
-
-AfterDisplayingTextID::
- ld a, [wEnteringCableClub]
- and a
- jr nz, HoldTextDisplayOpen
- call WaitForTextScrollButtonPress ; wait for a button press after displaying all the text
-
-; loop to hold the dialogue box open as long as the player keeps holding down the A button
-HoldTextDisplayOpen::
- call Joypad
- ld a, [hJoyHeld]
- bit 0, a ; is the A button being pressed?
- jr nz, HoldTextDisplayOpen
-
-CloseTextDisplay::
- ld a, [wCurMap]
- call SwitchToMapRomBank
- ld a, $90
- ld [hWY], a ; move the window off the screen
- call DelayFrame
- call LoadGBPal
- xor a
- ld [H_AUTOBGTRANSFERENABLED], a ; disable continuous WRAM to VRAM transfer each V-blank
-; loop to make sprites face the directions they originally faced before the dialogue
- ld hl, wSpriteStateData2 + $19
- ld c, $0f
- ld de, $0010
-.restoreSpriteFacingDirectionLoop
- ld a, [hl]
- dec h
- ld [hl], a
- inc h
- add hl, de
- dec c
- jr nz, .restoreSpriteFacingDirectionLoop
- ld a, BANK(InitMapSprites)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call InitMapSprites ; reload sprite tile pattern data (since it was partially overwritten by text tile patterns)
- ld hl, wFontLoaded
- res 0, [hl]
- ld a, [wd732]
- bit 3, a ; used fly warp
- call z, LoadPlayerSpriteGraphics
- call LoadCurrentMapView
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- jp UpdateSprites
-
-DisplayPokemartDialogue::
- push hl
- ld hl, PokemartGreetingText
- call PrintText
- pop hl
- inc hl
- call LoadItemList
- ld a, PRICEDITEMLISTMENU
- ld [wListMenuID], a
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, Bank(DisplayPokemartDialogue_)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call DisplayPokemartDialogue_
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- jp AfterDisplayingTextID
-
-PokemartGreetingText::
- TX_FAR _PokemartGreetingText
- db "@"
-
-LoadItemList::
- ld a, 1
- ld [wUpdateSpritesEnabled], a
- ld a, h
- ld [wItemListPointer], a
- ld a, l
- ld [wItemListPointer + 1], a
- ld de, wItemList
-.loop
- ld a, [hli]
- ld [de], a
- inc de
- cp $ff
- jr nz, .loop
- ret
-
-DisplayPokemonCenterDialogue::
-; zeroing these doesn't appear to serve any purpose
- xor a
- ld [$ff8b], a
- ld [$ff8c], a
- ld [$ff8d], a
-
- inc hl
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, Bank(DisplayPokemonCenterDialogue_)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call DisplayPokemonCenterDialogue_
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- jp AfterDisplayingTextID
-
-DisplaySafariGameOverText::
- callab PrintSafariGameOverText
- jp AfterDisplayingTextID
-
-DisplayPokemonFaintedText::
- ld hl, PokemonFaintedText
- call PrintText
- jp AfterDisplayingTextID
-
-PokemonFaintedText::
- TX_FAR _PokemonFaintedText
- db "@"
-
-DisplayPlayerBlackedOutText::
- ld hl, PlayerBlackedOutText
- call PrintText
- ld a, [wd732]
- res 5, a ; reset forced to use bike bit
- ld [wd732], a
- jp HoldTextDisplayOpen
-
-PlayerBlackedOutText::
- TX_FAR _PlayerBlackedOutText
- db "@"
-
-DisplayRepelWoreOffText::
- ld hl, RepelWoreOffText
- call PrintText
- jp AfterDisplayingTextID
-
-RepelWoreOffText::
- TX_FAR _RepelWoreOffText
- db "@"
-
+INCLUDE "home/predef_text.asm"
INCLUDE "home/start_menu.asm"
; function to count how many bits are set in a string of bytes
@@ -1333,14 +227,14 @@
; [wWhichPokemon] = index (within the inventory) of the item to remove
; [wItemQuantity] = quantity to remove
RemoveItemFromInventory::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, BANK(RemoveItemFromInventory_)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call RemoveItemFromInventory_
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -1352,692 +246,25 @@
; sets carry flag if successful, unsets carry flag if unsuccessful
AddItemToInventory::
push bc
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, BANK(AddItemToInventory_)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call AddItemToInventory_
pop bc
ld a, b
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
pop bc
ret
-; INPUT:
-; [wListMenuID] = list menu ID
-; [wListPointer] = address of the list (2 bytes)
-DisplayListMenuID::
- xor a
- ld [H_AUTOBGTRANSFERENABLED], a ; disable auto-transfer
- ld a, 1
- ld [hJoy7], a ; joypad state update flag
- ld a, [wBattleType]
- and a ; is it the Old Man battle?
- jr nz, .specialBattleType
- ld a, $01 ; hardcoded bank
- jr .bankswitch
-.specialBattleType ; Old Man battle
- ld a, BANK(DisplayBattleMenu)
-.bankswitch
- call BankswitchHome
- ld hl, wd730
- set 6, [hl] ; turn off letter printing delay
- xor a
- ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
- ld [wListCount], a
- ld a, [wListPointer]
- ld l, a
- ld a, [wListPointer + 1]
- ld h, a ; hl = address of the list
- ld a, [hl] ; the first byte is the number of entries in the list
- ld [wListCount], a
- ld a, LIST_MENU_BOX
- ld [wTextBoxID], a
- call DisplayTextBoxID ; draw the menu text box
- call UpdateSprites ; disable sprites behind the text box
-; the code up to .skipMovingSprites appears to be useless
- coord hl, 4, 2 ; coordinates of upper left corner of menu text box
- lb de, 9, 14 ; height and width of menu text box
- ld a, [wListMenuID]
- and a ; is it a PC pokemon list?
- jr nz, .skipMovingSprites
- call UpdateSprites
-.skipMovingSprites
- ld a, 1 ; max menu item ID is 1 if the list has less than 2 entries
- ld [wMenuWatchMovingOutOfBounds], a
- ld a, [wListCount]
- cp 2 ; does the list have less than 2 entries?
- jr c, .setMenuVariables
- ld a, 2 ; max menu item ID is 2 if the list has at least 2 entries
-.setMenuVariables
- ld [wMaxMenuItem], a
- ld a, 4
- ld [wTopMenuItemY], a
- ld a, 5
- ld [wTopMenuItemX], a
- ld a, A_BUTTON | B_BUTTON | SELECT
- ld [wMenuWatchedKeys], a
- ld c, 10
- call DelayFrames
+INCLUDE "home/list_menu.asm"
+INCLUDE "home/names.asm"
-DisplayListMenuIDLoop::
- xor a
- ld [H_AUTOBGTRANSFERENABLED], a ; disable transfer
- call PrintListMenuEntries
- ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a ; enable transfer
- call Delay3
- ld a, [wBattleType]
- and a ; is it the Old Man battle?
- jr z, .notOldManBattle
-.oldManBattle
- ld a, "▶"
- Coorda 5, 4 ; place menu cursor in front of first menu entry
- ld c, 80
- call DelayFrames
- xor a
- ld [wCurrentMenuItem], a
- coord hl, 5, 4
- ld a, l
- ld [wMenuCursorLocation], a
- ld a, h
- ld [wMenuCursorLocation + 1], a
- jr .buttonAPressed
-.notOldManBattle
- call LoadGBPal
- call HandleMenuInput
- push af
- call PlaceMenuCursor
- pop af
- bit 0, a ; was the A button pressed?
- jp z, .checkOtherKeys
-.buttonAPressed
- ld a, [wCurrentMenuItem]
- call PlaceUnfilledArrowMenuCursor
-
-; pointless because both values are overwritten before they are read
- ld a, $01
- ld [wMenuExitMethod], a
- ld [wChosenMenuItem], a
-
- xor a
- ld [wMenuWatchMovingOutOfBounds], a
- ld a, [wCurrentMenuItem]
- ld c, a
- ld a, [wListScrollOffset]
- add c
- ld c, a
- ld a, [wListCount]
- and a ; is the list empty?
- jp z, ExitListMenu ; if so, exit the menu
- dec a
- cp c ; did the player select Cancel?
- jp c, ExitListMenu ; if so, exit the menu
- ld a, c
- ld [wWhichPokemon], a
- ld a, [wListMenuID]
- cp ITEMLISTMENU
- jr nz, .skipMultiplying
-; if it's an item menu
- sla c ; item entries are 2 bytes long, so multiply by 2
-.skipMultiplying
- ld a, [wListPointer]
- ld l, a
- ld a, [wListPointer + 1]
- ld h, a
- inc hl ; hl = beginning of list entries
- ld b, 0
- add hl, bc
- ld a, [hl]
- ld [wcf91], a
- ld a, [wListMenuID]
- and a ; is it a PC pokemon list?
- jr z, .pokemonList
- push hl
- call GetItemPrice
- pop hl
- ld a, [wListMenuID]
- cp ITEMLISTMENU
- jr nz, .skipGettingQuantity
-; if it's an item menu
- inc hl
- ld a, [hl] ; a = item quantity
- ld [wMaxItemQuantity], a
-.skipGettingQuantity
- ld a, [wcf91]
- ld [wd0b5], a
- ld a, BANK(ItemNames)
- ld [wPredefBank], a
- call GetName
- jr .storeChosenEntry
-.pokemonList
- ld hl, wPartyCount
- ld a, [wListPointer]
- cp l ; is it a list of party pokemon or box pokemon?
- ld hl, wPartyMonNicks
- jr z, .getPokemonName
- ld hl, wBoxMonNicks ; box pokemon names
-.getPokemonName
- ld a, [wWhichPokemon]
- call GetPartyMonName
-.storeChosenEntry ; store the menu entry that the player chose and return
- ld de, wcd6d
- call CopyStringToCF4B ; copy name to wcf4b
- ld a, CHOSE_MENU_ITEM
- ld [wMenuExitMethod], a
- ld a, [wCurrentMenuItem]
- ld [wChosenMenuItem], a
- xor a
- ld [hJoy7], a ; joypad state update flag
- ld hl, wd730
- res 6, [hl] ; turn on letter printing delay
- jp BankswitchBack
-.checkOtherKeys ; check B, SELECT, Up, and Down keys
- bit 1, a ; was the B button pressed?
- jp nz, ExitListMenu ; if so, exit the menu
- bit 2, a ; was the select button pressed?
- jp nz, HandleItemListSwapping ; if so, allow the player to swap menu entries
- ld b, a
- bit 7, b ; was Down pressed?
- ld hl, wListScrollOffset
- jr z, .upPressed
-.downPressed
- ld a, [hl]
- add 3
- ld b, a
- ld a, [wListCount]
- cp b ; will going down scroll past the Cancel button?
- jp c, DisplayListMenuIDLoop
- inc [hl] ; if not, go down
- jp DisplayListMenuIDLoop
-.upPressed
- ld a, [hl]
- and a
- jp z, DisplayListMenuIDLoop
- dec [hl]
- jp DisplayListMenuIDLoop
-
-DisplayChooseQuantityMenu::
-; text box dimensions/coordinates for just quantity
- coord hl, 15, 9
- ld b, 1 ; height
- ld c, 3 ; width
- ld a, [wListMenuID]
- cp PRICEDITEMLISTMENU
- jr nz, .drawTextBox
-; text box dimensions/coordinates for quantity and price
- coord hl, 7, 9
- ld b, 1 ; height
- ld c, 11 ; width
-.drawTextBox
- call TextBoxBorder
- coord hl, 16, 10
- ld a, [wListMenuID]
- cp PRICEDITEMLISTMENU
- jr nz, .printInitialQuantity
- coord hl, 8, 10
-.printInitialQuantity
- ld de, InitialQuantityText
- call PlaceString
- xor a
- ld [wItemQuantity], a ; initialize current quantity to 0
- jp .incrementQuantity
-.waitForKeyPressLoop
- call JoypadLowSensitivity
- ld a, [hJoyPressed] ; newly pressed buttons
- bit 0, a ; was the A button pressed?
- jp nz, .buttonAPressed
- bit 1, a ; was the B button pressed?
- jp nz, .buttonBPressed
- bit 6, a ; was Up pressed?
- jr nz, .incrementQuantity
- bit 7, a ; was Down pressed?
- jr nz, .decrementQuantity
- jr .waitForKeyPressLoop
-.incrementQuantity
- ld a, [wMaxItemQuantity]
- inc a
- ld b, a
- ld hl, wItemQuantity ; current quantity
- inc [hl]
- ld a, [hl]
- cp b
- jr nz, .handleNewQuantity
-; wrap to 1 if the player goes above the max quantity
- ld a, 1
- ld [hl], a
- jr .handleNewQuantity
-.decrementQuantity
- ld hl, wItemQuantity ; current quantity
- dec [hl]
- jr nz, .handleNewQuantity
-; wrap to the max quantity if the player goes below 1
- ld a, [wMaxItemQuantity]
- ld [hl], a
-.handleNewQuantity
- coord hl, 17, 10
- ld a, [wListMenuID]
- cp PRICEDITEMLISTMENU
- jr nz, .printQuantity
-.printPrice
- ld c, $03
- ld a, [wItemQuantity]
- ld b, a
- ld hl, hMoney ; total price
-; initialize total price to 0
- xor a
- ld [hli], a
- ld [hli], a
- ld [hl], a
-.addLoop ; loop to multiply the individual price by the quantity to get the total price
- ld de, hMoney + 2
- ld hl, hItemPrice + 2
- push bc
- predef AddBCDPredef ; add the individual price to the current sum
- pop bc
- dec b
- jr nz, .addLoop
- ld a, [hHalveItemPrices]
- and a ; should the price be halved (for selling items)?
- jr z, .skipHalvingPrice
- xor a
- ld [hDivideBCDDivisor], a
- ld [hDivideBCDDivisor + 1], a
- ld a, $02
- ld [hDivideBCDDivisor + 2], a
- predef DivideBCDPredef3 ; halves the price
-; store the halved price
- ld a, [hDivideBCDQuotient]
- ld [hMoney], a
- ld a, [hDivideBCDQuotient + 1]
- ld [hMoney + 1], a
- ld a, [hDivideBCDQuotient + 2]
- ld [hMoney + 2], a
-.skipHalvingPrice
- coord hl, 12, 10
- ld de, SpacesBetweenQuantityAndPriceText
- call PlaceString
- ld de, hMoney ; total price
- ld c, $a3
- call PrintBCDNumber
- coord hl, 9, 10
-.printQuantity
- ld de, wItemQuantity ; current quantity
- lb bc, LEADING_ZEROES | 1, 2 ; 1 byte, 2 digits
- call PrintNumber
- jp .waitForKeyPressLoop
-.buttonAPressed ; the player chose to make the transaction
- xor a
- ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
- ret
-.buttonBPressed ; the player chose to cancel the transaction
- xor a
- ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
- ld a, $ff
- ret
-
-InitialQuantityText::
- db "×01@"
-
-SpacesBetweenQuantityAndPriceText::
- db " @"
-
-ExitListMenu::
- ld a, [wCurrentMenuItem]
- ld [wChosenMenuItem], a
- ld a, CANCELLED_MENU
- ld [wMenuExitMethod], a
- ld [wMenuWatchMovingOutOfBounds], a
- xor a
- ld [hJoy7], a
- ld hl, wd730
- res 6, [hl]
- call BankswitchBack
- xor a
- ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
- scf
- ret
-
-PrintListMenuEntries::
- coord hl, 5, 3
- ld b, 9
- ld c, 14
- call ClearScreenArea
- ld a, [wListPointer]
- ld e, a
- ld a, [wListPointer + 1]
- ld d, a
- inc de ; de = beginning of list entries
- ld a, [wListScrollOffset]
- ld c, a
- ld a, [wListMenuID]
- cp ITEMLISTMENU
- ld a, c
- jr nz, .skipMultiplying
-; if it's an item menu
-; item entries are 2 bytes long, so multiply by 2
- sla a
- sla c
-.skipMultiplying
- add e
- ld e, a
- jr nc, .noCarry
- inc d
-.noCarry
- coord hl, 6, 4 ; coordinates of first list entry name
- ld b, 4 ; print 4 names
-.loop
- ld a, b
- ld [wWhichPokemon], a
- ld a, [de]
- ld [wd11e], a
- cp $ff
- jp z, .printCancelMenuItem
- push bc
- push de
- push hl
- push hl
- push de
- ld a, [wListMenuID]
- and a
- jr z, .pokemonPCMenu
- cp MOVESLISTMENU
- jr z, .movesMenu
-.itemMenu
- call GetItemName
- jr .placeNameString
-.pokemonPCMenu
- push hl
- ld hl, wPartyCount
- ld a, [wListPointer]
- cp l ; is it a list of party pokemon or box pokemon?
- ld hl, wPartyMonNicks
- jr z, .getPokemonName
- ld hl, wBoxMonNicks ; box pokemon names
-.getPokemonName
- ld a, [wWhichPokemon]
- ld b, a
- ld a, 4
- sub b
- ld b, a
- ld a, [wListScrollOffset]
- add b
- call GetPartyMonName
- pop hl
- jr .placeNameString
-.movesMenu
- call GetMoveName
-.placeNameString
- call PlaceString
- pop de
- pop hl
- ld a, [wPrintItemPrices]
- and a ; should prices be printed?
- jr z, .skipPrintingItemPrice
-.printItemPrice
- push hl
- ld a, [de]
- ld de, ItemPrices
- ld [wcf91], a
- call GetItemPrice ; get price
- pop hl
- ld bc, SCREEN_WIDTH + 5 ; 1 row down and 5 columns right
- add hl, bc
- ld c, $a3 ; no leading zeroes, right-aligned, print currency symbol, 3 bytes
- call PrintBCDNumber
-.skipPrintingItemPrice
- ld a, [wListMenuID]
- and a
- jr nz, .skipPrintingPokemonLevel
-.printPokemonLevel
- ld a, [wd11e]
- push af
- push hl
- ld hl, wPartyCount
- ld a, [wListPointer]
- cp l ; is it a list of party pokemon or box pokemon?
- ld a, PLAYER_PARTY_DATA
- jr z, .next
- ld a, BOX_DATA
-.next
- ld [wMonDataLocation], a
- ld hl, wWhichPokemon
- ld a, [hl]
- ld b, a
- ld a, $04
- sub b
- ld b, a
- ld a, [wListScrollOffset]
- add b
- ld [hl], a
- call LoadMonData
- ld a, [wMonDataLocation]
- and a ; is it a list of party pokemon or box pokemon?
- jr z, .skipCopyingLevel
-.copyLevel
- ld a, [wLoadedMonBoxLevel]
- ld [wLoadedMonLevel], a
-.skipCopyingLevel
- pop hl
- ld bc, $001c
- add hl, bc
- call PrintLevel
- pop af
- ld [wd11e], a
-.skipPrintingPokemonLevel
- pop hl
- pop de
- inc de
- ld a, [wListMenuID]
- cp ITEMLISTMENU
- jr nz, .nextListEntry
-.printItemQuantity
- ld a, [wd11e]
- ld [wcf91], a
- call IsKeyItem ; check if item is unsellable
- ld a, [wIsKeyItem]
- and a ; is the item unsellable?
- jr nz, .skipPrintingItemQuantity ; if so, don't print the quantity
- push hl
- ld bc, SCREEN_WIDTH + 8 ; 1 row down and 8 columns right
- add hl, bc
- ld a, "×"
- ld [hli], a
- ld a, [wd11e]
- push af
- ld a, [de]
- ld [wMaxItemQuantity], a
- push de
- ld de, wd11e
- ld [de], a
- lb bc, 1, 2
- call PrintNumber
- pop de
- pop af
- ld [wd11e], a
- pop hl
-.skipPrintingItemQuantity
- inc de
- pop bc
- inc c
- push bc
- inc c
- ld a, [wMenuItemToSwap] ; ID of item chosen for swapping (counts from 1)
- and a ; is an item being swapped?
- jr z, .nextListEntry
- sla a
- cp c ; is it this item?
- jr nz, .nextListEntry
- dec hl
- ld a, $ec ; unfilled right arrow menu cursor to indicate an item being swapped
- ld [hli], a
-.nextListEntry
- ld bc, 2 * SCREEN_WIDTH ; 2 rows
- add hl, bc
- pop bc
- inc c
- dec b
- jp nz, .loop
- ld bc, -8
- add hl, bc
- ld a, "▼"
- ld [hl], a
- ret
-.printCancelMenuItem
- ld de, ListMenuCancelText
- jp PlaceString
-
-ListMenuCancelText::
- db "CANCEL@"
-
-GetMonName::
- push hl
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, BANK(MonsterNames)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ld a, [wd11e]
- dec a
- ld hl, MonsterNames
- ld c, 10
- ld b, 0
- call AddNTimes
- ld de, wcd6d
- push de
- ld bc, 10
- call CopyData
- ld hl, wcd6d + 10
- ld [hl], "@"
- pop de
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- pop hl
- ret
-
-GetItemName::
-; given an item ID at [wd11e], store the name of the item into a string
-; starting at wcd6d
- push hl
- push bc
- ld a, [wd11e]
- cp HM_01 ; is this a TM/HM?
- jr nc, .Machine
-
- ld [wd0b5], a
- ld a, ITEM_NAME
- ld [wNameListType], a
- ld a, BANK(ItemNames)
- ld [wPredefBank], a
- call GetName
- jr .Finish
-
-.Machine
- call GetMachineName
-.Finish
- ld de, wcd6d ; pointer to where item name is stored in RAM
- pop bc
- pop hl
- ret
-
-GetMachineName::
-; copies the name of the TM/HM in [wd11e] to wcd6d
- push hl
- push de
- push bc
- ld a, [wd11e]
- push af
- cp TM_01 ; is this a TM? [not HM]
- jr nc, .WriteTM
-; if HM, then write "HM" and add 5 to the item ID, so we can reuse the
-; TM printing code
- add 5
- ld [wd11e], a
- ld hl, HiddenPrefix ; points to "HM"
- ld bc, 2
- jr .WriteMachinePrefix
-.WriteTM
- ld hl, TechnicalPrefix ; points to "TM"
- ld bc, 2
-.WriteMachinePrefix
- ld de, wcd6d
- call CopyData
-
-; now get the machine number and convert it to text
- ld a, [wd11e]
- sub TM_01 - 1
- ld b, "0"
-.FirstDigit
- sub 10
- jr c, .SecondDigit
- inc b
- jr .FirstDigit
-.SecondDigit
- add 10
- push af
- ld a, b
- ld [de], a
- inc de
- pop af
- ld b, "0"
- add b
- ld [de], a
- inc de
- ld a, "@"
- ld [de], a
- pop af
- ld [wd11e], a
- pop bc
- pop de
- pop hl
- ret
-
-TechnicalPrefix::
- db "TM"
-HiddenPrefix::
- db "HM"
-
-; sets carry if item is HM, clears carry if item is not HM
-; Input: a = item ID
-IsItemHM::
- cp HM_01
- jr c, .notHM
- cp TM_01
- ret
-.notHM
- and a
- ret
-
-; sets carry if move is an HM, clears carry if move is not an HM
-; Input: a = move ID
-IsMoveHM::
- ld hl, HMMoves
- ld de, 1
- jp IsInArray
-
-HMMoves::
- db CUT,FLY,SURF,STRENGTH,FLASH
- db $ff ; terminator
-
-GetMoveName::
- push hl
- ld a, MOVE_NAME
- ld [wNameListType], a
- ld a, [wd11e]
- ld [wd0b5], a
- ld a, BANK(MoveNames)
- ld [wPredefBank], a
- call GetName
- ld de, wcd6d ; pointer to where move name is stored in RAM
- pop hl
- ret
-
; reloads text box tile patterns, current map view, and tileset tile patterns
ReloadMapData::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wCurMap]
call SwitchToMapRomBank
@@ -2047,13 +274,13 @@
call LoadTilesetTilePatternData
call EnableLCD
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
; reloads tileset tile patterns
ReloadTilesetTilePatterns::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wCurMap]
call SwitchToMapRomBank
@@ -2061,7 +288,7 @@
call LoadTilesetTilePatternData
call EnableLCD
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -2098,15 +325,15 @@
; OUTPUT:
; clears carry flag if the item is tossed, sets carry flag if not
TossItem::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, BANK(TossItem_)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call TossItem_
pop de
ld a, d
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -2132,15 +359,15 @@
; [wTextBoxID] = text box ID
; b, c = y, x cursor position (TWO_OPTION_MENU only)
DisplayTextBoxID::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, BANK(DisplayTextBoxID_)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call DisplayTextBoxID_
pop bc
ld a, b
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -2174,15 +401,15 @@
ld a, [hli]
ld h, [hl]
ld l, a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wNPCMovementScriptBank]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld a, [wNPCMovementScriptFunctionNum]
call CallFunctionInTable
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -2199,443 +426,8 @@
EmptyFunc2::
ret
-; stores hl in [wTrainerHeaderPtr]
-StoreTrainerHeaderPointer::
- ld a, h
- ld [wTrainerHeaderPtr], a
- ld a, l
- ld [wTrainerHeaderPtr+1], a
- ret
+INCLUDE "home/trainers.asm"
-; executes the current map script from the function pointer array provided in hl.
-; a: map script index to execute (unless overridden by [wd733] bit 4)
-ExecuteCurMapScriptInTable::
- push af
- push de
- call StoreTrainerHeaderPointer
- pop hl
- pop af
- push hl
- ld hl, wFlags_D733
- bit 4, [hl]
- res 4, [hl]
- jr z, .useProvidedIndex ; test if map script index was overridden manually
- ld a, [wCurMapScript]
-.useProvidedIndex
- pop hl
- ld [wCurMapScript], a
- call CallFunctionInTable
- ld a, [wCurMapScript]
- ret
-
-LoadGymLeaderAndCityName::
- push de
- ld de, wGymCityName
- ld bc, $11
- call CopyData ; load city name
- pop hl
- ld de, wGymLeaderName
- ld bc, NAME_LENGTH
- jp CopyData ; load gym leader name
-
-; reads specific information from trainer header (pointed to at wTrainerHeaderPtr)
-; a: offset in header data
-; 0 -> flag's bit (into wTrainerHeaderFlagBit)
-; 2 -> flag's byte ptr (into hl)
-; 4 -> before battle text (into hl)
-; 6 -> after battle text (into hl)
-; 8 -> end battle text (into hl)
-ReadTrainerHeaderInfo::
- push de
- push af
- ld d, $0
- ld e, a
- ld hl, wTrainerHeaderPtr
- ld a, [hli]
- ld l, [hl]
- ld h, a
- add hl, de
- pop af
- and a
- jr nz, .nonZeroOffset
- ld a, [hl]
- ld [wTrainerHeaderFlagBit], a ; store flag's bit
- jr .done
-.nonZeroOffset
- cp $2
- jr z, .readPointer ; read flag's byte ptr
- cp $4
- jr z, .readPointer ; read before battle text
- cp $6
- jr z, .readPointer ; read after battle text
- cp $8
- jr z, .readPointer ; read end battle text
- cp $a
- jr nz, .done
- ld a, [hli] ; read end battle text (2) but override the result afterwards (XXX why, bug?)
- ld d, [hl]
- ld e, a
- jr .done
-.readPointer
- ld a, [hli]
- ld h, [hl]
- ld l, a
-.done
- pop de
- ret
-
-TrainerFlagAction::
- predef_jump FlagActionPredef
-
-TalkToTrainer::
- call StoreTrainerHeaderPointer
- xor a
- call ReadTrainerHeaderInfo ; read flag's bit
- ld a, $2
- call ReadTrainerHeaderInfo ; read flag's byte ptr
- ld a, [wTrainerHeaderFlagBit]
- ld c, a
- ld b, FLAG_TEST
- call TrainerFlagAction ; read trainer's flag
- ld a, c
- and a
- jr z, .trainerNotYetFought ; test trainer's flag
- ld a, $6
- call ReadTrainerHeaderInfo ; print after battle text
- jp PrintText
-.trainerNotYetFought
- ld a, $4
- call ReadTrainerHeaderInfo ; print before battle text
- call PrintText
- ld a, $a
- call ReadTrainerHeaderInfo ; (?) does nothing apparently (maybe bug in ReadTrainerHeaderInfo)
- push de
- ld a, $8
- call ReadTrainerHeaderInfo ; read end battle text
- pop de
- call SaveEndBattleTextPointers
- ld hl, wFlags_D733
- set 4, [hl] ; activate map script index override (index is set below)
- ld hl, wFlags_0xcd60
- bit 0, [hl] ; test if player is already engaging the trainer (because the trainer saw the player)
- ret nz
-; if the player talked to the trainer of his own volition
- call EngageMapTrainer
- ld hl, wCurMapScript
- inc [hl] ; increment map script index before StartTrainerBattle increments it again (next script function is usually EndTrainerBattle)
- jp StartTrainerBattle
-
-; checks if any trainers are seeing the player and wanting to fight
-CheckFightingMapTrainers::
- call CheckForEngagingTrainers
- ld a, [wSpriteIndex]
- cp $ff
- jr nz, .trainerEngaging
- xor a
- ld [wSpriteIndex], a
- ld [wTrainerHeaderFlagBit], a
- ret
-.trainerEngaging
- ld hl, wFlags_D733
- set 3, [hl]
- ld [wEmotionBubbleSpriteIndex], a
- xor a ; EXCLAMATION_BUBBLE
- ld [wWhichEmotionBubble], a
- predef EmotionBubble
- ld a, D_RIGHT | D_LEFT | D_UP | D_DOWN
- ld [wJoyIgnore], a
- xor a
- ld [hJoyHeld], a
- call TrainerWalkUpToPlayer_Bank0
- ld hl, wCurMapScript
- inc [hl] ; increment map script index (next script function is usually DisplayEnemyTrainerTextAndStartBattle)
- ret
-
-; display the before battle text after the enemy trainer has walked up to the player's sprite
-DisplayEnemyTrainerTextAndStartBattle::
- ld a, [wd730]
- and $1
- ret nz ; return if the enemy trainer hasn't finished walking to the player's sprite
- ld [wJoyIgnore], a
- ld a, [wSpriteIndex]
- ld [hSpriteIndexOrTextID], a
- call DisplayTextID
- ; fall through
-
-StartTrainerBattle::
- xor a
- ld [wJoyIgnore], a
- call InitBattleEnemyParameters
- ld hl, wd72d
- set 6, [hl]
- set 7, [hl]
- ld hl, wd72e
- set 1, [hl]
- ld hl, wCurMapScript
- inc [hl] ; increment map script index (next script function is usually EndTrainerBattle)
- ret
-
-EndTrainerBattle::
- ld hl, wCurrentMapScriptFlags
- set 5, [hl]
- set 6, [hl]
- ld hl, wd72d
- res 7, [hl]
- ld hl, wFlags_0xcd60
- res 0, [hl] ; player is no longer engaged by any trainer
- ld a, [wIsInBattle]
- cp $ff
- jp z, ResetButtonPressedAndMapScript
- ld a, $2
- call ReadTrainerHeaderInfo
- ld a, [wTrainerHeaderFlagBit]
- ld c, a
- ld b, FLAG_SET
- call TrainerFlagAction ; flag trainer as fought
- ld a, [wEnemyMonOrTrainerClass]
- cp OPP_ID_OFFSET
- jr nc, .skipRemoveSprite ; test if trainer was fought (in that case skip removing the corresponding sprite)
- ld hl, wMissableObjectList
- ld de, $2
- ld a, [wSpriteIndex]
- call IsInArray ; search for sprite ID
- inc hl
- ld a, [hl]
- ld [wMissableObjectIndex], a ; load corresponding missable object index and remove it
- predef HideObject
-.skipRemoveSprite
- ld hl, wd730
- bit 4, [hl]
- res 4, [hl]
- ret nz
-
-ResetButtonPressedAndMapScript::
- xor a
- ld [wJoyIgnore], a
- ld [hJoyHeld], a
- ld [hJoyPressed], a
- ld [hJoyReleased], a
- ld [wCurMapScript], a ; reset battle status
- ret
-
-; calls TrainerWalkUpToPlayer
-TrainerWalkUpToPlayer_Bank0::
- jpba TrainerWalkUpToPlayer
-
-; sets opponent type and mon set/lvl based on the engaging trainer data
-InitBattleEnemyParameters::
- ld a, [wEngagedTrainerClass]
- ld [wCurOpponent], a
- ld [wEnemyMonOrTrainerClass], a
- cp OPP_ID_OFFSET
- ld a, [wEngagedTrainerSet]
- jr c, .noTrainer
- ld [wTrainerNo], a
- ret
-.noTrainer
- ld [wCurEnemyLVL], a
- ret
-
-GetSpritePosition1::
- ld hl, _GetSpritePosition1
- jr SpritePositionBankswitch
-
-GetSpritePosition2::
- ld hl, _GetSpritePosition2
- jr SpritePositionBankswitch
-
-SetSpritePosition1::
- ld hl, _SetSpritePosition1
- jr SpritePositionBankswitch
-
-SetSpritePosition2::
- ld hl, _SetSpritePosition2
-SpritePositionBankswitch::
- ld b, BANK(_GetSpritePosition1) ; BANK(_GetSpritePosition2), BANK(_SetSpritePosition1), BANK(_SetSpritePosition2)
- jp Bankswitch ; indirect jump to one of the four functions
-
-CheckForEngagingTrainers::
- xor a
- call ReadTrainerHeaderInfo ; read trainer flag's bit (unused)
- ld d, h ; store trainer header address in de
- ld e, l
-.trainerLoop
- call StoreTrainerHeaderPointer ; set trainer header pointer to current trainer
- ld a, [de]
- ld [wSpriteIndex], a ; store trainer flag's bit
- ld [wTrainerHeaderFlagBit], a
- cp $ff
- ret z
- ld a, $2
- call ReadTrainerHeaderInfo ; read trainer flag's byte ptr
- ld b, FLAG_TEST
- ld a, [wTrainerHeaderFlagBit]
- ld c, a
- call TrainerFlagAction ; read trainer flag
- ld a, c
- and a ; has the trainer already been defeated?
- jr nz, .continue
- push hl
- push de
- push hl
- xor a
- call ReadTrainerHeaderInfo ; get trainer header pointer
- inc hl
- ld a, [hl] ; read trainer engage distance
- pop hl
- ld [wTrainerEngageDistance], a
- ld a, [wSpriteIndex]
- swap a
- ld [wTrainerSpriteOffset], a
- predef TrainerEngage
- pop de
- pop hl
- ld a, [wTrainerSpriteOffset]
- and a
- ret nz ; break if the trainer is engaging
-.continue
- ld hl, $c
- add hl, de
- ld d, h
- ld e, l
- jr .trainerLoop
-
-; hl = text if the player wins
-; de = text if the player loses
-SaveEndBattleTextPointers::
- ld a, [H_LOADEDROMBANK]
- ld [wEndBattleTextRomBank], a
- ld a, h
- ld [wEndBattleWinTextPointer], a
- ld a, l
- ld [wEndBattleWinTextPointer + 1], a
- ld a, d
- ld [wEndBattleLoseTextPointer], a
- ld a, e
- ld [wEndBattleLoseTextPointer + 1], a
- ret
-
-; loads data of some trainer on the current map and plays pre-battle music
-; [wSpriteIndex]: sprite ID of trainer who is engaged
-EngageMapTrainer::
- ld hl, wMapSpriteExtraData
- ld d, $0
- ld a, [wSpriteIndex]
- dec a
- add a
- ld e, a
- add hl, de ; seek to engaged trainer data
- ld a, [hli] ; load trainer class
- ld [wEngagedTrainerClass], a
- ld a, [hl] ; load trainer mon set
- ld [wEngagedTrainerSet], a
- jp PlayTrainerMusic
-
-PrintEndBattleText::
- push hl
- ld hl, wd72d
- bit 7, [hl]
- res 7, [hl]
- pop hl
- ret z
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, [wEndBattleTextRomBank]
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- push hl
- callba SaveTrainerName
- ld hl, TrainerEndBattleText
- call PrintText
- pop hl
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- callba FreezeEnemyTrainerSprite
- jp WaitForSoundToFinish
-
-GetSavedEndBattleTextPointer::
- ld a, [wBattleResult]
- and a
-; won battle
- jr nz, .lostBattle
- ld a, [wEndBattleWinTextPointer]
- ld h, a
- ld a, [wEndBattleWinTextPointer + 1]
- ld l, a
- ret
-.lostBattle
- ld a, [wEndBattleLoseTextPointer]
- ld h, a
- ld a, [wEndBattleLoseTextPointer + 1]
- ld l, a
- ret
-
-TrainerEndBattleText::
- TX_FAR _TrainerNameText
- TX_ASM
- call GetSavedEndBattleTextPointer
- call TextCommandProcessor
- jp TextScriptEnd
-
-; only engage withe trainer if the player is not already
-; engaged with another trainer
-; XXX unused?
-CheckIfAlreadyEngaged::
- ld a, [wFlags_0xcd60]
- bit 0, a
- ret nz
- call EngageMapTrainer
- xor a
- ret
-
-PlayTrainerMusic::
- ld a, [wEngagedTrainerClass]
- cp OPP_SONY1
- ret z
- cp OPP_SONY2
- ret z
- cp OPP_SONY3
- ret z
- ld a, [wGymLeaderNo]
- and a
- ret nz
- xor a
- ld [wAudioFadeOutControl], a
- ld a, $ff
- call PlaySound
- ld a, BANK(Music_MeetEvilTrainer)
- ld [wAudioROMBank], a
- ld [wAudioSavedROMBank], a
- ld a, [wEngagedTrainerClass]
- ld b, a
- ld hl, EvilTrainerList
-.evilTrainerListLoop
- ld a, [hli]
- cp $ff
- jr z, .noEvilTrainer
- cp b
- jr nz, .evilTrainerListLoop
- ld a, MUSIC_MEET_EVIL_TRAINER
- jr .PlaySound
-.noEvilTrainer
- ld hl, FemaleTrainerList
-.femaleTrainerListLoop
- ld a, [hli]
- cp $ff
- jr z, .maleTrainer
- cp b
- jr nz, .femaleTrainerListLoop
- ld a, MUSIC_MEET_FEMALE_TRAINER
- jr .PlaySound
-.maleTrainer
- ld a, MUSIC_MEET_MALE_TRAINER
-.PlaySound
- ld [wNewSoundID], a
- jp PlaySound
-
-INCLUDE "data/trainer_types.asm"
-
; checks if the player's coordinates match an arrow movement tile's coordinates
; and if so, decodes the RLE movement data
; b = player Y
@@ -2719,7 +511,7 @@
SetSpriteFacingDirection::
ld a, $9
- ld [H_SPRITEDATAOFFSET], a
+ ld [hSpriteDataOffset], a
call GetPointerWithinSpriteStateData1
ld a, [hSpriteFacingDirection]
ld [hl], a
@@ -2774,7 +566,7 @@
; tests if a boulder's coordinates are in a specified array
; INPUT:
; hl = address of array
-; [H_SPRITEINDEX] = index of boulder sprite
+; [hSpriteIndex] = index of boulder sprite
; OUTPUT:
; [wCoordIndex] = if there is match, the matching array index
; sets carry if the coordinates are in the array, clears carry if not
@@ -2781,7 +573,7 @@
CheckBoulderCoords::
push hl
ld hl, wSpriteStateData2 + $04
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
swap a
ld d, $0
ld e, a
@@ -2803,9 +595,9 @@
ld h, $c2
_GetPointerWithinSpriteStateData:
- ld a, [H_SPRITEDATAOFFSET]
+ ld a, [hSpriteDataOffset]
ld b, a
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
swap a
add b
ld l, a
@@ -2842,7 +634,7 @@
inc a ; include sentinel in counting
ret
-; sets movement byte 1 for sprite [H_SPRITEINDEX] to $FE and byte 2 to [hSpriteMovementByte2]
+; sets movement byte 1 for sprite [hSpriteIndex] to $FE and byte 2 to [hSpriteMovementByte2]
SetSpriteMovementBytesToFE::
push hl
call GetSpriteMovementByte1Pointer
@@ -2853,7 +645,7 @@
pop hl
ret
-; sets both movement bytes for sprite [H_SPRITEINDEX] to $FF
+; sets both movement bytes for sprite [hSpriteIndex] to $FF
SetSpriteMovementBytesToFF::
push hl
call GetSpriteMovementByte1Pointer
@@ -2863,20 +655,20 @@
pop hl
ret
-; returns the sprite movement byte 1 pointer for sprite [H_SPRITEINDEX] in hl
+; returns the sprite movement byte 1 pointer for sprite [hSpriteIndex] in hl
GetSpriteMovementByte1Pointer::
ld h, $C2
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
swap a
add 6
ld l, a
ret
-; returns the sprite movement byte 2 pointer for sprite [H_SPRITEINDEX] in hl
+; returns the sprite movement byte 2 pointer for sprite [hSpriteIndex] in hl
GetSpriteMovementByte2Pointer::
push de
ld hl, wMapSpriteData
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
dec a
add a
ld d, 0
@@ -2890,7 +682,7 @@
ld a, [wLinkState]
and a
jr nz, .linkBattle
- ld a, Bank(TrainerPicAndMoneyPointers)
+ ld a, BANK(TrainerPicAndMoneyPointers)
call BankswitchHome
ld a, [wTrainerClass]
dec a
@@ -2937,84 +729,9 @@
ld c, 2
jp StringCmp
+INCLUDE "home/bankswitch.asm"
+INCLUDE "home/yes_no.asm"
-BankswitchHome::
-; switches to bank # in a
-; Only use this when in the home bank!
- ld [wBankswitchHomeTemp], a
- ld a, [H_LOADEDROMBANK]
- ld [wBankswitchHomeSavedROMBank], a
- ld a, [wBankswitchHomeTemp]
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-BankswitchBack::
-; returns from BankswitchHome
- ld a, [wBankswitchHomeSavedROMBank]
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-Bankswitch::
-; self-contained bankswitch, use this when not in the home bank
-; switches to the bank in b
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, b
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ld bc, .Return
- push bc
- jp hl
-.Return
- pop bc
- ld a, b
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-; displays yes/no choice
-; yes -> set carry
-YesNoChoice::
- call SaveScreenTilesToBuffer1
- call InitYesNoTextBoxParameters
- jr DisplayYesNoChoice
-
-Func_35f4::
- ld a, TWO_OPTION_MENU
- ld [wTextBoxID], a
- call InitYesNoTextBoxParameters
- jp DisplayTextBoxID
-
-InitYesNoTextBoxParameters::
- xor a ; YES_NO_MENU
- ld [wTwoOptionMenuID], a
- coord hl, 14, 7
- ld bc, $80f
- ret
-
-YesNoChoicePokeCenter::
- call SaveScreenTilesToBuffer1
- ld a, HEAL_CANCEL_MENU
- ld [wTwoOptionMenuID], a
- coord hl, 11, 6
- lb bc, 8, 12
- jr DisplayYesNoChoice
-
-WideYesNoChoice:: ; unused
- call SaveScreenTilesToBuffer1
- ld a, WIDE_YES_NO_MENU
- ld [wTwoOptionMenuID], a
- coord hl, 12, 7
- lb bc, 8, 13
-
-DisplayYesNoChoice::
- ld a, TWO_OPTION_MENU
- ld [wTextBoxID], a
- call DisplayTextBoxID
- jp LoadScreenTilesFromBuffer1
-
; calculates the difference |a-b|, setting carry flag if a<b
CalcDifference::
sub b
@@ -3025,7 +742,7 @@
ret
MoveSprite::
-; move the sprite [H_SPRITEINDEX] with the movement pointed to by de
+; move the sprite [hSpriteIndex] with the movement pointed to by de
; actually only copies the movement data to wNPCMovementDirections for later
call SetSpriteMovementBytesToFF
MoveSprite_::
@@ -3081,7 +798,6 @@
pop hl
ret
-
LoadFontTilePatterns::
ld a, [rLCDC]
bit 7, a ; is the LCD enabled?
@@ -3130,7 +846,6 @@
lb bc, BANK(HpBarAndStatusGraphics), (HpBarAndStatusGraphicsEnd - HpBarAndStatusGraphics) / $10
jp CopyVideoData ; if LCD is on, transfer during V-blank
-
FillMemory::
; Fill bc bytes at hl with a.
push de
@@ -3145,7 +860,6 @@
pop de
ret
-
UncompressSpriteFromDE::
; Decompress pic at a:de.
ld hl, wSpriteInputPtr
@@ -3164,13 +878,13 @@
LoadScreenTilesFromBuffer2::
call LoadScreenTilesFromBuffer2DisableBGTransfer
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
-; loads screen tiles stored in wTileMapBackup2 but leaves H_AUTOBGTRANSFERENABLED disabled
+; loads screen tiles stored in wTileMapBackup2 but leaves hAutoBGTransferEnabled disabled
LoadScreenTilesFromBuffer2DisableBGTransfer::
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, wTileMapBackup2
coord de, 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
@@ -3185,13 +899,13 @@
LoadScreenTilesFromBuffer1::
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld hl, wTileMapBackup
coord de, 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
call CopyData
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
DelayFrames::
@@ -3226,104 +940,12 @@
pop hl
ret
-NamePointers::
- dw MonsterNames
- dw MoveNames
- dw UnusedNames
- dw ItemNames
- dw wPartyMonOT ; player's OT names list
- dw wEnemyMonOT ; enemy's OT names list
- dw TrainerNames
+INCLUDE "home/names2.asm"
-GetName::
-; arguments:
-; [wd0b5] = which name
-; [wNameListType] = which list
-; [wPredefBank] = bank of list
-;
-; returns pointer to name in de
- ld a, [wd0b5]
- ld [wd11e], a
-
- ; TM names are separate from item names.
- ; BUG: This applies to all names instead of just items.
- cp HM_01
- jp nc, GetMachineName
-
- ld a, [H_LOADEDROMBANK]
- push af
- push hl
- push bc
- push de
- ld a, [wNameListType] ;List3759_entrySelector
- dec a
- jr nz, .otherEntries
- ;1 = MON_NAMES
- call GetMonName
- ld hl, NAME_LENGTH
- add hl, de
- ld e, l
- ld d, h
- jr .gotPtr
-.otherEntries
- ;2-7 = OTHER ENTRIES
- ld a, [wPredefBank]
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ld a, [wNameListType] ;VariousNames' entryID
- dec a
- add a
- ld d, 0
- ld e, a
- jr nc, .skip
- inc d
-.skip
- ld hl, NamePointers
- add hl, de
- ld a, [hli]
- ld [$ff96], a
- ld a, [hl]
- ld [$ff95], a
- ld a, [$ff95]
- ld h, a
- ld a, [$ff96]
- ld l, a
- ld a, [wd0b5]
- ld b, a
- ld c, 0
-.nextName
- ld d, h
- ld e, l
-.nextChar
- ld a, [hli]
- cp "@"
- jr nz, .nextChar
- inc c ;entry counter
- ld a, b ;wanted entry
- cp c
- jr nz, .nextName
- ld h, d
- ld l, e
- ld de, wcd6d
- ld bc, $0014
- call CopyData
-.gotPtr
- ld a, e
- ld [wUnusedCF8D], a
- ld a, d
- ld [wUnusedCF8D + 1], a
- pop de
- pop bc
- pop hl
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
GetItemPrice::
; Stores item's price as BCD at hItemPrice (3 bytes)
; Input: [wcf91] = item id
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wListMenuID]
cp MOVESLISTMENU
@@ -3331,7 +953,7 @@
jr nz, .ok
ld a, $f ; hardcoded Bank
.ok
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld hl, wItemPrices
ld a, [hli]
@@ -3354,14 +976,14 @@
ld [hItemPrice], a
jr .done
.getTMPrice
- ld a, Bank(GetMachinePrice)
- ld [H_LOADEDROMBANK], a
+ ld a, BANK(GetMachinePrice)
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call GetMachinePrice
.done
ld de, hItemPrice
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -3408,10 +1030,10 @@
jr z, .noNewlyPressedButtons
.newlyPressedButtons
ld a, 30 ; half a second delay
- ld [H_FRAMECOUNTER], a
+ ld [hFrameCounter], a
ret
.noNewlyPressedButtons
- ld a, [H_FRAMECOUNTER]
+ ld a, [hFrameCounter]
and a ; is the delay over?
jr z, .delayOver
.delayNotOver
@@ -3430,18 +1052,18 @@
ld [hJoy5], a
.setShortDelay
ld a, 5 ; 1/12 of a second delay
- ld [H_FRAMECOUNTER], a
+ ld [hFrameCounter], a
ret
WaitForTextScrollButtonPress::
- ld a, [H_DOWNARROWBLINKCNT1]
+ ld a, [hDownArrowBlinkCount1]
push af
- ld a, [H_DOWNARROWBLINKCNT2]
+ ld a, [hDownArrowBlinkCount2]
push af
xor a
- ld [H_DOWNARROWBLINKCNT1], a
+ ld [hDownArrowBlinkCount1], a
ld a, $6
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
.loop
push hl
ld a, [wTownMapSpriteBlinkingEnabled]
@@ -3458,9 +1080,9 @@
and A_BUTTON | B_BUTTON
jr z, .loop
pop af
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
pop af
- ld [H_DOWNARROWBLINKCNT1], a
+ ld [hDownArrowBlinkCount1], a
ret
; (unless in link battle) waits for A or B being pressed and outputs the scrolling sound effect
@@ -3503,14 +1125,14 @@
push hl
push de
push bc
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
- ld a, Bank(_Divide)
- ld [H_LOADEDROMBANK], a
+ ld a, BANK(_Divide)
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call _Divide
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
pop bc
pop de
@@ -3535,11 +1157,11 @@
jr z, .waitOneFrame
ld a, [wOptions]
and $f
- ld [H_FRAMECOUNTER], a
+ ld [hFrameCounter], a
jr .checkButtons
.waitOneFrame
ld a, 1
- ld [H_FRAMECOUNTER], a
+ ld [hFrameCounter], a
.checkButtons
call Joypad
ld a, [hJoyHeld]
@@ -3554,7 +1176,7 @@
call DelayFrame
jr .done
.buttonsNotPressed ; if neither A nor B is pressed
- ld a, [H_FRAMECOUNTER]
+ ld a, [hFrameCounter]
and a
jr nz, .checkButtons
.done
@@ -3578,249 +1200,8 @@
jr nz, CopyDataUntil
ret
-; Function to remove a pokemon from the party or the current box.
-; wWhichPokemon determines the pokemon.
-; [wRemoveMonFromBox] == 0 specifies the party.
-; [wRemoveMonFromBox] != 0 specifies the current box.
-RemovePokemon::
- jpab _RemovePokemon
+INCLUDE "home/move_mon.asm"
-AddPartyMon::
- push hl
- push de
- push bc
- callba _AddPartyMon
- pop bc
- pop de
- pop hl
- ret
-
-; calculates all 5 stats of current mon and writes them to [de]
-CalcStats::
- ld c, $0
-.statsLoop
- inc c
- call CalcStat
- ld a, [H_MULTIPLICAND+1]
- ld [de], a
- inc de
- ld a, [H_MULTIPLICAND+2]
- ld [de], a
- inc de
- ld a, c
- cp NUM_STATS
- jr nz, .statsLoop
- ret
-
-; calculates stat c of current mon
-; c: stat to calc (HP=1,Atk=2,Def=3,Spd=4,Spc=5)
-; b: consider stat exp?
-; hl: base ptr to stat exp values ([hl + 2*c - 1] and [hl + 2*c])
-CalcStat::
- push hl
- push de
- push bc
- ld a, b
- ld d, a
- push hl
- ld hl, wMonHeader
- ld b, $0
- add hl, bc
- ld a, [hl] ; read base value of stat
- ld e, a
- pop hl
- push hl
- sla c
- ld a, d
- and a
- jr z, .statExpDone ; consider stat exp?
- add hl, bc ; skip to corresponding stat exp value
-.statExpLoop ; calculates ceil(Sqrt(stat exp)) in b
- xor a
- ld [H_MULTIPLICAND], a
- ld [H_MULTIPLICAND+1], a
- inc b ; increment current stat exp bonus
- ld a, b
- cp $ff
- jr z, .statExpDone
- ld [H_MULTIPLICAND+2], a
- ld [H_MULTIPLIER], a
- call Multiply
- ld a, [hld]
- ld d, a
- ld a, [$ff98]
- sub d
- ld a, [hli]
- ld d, a
- ld a, [$ff97]
- sbc d ; test if (current stat exp bonus)^2 < stat exp
- jr c, .statExpLoop
-.statExpDone
- srl c
- pop hl
- push bc
- ld bc, wPartyMon1DVs - (wPartyMon1HPExp - 1) ; also wEnemyMonDVs - wEnemyMonHP
- add hl, bc
- pop bc
- ld a, c
- cp $2
- jr z, .getAttackIV
- cp $3
- jr z, .getDefenseIV
- cp $4
- jr z, .getSpeedIV
- cp $5
- jr z, .getSpecialIV
-.getHpIV
- push bc
- ld a, [hl] ; Atk IV
- swap a
- and $1
- sla a
- sla a
- sla a
- ld b, a
- ld a, [hli] ; Def IV
- and $1
- sla a
- sla a
- add b
- ld b, a
- ld a, [hl] ; Spd IV
- swap a
- and $1
- sla a
- add b
- ld b, a
- ld a, [hl] ; Spc IV
- and $1
- add b ; HP IV: LSB of the other 4 IVs
- pop bc
- jr .calcStatFromIV
-.getAttackIV
- ld a, [hl]
- swap a
- and $f
- jr .calcStatFromIV
-.getDefenseIV
- ld a, [hl]
- and $f
- jr .calcStatFromIV
-.getSpeedIV
- inc hl
- ld a, [hl]
- swap a
- and $f
- jr .calcStatFromIV
-.getSpecialIV
- inc hl
- ld a, [hl]
- and $f
-.calcStatFromIV
- ld d, $0
- add e
- ld e, a
- jr nc, .noCarry
- inc d ; de = Base + IV
-.noCarry
- sla e
- rl d ; de = (Base + IV) * 2
- srl b
- srl b ; b = ceil(Sqrt(stat exp)) / 4
- ld a, b
- add e
- jr nc, .noCarry2
- inc d ; de = (Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4
-.noCarry2
- ld [H_MULTIPLICAND+2], a
- ld a, d
- ld [H_MULTIPLICAND+1], a
- xor a
- ld [H_MULTIPLICAND], a
- ld a, [wCurEnemyLVL]
- ld [H_MULTIPLIER], a
- call Multiply ; ((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level
- ld a, [H_MULTIPLICAND]
- ld [H_DIVIDEND], a
- ld a, [H_MULTIPLICAND+1]
- ld [H_DIVIDEND+1], a
- ld a, [H_MULTIPLICAND+2]
- ld [H_DIVIDEND+2], a
- ld a, $64
- ld [H_DIVISOR], a
- ld a, $3
- ld b, a
- call Divide ; (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100
- ld a, c
- cp $1
- ld a, 5 ; + 5 for non-HP stat
- jr nz, .notHPStat
- ld a, [wCurEnemyLVL]
- ld b, a
- ld a, [H_MULTIPLICAND+2]
- add b
- ld [H_MULTIPLICAND+2], a
- jr nc, .noCarry3
- ld a, [H_MULTIPLICAND+1]
- inc a
- ld [H_MULTIPLICAND+1], a ; HP: (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100 + Level
-.noCarry3
- ld a, 10 ; +10 for HP stat
-.notHPStat
- ld b, a
- ld a, [H_MULTIPLICAND+2]
- add b
- ld [H_MULTIPLICAND+2], a
- jr nc, .noCarry4
- ld a, [H_MULTIPLICAND+1]
- inc a ; non-HP: (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100 + 5
- ld [H_MULTIPLICAND+1], a ; HP: (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100 + Level + 10
-.noCarry4
- ld a, [H_MULTIPLICAND+1] ; check for overflow (>999)
- cp 999 / $100 + 1
- jr nc, .overflow
- cp 999 / $100
- jr c, .noOverflow
- ld a, [H_MULTIPLICAND+2]
- cp 999 % $100 + 1
- jr c, .noOverflow
-.overflow
- ld a, 999 / $100 ; overflow: cap at 999
- ld [H_MULTIPLICAND+1], a
- ld a, 999 % $100
- ld [H_MULTIPLICAND+2], a
-.noOverflow
- pop bc
- pop de
- pop hl
- ret
-
-AddEnemyMonToPlayerParty::
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, BANK(_AddEnemyMonToPlayerParty)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call _AddEnemyMonToPlayerParty
- pop bc
- ld a, b
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-MoveMon::
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, BANK(_MoveMon)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call _MoveMon
- pop bc
- ld a, b
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
; skips a text entries, each of size NAME_LENGTH (like trainer name, OT name, rival name, ...)
; hl: base pointer, will be incremented by NAME_LENGTH * a
SkipFixedLengthTextEntries::
@@ -3897,14 +1278,14 @@
ld [wPartyMenuAnimMonEnabled], a
HandleMenuInput_::
- ld a, [H_DOWNARROWBLINKCNT1]
+ ld a, [hDownArrowBlinkCount1]
push af
- ld a, [H_DOWNARROWBLINKCNT2]
+ ld a, [hDownArrowBlinkCount2]
push af ; save existing values on stack
xor a
- ld [H_DOWNARROWBLINKCNT1], a ; blinking down arrow timing value 1
+ ld [hDownArrowBlinkCount1], a ; blinking down arrow timing value 1
ld a, 6
- ld [H_DOWNARROWBLINKCNT2], a ; blinking down arrow timing value 2
+ ld [hDownArrowBlinkCount2], a ; blinking down arrow timing value 2
.loop1
xor a
ld [wAnimCounter], a ; counter for pokemon shaking animation
@@ -3933,9 +1314,9 @@
.giveUpWaiting
; if a key wasn't pressed within the specified number of checks
pop af
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
pop af
- ld [H_DOWNARROWBLINKCNT1], a ; restore previous values
+ ld [hDownArrowBlinkCount1], a ; restore previous values
xor a
ld [wMenuWrappingEnabled], a ; disable menu wrapping
ret
@@ -3997,9 +1378,9 @@
call PlaySound
.skipPlayingSound
pop af
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
pop af
- ld [H_DOWNARROWBLINKCNT1], a ; restore previous values
+ ld [hDownArrowBlinkCount1], a ; restore previous values
xor a
ld [wMenuWrappingEnabled], a ; disable menu wrapping
ld a, [hJoy5]
@@ -4030,7 +1411,7 @@
and a ; was the previous menu id 0?
jr z, .checkForArrow1
push af
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
bit 1, a ; is the menu double spaced?
jr z, .doubleSpaced1
ld bc, 20
@@ -4056,7 +1437,7 @@
and a
jr z, .checkForArrow2
push af
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
bit 1, a ; is the menu double spaced?
jr z, .doubleSpaced2
ld bc, 20
@@ -4110,7 +1491,7 @@
; This toggles a blinking down arrow at hl on and off after a delay has passed.
; This is often called even when no blinking is occurring.
-; The reason is that most functions that call this initialize H_DOWNARROWBLINKCNT1 to 0.
+; The reason is that most functions that call this initialize hDownArrowBlinkCount1 to 0.
; The effect is that if the tile at hl is initialized with a down arrow,
; this function will toggle that down arrow on and off, but if the tile isn't
; initialized with a down arrow, this function does nothing.
@@ -4123,36 +1504,36 @@
cp b
jr nz, .downArrowOff
.downArrowOn
- ld a, [H_DOWNARROWBLINKCNT1]
+ ld a, [hDownArrowBlinkCount1]
dec a
- ld [H_DOWNARROWBLINKCNT1], a
+ ld [hDownArrowBlinkCount1], a
ret nz
- ld a, [H_DOWNARROWBLINKCNT2]
+ ld a, [hDownArrowBlinkCount2]
dec a
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
ret nz
ld a, " "
ld [hl], a
ld a, $ff
- ld [H_DOWNARROWBLINKCNT1], a
+ ld [hDownArrowBlinkCount1], a
ld a, $06
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
ret
.downArrowOff
- ld a, [H_DOWNARROWBLINKCNT1]
+ ld a, [hDownArrowBlinkCount1]
and a
ret z
dec a
- ld [H_DOWNARROWBLINKCNT1], a
+ ld [hDownArrowBlinkCount1], a
ret nz
dec a
- ld [H_DOWNARROWBLINKCNT1], a
- ld a, [H_DOWNARROWBLINKCNT2]
+ ld [hDownArrowBlinkCount1], a
+ ld a, [hDownArrowBlinkCount2]
dec a
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
ret nz
ld a, $06
- ld [H_DOWNARROWBLINKCNT2], a
+ ld [hDownArrowBlinkCount2], a
ld a, "▼"
ld [hl], a
ret
@@ -4187,226 +1568,8 @@
coord bc, 1, 14
jp TextCommandProcessor
+INCLUDE "home/print_num.asm"
-PrintNumber::
-; Print the c-digit, b-byte value at de.
-; Allows 2 to 7 digits. For 1-digit numbers, add
-; the value to char "0" instead of calling PrintNumber.
-; Flags LEADING_ZEROES and LEFT_ALIGN can be given
-; in bits 7 and 6 of b respectively.
- push bc
- xor a
- ld [H_PASTLEADINGZEROES], a
- ld [H_NUMTOPRINT], a
- ld [H_NUMTOPRINT + 1], a
- ld a, b
- and $f
- cp 1
- jr z, .byte
- cp 2
- jr z, .word
-.long
- ld a, [de]
- ld [H_NUMTOPRINT], a
- inc de
- ld a, [de]
- ld [H_NUMTOPRINT + 1], a
- inc de
- ld a, [de]
- ld [H_NUMTOPRINT + 2], a
- jr .start
-
-.word
- ld a, [de]
- ld [H_NUMTOPRINT + 1], a
- inc de
- ld a, [de]
- ld [H_NUMTOPRINT + 2], a
- jr .start
-
-.byte
- ld a, [de]
- ld [H_NUMTOPRINT + 2], a
-
-.start
- push de
-
- ld d, b
- ld a, c
- ld b, a
- xor a
- ld c, a
- ld a, b
-
- cp 2
- jr z, .tens
- cp 3
- jr z, .hundreds
- cp 4
- jr z, .thousands
- cp 5
- jr z, .ten_thousands
- cp 6
- jr z, .hundred_thousands
-
-print_digit: macro
-
-if (\1) / $10000
- ld a, \1 / $10000 % $100
-else xor a
-endc
- ld [H_POWEROFTEN + 0], a
-
-if (\1) / $100
- ld a, \1 / $100 % $100
-else xor a
-endc
- ld [H_POWEROFTEN + 1], a
-
- ld a, \1 / $1 % $100
- ld [H_POWEROFTEN + 2], a
-
- call .PrintDigit
- call .NextDigit
-endm
-
-.millions print_digit 1000000
-.hundred_thousands print_digit 100000
-.ten_thousands print_digit 10000
-.thousands print_digit 1000
-.hundreds print_digit 100
-
-.tens
- ld c, 0
- ld a, [H_NUMTOPRINT + 2]
-.mod
- cp 10
- jr c, .ok
- sub 10
- inc c
- jr .mod
-.ok
-
- ld b, a
- ld a, [H_PASTLEADINGZEROES]
- or c
- ld [H_PASTLEADINGZEROES], a
- jr nz, .past
- call .PrintLeadingZero
- jr .next
-.past
- ld a, "0"
- add c
- ld [hl], a
-.next
-
- call .NextDigit
-.ones
- ld a, "0"
- add b
- ld [hli], a
- pop de
- dec de
- pop bc
- ret
-
-.PrintDigit:
-; Divide by the current decimal place.
-; Print the quotient, and keep the modulus.
- ld c, 0
-.loop
- ld a, [H_POWEROFTEN]
- ld b, a
- ld a, [H_NUMTOPRINT]
- ld [H_SAVEDNUMTOPRINT], a
- cp b
- jr c, .underflow0
- sub b
- ld [H_NUMTOPRINT], a
- ld a, [H_POWEROFTEN + 1]
- ld b, a
- ld a, [H_NUMTOPRINT + 1]
- ld [H_SAVEDNUMTOPRINT + 1], a
- cp b
- jr nc, .noborrow1
-
- ld a, [H_NUMTOPRINT]
- or 0
- jr z, .underflow1
- dec a
- ld [H_NUMTOPRINT], a
- ld a, [H_NUMTOPRINT + 1]
-.noborrow1
-
- sub b
- ld [H_NUMTOPRINT + 1], a
- ld a, [H_POWEROFTEN + 2]
- ld b, a
- ld a, [H_NUMTOPRINT + 2]
- ld [H_SAVEDNUMTOPRINT + 2], a
- cp b
- jr nc, .noborrow2
-
- ld a, [H_NUMTOPRINT + 1]
- and a
- jr nz, .borrowed
-
- ld a, [H_NUMTOPRINT]
- and a
- jr z, .underflow2
- dec a
- ld [H_NUMTOPRINT], a
- xor a
-.borrowed
-
- dec a
- ld [H_NUMTOPRINT + 1], a
- ld a, [H_NUMTOPRINT + 2]
-.noborrow2
- sub b
- ld [H_NUMTOPRINT + 2], a
- inc c
- jr .loop
-
-.underflow2
- ld a, [H_SAVEDNUMTOPRINT + 1]
- ld [H_NUMTOPRINT + 1], a
-.underflow1
- ld a, [H_SAVEDNUMTOPRINT]
- ld [H_NUMTOPRINT], a
-.underflow0
- ld a, [H_PASTLEADINGZEROES]
- or c
- jr z, .PrintLeadingZero
-
- ld a, "0"
- add c
- ld [hl], a
- ld [H_PASTLEADINGZEROES], a
- ret
-
-.PrintLeadingZero:
- bit BIT_LEADING_ZEROES, d
- ret z
- ld [hl], "0"
- ret
-
-.NextDigit:
-; Increment unless the number is left-aligned,
-; leading zeroes are not printed, and no digits
-; have been printed yet.
- bit BIT_LEADING_ZEROES, d
- jr nz, .inc
- bit BIT_LEFT_ALIGN, d
- jr z, .inc
- ld a, [H_PASTLEADINGZEROES]
- and a
- ret z
-.inc
- inc hl
- ret
-
-
CallFunctionInTable::
; Call function a in jumptable hl.
; de is not preserved.
@@ -4429,7 +1592,6 @@
pop hl
ret
-
IsInArray::
; Search an array at hl for the value in a.
; Entry size is de bytes.
@@ -4456,7 +1618,6 @@
scf
ret
-
RestoreScreenTilesAndReloadTilePatterns::
call ClearSprites
ld a, $1
@@ -4467,7 +1628,6 @@
call RunDefaultPaletteCommand
jr Delay3
-
GBPalWhiteOutWithDelay3::
call GBPalWhiteOut
@@ -4493,9 +1653,8 @@
ld [rOBP1], a
ret
-
RunDefaultPaletteCommand::
- ld b, $ff
+ ld b, SET_PAL_DEFAULT
RunPaletteCommand::
ld a, [wOnSGB]
and a
@@ -4537,7 +1696,6 @@
call LoadFontTilePatterns
jp UpdateSprites
-
GiveItem::
; Give player quantity c of item b,
; and copy the item's name to wcf4b.
@@ -4565,7 +1723,6 @@
ld [wMonDataLocation], a
jpba _GivePokemon
-
Random::
; Return a random number in a.
; For battles, use BattleRandom.
@@ -4579,30 +1736,28 @@
pop hl
ret
-
INCLUDE "home/predef.asm"
-
UpdateCinnabarGymGateTileBlocks::
jpba UpdateCinnabarGymGateTileBlocks_
CheckForHiddenObjectOrBookshelfOrCardKeyDoor::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [hJoyHeld]
bit 0, a ; A button
jr z, .nothingFound
; A button is pressed
- ld a, Bank(CheckForHiddenObject)
+ ld a, BANK(CheckForHiddenObject)
ld [MBC1RomBank], a
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
call CheckForHiddenObject
- ld a, [$ffee]
+ ld a, [hFoundHiddenObject]
and a
jr nz, .hiddenObjectNotFound
ld a, [wHiddenObjectFunctionRomBank]
ld [MBC1RomBank], a
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld de, .returnAddress
push de
jp hl
@@ -4611,16 +1766,16 @@
jr .done
.hiddenObjectNotFound
callba PrintBookshelfText
- ld a, [$ffdb]
+ ld a, [hFFDB]
and a
jr z, .done
.nothingFound
ld a, $ff
.done
- ld [$ffeb], a
+ ld [hFoundHiddenObjectOrBookshelf], a
pop af
ld [MBC1RomBank], a
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ret
PrintPredefTextID::
@@ -4633,17 +1788,17 @@
RestoreMapTextPointer::
ld hl, wMapTextPtr
- ld a, [$ffec]
+ ld a, [hSavedMapTextPtr]
ld [hli], a
- ld a, [$ffec + 1]
+ ld a, [hSavedMapTextPtr + 1]
ld [hl], a
ret
SetMapTextPointer::
ld a, [wMapTextPtr]
- ld [$ffec], a
+ ld [hSavedMapTextPtr], a
ld a, [wMapTextPtr + 1]
- ld [$ffec + 1], a
+ ld [hSavedMapTextPtr + 1], a
ld a, l
ld [wMapTextPtr], a
ld a, h
@@ -4650,72 +1805,4 @@
ld [wMapTextPtr + 1], a
ret
-TextPredefs::
-const_value = 1
-
- add_tx_pre CardKeySuccessText ; 01
- add_tx_pre CardKeyFailText ; 02
- add_tx_pre RedBedroomPCText ; 03
- add_tx_pre RedBedroomSNESText ; 04
- add_tx_pre PushStartText ; 05
- add_tx_pre SaveOptionText ; 06
- add_tx_pre StrengthsAndWeaknessesText ; 07
- add_tx_pre OakLabEmailText ; 08
- add_tx_pre AerodactylFossilText ; 09
- add_tx_pre Route15UpstairsBinocularsText ; 0A
- add_tx_pre KabutopsFossilText ; 0B
- add_tx_pre GymStatueText1 ; 0C
- add_tx_pre GymStatueText2 ; 0D
- add_tx_pre BookcaseText ; 0E
- add_tx_pre ViridianCityPokecenterBenchGuyText ; 0F
- add_tx_pre PewterCityPokecenterBenchGuyText ; 10
- add_tx_pre CeruleanCityPokecenterBenchGuyText ; 11
- add_tx_pre LavenderCityPokecenterBenchGuyText ; 12
- add_tx_pre VermilionCityPokecenterBenchGuyText ; 13
- add_tx_pre CeladonCityPokecenterBenchGuyText ; 14
- add_tx_pre CeladonCityHotelText ; 15
- add_tx_pre FuchsiaCityPokecenterBenchGuyText ; 16
- add_tx_pre CinnabarIslandPokecenterBenchGuyText ; 17
- add_tx_pre SaffronCityPokecenterBenchGuyText ; 18
- add_tx_pre MtMoonPokecenterBenchGuyText ; 19
- add_tx_pre RockTunnelPokecenterBenchGuyText ; 1A
- add_tx_pre UnusedBenchGuyText1 ; 1B XXX unused
- add_tx_pre UnusedBenchGuyText2 ; 1C XXX unused
- add_tx_pre UnusedBenchGuyText3 ; 1D XXX unused
- add_tx_pre UnusedPredefText ; 1E XXX unused
- add_tx_pre PokemonCenterPCText ; 1F
- add_tx_pre ViridianSchoolNotebook ; 20
- add_tx_pre ViridianSchoolBlackboard ; 21
- add_tx_pre JustAMomentText ; 22
- add_tx_pre OpenBillsPCText ; 23
- add_tx_pre FoundHiddenItemText ; 24
- add_tx_pre HiddenItemBagFullText ; 25 XXX unused
- add_tx_pre VermilionGymTrashText ; 26
- add_tx_pre IndigoPlateauHQText ; 27
- add_tx_pre GameCornerOutOfOrderText ; 28
- add_tx_pre GameCornerOutToLunchText ; 29
- add_tx_pre GameCornerSomeonesKeysText ; 2A
- add_tx_pre FoundHiddenCoinsText ; 2B
- add_tx_pre DroppedHiddenCoinsText ; 2C
- add_tx_pre BillsHouseMonitorText ; 2D
- add_tx_pre BillsHouseInitiatedText ; 2E
- add_tx_pre BillsHousePokemonList ; 2F
- add_tx_pre MagazinesText ; 30
- add_tx_pre CinnabarGymQuiz ; 31
- add_tx_pre GameCornerNoCoinsText ; 32
- add_tx_pre GameCornerCoinCaseText ; 33
- add_tx_pre LinkCableHelp ; 34
- add_tx_pre TMNotebook ; 35
- add_tx_pre FightingDojoText ; 36
- add_tx_pre EnemiesOnEverySideText ; 37
- add_tx_pre WhatGoesAroundComesAroundText ; 38
- add_tx_pre NewBicycleText ; 39
- add_tx_pre IndigoPlateauStatues ; 3A
- add_tx_pre VermilionGymTrashSuccessText1 ; 3B
- add_tx_pre VermilionGymTrashSuccessText2 ; 3C XXX unused
- add_tx_pre VermilionGymTrashSuccessText3 ; 3D
- add_tx_pre VermilionGymTrashFailText ; 3E
- add_tx_pre TownMapText ; 3F
- add_tx_pre BookOrSculptureText ; 40
- add_tx_pre ElevatorText ; 41
- add_tx_pre PokemonStuffText ; 42
+INCLUDE "data/text_predef_pointers.asm"
--- a/home/audio.asm
+++ b/home/audio.asm
@@ -170,10 +170,10 @@
.noFadeOut
xor a
ld [wNewSoundID], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [hSavedROMBank], a
ld a, [wAudioROMBank]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
cp BANK(Audio1_PlaySound)
jr nz, .checkForAudio2
@@ -198,7 +198,7 @@
.next2
ld a, [hSavedROMBank]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
jr .done
--- /dev/null
+++ b/home/bankswitch.asm
@@ -1,0 +1,35 @@
+BankswitchHome::
+; switches to bank # in a
+; Only use this when in the home bank!
+ ld [wBankswitchHomeTemp], a
+ ld a, [hLoadedROMBank]
+ ld [wBankswitchHomeSavedROMBank], a
+ ld a, [wBankswitchHomeTemp]
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+BankswitchBack::
+; returns from BankswitchHome
+ ld a, [wBankswitchHomeSavedROMBank]
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+Bankswitch::
+; self-contained bankswitch, use this when not in the home bank
+; switches to the bank in b
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, b
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ld bc, .Return
+ push bc
+ jp hl
+.Return
+ pop bc
+ ld a, b
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
--- /dev/null
+++ b/home/clear_sprites.asm
@@ -1,0 +1,21 @@
+ClearSprites::
+ xor a
+ ld hl, wOAMBuffer
+ ld b, 40 * 4
+.loop
+ ld [hli], a
+ dec b
+ jr nz, .loop
+ ret
+
+HideSprites::
+ ld a, 160
+ ld hl, wOAMBuffer
+ ld de, 4
+ ld b, 40
+.loop
+ ld [hl], a
+ add hl, de
+ dec b
+ jr nz, .loop
+ ret
--- a/home/copy.asm
+++ b/home/copy.asm
@@ -1,14 +1,14 @@
FarCopyData::
; Copy bc bytes from a:hl to de.
ld [wBuffer], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wBuffer]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call CopyData
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
--- a/home/copy2.asm
+++ b/home/copy2.asm
@@ -2,14 +2,14 @@
; Identical to FarCopyData, but uses hROMBankTemp
; as temp space instead of wBuffer.
ld [hROMBankTemp], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [hROMBankTemp]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call CopyData
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -16,10 +16,10 @@
FarCopyData3::
; Copy bc bytes from a:de to hl.
ld [hROMBankTemp], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [hROMBankTemp]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
push hl
push de
@@ -31,7 +31,7 @@
pop de
pop hl
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -39,10 +39,10 @@
; Expand bc bytes of 1bpp image data
; from a:hl to 2bpp data at de.
ld [hROMBankTemp], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [hROMBankTemp]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
.loop
ld a, [hli]
@@ -55,7 +55,7 @@
or b
jr nz, .loop
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -64,27 +64,27 @@
; tiles from b:de to hl, 8 tiles at a time.
; This takes c/8 frames.
- ld a, [H_AUTOBGTRANSFERENABLED]
+ ld a, [hAutoBGTransferEnabled]
push af
xor a ; disable auto-transfer while copying
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [hROMBankTemp], a
ld a, b
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld a, e
- ld [H_VBCOPYSRC], a
+ ld [hVBlankCopySource], a
ld a, d
- ld [H_VBCOPYSRC + 1], a
+ ld [hVBlankCopySource + 1], a
ld a, l
- ld [H_VBCOPYDEST], a
+ ld [hVBlankCopyDest], a
ld a, h
- ld [H_VBCOPYDEST + 1], a
+ ld [hVBlankCopyDest + 1], a
.loop
ld a, c
@@ -92,18 +92,18 @@
jr nc, .keepgoing
.done
- ld [H_VBCOPYSIZE], a
+ ld [hVBlankCopySize], a
call DelayFrame
ld a, [hROMBankTemp]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
pop af
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
.keepgoing
ld a, 8
- ld [H_VBCOPYSIZE], a
+ ld [hVBlankCopySize], a
call DelayFrame
ld a, c
sub 8
@@ -114,26 +114,26 @@
; Wait for the next VBlank, then copy c 1bpp
; tiles from b:de to hl, 8 tiles at a time.
; This takes c/8 frames.
- ld a, [H_AUTOBGTRANSFERENABLED]
+ ld a, [hAutoBGTransferEnabled]
push af
xor a ; disable auto-transfer while copying
- ld [H_AUTOBGTRANSFERENABLED], a
- ld a, [H_LOADEDROMBANK]
+ ld [hAutoBGTransferEnabled], a
+ ld a, [hLoadedROMBank]
ld [hROMBankTemp], a
ld a, b
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld a, e
- ld [H_VBCOPYDOUBLESRC], a
+ ld [hVBlankCopyDoubleSource], a
ld a, d
- ld [H_VBCOPYDOUBLESRC + 1], a
+ ld [hVBlankCopyDoubleSource + 1], a
ld a, l
- ld [H_VBCOPYDOUBLEDEST], a
+ ld [hVBlankCopyDoubleDest], a
ld a, h
- ld [H_VBCOPYDOUBLEDEST + 1], a
+ ld [hVBlankCopyDoubleDest + 1], a
.loop
ld a, c
@@ -141,18 +141,18 @@
jr nc, .keepgoing
.done
- ld [H_VBCOPYDOUBLESIZE], a
+ ld [hVBlankCopyDoubleSize], a
call DelayFrame
ld a, [hROMBankTemp]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
pop af
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ret
.keepgoing
ld a, 8
- ld [H_VBCOPYDOUBLESIZE], a
+ ld [hVBlankCopyDoubleSize], a
call DelayFrame
ld a, c
sub 8
@@ -200,16 +200,16 @@
.setup
ld a, d
- ld [H_VBCOPYBGSRC+1], a
+ ld [hVBlankCopyBGSource+1], a
call GetRowColAddressBgMap
ld a, l
- ld [H_VBCOPYBGDEST], a
+ ld [hVBlankCopyBGDest], a
ld a, h
- ld [H_VBCOPYBGDEST+1], a
+ ld [hVBlankCopyBGDest+1], a
ld a, c
- ld [H_VBCOPYBGNUMROWS], a
+ ld [hVBlankCopyBGNumRows], a
ld a, e
- ld [H_VBCOPYBGSRC], a
+ ld [hVBlankCopyBGSource], a
ret
ClearScreen::
--- /dev/null
+++ b/home/header.asm
@@ -1,0 +1,57 @@
+; rst vectors (unused)
+
+SECTION "rst0", ROM0[$0000]
+ rst $38
+
+SECTION "rst8", ROM0[$0008]
+ rst $38
+
+SECTION "rst10", ROM0[$0010]
+ rst $38
+
+SECTION "rst18", ROM0[$0018]
+ rst $38
+
+SECTION "rst20", ROM0[$0020]
+ rst $38
+
+SECTION "rst28", ROM0[$0028]
+ rst $38
+
+SECTION "rst30", ROM0[$0030]
+ rst $38
+
+SECTION "rst38", ROM0[$0038]
+ rst $38
+
+
+; Game Boy hardware interrupts
+
+SECTION "vblank", ROM0[$0040]
+ jp VBlank
+
+SECTION "lcd", ROM0[$0048]
+ rst $38
+
+SECTION "timer", ROM0[$0050]
+ jp Timer
+
+SECTION "serial", ROM0[$0058]
+ jp Serial
+
+SECTION "joypad", ROM0[$0060]
+ reti
+
+
+SECTION "Header", ROM0[$0100]
+
+Start::
+; Nintendo requires all Game Boy ROMs to begin with a nop ($00) and a jp ($C3)
+; to the starting address.
+ nop
+ jp _Start
+
+; The Game Boy cartridge header data is patched over by rgbfix.
+; This makes sure it doesn't get used for anything else.
+
+ ds $0150 - @, $00
--- a/home/init.asm
+++ b/home/init.asm
@@ -41,8 +41,8 @@
ld sp, wStack
- ld hl, $c000 ; start of WRAM
- ld bc, $2000 ; size of WRAM
+ ld hl, WRAM0_Begin
+ ld bc, WRAM1_End - WRAM0_Begin
.loop
ld [hl], 0
inc hl
@@ -53,14 +53,14 @@
call ClearVram
- ld hl, $ff80
- ld bc, $ffff - $ff80
+ ld hl, HRAM_Begin
+ ld bc, HRAM_End - HRAM_Begin
call FillMemory
call ClearSprites
- ld a, Bank(WriteDMACodeToHRAM)
- ld [H_LOADEDROMBANK], a
+ ld a, BANK(WriteDMACodeToHRAM)
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call WriteDMACodeToHRAM
@@ -101,9 +101,9 @@
ld [wAudioROMBank], a
ld [wAudioSavedROMBank], a
ld a, $9c
- ld [H_AUTOBGTRANSFERDEST + 1], a
+ ld [hAutoBGTransferDest + 1], a
xor a
- ld [H_AUTOBGTRANSFERDEST], a
+ ld [hAutoBGTransferDest], a
dec a
ld [wUpdateSpritesEnabled], a
@@ -119,8 +119,8 @@
jp SetDefaultNamesBeforeTitlescreen
ClearVram::
- ld hl, $8000
- ld bc, $2000
+ ld hl, VRAM_Begin
+ ld bc, VRAM_End - VRAM_Begin
xor a
jp FillMemory
--- /dev/null
+++ b/home/lcd.asm
@@ -1,0 +1,25 @@
+DisableLCD::
+ xor a
+ ld [rIF], a
+ ld a, [rIE]
+ ld b, a
+ res 0, a
+ ld [rIE], a
+
+.wait
+ ld a, [rLY]
+ cp LY_VBLANK
+ jr nz, .wait
+
+ ld a, [rLCDC]
+ and $ff ^ rLCDC_ENABLE_MASK
+ ld [rLCDC], a
+ ld a, b
+ ld [rIE], a
+ ret
+
+EnableLCD::
+ ld a, [rLCDC]
+ set rLCDC_ENABLE, a
+ ld [rLCDC], a
+ ret
--- /dev/null
+++ b/home/list_menu.asm
@@ -1,0 +1,526 @@
+; INPUT:
+; [wListMenuID] = list menu ID
+; [wListPointer] = address of the list (2 bytes)
+DisplayListMenuID::
+ xor a
+ ld [hAutoBGTransferEnabled], a ; disable auto-transfer
+ ld a, 1
+ ld [hJoy7], a ; joypad state update flag
+ ld a, [wBattleType]
+ and a ; is it the Old Man battle?
+ jr nz, .specialBattleType
+ ld a, $01 ; hardcoded bank
+ jr .bankswitch
+.specialBattleType ; Old Man battle
+ ld a, BANK(DisplayBattleMenu)
+.bankswitch
+ call BankswitchHome
+ ld hl, wd730
+ set 6, [hl] ; turn off letter printing delay
+ xor a
+ ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
+ ld [wListCount], a
+ ld a, [wListPointer]
+ ld l, a
+ ld a, [wListPointer + 1]
+ ld h, a ; hl = address of the list
+ ld a, [hl] ; the first byte is the number of entries in the list
+ ld [wListCount], a
+ ld a, LIST_MENU_BOX
+ ld [wTextBoxID], a
+ call DisplayTextBoxID ; draw the menu text box
+ call UpdateSprites ; disable sprites behind the text box
+; the code up to .skipMovingSprites appears to be useless
+ coord hl, 4, 2 ; coordinates of upper left corner of menu text box
+ lb de, 9, 14 ; height and width of menu text box
+ ld a, [wListMenuID]
+ and a ; is it a PC pokemon list?
+ jr nz, .skipMovingSprites
+ call UpdateSprites
+.skipMovingSprites
+ ld a, 1 ; max menu item ID is 1 if the list has less than 2 entries
+ ld [wMenuWatchMovingOutOfBounds], a
+ ld a, [wListCount]
+ cp 2 ; does the list have less than 2 entries?
+ jr c, .setMenuVariables
+ ld a, 2 ; max menu item ID is 2 if the list has at least 2 entries
+.setMenuVariables
+ ld [wMaxMenuItem], a
+ ld a, 4
+ ld [wTopMenuItemY], a
+ ld a, 5
+ ld [wTopMenuItemX], a
+ ld a, A_BUTTON | B_BUTTON | SELECT
+ ld [wMenuWatchedKeys], a
+ ld c, 10
+ call DelayFrames
+
+DisplayListMenuIDLoop::
+ xor a
+ ld [hAutoBGTransferEnabled], a ; disable transfer
+ call PrintListMenuEntries
+ ld a, 1
+ ld [hAutoBGTransferEnabled], a ; enable transfer
+ call Delay3
+ ld a, [wBattleType]
+ and a ; is it the Old Man battle?
+ jr z, .notOldManBattle
+.oldManBattle
+ ld a, "▶"
+ Coorda 5, 4 ; place menu cursor in front of first menu entry
+ ld c, 80
+ call DelayFrames
+ xor a
+ ld [wCurrentMenuItem], a
+ coord hl, 5, 4
+ ld a, l
+ ld [wMenuCursorLocation], a
+ ld a, h
+ ld [wMenuCursorLocation + 1], a
+ jr .buttonAPressed
+.notOldManBattle
+ call LoadGBPal
+ call HandleMenuInput
+ push af
+ call PlaceMenuCursor
+ pop af
+ bit 0, a ; was the A button pressed?
+ jp z, .checkOtherKeys
+.buttonAPressed
+ ld a, [wCurrentMenuItem]
+ call PlaceUnfilledArrowMenuCursor
+
+; pointless because both values are overwritten before they are read
+ ld a, $01
+ ld [wMenuExitMethod], a
+ ld [wChosenMenuItem], a
+
+ xor a
+ ld [wMenuWatchMovingOutOfBounds], a
+ ld a, [wCurrentMenuItem]
+ ld c, a
+ ld a, [wListScrollOffset]
+ add c
+ ld c, a
+ ld a, [wListCount]
+ and a ; is the list empty?
+ jp z, ExitListMenu ; if so, exit the menu
+ dec a
+ cp c ; did the player select Cancel?
+ jp c, ExitListMenu ; if so, exit the menu
+ ld a, c
+ ld [wWhichPokemon], a
+ ld a, [wListMenuID]
+ cp ITEMLISTMENU
+ jr nz, .skipMultiplying
+; if it's an item menu
+ sla c ; item entries are 2 bytes long, so multiply by 2
+.skipMultiplying
+ ld a, [wListPointer]
+ ld l, a
+ ld a, [wListPointer + 1]
+ ld h, a
+ inc hl ; hl = beginning of list entries
+ ld b, 0
+ add hl, bc
+ ld a, [hl]
+ ld [wcf91], a
+ ld a, [wListMenuID]
+ and a ; is it a PC pokemon list?
+ jr z, .pokemonList
+ push hl
+ call GetItemPrice
+ pop hl
+ ld a, [wListMenuID]
+ cp ITEMLISTMENU
+ jr nz, .skipGettingQuantity
+; if it's an item menu
+ inc hl
+ ld a, [hl] ; a = item quantity
+ ld [wMaxItemQuantity], a
+.skipGettingQuantity
+ ld a, [wcf91]
+ ld [wd0b5], a
+ ld a, BANK(ItemNames)
+ ld [wPredefBank], a
+ call GetName
+ jr .storeChosenEntry
+.pokemonList
+ ld hl, wPartyCount
+ ld a, [wListPointer]
+ cp l ; is it a list of party pokemon or box pokemon?
+ ld hl, wPartyMonNicks
+ jr z, .getPokemonName
+ ld hl, wBoxMonNicks ; box pokemon names
+.getPokemonName
+ ld a, [wWhichPokemon]
+ call GetPartyMonName
+.storeChosenEntry ; store the menu entry that the player chose and return
+ ld de, wcd6d
+ call CopyStringToCF4B ; copy name to wcf4b
+ ld a, CHOSE_MENU_ITEM
+ ld [wMenuExitMethod], a
+ ld a, [wCurrentMenuItem]
+ ld [wChosenMenuItem], a
+ xor a
+ ld [hJoy7], a ; joypad state update flag
+ ld hl, wd730
+ res 6, [hl] ; turn on letter printing delay
+ jp BankswitchBack
+.checkOtherKeys ; check B, SELECT, Up, and Down keys
+ bit 1, a ; was the B button pressed?
+ jp nz, ExitListMenu ; if so, exit the menu
+ bit 2, a ; was the select button pressed?
+ jp nz, HandleItemListSwapping ; if so, allow the player to swap menu entries
+ ld b, a
+ bit 7, b ; was Down pressed?
+ ld hl, wListScrollOffset
+ jr z, .upPressed
+.downPressed
+ ld a, [hl]
+ add 3
+ ld b, a
+ ld a, [wListCount]
+ cp b ; will going down scroll past the Cancel button?
+ jp c, DisplayListMenuIDLoop
+ inc [hl] ; if not, go down
+ jp DisplayListMenuIDLoop
+.upPressed
+ ld a, [hl]
+ and a
+ jp z, DisplayListMenuIDLoop
+ dec [hl]
+ jp DisplayListMenuIDLoop
+
+DisplayChooseQuantityMenu::
+; text box dimensions/coordinates for just quantity
+ coord hl, 15, 9
+ ld b, 1 ; height
+ ld c, 3 ; width
+ ld a, [wListMenuID]
+ cp PRICEDITEMLISTMENU
+ jr nz, .drawTextBox
+; text box dimensions/coordinates for quantity and price
+ coord hl, 7, 9
+ ld b, 1 ; height
+ ld c, 11 ; width
+.drawTextBox
+ call TextBoxBorder
+ coord hl, 16, 10
+ ld a, [wListMenuID]
+ cp PRICEDITEMLISTMENU
+ jr nz, .printInitialQuantity
+ coord hl, 8, 10
+.printInitialQuantity
+ ld de, InitialQuantityText
+ call PlaceString
+ xor a
+ ld [wItemQuantity], a ; initialize current quantity to 0
+ jp .incrementQuantity
+.waitForKeyPressLoop
+ call JoypadLowSensitivity
+ ld a, [hJoyPressed] ; newly pressed buttons
+ bit 0, a ; was the A button pressed?
+ jp nz, .buttonAPressed
+ bit 1, a ; was the B button pressed?
+ jp nz, .buttonBPressed
+ bit 6, a ; was Up pressed?
+ jr nz, .incrementQuantity
+ bit 7, a ; was Down pressed?
+ jr nz, .decrementQuantity
+ jr .waitForKeyPressLoop
+.incrementQuantity
+ ld a, [wMaxItemQuantity]
+ inc a
+ ld b, a
+ ld hl, wItemQuantity ; current quantity
+ inc [hl]
+ ld a, [hl]
+ cp b
+ jr nz, .handleNewQuantity
+; wrap to 1 if the player goes above the max quantity
+ ld a, 1
+ ld [hl], a
+ jr .handleNewQuantity
+.decrementQuantity
+ ld hl, wItemQuantity ; current quantity
+ dec [hl]
+ jr nz, .handleNewQuantity
+; wrap to the max quantity if the player goes below 1
+ ld a, [wMaxItemQuantity]
+ ld [hl], a
+.handleNewQuantity
+ coord hl, 17, 10
+ ld a, [wListMenuID]
+ cp PRICEDITEMLISTMENU
+ jr nz, .printQuantity
+.printPrice
+ ld c, $03
+ ld a, [wItemQuantity]
+ ld b, a
+ ld hl, hMoney ; total price
+; initialize total price to 0
+ xor a
+ ld [hli], a
+ ld [hli], a
+ ld [hl], a
+.addLoop ; loop to multiply the individual price by the quantity to get the total price
+ ld de, hMoney + 2
+ ld hl, hItemPrice + 2
+ push bc
+ predef AddBCDPredef ; add the individual price to the current sum
+ pop bc
+ dec b
+ jr nz, .addLoop
+ ld a, [hHalveItemPrices]
+ and a ; should the price be halved (for selling items)?
+ jr z, .skipHalvingPrice
+ xor a
+ ld [hDivideBCDDivisor], a
+ ld [hDivideBCDDivisor + 1], a
+ ld a, $02
+ ld [hDivideBCDDivisor + 2], a
+ predef DivideBCDPredef3 ; halves the price
+; store the halved price
+ ld a, [hDivideBCDQuotient]
+ ld [hMoney], a
+ ld a, [hDivideBCDQuotient + 1]
+ ld [hMoney + 1], a
+ ld a, [hDivideBCDQuotient + 2]
+ ld [hMoney + 2], a
+.skipHalvingPrice
+ coord hl, 12, 10
+ ld de, SpacesBetweenQuantityAndPriceText
+ call PlaceString
+ ld de, hMoney ; total price
+ ld c, $a3
+ call PrintBCDNumber
+ coord hl, 9, 10
+.printQuantity
+ ld de, wItemQuantity ; current quantity
+ lb bc, LEADING_ZEROES | 1, 2 ; 1 byte, 2 digits
+ call PrintNumber
+ jp .waitForKeyPressLoop
+.buttonAPressed ; the player chose to make the transaction
+ xor a
+ ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
+ ret
+.buttonBPressed ; the player chose to cancel the transaction
+ xor a
+ ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
+ ld a, $ff
+ ret
+
+InitialQuantityText::
+ db "×01@"
+
+SpacesBetweenQuantityAndPriceText::
+ db " @"
+
+ExitListMenu::
+ ld a, [wCurrentMenuItem]
+ ld [wChosenMenuItem], a
+ ld a, CANCELLED_MENU
+ ld [wMenuExitMethod], a
+ ld [wMenuWatchMovingOutOfBounds], a
+ xor a
+ ld [hJoy7], a
+ ld hl, wd730
+ res 6, [hl]
+ call BankswitchBack
+ xor a
+ ld [wMenuItemToSwap], a ; 0 means no item is currently being swapped
+ scf
+ ret
+
+PrintListMenuEntries::
+ coord hl, 5, 3
+ ld b, 9
+ ld c, 14
+ call ClearScreenArea
+ ld a, [wListPointer]
+ ld e, a
+ ld a, [wListPointer + 1]
+ ld d, a
+ inc de ; de = beginning of list entries
+ ld a, [wListScrollOffset]
+ ld c, a
+ ld a, [wListMenuID]
+ cp ITEMLISTMENU
+ ld a, c
+ jr nz, .skipMultiplying
+; if it's an item menu
+; item entries are 2 bytes long, so multiply by 2
+ sla a
+ sla c
+.skipMultiplying
+ add e
+ ld e, a
+ jr nc, .noCarry
+ inc d
+.noCarry
+ coord hl, 6, 4 ; coordinates of first list entry name
+ ld b, 4 ; print 4 names
+.loop
+ ld a, b
+ ld [wWhichPokemon], a
+ ld a, [de]
+ ld [wd11e], a
+ cp $ff
+ jp z, .printCancelMenuItem
+ push bc
+ push de
+ push hl
+ push hl
+ push de
+ ld a, [wListMenuID]
+ and a
+ jr z, .pokemonPCMenu
+ cp MOVESLISTMENU
+ jr z, .movesMenu
+.itemMenu
+ call GetItemName
+ jr .placeNameString
+.pokemonPCMenu
+ push hl
+ ld hl, wPartyCount
+ ld a, [wListPointer]
+ cp l ; is it a list of party pokemon or box pokemon?
+ ld hl, wPartyMonNicks
+ jr z, .getPokemonName
+ ld hl, wBoxMonNicks ; box pokemon names
+.getPokemonName
+ ld a, [wWhichPokemon]
+ ld b, a
+ ld a, 4
+ sub b
+ ld b, a
+ ld a, [wListScrollOffset]
+ add b
+ call GetPartyMonName
+ pop hl
+ jr .placeNameString
+.movesMenu
+ call GetMoveName
+.placeNameString
+ call PlaceString
+ pop de
+ pop hl
+ ld a, [wPrintItemPrices]
+ and a ; should prices be printed?
+ jr z, .skipPrintingItemPrice
+.printItemPrice
+ push hl
+ ld a, [de]
+ ld de, ItemPrices
+ ld [wcf91], a
+ call GetItemPrice ; get price
+ pop hl
+ ld bc, SCREEN_WIDTH + 5 ; 1 row down and 5 columns right
+ add hl, bc
+ ld c, $a3 ; no leading zeroes, right-aligned, print currency symbol, 3 bytes
+ call PrintBCDNumber
+.skipPrintingItemPrice
+ ld a, [wListMenuID]
+ and a
+ jr nz, .skipPrintingPokemonLevel
+.printPokemonLevel
+ ld a, [wd11e]
+ push af
+ push hl
+ ld hl, wPartyCount
+ ld a, [wListPointer]
+ cp l ; is it a list of party pokemon or box pokemon?
+ ld a, PLAYER_PARTY_DATA
+ jr z, .next
+ ld a, BOX_DATA
+.next
+ ld [wMonDataLocation], a
+ ld hl, wWhichPokemon
+ ld a, [hl]
+ ld b, a
+ ld a, $04
+ sub b
+ ld b, a
+ ld a, [wListScrollOffset]
+ add b
+ ld [hl], a
+ call LoadMonData
+ ld a, [wMonDataLocation]
+ and a ; is it a list of party pokemon or box pokemon?
+ jr z, .skipCopyingLevel
+.copyLevel
+ ld a, [wLoadedMonBoxLevel]
+ ld [wLoadedMonLevel], a
+.skipCopyingLevel
+ pop hl
+ ld bc, $1c
+ add hl, bc
+ call PrintLevel
+ pop af
+ ld [wd11e], a
+.skipPrintingPokemonLevel
+ pop hl
+ pop de
+ inc de
+ ld a, [wListMenuID]
+ cp ITEMLISTMENU
+ jr nz, .nextListEntry
+.printItemQuantity
+ ld a, [wd11e]
+ ld [wcf91], a
+ call IsKeyItem ; check if item is unsellable
+ ld a, [wIsKeyItem]
+ and a ; is the item unsellable?
+ jr nz, .skipPrintingItemQuantity ; if so, don't print the quantity
+ push hl
+ ld bc, SCREEN_WIDTH + 8 ; 1 row down and 8 columns right
+ add hl, bc
+ ld a, "×"
+ ld [hli], a
+ ld a, [wd11e]
+ push af
+ ld a, [de]
+ ld [wMaxItemQuantity], a
+ push de
+ ld de, wd11e
+ ld [de], a
+ lb bc, 1, 2
+ call PrintNumber
+ pop de
+ pop af
+ ld [wd11e], a
+ pop hl
+.skipPrintingItemQuantity
+ inc de
+ pop bc
+ inc c
+ push bc
+ inc c
+ ld a, [wMenuItemToSwap] ; ID of item chosen for swapping (counts from 1)
+ and a ; is an item being swapped?
+ jr z, .nextListEntry
+ sla a
+ cp c ; is it this item?
+ jr nz, .nextListEntry
+ dec hl
+ ld a, $ec ; unfilled right arrow menu cursor to indicate an item being swapped
+ ld [hli], a
+.nextListEntry
+ ld bc, 2 * SCREEN_WIDTH ; 2 rows
+ add hl, bc
+ pop bc
+ inc c
+ dec b
+ jp nz, .loop
+ ld bc, -8
+ add hl, bc
+ ld a, "▼"
+ ld [hl], a
+ ret
+.printCancelMenuItem
+ ld de, ListMenuCancelText
+ jp PlaceString
+
+ListMenuCancelText::
+ db "CANCEL@"
--- /dev/null
+++ b/home/move_mon.asm
@@ -1,0 +1,242 @@
+; Function to remove a pokemon from the party or the current box.
+; wWhichPokemon determines the pokemon.
+; [wRemoveMonFromBox] == 0 specifies the party.
+; [wRemoveMonFromBox] != 0 specifies the current box.
+RemovePokemon::
+ jpab _RemovePokemon
+
+AddPartyMon::
+ push hl
+ push de
+ push bc
+ callba _AddPartyMon
+ pop bc
+ pop de
+ pop hl
+ ret
+
+; calculates all 5 stats of current mon and writes them to [de]
+CalcStats::
+ ld c, $0
+.statsLoop
+ inc c
+ call CalcStat
+ ld a, [hMultiplicand+1]
+ ld [de], a
+ inc de
+ ld a, [hMultiplicand+2]
+ ld [de], a
+ inc de
+ ld a, c
+ cp NUM_STATS
+ jr nz, .statsLoop
+ ret
+
+; calculates stat c of current mon
+; c: stat to calc (HP=1,Atk=2,Def=3,Spd=4,Spc=5)
+; b: consider stat exp?
+; hl: base ptr to stat exp values ([hl + 2*c - 1] and [hl + 2*c])
+CalcStat::
+ push hl
+ push de
+ push bc
+ ld a, b
+ ld d, a
+ push hl
+ ld hl, wMonHeader
+ ld b, $0
+ add hl, bc
+ ld a, [hl] ; read base value of stat
+ ld e, a
+ pop hl
+ push hl
+ sla c
+ ld a, d
+ and a
+ jr z, .statExpDone ; consider stat exp?
+ add hl, bc ; skip to corresponding stat exp value
+.statExpLoop ; calculates ceil(Sqrt(stat exp)) in b
+ xor a
+ ld [hMultiplicand], a
+ ld [hMultiplicand+1], a
+ inc b ; increment current stat exp bonus
+ ld a, b
+ cp $ff
+ jr z, .statExpDone
+ ld [hMultiplicand+2], a
+ ld [hMultiplier], a
+ call Multiply
+ ld a, [hld]
+ ld d, a
+ ld a, [hProduct + 3]
+ sub d
+ ld a, [hli]
+ ld d, a
+ ld a, [hProduct + 2]
+ sbc d ; test if (current stat exp bonus)^2 < stat exp
+ jr c, .statExpLoop
+.statExpDone
+ srl c
+ pop hl
+ push bc
+ ld bc, wPartyMon1DVs - (wPartyMon1HPExp - 1) ; also wEnemyMonDVs - wEnemyMonHP
+ add hl, bc
+ pop bc
+ ld a, c
+ cp $2
+ jr z, .getAttackIV
+ cp $3
+ jr z, .getDefenseIV
+ cp $4
+ jr z, .getSpeedIV
+ cp $5
+ jr z, .getSpecialIV
+.getHpIV
+ push bc
+ ld a, [hl] ; Atk IV
+ swap a
+ and $1
+ sla a
+ sla a
+ sla a
+ ld b, a
+ ld a, [hli] ; Def IV
+ and $1
+ sla a
+ sla a
+ add b
+ ld b, a
+ ld a, [hl] ; Spd IV
+ swap a
+ and $1
+ sla a
+ add b
+ ld b, a
+ ld a, [hl] ; Spc IV
+ and $1
+ add b ; HP IV: LSB of the other 4 IVs
+ pop bc
+ jr .calcStatFromIV
+.getAttackIV
+ ld a, [hl]
+ swap a
+ and $f
+ jr .calcStatFromIV
+.getDefenseIV
+ ld a, [hl]
+ and $f
+ jr .calcStatFromIV
+.getSpeedIV
+ inc hl
+ ld a, [hl]
+ swap a
+ and $f
+ jr .calcStatFromIV
+.getSpecialIV
+ inc hl
+ ld a, [hl]
+ and $f
+.calcStatFromIV
+ ld d, $0
+ add e
+ ld e, a
+ jr nc, .noCarry
+ inc d ; de = Base + IV
+.noCarry
+ sla e
+ rl d ; de = (Base + IV) * 2
+ srl b
+ srl b ; b = ceil(Sqrt(stat exp)) / 4
+ ld a, b
+ add e
+ jr nc, .noCarry2
+ inc d ; de = (Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4
+.noCarry2
+ ld [hMultiplicand+2], a
+ ld a, d
+ ld [hMultiplicand+1], a
+ xor a
+ ld [hMultiplicand], a
+ ld a, [wCurEnemyLVL]
+ ld [hMultiplier], a
+ call Multiply ; ((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level
+ ld a, [hMultiplicand]
+ ld [hDividend], a
+ ld a, [hMultiplicand+1]
+ ld [hDividend+1], a
+ ld a, [hMultiplicand+2]
+ ld [hDividend+2], a
+ ld a, $64
+ ld [hDivisor], a
+ ld a, $3
+ ld b, a
+ call Divide ; (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100
+ ld a, c
+ cp $1
+ ld a, 5 ; + 5 for non-HP stat
+ jr nz, .notHPStat
+ ld a, [wCurEnemyLVL]
+ ld b, a
+ ld a, [hMultiplicand+2]
+ add b
+ ld [hMultiplicand+2], a
+ jr nc, .noCarry3
+ ld a, [hMultiplicand+1]
+ inc a
+ ld [hMultiplicand+1], a ; HP: (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100 + Level
+.noCarry3
+ ld a, 10 ; +10 for HP stat
+.notHPStat
+ ld b, a
+ ld a, [hMultiplicand+2]
+ add b
+ ld [hMultiplicand+2], a
+ jr nc, .noCarry4
+ ld a, [hMultiplicand+1]
+ inc a ; non-HP: (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100 + 5
+ ld [hMultiplicand+1], a ; HP: (((Base + IV) * 2 + ceil(Sqrt(stat exp)) / 4) * Level) / 100 + Level + 10
+.noCarry4
+ ld a, [hMultiplicand+1] ; check for overflow (>999)
+ cp 999 / $100 + 1
+ jr nc, .overflow
+ cp 999 / $100
+ jr c, .noOverflow
+ ld a, [hMultiplicand+2]
+ cp 999 % $100 + 1
+ jr c, .noOverflow
+.overflow
+ ld a, 999 / $100 ; overflow: cap at 999
+ ld [hMultiplicand+1], a
+ ld a, 999 % $100
+ ld [hMultiplicand+2], a
+.noOverflow
+ pop bc
+ pop de
+ pop hl
+ ret
+
+AddEnemyMonToPlayerParty::
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(_AddEnemyMonToPlayerParty)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call _AddEnemyMonToPlayerParty
+ pop bc
+ ld a, b
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+MoveMon::
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(_MoveMon)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call _MoveMon
+ pop bc
+ ld a, b
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
--- /dev/null
+++ b/home/names.asm
@@ -1,0 +1,141 @@
+GetMonName::
+ push hl
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(MonsterNames)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ld a, [wd11e]
+ dec a
+ ld hl, MonsterNames
+ ld c, 10
+ ld b, 0
+ call AddNTimes
+ ld de, wcd6d
+ push de
+ ld bc, 10
+ call CopyData
+ ld hl, wcd6d + 10
+ ld [hl], "@"
+ pop de
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ pop hl
+ ret
+
+GetItemName::
+; given an item ID at [wd11e], store the name of the item into a string
+; starting at wcd6d
+ push hl
+ push bc
+ ld a, [wd11e]
+ cp HM_01 ; is this a TM/HM?
+ jr nc, .Machine
+
+ ld [wd0b5], a
+ ld a, ITEM_NAME
+ ld [wNameListType], a
+ ld a, BANK(ItemNames)
+ ld [wPredefBank], a
+ call GetName
+ jr .Finish
+
+.Machine
+ call GetMachineName
+.Finish
+ ld de, wcd6d ; pointer to where item name is stored in RAM
+ pop bc
+ pop hl
+ ret
+
+GetMachineName::
+; copies the name of the TM/HM in [wd11e] to wcd6d
+ push hl
+ push de
+ push bc
+ ld a, [wd11e]
+ push af
+ cp TM_01 ; is this a TM? [not HM]
+ jr nc, .WriteTM
+; if HM, then write "HM" and add 5 to the item ID, so we can reuse the
+; TM printing code
+ add 5
+ ld [wd11e], a
+ ld hl, HiddenPrefix ; points to "HM"
+ ld bc, 2
+ jr .WriteMachinePrefix
+.WriteTM
+ ld hl, TechnicalPrefix ; points to "TM"
+ ld bc, 2
+.WriteMachinePrefix
+ ld de, wcd6d
+ call CopyData
+
+; now get the machine number and convert it to text
+ ld a, [wd11e]
+ sub TM_01 - 1
+ ld b, "0"
+.FirstDigit
+ sub 10
+ jr c, .SecondDigit
+ inc b
+ jr .FirstDigit
+.SecondDigit
+ add 10
+ push af
+ ld a, b
+ ld [de], a
+ inc de
+ pop af
+ ld b, "0"
+ add b
+ ld [de], a
+ inc de
+ ld a, "@"
+ ld [de], a
+ pop af
+ ld [wd11e], a
+ pop bc
+ pop de
+ pop hl
+ ret
+
+TechnicalPrefix::
+ db "TM"
+HiddenPrefix::
+ db "HM"
+
+; sets carry if item is HM, clears carry if item is not HM
+; Input: a = item ID
+IsItemHM::
+ cp HM_01
+ jr c, .notHM
+ cp TM_01
+ ret
+.notHM
+ and a
+ ret
+
+; sets carry if move is an HM, clears carry if move is not an HM
+; Input: a = move ID
+IsMoveHM::
+ ld hl, HMMoves
+ ld de, 1
+ jp IsInArray
+
+HMMoves::
+INCLUDE "data/moves/hm_moves.asm"
+
+GetMoveName::
+ push hl
+ ld a, MOVE_NAME
+ ld [wNameListType], a
+ ld a, [wd11e]
+ ld [wd0b5], a
+ ld a, BANK(MoveNames)
+ ld [wPredefBank], a
+ call GetName
+ ld de, wcd6d ; pointer to where move name is stored in RAM
+ pop hl
+ ret
--- /dev/null
+++ b/home/names2.asm
@@ -1,0 +1,93 @@
+NamePointers::
+ dw MonsterNames
+ dw MoveNames
+ dw UnusedNames
+ dw ItemNames
+ dw wPartyMonOT ; player's OT names list
+ dw wEnemyMonOT ; enemy's OT names list
+ dw TrainerNames
+
+GetName::
+; arguments:
+; [wd0b5] = which name
+; [wNameListType] = which list
+; [wPredefBank] = bank of list
+;
+; returns pointer to name in de
+ ld a, [wd0b5]
+ ld [wd11e], a
+
+ ; TM names are separate from item names.
+ ; BUG: This applies to all names instead of just items.
+ cp HM_01
+ jp nc, GetMachineName
+
+ ld a, [hLoadedROMBank]
+ push af
+ push hl
+ push bc
+ push de
+ ld a, [wNameListType] ;List3759_entrySelector
+ dec a
+ jr nz, .otherEntries
+ ;1 = MON_NAMES
+ call GetMonName
+ ld hl, NAME_LENGTH
+ add hl, de
+ ld e, l
+ ld d, h
+ jr .gotPtr
+.otherEntries
+ ;2-7 = OTHER ENTRIES
+ ld a, [wPredefBank]
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ld a, [wNameListType] ;VariousNames' entryID
+ dec a
+ add a
+ ld d, 0
+ ld e, a
+ jr nc, .skip
+ inc d
+.skip
+ ld hl, NamePointers
+ add hl, de
+ ld a, [hli]
+ ld [hSwapTemp + 1], a
+ ld a, [hl]
+ ld [hSwapTemp], a
+ ld a, [hSwapTemp]
+ ld h, a
+ ld a, [hSwapTemp + 1]
+ ld l, a
+ ld a, [wd0b5]
+ ld b, a
+ ld c, 0
+.nextName
+ ld d, h
+ ld e, l
+.nextChar
+ ld a, [hli]
+ cp "@"
+ jr nz, .nextChar
+ inc c ;entry counter
+ ld a, b ;wanted entry
+ cp c
+ jr nz, .nextName
+ ld h, d
+ ld l, e
+ ld de, wcd6d
+ ld bc, $14
+ call CopyData
+.gotPtr
+ ld a, e
+ ld [wUnusedCF8D], a
+ ld a, d
+ ld [wUnusedCF8D + 1], a
+ pop de
+ pop bc
+ pop hl
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
--- a/home/overworld.asm
+++ b/home/overworld.asm
@@ -88,7 +88,7 @@
call IsPlayerCharacterBeingControlledByGame
jr nz, .checkForOpponent
call CheckForHiddenObjectOrBookshelfOrCardKeyDoor
- ld a, [$ffeb]
+ ld a, [hFoundHiddenObjectOrBookshelf]
and a
jp z, OverworldLoop ; jump if a hidden object or bookshelf was found, but not if a card key door was found
call IsSpriteOrSignInFrontOfPlayer
@@ -762,8 +762,8 @@
call StopMusic
ld hl, wd72e
res 5, [hl]
- ld a, Bank(ResetStatusAndHalveMoneyOnBlackout) ; also Bank(SpecialWarpIn) and Bank(SpecialEnterMap)
- ld [H_LOADEDROMBANK], a
+ ld a, BANK(ResetStatusAndHalveMoneyOnBlackout) ; also BANK(SpecialWarpIn) and BANK(SpecialEnterMap)
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call ResetStatusAndHalveMoneyOnBlackout
call SpecialWarpIn
@@ -772,7 +772,7 @@
StopMusic::
ld [wAudioFadeOutControl], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
.wait
@@ -793,8 +793,8 @@
set 2, [hl] ; fly warp or dungeon warp
res 5, [hl] ; forced to ride bike
call LeaveMapAnim
- ld a, Bank(SpecialWarpIn)
- ld [H_LOADEDROMBANK], a
+ ld a, BANK(SpecialWarpIn)
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call SpecialWarpIn
jp SpecialEnterMap
@@ -867,7 +867,7 @@
scf
ret
-INCLUDE "data/bike_riding_tilesets.asm"
+INCLUDE "data/tilesets/bike_riding_tilesets.asm"
; load the tile pattern data of the current tileset into VRAM
LoadTilesetTilePatternData::
@@ -1372,10 +1372,10 @@
; this builds a tile map from the tile block map based on the current X/Y coordinates of the player's character
LoadCurrentMapView::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [wTilesetBank] ; tile data ROM bank
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a ; switch to ROM bank that contains tile data
ld a, [wCurrentTileBlockMapViewPointer] ; address of upper left corner of current map view
ld e, a
@@ -1424,18 +1424,18 @@
dec b
jr nz, .rowLoop
ld hl, wTileMapBackup
- ld bc, $0000
+ ld bc, $0
.adjustForYCoordWithinTileBlock
ld a, [wYBlockCoord]
and a
jr z, .adjustForXCoordWithinTileBlock
- ld bc, $0030
+ ld bc, $30
add hl, bc
.adjustForXCoordWithinTileBlock
ld a, [wXBlockCoord]
and a
jr z, .copyToVisibleAreaBuffer
- ld bc, $0002
+ ld bc, $2
add hl, bc
.copyToVisibleAreaBuffer
coord de, 0, 0 ; base address for the tiles that are directly transferred to VRAM during V-blank
@@ -1457,7 +1457,7 @@
dec b
jr nz, .rowLoop2
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a ; restore previous ROM bank
ret
@@ -1739,7 +1739,7 @@
ld l, a
ld a, [wMapViewVRAMPointer + 1]
ld h, a
- ld bc, $0200
+ ld bc, $200
add hl, bc
ld a, h
and $03
@@ -1835,7 +1835,7 @@
ld a, [de]
ld [hl], a
inc de
- ld bc, $0015
+ ld bc, $15
add hl, bc
pop bc
dec c
@@ -2180,7 +2180,7 @@
jr nz, .zeroSpriteDataLoop
; initialize all C100-C1FF sprite entries to disabled (other than player's)
ld hl, wSpriteStateData1 + $12
- ld de, $0010
+ ld de, $10
ld c, $0f
.disableSpriteEntriesLoop
ld [hl], $ff
@@ -2291,10 +2291,10 @@
ld a, [wCurMap]
ld c, a
ld b, $00
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, BANK(MapSongBanks)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld hl, MapSongBanks
add hl, bc
@@ -2304,7 +2304,7 @@
ld a, [hl]
ld [wMapMusicROMBank], a ; music 2
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -2322,7 +2322,7 @@
; function to load map data
LoadMapData::
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
call DisableLCD
ld a, $98
@@ -2377,7 +2377,7 @@
call PlayDefaultMusicFadeOutCurrent
.restoreRomBank
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
@@ -2388,15 +2388,15 @@
push bc
ld c, a
ld b, $00
- ld a, Bank(MapHeaderBanks)
+ ld a, BANK(MapHeaderBanks)
call BankswitchHome ; switch to ROM bank 3
ld hl, MapHeaderBanks
add hl, bc
ld a, [hl]
- ld [$ffe8], a ; save map ROM bank
+ ld [hMapROMBank], a ; save map ROM bank
call BankswitchBack
- ld a, [$ffe8]
- ld [H_LOADEDROMBANK], a
+ ld a, [hMapROMBank]
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a ; switch to map ROM bank
pop bc
pop hl
--- /dev/null
+++ b/home/overworld_text.asm
@@ -1,0 +1,31 @@
+TextScriptEndingChar::
+ db "@"
+
+TextScriptEnd::
+ ld hl, TextScriptEndingChar
+ ret
+
+ExclamationText::
+ TX_FAR _ExclamationText
+ db "@"
+
+GroundRoseText::
+ TX_FAR _GroundRoseText
+ db "@"
+
+BoulderText::
+ TX_FAR _BoulderText
+ db "@"
+
+MartSignText::
+ TX_FAR _MartSignText
+ db "@"
+
+PokeCenterSignText::
+ TX_FAR _PokeCenterSignText
+ db "@"
+
+PickUpItemText::
+ TX_ASM
+ predef PickUpItem
+ jp TextScriptEnd
--- a/home/pic.asm
+++ /dev/null
@@ -1,591 +1,0 @@
-; bankswitches and runs _UncompressSpriteData
-; bank is given in a, sprite input stream is pointed to in wSpriteInputPtr
-UncompressSpriteData::
- ld b, a
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, b
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ld a, SRAM_ENABLE
- ld [MBC1SRamEnable], a
- xor a
- ld [MBC1SRamBank], a
- call _UncompressSpriteData
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- ret
-
-; initializes necessary data to load a sprite and runs UncompressSpriteDataLoop
-_UncompressSpriteData::
- ld hl, sSpriteBuffer1
- ld c, (2*SPRITEBUFFERSIZE) % $100
- ld b, (2*SPRITEBUFFERSIZE) / $100
- xor a
- call FillMemory ; clear sprite buffer 1 and 2
- ld a, $1
- ld [wSpriteInputBitCounter], a
- ld a, $3
- ld [wSpriteOutputBitOffset], a
- xor a
- ld [wSpriteCurPosX], a
- ld [wSpriteCurPosY], a
- ld [wSpriteLoadFlags], a
- call ReadNextInputByte ; first byte of input determines sprite width (high nybble) and height (low nybble) in tiles (8x8 pixels)
- ld b, a
- and $f
- add a
- add a
- add a
- ld [wSpriteHeight], a
- ld a, b
- swap a
- and $f
- add a
- add a
- add a
- ld [wSpriteWidth], a
- call ReadNextInputBit
- ld [wSpriteLoadFlags], a ; initialite bit1 to 0 and bit0 to the first input bit
- ; this will load two chunks of data to sSpriteBuffer1 and sSpriteBuffer2
- ; bit 0 decides in which one the first chunk is placed
- ; fall through
-
-; uncompresses a chunk from the sprite input data stream (pointed to at wd0da) into sSpriteBuffer1 or sSpriteBuffer2
-; each chunk is a 1bpp sprite. A 2bpp sprite consist of two chunks which are merged afterwards
-; note that this is an endless loop which is terminated during a call to MoveToNextBufferPosition by manipulating the stack
-UncompressSpriteDataLoop::
- ld hl, sSpriteBuffer1
- ld a, [wSpriteLoadFlags]
- bit 0, a
- jr z, .useSpriteBuffer1 ; check which buffer to use
- ld hl, sSpriteBuffer2
-.useSpriteBuffer1
- call StoreSpriteOutputPointer
- ld a, [wSpriteLoadFlags]
- bit 1, a
- jr z, .startDecompression ; check if last iteration
- call ReadNextInputBit ; if last chunk, read 1-2 bit unpacking mode
- and a
- jr z, .unpackingMode0 ; 0 -> mode 0
- call ReadNextInputBit ; 1 0 -> mode 1
- inc a ; 1 1 -> mode 2
-.unpackingMode0
- ld [wSpriteUnpackMode], a
-.startDecompression
- call ReadNextInputBit
- and a
- jr z, .readRLEncodedZeros ; if first bit is 0, the input starts with zeroes, otherwise with (non-zero) input
-.readNextInput
- call ReadNextInputBit
- ld c, a
- call ReadNextInputBit
- sla c
- or c ; read next two bits into c
- and a
- jr z, .readRLEncodedZeros ; 00 -> RLEncoded zeroes following
- call WriteSpriteBitsToBuffer ; otherwise write input to output and repeat
- call MoveToNextBufferPosition
- jr .readNextInput
-.readRLEncodedZeros
- ld c, $0 ; number of zeroes it length encoded, the number
-.countConsecutiveOnesLoop ; of consecutive ones determines the number of bits the number has
- call ReadNextInputBit
- and a
- jr z, .countConsecutiveOnesFinished
- inc c
- jr .countConsecutiveOnesLoop
-.countConsecutiveOnesFinished
- ld a, c
- add a
- ld hl, LengthEncodingOffsetList
- add l
- ld l, a
- jr nc, .noCarry
- inc h
-.noCarry
- ld a, [hli] ; read offset that is added to the number later on
- ld e, a ; adding an offset of 2^length - 1 makes every integer uniquely
- ld d, [hl] ; representable in the length encoding and saves bits
- push de
- inc c
- ld e, $0
- ld d, e
-.readNumberOfZerosLoop ; reads the next c+1 bits of input
- call ReadNextInputBit
- or e
- ld e, a
- dec c
- jr z, .readNumberOfZerosDone
- sla e
- rl d
- jr .readNumberOfZerosLoop
-.readNumberOfZerosDone
- pop hl ; add the offset
- add hl, de
- ld e, l
- ld d, h
-.writeZerosLoop
- ld b, e
- xor a ; write 00 to buffer
- call WriteSpriteBitsToBuffer
- ld e, b
- call MoveToNextBufferPosition
- dec de
- ld a, d
- and a
- jr nz, .continueLoop
- ld a, e
- and a
-.continueLoop
- jr nz, .writeZerosLoop
- jr .readNextInput
-
-; moves output pointer to next position
-; also cancels the calling function if the all output is done (by removing the return pointer from stack)
-; and calls postprocessing functions according to the unpack mode
-MoveToNextBufferPosition::
- ld a, [wSpriteHeight]
- ld b, a
- ld a, [wSpriteCurPosY]
- inc a
- cp b
- jr z, .curColumnDone
- ld [wSpriteCurPosY], a
- ld a, [wSpriteOutputPtr]
- inc a
- ld [wSpriteOutputPtr], a
- ret nz
- ld a, [wSpriteOutputPtr+1]
- inc a
- ld [wSpriteOutputPtr+1], a
- ret
-.curColumnDone
- xor a
- ld [wSpriteCurPosY], a
- ld a, [wSpriteOutputBitOffset]
- and a
- jr z, .bitOffsetsDone
- dec a
- ld [wSpriteOutputBitOffset], a
- ld hl, wSpriteOutputPtrCached
- ld a, [hli]
- ld [wSpriteOutputPtr], a
- ld a, [hl]
- ld [wSpriteOutputPtr+1], a
- ret
-.bitOffsetsDone
- ld a, $3
- ld [wSpriteOutputBitOffset], a
- ld a, [wSpriteCurPosX]
- add $8
- ld [wSpriteCurPosX], a
- ld b, a
- ld a, [wSpriteWidth]
- cp b
- jr z, .allColumnsDone
- ld a, [wSpriteOutputPtr]
- ld l, a
- ld a, [wSpriteOutputPtr+1]
- ld h, a
- inc hl
- jp StoreSpriteOutputPointer
-.allColumnsDone
- pop hl
- xor a
- ld [wSpriteCurPosX], a
- ld a, [wSpriteLoadFlags]
- bit 1, a
- jr nz, .done ; test if there is one more sprite to go
- xor $1
- set 1, a
- ld [wSpriteLoadFlags], a
- jp UncompressSpriteDataLoop
-.done
- jp UnpackSprite
-
-; writes 2 bits (from a) to the output buffer (pointed to from wSpriteOutputPtr)
-WriteSpriteBitsToBuffer::
- ld e, a
- ld a, [wSpriteOutputBitOffset]
- and a
- jr z, .offset0
- cp $2
- jr c, .offset1
- jr z, .offset2
- rrc e ; offset 3
- rrc e
- jr .offset0
-.offset1
- sla e
- sla e
- jr .offset0
-.offset2
- swap e
-.offset0
- ld a, [wSpriteOutputPtr]
- ld l, a
- ld a, [wSpriteOutputPtr+1]
- ld h, a
- ld a, [hl]
- or e
- ld [hl], a
- ret
-
-; reads next bit from input stream and returns it in a
-ReadNextInputBit::
- ld a, [wSpriteInputBitCounter]
- dec a
- jr nz, .curByteHasMoreBitsToRead
- call ReadNextInputByte
- ld [wSpriteInputCurByte], a
- ld a, $8
-.curByteHasMoreBitsToRead
- ld [wSpriteInputBitCounter], a
- ld a, [wSpriteInputCurByte]
- rlca
- ld [wSpriteInputCurByte], a
- and $1
- ret
-
-; reads next byte from input stream and returns it in a
-ReadNextInputByte::
- ld a, [wSpriteInputPtr]
- ld l, a
- ld a, [wSpriteInputPtr+1]
- ld h, a
- ld a, [hli]
- ld b, a
- ld a, l
- ld [wSpriteInputPtr], a
- ld a, h
- ld [wSpriteInputPtr+1], a
- ld a, b
- ret
-
-; the nth item is 2^n - 1
-LengthEncodingOffsetList::
- dw %0000000000000001
- dw %0000000000000011
- dw %0000000000000111
- dw %0000000000001111
- dw %0000000000011111
- dw %0000000000111111
- dw %0000000001111111
- dw %0000000011111111
- dw %0000000111111111
- dw %0000001111111111
- dw %0000011111111111
- dw %0000111111111111
- dw %0001111111111111
- dw %0011111111111111
- dw %0111111111111111
- dw %1111111111111111
-
-; unpacks the sprite data depending on the unpack mode
-UnpackSprite::
- ld a, [wSpriteUnpackMode]
- cp $2
- jp z, UnpackSpriteMode2
- and a
- jp nz, XorSpriteChunks
- ld hl, sSpriteBuffer1
- call SpriteDifferentialDecode
- ld hl, sSpriteBuffer2
- ; fall through
-
-; decodes differential encoded sprite data
-; input bit value 0 preserves the current bit value and input bit value 1 toggles it (starting from initial value 0).
-SpriteDifferentialDecode::
- xor a
- ld [wSpriteCurPosX], a
- ld [wSpriteCurPosY], a
- call StoreSpriteOutputPointer
- ld a, [wSpriteFlipped]
- and a
- jr z, .notFlipped
- ld hl, DecodeNybble0TableFlipped
- ld de, DecodeNybble1TableFlipped
- jr .storeDecodeTablesPointers
-.notFlipped
- ld hl, DecodeNybble0Table
- ld de, DecodeNybble1Table
-.storeDecodeTablesPointers
- ld a, l
- ld [wSpriteDecodeTable0Ptr], a
- ld a, h
- ld [wSpriteDecodeTable0Ptr+1], a
- ld a, e
- ld [wSpriteDecodeTable1Ptr], a
- ld a, d
- ld [wSpriteDecodeTable1Ptr+1], a
- ld e, $0 ; last decoded nybble, initialized to 0
-.decodeNextByteLoop
- ld a, [wSpriteOutputPtr]
- ld l, a
- ld a, [wSpriteOutputPtr+1]
- ld h, a
- ld a, [hl]
- ld b, a
- swap a
- and $f
- call DifferentialDecodeNybble ; decode high nybble
- swap a
- ld d, a
- ld a, b
- and $f
- call DifferentialDecodeNybble ; decode low nybble
- or d
- ld b, a
- ld a, [wSpriteOutputPtr]
- ld l, a
- ld a, [wSpriteOutputPtr+1]
- ld h, a
- ld a, b
- ld [hl], a ; write back decoded data
- ld a, [wSpriteHeight]
- add l ; move on to next column
- jr nc, .noCarry
- inc h
-.noCarry
- ld [wSpriteOutputPtr], a
- ld a, h
- ld [wSpriteOutputPtr+1], a
- ld a, [wSpriteCurPosX]
- add $8
- ld [wSpriteCurPosX], a
- ld b, a
- ld a, [wSpriteWidth]
- cp b
- jr nz, .decodeNextByteLoop ; test if current row is done
- xor a
- ld e, a
- ld [wSpriteCurPosX], a
- ld a, [wSpriteCurPosY] ; move on to next row
- inc a
- ld [wSpriteCurPosY], a
- ld b, a
- ld a, [wSpriteHeight]
- cp b
- jr z, .done ; test if all rows finished
- ld a, [wSpriteOutputPtrCached]
- ld l, a
- ld a, [wSpriteOutputPtrCached+1]
- ld h, a
- inc hl
- call StoreSpriteOutputPointer
- jr .decodeNextByteLoop
-.done
- xor a
- ld [wSpriteCurPosY], a
- ret
-
-; decodes the nybble stored in a. Last decoded data is assumed to be in e (needed to determine if initial value is 0 or 1)
-DifferentialDecodeNybble::
- srl a ; c=a%2, a/=2
- ld c, $0
- jr nc, .evenNumber
- ld c, $1
-.evenNumber
- ld l, a
- ld a, [wSpriteFlipped]
- and a
- jr z, .notFlipped ; determine if initial value is 0 or one
- bit 3, e ; if flipped, consider MSB of last data
- jr .selectLookupTable
-.notFlipped
- bit 0, e ; else consider LSB
-.selectLookupTable
- ld e, l
- jr nz, .initialValue1 ; load the appropriate table
- ld a, [wSpriteDecodeTable0Ptr]
- ld l, a
- ld a, [wSpriteDecodeTable0Ptr+1]
- jr .tableLookup
-.initialValue1
- ld a, [wSpriteDecodeTable1Ptr]
- ld l, a
- ld a, [wSpriteDecodeTable1Ptr+1]
-.tableLookup
- ld h, a
- ld a, e
- add l
- ld l, a
- jr nc, .noCarry
- inc h
-.noCarry
- ld a, [hl]
- bit 0, c
- jr nz, .selectLowNybble
- swap a ; select high nybble
-.selectLowNybble
- and $f
- ld e, a ; update last decoded data
- ret
-
-DecodeNybble0Table::
- dn $0, $1
- dn $3, $2
- dn $7, $6
- dn $4, $5
- dn $f, $e
- dn $c, $d
- dn $8, $9
- dn $b, $a
-DecodeNybble1Table::
- dn $f, $e
- dn $c, $d
- dn $8, $9
- dn $b, $a
- dn $0, $1
- dn $3, $2
- dn $7, $6
- dn $4, $5
-DecodeNybble0TableFlipped::
- dn $0, $8
- dn $c, $4
- dn $e, $6
- dn $2, $a
- dn $f, $7
- dn $3, $b
- dn $1, $9
- dn $d, $5
-DecodeNybble1TableFlipped::
- dn $f, $7
- dn $3, $b
- dn $1, $9
- dn $d, $5
- dn $0, $8
- dn $c, $4
- dn $e, $6
- dn $2, $a
-
-; combines the two loaded chunks with xor (the chunk loaded second is the destination). The source chunk is differeintial decoded beforehand.
-XorSpriteChunks::
- xor a
- ld [wSpriteCurPosX], a
- ld [wSpriteCurPosY], a
- call ResetSpriteBufferPointers
- ld a, [wSpriteOutputPtr] ; points to buffer 1 or 2, depending on flags
- ld l, a
- ld a, [wSpriteOutputPtr+1]
- ld h, a
- call SpriteDifferentialDecode ; decode buffer 1 or 2, depending on flags
- call ResetSpriteBufferPointers
- ld a, [wSpriteOutputPtr] ; source buffer, points to buffer 1 or 2, depending on flags
- ld l, a
- ld a, [wSpriteOutputPtr+1]
- ld h, a
- ld a, [wSpriteOutputPtrCached] ; destination buffer, points to buffer 2 or 1, depending on flags
- ld e, a
- ld a, [wSpriteOutputPtrCached+1]
- ld d, a
-.xorChunksLoop
- ld a, [wSpriteFlipped]
- and a
- jr z, .notFlipped
- push de
- ld a, [de]
- ld b, a
- swap a
- and $f
- call ReverseNybble ; if flipped reverse the nybbles in the destination buffer
- swap a
- ld c, a
- ld a, b
- and $f
- call ReverseNybble
- or c
- pop de
- ld [de], a
-.notFlipped
- ld a, [hli]
- ld b, a
- ld a, [de]
- xor b
- ld [de], a
- inc de
- ld a, [wSpriteCurPosY]
- inc a
- ld [wSpriteCurPosY], a ; go to next row
- ld b, a
- ld a, [wSpriteHeight]
- cp b
- jr nz, .xorChunksLoop ; test if column finished
- xor a
- ld [wSpriteCurPosY], a
- ld a, [wSpriteCurPosX]
- add $8
- ld [wSpriteCurPosX], a ; go to next column
- ld b, a
- ld a, [wSpriteWidth]
- cp b
- jr nz, .xorChunksLoop ; test if all columns finished
- xor a
- ld [wSpriteCurPosX], a
- ret
-
-; reverses the bits in the nybble given in register a
-ReverseNybble::
- ld de, NybbleReverseTable
- add e
- ld e, a
- jr nc, .noCarry
- inc d
-.noCarry
- ld a, [de]
- ret
-
-; resets sprite buffer pointers to buffer 1 and 2, depending on wSpriteLoadFlags
-ResetSpriteBufferPointers::
- ld a, [wSpriteLoadFlags]
- bit 0, a
- jr nz, .buffer2Selected
- ld de, sSpriteBuffer1
- ld hl, sSpriteBuffer2
- jr .storeBufferPointers
-.buffer2Selected
- ld de, sSpriteBuffer2
- ld hl, sSpriteBuffer1
-.storeBufferPointers
- ld a, l
- ld [wSpriteOutputPtr], a
- ld a, h
- ld [wSpriteOutputPtr+1], a
- ld a, e
- ld [wSpriteOutputPtrCached], a
- ld a, d
- ld [wSpriteOutputPtrCached+1], a
- ret
-
-; maps each nybble to its reverse
-NybbleReverseTable::
- db $0, $8, $4, $c, $2, $a, $6 ,$e, $1, $9, $5, $d, $3, $b, $7 ,$f
-
-; combines the two loaded chunks with xor (the chunk loaded second is the destination). Both chunks are differeintial decoded beforehand.
-UnpackSpriteMode2::
- call ResetSpriteBufferPointers
- ld a, [wSpriteFlipped]
- push af
- xor a
- ld [wSpriteFlipped], a ; temporarily clear flipped flag for decoding the destination chunk
- ld a, [wSpriteOutputPtrCached]
- ld l, a
- ld a, [wSpriteOutputPtrCached+1]
- ld h, a
- call SpriteDifferentialDecode
- call ResetSpriteBufferPointers
- pop af
- ld [wSpriteFlipped], a
- jp XorSpriteChunks
-
-; stores hl into the output pointers
-StoreSpriteOutputPointer::
- ld a, l
- ld [wSpriteOutputPtr], a
- ld [wSpriteOutputPtrCached], a
- ld a, h
- ld [wSpriteOutputPtr+1], a
- ld [wSpriteOutputPtrCached+1], a
- ret
--- /dev/null
+++ b/home/pics.asm
@@ -1,0 +1,196 @@
+; uncompresses the front or back sprite of the specified mon
+; assumes the corresponding mon header is already loaded
+; hl contains offset to sprite pointer ($b for front or $d for back)
+UncompressMonSprite::
+ ld bc, wMonHeader
+ add hl, bc
+ ld a, [hli]
+ ld [wSpriteInputPtr], a ; fetch sprite input pointer
+ ld a, [hl]
+ ld [wSpriteInputPtr+1], a
+; define (by index number) the bank that a pokemon's image is in
+; index = Mew, bank 1
+; index = Kabutops fossil, bank $B
+; index < $1F, bank 9
+; $1F ≤ index < $4A, bank $A
+; $4A ≤ index < $74, bank $B
+; $74 ≤ index < $99, bank $C
+; $99 ≤ index, bank $D
+ ld a, [wcf91] ; XXX name for this ram location
+ ld b, a
+ cp MEW
+ ld a, BANK(MewPicFront)
+ jr z, .GotBank
+ ld a, b
+ cp FOSSIL_KABUTOPS
+ ld a, BANK(FossilKabutopsPic)
+ jr z, .GotBank
+ ld a, b
+ cp TANGELA + 1
+ ld a, BANK(TangelaPicFront)
+ jr c, .GotBank
+ ld a, b
+ cp MOLTRES + 1
+ ld a, BANK(MoltresPicFront)
+ jr c, .GotBank
+ ld a, b
+ cp BEEDRILL + 2
+ ld a, BANK(BeedrillPicFront)
+ jr c, .GotBank
+ ld a, b
+ cp STARMIE + 1
+ ld a, BANK(StarmiePicFront)
+ jr c, .GotBank
+ ld a, BANK(VictreebelPicFront)
+.GotBank
+ jp UncompressSpriteData
+
+; de: destination location
+LoadMonFrontSprite::
+ push de
+ ld hl, wMonHFrontSprite - wMonHeader
+ call UncompressMonSprite
+ ld hl, wMonHSpriteDim
+ ld a, [hli]
+ ld c, a
+ pop de
+ ; fall through
+
+; postprocesses uncompressed sprite chunks to a 2bpp sprite and loads it into video ram
+; calculates alignment parameters to place both sprite chunks in the center of the 7*7 tile sprite buffers
+; de: destination location
+; a,c: sprite dimensions (in tiles of 8x8 each)
+LoadUncompressedSpriteData::
+ push de
+ and $f
+ ld [hSpriteWidth], a ; each byte contains 8 pixels (in 1bpp), so tiles=bytes for width
+ ld b, a
+ ld a, $7
+ sub b ; 7-w
+ inc a ; 8-w
+ srl a ; (8-w)/2 ; horizontal center (in tiles, rounded up)
+ ld b, a
+ add a
+ add a
+ add a
+ sub b ; 7*((8-w)/2) ; skip for horizontal center (in tiles)
+ ld [hSpriteOffset], a
+ ld a, c
+ swap a
+ and $f
+ ld b, a
+ add a
+ add a
+ add a ; 8*tiles is height in bytes
+ ld [hSpriteHeight], a
+ ld a, $7
+ sub b ; 7-h ; skip for vertical center (in tiles, relative to current column)
+ ld b, a
+ ld a, [hSpriteOffset]
+ add b ; 7*((8-w)/2) + 7-h ; combined overall offset (in tiles)
+ add a
+ add a
+ add a ; 8*(7*((8-w)/2) + 7-h) ; combined overall offset (in bytes)
+ ld [hSpriteOffset], a
+ xor a
+ ld [MBC1SRamBank], a
+ ld hl, sSpriteBuffer0
+ call ZeroSpriteBuffer ; zero buffer 0
+ ld de, sSpriteBuffer1
+ ld hl, sSpriteBuffer0
+ call AlignSpriteDataCentered ; copy and align buffer 1 to 0 (containing the MSB of the 2bpp sprite)
+ ld hl, sSpriteBuffer1
+ call ZeroSpriteBuffer ; zero buffer 1
+ ld de, sSpriteBuffer2
+ ld hl, sSpriteBuffer1
+ call AlignSpriteDataCentered ; copy and align buffer 2 to 1 (containing the LSB of the 2bpp sprite)
+ pop de
+ jp InterlaceMergeSpriteBuffers
+
+; copies and aligns the sprite data properly inside the sprite buffer
+; sprite buffers are 7*7 tiles in size, the loaded sprite is centered within this area
+AlignSpriteDataCentered::
+ ld a, [hSpriteOffset]
+ ld b, $0
+ ld c, a
+ add hl, bc
+ ld a, [hSpriteWidth]
+.columnLoop
+ push af
+ push hl
+ ld a, [hSpriteHeight]
+ ld c, a
+.columnInnerLoop
+ ld a, [de]
+ inc de
+ ld [hli], a
+ dec c
+ jr nz, .columnInnerLoop
+ pop hl
+ ld bc, 7*8 ; 7 tiles
+ add hl, bc ; advance one full column
+ pop af
+ dec a
+ jr nz, .columnLoop
+ ret
+
+; fills the sprite buffer (pointed to in hl) with zeros
+ZeroSpriteBuffer::
+ ld bc, SPRITEBUFFERSIZE
+.nextByteLoop
+ xor a
+ ld [hli], a
+ dec bc
+ ld a, b
+ or c
+ jr nz, .nextByteLoop
+ ret
+
+; combines the (7*7 tiles, 1bpp) sprite chunks in buffer 0 and 1 into a 2bpp sprite located in buffer 1 through 2
+; in the resulting sprite, the rows of the two source sprites are interlaced
+; de: output address
+InterlaceMergeSpriteBuffers::
+ xor a
+ ld [MBC1SRamBank], a
+ push de
+ ld hl, sSpriteBuffer2 + (SPRITEBUFFERSIZE - 1) ; destination: end of buffer 2
+ ld de, sSpriteBuffer1 + (SPRITEBUFFERSIZE - 1) ; source 2: end of buffer 1
+ ld bc, sSpriteBuffer0 + (SPRITEBUFFERSIZE - 1) ; source 1: end of buffer 0
+ ld a, SPRITEBUFFERSIZE/2 ; $c4
+ ld [hSpriteInterlaceCounter], a
+.interlaceLoop
+ ld a, [de]
+ dec de
+ ld [hld], a ; write byte of source 2
+ ld a, [bc]
+ dec bc
+ ld [hld], a ; write byte of source 1
+ ld a, [de]
+ dec de
+ ld [hld], a ; write byte of source 2
+ ld a, [bc]
+ dec bc
+ ld [hld], a ; write byte of source 1
+ ld a, [hSpriteInterlaceCounter]
+ dec a
+ ld [hSpriteInterlaceCounter], a
+ jr nz, .interlaceLoop
+ ld a, [wSpriteFlipped]
+ and a
+ jr z, .notFlipped
+ ld bc, 2*SPRITEBUFFERSIZE
+ ld hl, sSpriteBuffer1
+.swapLoop
+ swap [hl] ; if flipped swap nybbles in all bytes
+ inc hl
+ dec bc
+ ld a, b
+ or c
+ jr nz, .swapLoop
+.notFlipped
+ pop hl
+ ld de, sSpriteBuffer1
+ ld c, (2*SPRITEBUFFERSIZE)/16 ; $31, number of 16 byte chunks to be copied
+ ld a, [hLoadedROMBank]
+ ld b, a
+ jp CopyVideoData
--- /dev/null
+++ b/home/pokemon.asm
@@ -1,0 +1,464 @@
+DrawHPBar::
+; Draw an HP bar d tiles long, and fill it to e pixels.
+; If c is nonzero, show at least a sliver regardless.
+; The right end of the bar changes with [wHPBarType].
+
+ push hl
+ push de
+ push bc
+
+ ; Left
+ ld a, $71 ; "HP:"
+ ld [hli], a
+ ld a, $62
+ ld [hli], a
+
+ push hl
+
+ ; Middle
+ ld a, $63 ; empty
+.draw
+ ld [hli], a
+ dec d
+ jr nz, .draw
+
+ ; Right
+ ld a, [wHPBarType]
+ dec a
+ ld a, $6d ; status screen and battle
+ jr z, .ok
+ dec a ; pokemon menu
+.ok
+ ld [hl], a
+
+ pop hl
+
+ ld a, e
+ and a
+ jr nz, .fill
+
+ ; If c is nonzero, draw a pixel anyway.
+ ld a, c
+ and a
+ jr z, .done
+ ld e, 1
+
+.fill
+ ld a, e
+ sub 8
+ jr c, .partial
+ ld e, a
+ ld a, $6b ; full
+ ld [hli], a
+ ld a, e
+ and a
+ jr z, .done
+ jr .fill
+
+.partial
+ ; Fill remaining pixels at the end if necessary.
+ ld a, $63 ; empty
+ add e
+ ld [hl], a
+.done
+ pop bc
+ pop de
+ pop hl
+ ret
+
+
+; loads pokemon data from one of multiple sources to wLoadedMon
+; loads base stats to wMonHeader
+; INPUT:
+; [wWhichPokemon] = index of pokemon within party/box
+; [wMonDataLocation] = source
+; 00: player's party
+; 01: enemy's party
+; 02: current box
+; 03: daycare
+; OUTPUT:
+; [wcf91] = pokemon ID
+; wLoadedMon = base address of pokemon data
+; wMonHeader = base address of base stats
+LoadMonData::
+ jpab LoadMonData_
+
+OverwritewMoves::
+; Write c to [wMoves + b]. Unused.
+ ld hl, wMoves
+ ld e, b
+ ld d, 0
+ add hl, de
+ ld a, c
+ ld [hl], a
+ ret
+
+LoadFlippedFrontSpriteByMonIndex::
+ ld a, 1
+ ld [wSpriteFlipped], a
+
+LoadFrontSpriteByMonIndex::
+ push hl
+ ld a, [wd11e]
+ push af
+ ld a, [wcf91]
+ ld [wd11e], a
+ predef IndexToPokedex
+ ld hl, wd11e
+ ld a, [hl]
+ pop bc
+ ld [hl], b
+ and a
+ pop hl
+ jr z, .invalidDexNumber ; dex #0 invalid
+ cp NUM_POKEMON + 1
+ jr c, .validDexNumber ; dex >#151 invalid
+.invalidDexNumber
+ ld a, RHYDON ; $1
+ ld [wcf91], a
+ ret
+.validDexNumber
+ push hl
+ ld de, vFrontPic
+ call LoadMonFrontSprite
+ pop hl
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(CopyUncompressedPicToHL)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ xor a
+ ld [hStartTileID], a
+ call CopyUncompressedPicToHL
+ xor a
+ ld [wSpriteFlipped], a
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+
+PlayCry::
+; Play monster a's cry.
+ call GetCryData
+ call PlaySound
+ jp WaitForSoundToFinish
+
+GetCryData::
+; Load cry data for monster a.
+ dec a
+ ld c, a
+ ld b, 0
+ ld hl, CryData
+ add hl, bc
+ add hl, bc
+ add hl, bc
+
+ ld a, BANK(CryData)
+ call BankswitchHome
+ ld a, [hli]
+ ld b, a ; cry id
+ ld a, [hli]
+ ld [wFrequencyModifier], a
+ ld a, [hl]
+ ld [wTempoModifier], a
+ call BankswitchBack
+
+ ; Cry headers have 3 channels,
+ ; and start from index CRY_SFX_START,
+ ; so add 3 times the cry id.
+ ld a, b
+ ld c, CRY_SFX_START
+ rlca ; * 2
+ add b
+ add c
+ ret
+
+DisplayPartyMenu::
+ ld a, [hTilesetType]
+ push af
+ xor a
+ ld [hTilesetType], a
+ call GBPalWhiteOutWithDelay3
+ call ClearSprites
+ call PartyMenuInit
+ call DrawPartyMenu
+ jp HandlePartyMenuInput
+
+GoBackToPartyMenu::
+ ld a, [hTilesetType]
+ push af
+ xor a
+ ld [hTilesetType], a
+ call PartyMenuInit
+ call RedrawPartyMenu
+ jp HandlePartyMenuInput
+
+PartyMenuInit::
+ ld a, 1 ; hardcoded bank
+ call BankswitchHome
+ call LoadHpBarAndStatusTilePatterns
+ ld hl, wd730
+ set 6, [hl] ; turn off letter printing delay
+ xor a ; PLAYER_PARTY_DATA
+ ld [wMonDataLocation], a
+ ld [wMenuWatchMovingOutOfBounds], a
+ ld hl, wTopMenuItemY
+ inc a
+ ld [hli], a ; top menu item Y
+ xor a
+ ld [hli], a ; top menu item X
+ ld a, [wPartyAndBillsPCSavedMenuItem]
+ push af
+ ld [hli], a ; current menu item ID
+ inc hl
+ ld a, [wPartyCount]
+ and a ; are there more than 0 pokemon in the party?
+ jr z, .storeMaxMenuItemID
+ dec a
+; if party is not empty, the max menu item ID is ([wPartyCount] - 1)
+; otherwise, it is 0
+.storeMaxMenuItemID
+ ld [hli], a ; max menu item ID
+ ld a, [wForcePlayerToChooseMon]
+ and a
+ ld a, A_BUTTON | B_BUTTON
+ jr z, .next
+ xor a
+ ld [wForcePlayerToChooseMon], a
+ inc a ; a = A_BUTTON
+.next
+ ld [hli], a ; menu watched keys
+ pop af
+ ld [hl], a ; old menu item ID
+ ret
+
+HandlePartyMenuInput::
+ ld a, 1
+ ld [wMenuWrappingEnabled], a
+ ld a, $40
+ ld [wPartyMenuAnimMonEnabled], a
+ call HandleMenuInput_
+ call PlaceUnfilledArrowMenuCursor
+ ld b, a
+ xor a
+ ld [wPartyMenuAnimMonEnabled], a
+ ld a, [wCurrentMenuItem]
+ ld [wPartyAndBillsPCSavedMenuItem], a
+ ld hl, wd730
+ res 6, [hl] ; turn on letter printing delay
+ ld a, [wMenuItemToSwap]
+ and a
+ jp nz, .swappingPokemon
+ pop af
+ ld [hTilesetType], a
+ bit 1, b
+ jr nz, .noPokemonChosen
+ ld a, [wPartyCount]
+ and a
+ jr z, .noPokemonChosen
+ ld a, [wCurrentMenuItem]
+ ld [wWhichPokemon], a
+ ld hl, wPartySpecies
+ ld b, 0
+ ld c, a
+ add hl, bc
+ ld a, [hl]
+ ld [wcf91], a
+ ld [wBattleMonSpecies2], a
+ call BankswitchBack
+ and a
+ ret
+.noPokemonChosen
+ call BankswitchBack
+ scf
+ ret
+.swappingPokemon
+ bit 1, b ; was the B button pressed?
+ jr z, .handleSwap ; if not, handle swapping the pokemon
+.cancelSwap ; if the B button was pressed
+ callba ErasePartyMenuCursors
+ xor a
+ ld [wMenuItemToSwap], a
+ ld [wPartyMenuTypeOrMessageID], a
+ call RedrawPartyMenu
+ jr HandlePartyMenuInput
+.handleSwap
+ ld a, [wCurrentMenuItem]
+ ld [wWhichPokemon], a
+ callba SwitchPartyMon
+ jr HandlePartyMenuInput
+
+DrawPartyMenu::
+ ld hl, DrawPartyMenu_
+ jr DrawPartyMenuCommon
+
+RedrawPartyMenu::
+ ld hl, RedrawPartyMenu_
+
+DrawPartyMenuCommon::
+ ld b, BANK(RedrawPartyMenu_)
+ jp Bankswitch
+
+; prints a pokemon's status condition
+; INPUT:
+; de = address of status condition
+; hl = destination address
+PrintStatusCondition::
+ push de
+ dec de
+ dec de ; de = address of current HP
+ ld a, [de]
+ ld b, a
+ dec de
+ ld a, [de]
+ or b ; is the pokemon's HP zero?
+ pop de
+ jr nz, PrintStatusConditionNotFainted
+; if the pokemon's HP is 0, print "FNT"
+ ld a, "F"
+ ld [hli], a
+ ld a, "N"
+ ld [hli], a
+ ld [hl], "T"
+ and a
+ ret
+
+PrintStatusConditionNotFainted::
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(PrintStatusAilment)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call PrintStatusAilment ; print status condition
+ pop bc
+ ld a, b
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+; function to print pokemon level, leaving off the ":L" if the level is at least 100
+; INPUT:
+; hl = destination address
+; [wLoadedMonLevel] = level
+PrintLevel::
+ ld a, $6e ; ":L" tile ID
+ ld [hli], a
+ ld c, 2 ; number of digits
+ ld a, [wLoadedMonLevel] ; level
+ cp 100
+ jr c, PrintLevelCommon
+; if level at least 100, write over the ":L" tile
+ dec hl
+ inc c ; increment number of digits to 3
+ jr PrintLevelCommon
+
+; prints the level without leaving off ":L" regardless of level
+; INPUT:
+; hl = destination address
+; [wLoadedMonLevel] = level
+PrintLevelFull::
+ ld a, $6e ; ":L" tile ID
+ ld [hli], a
+ ld c, 3 ; number of digits
+ ld a, [wLoadedMonLevel] ; level
+
+PrintLevelCommon::
+ ld [wd11e], a
+ ld de, wd11e
+ ld b, LEFT_ALIGN | 1 ; 1 byte
+ jp PrintNumber
+
+GetwMoves::
+; Unused. Returns the move at index a from wMoves in a
+ ld hl, wMoves
+ ld c, a
+ ld b, 0
+ add hl, bc
+ ld a, [hl]
+ ret
+
+; copies the base stat data of a pokemon to wMonHeader
+; INPUT:
+; [wd0b5] = pokemon ID
+GetMonHeader::
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(BaseStats)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ push bc
+ push de
+ push hl
+ ld a, [wd11e]
+ push af
+ ld a, [wd0b5]
+ ld [wd11e], a
+ ld de, FossilKabutopsPic
+ ld b, $66 ; size of Kabutops fossil and Ghost sprites
+ cp FOSSIL_KABUTOPS ; Kabutops fossil
+ jr z, .specialID
+ ld de, GhostPic
+ cp MON_GHOST ; Ghost
+ jr z, .specialID
+ ld de, FossilAerodactylPic
+ ld b, $77 ; size of Aerodactyl fossil sprite
+ cp FOSSIL_AERODACTYL ; Aerodactyl fossil
+ jr z, .specialID
+ cp MEW
+ jr z, .mew
+ predef IndexToPokedex ; convert pokemon ID in [wd11e] to pokedex number
+ ld a, [wd11e]
+ dec a
+ ld bc, MonBaseStatsEnd - MonBaseStats
+ ld hl, BaseStats
+ call AddNTimes
+ ld de, wMonHeader
+ ld bc, MonBaseStatsEnd - MonBaseStats
+ call CopyData
+ jr .done
+.specialID
+ ld hl, wMonHSpriteDim
+ ld [hl], b ; write sprite dimensions
+ inc hl
+ ld [hl], e ; write front sprite pointer
+ inc hl
+ ld [hl], d
+ jr .done
+.mew
+ ld hl, MewBaseStats
+ ld de, wMonHeader
+ ld bc, MonBaseStatsEnd - MonBaseStats
+ ld a, BANK(MewBaseStats)
+ call FarCopyData
+.done
+ ld a, [wd0b5]
+ ld [wMonHIndex], a
+ pop af
+ ld [wd11e], a
+ pop hl
+ pop de
+ pop bc
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+; copy party pokemon's name to wcd6d
+GetPartyMonName2::
+ ld a, [wWhichPokemon] ; index within party
+ ld hl, wPartyMonNicks
+
+; this is called more often
+GetPartyMonName::
+ push hl
+ push bc
+ call SkipFixedLengthTextEntries ; add NAME_LENGTH to hl, a times
+ ld de, wcd6d
+ push de
+ ld bc, NAME_LENGTH
+ call CopyData
+ pop de
+ pop bc
+ pop hl
+ ret
--- a/home/predef.asm
+++ b/home/predef.asm
@@ -8,18 +8,18 @@
; A hack for LoadDestinationWarpPosition.
; See LoadTilesetHeader (predef $19).
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [wPredefParentBank], a
push af
ld a, BANK(GetPredefPointer)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call GetPredefPointer
ld a, [wPredefBank]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld de, .done
@@ -28,7 +28,7 @@
.done
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ret
--- /dev/null
+++ b/home/predef_text.asm
@@ -1,0 +1,237 @@
+; this function is used to display sign messages, sprite dialog, etc.
+; INPUT: [hSpriteIndexOrTextID] = sprite ID or text ID
+DisplayTextID::
+ ld a, [hLoadedROMBank]
+ push af
+ callba DisplayTextIDInit ; initialization
+ ld hl, wTextPredefFlag
+ bit 0, [hl]
+ res 0, [hl]
+ jr nz, .skipSwitchToMapBank
+ ld a, [wCurMap]
+ call SwitchToMapRomBank
+.skipSwitchToMapBank
+ ld a, 30 ; half a second
+ ld [hFrameCounter], a ; used as joypad poll timer
+ ld hl, wMapTextPtr
+ ld a, [hli]
+ ld h, [hl]
+ ld l, a ; hl = map text pointer
+ ld d, $00
+ ld a, [hSpriteIndexOrTextID] ; text ID
+ ld [wSpriteIndex], a
+ and a
+ jp z, DisplayStartMenu
+ cp TEXT_SAFARI_GAME_OVER
+ jp z, DisplaySafariGameOverText
+ cp TEXT_MON_FAINTED
+ jp z, DisplayPokemonFaintedText
+ cp TEXT_BLACKED_OUT
+ jp z, DisplayPlayerBlackedOutText
+ cp TEXT_REPEL_WORE_OFF
+ jp z, DisplayRepelWoreOffText
+ ld a, [wNumSprites]
+ ld e, a
+ ld a, [hSpriteIndexOrTextID] ; sprite ID
+ cp e
+ jr z, .spriteHandling
+ jr nc, .skipSpriteHandling
+.spriteHandling
+; get the text ID of the sprite
+ push hl
+ push de
+ push bc
+ callba UpdateSpriteFacingOffsetAndDelayMovement ; update the graphics of the sprite the player is talking to (to face the right direction)
+ pop bc
+ pop de
+ ld hl, wMapSpriteData ; NPC text entries
+ ld a, [hSpriteIndexOrTextID]
+ dec a
+ add a
+ add l
+ ld l, a
+ jr nc, .noCarry
+ inc h
+.noCarry
+ inc hl
+ ld a, [hl] ; a = text ID of the sprite
+ pop hl
+.skipSpriteHandling
+; look up the address of the text in the map's text entries
+ dec a
+ ld e, a
+ sla e
+ add hl, de
+ ld a, [hli]
+ ld h, [hl]
+ ld l, a ; hl = address of the text
+ ld a, [hl] ; a = first byte of text
+; check first byte of text for special cases
+ cp $fe ; Pokemart NPC
+ jp z, DisplayPokemartDialogue
+ cp $ff ; Pokemon Center NPC
+ jp z, DisplayPokemonCenterDialogue
+ cp $fc ; Item Storage PC
+ jp z, FuncTX_ItemStoragePC
+ cp $fd ; Bill's PC
+ jp z, FuncTX_BillsPC
+ cp $f9 ; Pokemon Center PC
+ jp z, FuncTX_PokemonCenterPC
+ cp $f5 ; Vending Machine
+ jr nz, .notVendingMachine
+ callba VendingMachineMenu ; jump banks to vending machine routine
+ jr AfterDisplayingTextID
+.notVendingMachine
+ cp $f7 ; prize menu
+ jp z, FuncTX_GameCornerPrizeMenu
+ cp $f6 ; cable connection NPC in Pokemon Center
+ jr nz, .notSpecialCase
+ callab CableClubNPC
+ jr AfterDisplayingTextID
+.notSpecialCase
+ call PrintText_NoCreatingTextBox ; display the text
+ ld a, [wDoNotWaitForButtonPressAfterDisplayingText]
+ and a
+ jr nz, HoldTextDisplayOpen
+
+AfterDisplayingTextID::
+ ld a, [wEnteringCableClub]
+ and a
+ jr nz, HoldTextDisplayOpen
+ call WaitForTextScrollButtonPress ; wait for a button press after displaying all the text
+
+; loop to hold the dialogue box open as long as the player keeps holding down the A button
+HoldTextDisplayOpen::
+ call Joypad
+ ld a, [hJoyHeld]
+ bit 0, a ; is the A button being pressed?
+ jr nz, HoldTextDisplayOpen
+
+CloseTextDisplay::
+ ld a, [wCurMap]
+ call SwitchToMapRomBank
+ ld a, $90
+ ld [hWY], a ; move the window off the screen
+ call DelayFrame
+ call LoadGBPal
+ xor a
+ ld [hAutoBGTransferEnabled], a ; disable continuous WRAM to VRAM transfer each V-blank
+; loop to make sprites face the directions they originally faced before the dialogue
+ ld hl, wSpriteStateData2 + $19
+ ld c, $0f
+ ld de, $10
+.restoreSpriteFacingDirectionLoop
+ ld a, [hl]
+ dec h
+ ld [hl], a
+ inc h
+ add hl, de
+ dec c
+ jr nz, .restoreSpriteFacingDirectionLoop
+ ld a, BANK(InitMapSprites)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call InitMapSprites ; reload sprite tile pattern data (since it was partially overwritten by text tile patterns)
+ ld hl, wFontLoaded
+ res 0, [hl]
+ ld a, [wd732]
+ bit 3, a ; used fly warp
+ call z, LoadPlayerSpriteGraphics
+ call LoadCurrentMapView
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ jp UpdateSprites
+
+DisplayPokemartDialogue::
+ push hl
+ ld hl, PokemartGreetingText
+ call PrintText
+ pop hl
+ inc hl
+ call LoadItemList
+ ld a, PRICEDITEMLISTMENU
+ ld [wListMenuID], a
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(DisplayPokemartDialogue_)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call DisplayPokemartDialogue_
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ jp AfterDisplayingTextID
+
+PokemartGreetingText::
+ TX_FAR _PokemartGreetingText
+ db "@"
+
+LoadItemList::
+ ld a, 1
+ ld [wUpdateSpritesEnabled], a
+ ld a, h
+ ld [wItemListPointer], a
+ ld a, l
+ ld [wItemListPointer + 1], a
+ ld de, wItemList
+.loop
+ ld a, [hli]
+ ld [de], a
+ inc de
+ cp $ff
+ jr nz, .loop
+ ret
+
+DisplayPokemonCenterDialogue::
+; zeroing these doesn't appear to serve any purpose
+ xor a
+ ld [hItemPrice], a
+ ld [hItemPrice + 1], a
+ ld [hItemPrice + 2], a
+
+ inc hl
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(DisplayPokemonCenterDialogue_)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call DisplayPokemonCenterDialogue_
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ jp AfterDisplayingTextID
+
+DisplaySafariGameOverText::
+ callab PrintSafariGameOverText
+ jp AfterDisplayingTextID
+
+DisplayPokemonFaintedText::
+ ld hl, PokemonFaintedText
+ call PrintText
+ jp AfterDisplayingTextID
+
+PokemonFaintedText::
+ TX_FAR _PokemonFaintedText
+ db "@"
+
+DisplayPlayerBlackedOutText::
+ ld hl, PlayerBlackedOutText
+ call PrintText
+ ld a, [wd732]
+ res 5, a ; reset forced to use bike bit
+ ld [wd732], a
+ jp HoldTextDisplayOpen
+
+PlayerBlackedOutText::
+ TX_FAR _PlayerBlackedOutText
+ db "@"
+
+DisplayRepelWoreOffText::
+ ld hl, RepelWoreOffText
+ call PrintText
+ jp AfterDisplayingTextID
+
+RepelWoreOffText::
+ TX_FAR _RepelWoreOffText
+ db "@"
--- /dev/null
+++ b/home/print_bcd.asm
@@ -1,0 +1,77 @@
+; function to print a BCD (Binary-coded decimal) number
+; de = address of BCD number
+; hl = destination address
+; c = flags and length
+; bit 7: if set, do not print leading zeroes
+; if unset, print leading zeroes
+; bit 6: if set, left-align the string (do not pad empty digits with spaces)
+; if unset, right-align the string
+; bit 5: if set, print currency symbol at the beginning of the string
+; if unset, do not print the currency symbol
+; bits 0-4: length of BCD number in bytes
+; Note that bits 5 and 7 are modified during execution. The above reflects
+; their meaning at the beginning of the functions's execution.
+PrintBCDNumber::
+ ld b, c ; save flags in b
+ res 7, c
+ res 6, c
+ res 5, c ; c now holds the length
+ bit 5, b
+ jr z, .loop
+ bit 7, b
+ jr nz, .loop
+ ld [hl], "¥"
+ inc hl
+.loop
+ ld a, [de]
+ swap a
+ call PrintBCDDigit ; print upper digit
+ ld a, [de]
+ call PrintBCDDigit ; print lower digit
+ inc de
+ dec c
+ jr nz, .loop
+ bit 7, b ; were any non-zero digits printed?
+ jr z, .done ; if so, we are done
+.numberEqualsZero ; if every digit of the BCD number is zero
+ bit 6, b ; left or right alignment?
+ jr nz, .skipRightAlignmentAdjustment
+ dec hl ; if the string is right-aligned, it needs to be moved back one space
+.skipRightAlignmentAdjustment
+ bit 5, b
+ jr z, .skipCurrencySymbol
+ ld [hl], "¥"
+ inc hl
+.skipCurrencySymbol
+ ld [hl], "0"
+ call PrintLetterDelay
+ inc hl
+.done
+ ret
+
+PrintBCDDigit::
+ and $f
+ and a
+ jr z, .zeroDigit
+.nonzeroDigit
+ bit 7, b ; have any non-space characters been printed?
+ jr z, .outputDigit
+; if bit 7 is set, then no numbers have been printed yet
+ bit 5, b ; print the currency symbol?
+ jr z, .skipCurrencySymbol
+ ld [hl], "¥"
+ inc hl
+ res 5, b
+.skipCurrencySymbol
+ res 7, b ; unset 7 to indicate that a nonzero digit has been reached
+.outputDigit
+ add "0"
+ ld [hli], a
+ jp PrintLetterDelay
+.zeroDigit
+ bit 7, b ; either printing leading zeroes or already reached a nonzero digit?
+ jr z, .outputDigit ; if so, print a zero digit
+ bit 6, b ; left or right alignment?
+ ret nz
+ inc hl ; if right-aligned, "print" a space by advancing the pointer
+ ret
--- /dev/null
+++ b/home/print_num.asm
@@ -1,0 +1,217 @@
+PrintNumber::
+; Print the c-digit, b-byte value at de.
+; Allows 2 to 7 digits. For 1-digit numbers, add
+; the value to char "0" instead of calling PrintNumber.
+; Flags LEADING_ZEROES and LEFT_ALIGN can be given
+; in bits 7 and 6 of b respectively.
+ push bc
+ xor a
+ ld [hPastLeadingZeros], a
+ ld [hNumToPrint], a
+ ld [hNumToPrint + 1], a
+ ld a, b
+ and $f
+ cp 1
+ jr z, .byte
+ cp 2
+ jr z, .word
+.long
+ ld a, [de]
+ ld [hNumToPrint], a
+ inc de
+ ld a, [de]
+ ld [hNumToPrint + 1], a
+ inc de
+ ld a, [de]
+ ld [hNumToPrint + 2], a
+ jr .start
+
+.word
+ ld a, [de]
+ ld [hNumToPrint + 1], a
+ inc de
+ ld a, [de]
+ ld [hNumToPrint + 2], a
+ jr .start
+
+.byte
+ ld a, [de]
+ ld [hNumToPrint + 2], a
+
+.start
+ push de
+
+ ld d, b
+ ld a, c
+ ld b, a
+ xor a
+ ld c, a
+ ld a, b
+
+ cp 2
+ jr z, .tens
+ cp 3
+ jr z, .hundreds
+ cp 4
+ jr z, .thousands
+ cp 5
+ jr z, .ten_thousands
+ cp 6
+ jr z, .hundred_thousands
+
+print_digit: macro
+
+if (\1) / $10000
+ ld a, \1 / $10000 % $100
+else xor a
+endc
+ ld [hPowerOf10 + 0], a
+
+if (\1) / $100
+ ld a, \1 / $100 % $100
+else xor a
+endc
+ ld [hPowerOf10 + 1], a
+
+ ld a, \1 / $1 % $100
+ ld [hPowerOf10 + 2], a
+
+ call .PrintDigit
+ call .NextDigit
+endm
+
+.millions print_digit 1000000
+.hundred_thousands print_digit 100000
+.ten_thousands print_digit 10000
+.thousands print_digit 1000
+.hundreds print_digit 100
+
+.tens
+ ld c, 0
+ ld a, [hNumToPrint + 2]
+.mod
+ cp 10
+ jr c, .ok
+ sub 10
+ inc c
+ jr .mod
+.ok
+
+ ld b, a
+ ld a, [hPastLeadingZeros]
+ or c
+ ld [hPastLeadingZeros], a
+ jr nz, .past
+ call .PrintLeadingZero
+ jr .next
+.past
+ ld a, "0"
+ add c
+ ld [hl], a
+.next
+
+ call .NextDigit
+.ones
+ ld a, "0"
+ add b
+ ld [hli], a
+ pop de
+ dec de
+ pop bc
+ ret
+
+.PrintDigit:
+; Divide by the current decimal place.
+; Print the quotient, and keep the modulus.
+ ld c, 0
+.loop
+ ld a, [hPowerOf10]
+ ld b, a
+ ld a, [hNumToPrint]
+ ld [hSavedNumToPrint], a
+ cp b
+ jr c, .underflow0
+ sub b
+ ld [hNumToPrint], a
+ ld a, [hPowerOf10 + 1]
+ ld b, a
+ ld a, [hNumToPrint + 1]
+ ld [hSavedNumToPrint + 1], a
+ cp b
+ jr nc, .noborrow1
+
+ ld a, [hNumToPrint]
+ or 0
+ jr z, .underflow1
+ dec a
+ ld [hNumToPrint], a
+ ld a, [hNumToPrint + 1]
+.noborrow1
+
+ sub b
+ ld [hNumToPrint + 1], a
+ ld a, [hPowerOf10 + 2]
+ ld b, a
+ ld a, [hNumToPrint + 2]
+ ld [hSavedNumToPrint + 2], a
+ cp b
+ jr nc, .noborrow2
+
+ ld a, [hNumToPrint + 1]
+ and a
+ jr nz, .borrowed
+
+ ld a, [hNumToPrint]
+ and a
+ jr z, .underflow2
+ dec a
+ ld [hNumToPrint], a
+ xor a
+.borrowed
+
+ dec a
+ ld [hNumToPrint + 1], a
+ ld a, [hNumToPrint + 2]
+.noborrow2
+ sub b
+ ld [hNumToPrint + 2], a
+ inc c
+ jr .loop
+
+.underflow2
+ ld a, [hSavedNumToPrint + 1]
+ ld [hNumToPrint + 1], a
+.underflow1
+ ld a, [hSavedNumToPrint]
+ ld [hNumToPrint], a
+.underflow0
+ ld a, [hPastLeadingZeros]
+ or c
+ jr z, .PrintLeadingZero
+
+ ld a, "0"
+ add c
+ ld [hl], a
+ ld [hPastLeadingZeros], a
+ ret
+
+.PrintLeadingZero:
+ bit BIT_LEADING_ZEROES, d
+ ret z
+ ld [hl], "0"
+ ret
+
+.NextDigit:
+; Increment unless the number is left-aligned,
+; leading zeroes are not printed, and no digits
+; have been printed yet.
+ bit BIT_LEADING_ZEROES, d
+ jr nz, .inc
+ bit BIT_LEFT_ALIGN, d
+ jr z, .inc
+ ld a, [hPastLeadingZeros]
+ and a
+ ret z
+.inc
+ inc hl
+ ret
--- /dev/null
+++ b/home/start.asm
@@ -1,0 +1,10 @@
+_Start::
+ cp GBC
+ jr z, .gbc
+ xor a
+ jr .ok
+.gbc
+ ld a, 0
+.ok
+ ld [wGBC], a
+ jp Init
--- a/home/start_menu.asm
+++ b/home/start_menu.asm
@@ -1,6 +1,6 @@
DisplayStartMenu::
ld a, BANK(StartMenu_Pokedex)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
ld a, [wWalkBikeSurfState] ; walking/biking/surfing
ld [wWalkBikeSurfStateCopy], a
--- a/home/text.asm
+++ b/home/text.asm
@@ -62,7 +62,7 @@
cp $4E ; next
jr nz, .char4FTest
ld bc, 2 * SCREEN_WIDTH
- ld a, [hFlags_0xFFF6]
+ ld a, [hFlagsFFF6]
bit 2, a
jr z, .ok
ld bc, SCREEN_WIDTH
@@ -180,7 +180,7 @@
; or
; player active monster’s name
; (like Char5A but flipped)
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
xor 1
jr MonsterNameCharsCommon
@@ -189,7 +189,7 @@
; player active monster’s name
; or
; enemy active monster’s name, prefixed with “Enemy ”
- ld a, [H_WHOSETURN]
+ ld a, [hWhoseTurn]
MonsterNameCharsCommon::
push de
and a
@@ -365,7 +365,7 @@
push af
set 1, a
ld e, a
- ld a, [$fff4]
+ ld a, [hClearLetterPrintingDelayFlags]
xor e
ld [wLetterPrintingDelayFlags], a
ld a, c
@@ -675,7 +675,7 @@
; BB = bank
TextCommand17::
pop hl
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
push af
ld a, [hli]
ld e, a
@@ -682,7 +682,7 @@
ld a, [hli]
ld d, a
ld a, [hli]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
push hl
ld l, e
@@ -690,7 +690,7 @@
call TextCommandProcessor
pop hl
pop af
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
jp NextTextCommand
--- /dev/null
+++ b/home/trainers.asm
@@ -1,0 +1,436 @@
+; stores hl in [wTrainerHeaderPtr]
+StoreTrainerHeaderPointer::
+ ld a, h
+ ld [wTrainerHeaderPtr], a
+ ld a, l
+ ld [wTrainerHeaderPtr+1], a
+ ret
+
+; executes the current map script from the function pointer array provided in hl.
+; a: map script index to execute (unless overridden by [wd733] bit 4)
+ExecuteCurMapScriptInTable::
+ push af
+ push de
+ call StoreTrainerHeaderPointer
+ pop hl
+ pop af
+ push hl
+ ld hl, wFlags_D733
+ bit 4, [hl]
+ res 4, [hl]
+ jr z, .useProvidedIndex ; test if map script index was overridden manually
+ ld a, [wCurMapScript]
+.useProvidedIndex
+ pop hl
+ ld [wCurMapScript], a
+ call CallFunctionInTable
+ ld a, [wCurMapScript]
+ ret
+
+LoadGymLeaderAndCityName::
+ push de
+ ld de, wGymCityName
+ ld bc, $11
+ call CopyData ; load city name
+ pop hl
+ ld de, wGymLeaderName
+ ld bc, NAME_LENGTH
+ jp CopyData ; load gym leader name
+
+; reads specific information from trainer header (pointed to at wTrainerHeaderPtr)
+; a: offset in header data
+; 0 -> flag's bit (into wTrainerHeaderFlagBit)
+; 2 -> flag's byte ptr (into hl)
+; 4 -> before battle text (into hl)
+; 6 -> after battle text (into hl)
+; 8 -> end battle text (into hl)
+ReadTrainerHeaderInfo::
+ push de
+ push af
+ ld d, $0
+ ld e, a
+ ld hl, wTrainerHeaderPtr
+ ld a, [hli]
+ ld l, [hl]
+ ld h, a
+ add hl, de
+ pop af
+ and a
+ jr nz, .nonZeroOffset
+ ld a, [hl]
+ ld [wTrainerHeaderFlagBit], a ; store flag's bit
+ jr .done
+.nonZeroOffset
+ cp $2
+ jr z, .readPointer ; read flag's byte ptr
+ cp $4
+ jr z, .readPointer ; read before battle text
+ cp $6
+ jr z, .readPointer ; read after battle text
+ cp $8
+ jr z, .readPointer ; read end battle text
+ cp $a
+ jr nz, .done
+ ld a, [hli] ; read end battle text (2) but override the result afterwards (XXX why, bug?)
+ ld d, [hl]
+ ld e, a
+ jr .done
+.readPointer
+ ld a, [hli]
+ ld h, [hl]
+ ld l, a
+.done
+ pop de
+ ret
+
+TrainerFlagAction::
+ predef_jump FlagActionPredef
+
+TalkToTrainer::
+ call StoreTrainerHeaderPointer
+ xor a
+ call ReadTrainerHeaderInfo ; read flag's bit
+ ld a, $2
+ call ReadTrainerHeaderInfo ; read flag's byte ptr
+ ld a, [wTrainerHeaderFlagBit]
+ ld c, a
+ ld b, FLAG_TEST
+ call TrainerFlagAction ; read trainer's flag
+ ld a, c
+ and a
+ jr z, .trainerNotYetFought ; test trainer's flag
+ ld a, $6
+ call ReadTrainerHeaderInfo ; print after battle text
+ jp PrintText
+.trainerNotYetFought
+ ld a, $4
+ call ReadTrainerHeaderInfo ; print before battle text
+ call PrintText
+ ld a, $a
+ call ReadTrainerHeaderInfo ; (?) does nothing apparently (maybe bug in ReadTrainerHeaderInfo)
+ push de
+ ld a, $8
+ call ReadTrainerHeaderInfo ; read end battle text
+ pop de
+ call SaveEndBattleTextPointers
+ ld hl, wFlags_D733
+ set 4, [hl] ; activate map script index override (index is set below)
+ ld hl, wFlags_0xcd60
+ bit 0, [hl] ; test if player is already engaging the trainer (because the trainer saw the player)
+ ret nz
+; if the player talked to the trainer of his own volition
+ call EngageMapTrainer
+ ld hl, wCurMapScript
+ inc [hl] ; increment map script index before StartTrainerBattle increments it again (next script function is usually EndTrainerBattle)
+ jp StartTrainerBattle
+
+; checks if any trainers are seeing the player and wanting to fight
+CheckFightingMapTrainers::
+ call CheckForEngagingTrainers
+ ld a, [wSpriteIndex]
+ cp $ff
+ jr nz, .trainerEngaging
+ xor a
+ ld [wSpriteIndex], a
+ ld [wTrainerHeaderFlagBit], a
+ ret
+.trainerEngaging
+ ld hl, wFlags_D733
+ set 3, [hl]
+ ld [wEmotionBubbleSpriteIndex], a
+ xor a ; EXCLAMATION_BUBBLE
+ ld [wWhichEmotionBubble], a
+ predef EmotionBubble
+ ld a, D_RIGHT | D_LEFT | D_UP | D_DOWN
+ ld [wJoyIgnore], a
+ xor a
+ ld [hJoyHeld], a
+ call TrainerWalkUpToPlayer_Bank0
+ ld hl, wCurMapScript
+ inc [hl] ; increment map script index (next script function is usually DisplayEnemyTrainerTextAndStartBattle)
+ ret
+
+; display the before battle text after the enemy trainer has walked up to the player's sprite
+DisplayEnemyTrainerTextAndStartBattle::
+ ld a, [wd730]
+ and $1
+ ret nz ; return if the enemy trainer hasn't finished walking to the player's sprite
+ ld [wJoyIgnore], a
+ ld a, [wSpriteIndex]
+ ld [hSpriteIndexOrTextID], a
+ call DisplayTextID
+ ; fall through
+
+StartTrainerBattle::
+ xor a
+ ld [wJoyIgnore], a
+ call InitBattleEnemyParameters
+ ld hl, wd72d
+ set 6, [hl]
+ set 7, [hl]
+ ld hl, wd72e
+ set 1, [hl]
+ ld hl, wCurMapScript
+ inc [hl] ; increment map script index (next script function is usually EndTrainerBattle)
+ ret
+
+EndTrainerBattle::
+ ld hl, wCurrentMapScriptFlags
+ set 5, [hl]
+ set 6, [hl]
+ ld hl, wd72d
+ res 7, [hl]
+ ld hl, wFlags_0xcd60
+ res 0, [hl] ; player is no longer engaged by any trainer
+ ld a, [wIsInBattle]
+ cp $ff
+ jp z, ResetButtonPressedAndMapScript
+ ld a, $2
+ call ReadTrainerHeaderInfo
+ ld a, [wTrainerHeaderFlagBit]
+ ld c, a
+ ld b, FLAG_SET
+ call TrainerFlagAction ; flag trainer as fought
+ ld a, [wEnemyMonOrTrainerClass]
+ cp OPP_ID_OFFSET
+ jr nc, .skipRemoveSprite ; test if trainer was fought (in that case skip removing the corresponding sprite)
+ ld hl, wMissableObjectList
+ ld de, $2
+ ld a, [wSpriteIndex]
+ call IsInArray ; search for sprite ID
+ inc hl
+ ld a, [hl]
+ ld [wMissableObjectIndex], a ; load corresponding missable object index and remove it
+ predef HideObject
+.skipRemoveSprite
+ ld hl, wd730
+ bit 4, [hl]
+ res 4, [hl]
+ ret nz
+
+ResetButtonPressedAndMapScript::
+ xor a
+ ld [wJoyIgnore], a
+ ld [hJoyHeld], a
+ ld [hJoyPressed], a
+ ld [hJoyReleased], a
+ ld [wCurMapScript], a ; reset battle status
+ ret
+
+; calls TrainerWalkUpToPlayer
+TrainerWalkUpToPlayer_Bank0::
+ jpba TrainerWalkUpToPlayer
+
+; sets opponent type and mon set/lvl based on the engaging trainer data
+InitBattleEnemyParameters::
+ ld a, [wEngagedTrainerClass]
+ ld [wCurOpponent], a
+ ld [wEnemyMonOrTrainerClass], a
+ cp OPP_ID_OFFSET
+ ld a, [wEngagedTrainerSet]
+ jr c, .noTrainer
+ ld [wTrainerNo], a
+ ret
+.noTrainer
+ ld [wCurEnemyLVL], a
+ ret
+
+GetSpritePosition1::
+ ld hl, _GetSpritePosition1
+ jr SpritePositionBankswitch
+
+GetSpritePosition2::
+ ld hl, _GetSpritePosition2
+ jr SpritePositionBankswitch
+
+SetSpritePosition1::
+ ld hl, _SetSpritePosition1
+ jr SpritePositionBankswitch
+
+SetSpritePosition2::
+ ld hl, _SetSpritePosition2
+SpritePositionBankswitch::
+ ld b, BANK(_GetSpritePosition1) ; BANK(_GetSpritePosition2), BANK(_SetSpritePosition1), BANK(_SetSpritePosition2)
+ jp Bankswitch ; indirect jump to one of the four functions
+
+CheckForEngagingTrainers::
+ xor a
+ call ReadTrainerHeaderInfo ; read trainer flag's bit (unused)
+ ld d, h ; store trainer header address in de
+ ld e, l
+.trainerLoop
+ call StoreTrainerHeaderPointer ; set trainer header pointer to current trainer
+ ld a, [de]
+ ld [wSpriteIndex], a ; store trainer flag's bit
+ ld [wTrainerHeaderFlagBit], a
+ cp $ff
+ ret z
+ ld a, $2
+ call ReadTrainerHeaderInfo ; read trainer flag's byte ptr
+ ld b, FLAG_TEST
+ ld a, [wTrainerHeaderFlagBit]
+ ld c, a
+ call TrainerFlagAction ; read trainer flag
+ ld a, c
+ and a ; has the trainer already been defeated?
+ jr nz, .continue
+ push hl
+ push de
+ push hl
+ xor a
+ call ReadTrainerHeaderInfo ; get trainer header pointer
+ inc hl
+ ld a, [hl] ; read trainer engage distance
+ pop hl
+ ld [wTrainerEngageDistance], a
+ ld a, [wSpriteIndex]
+ swap a
+ ld [wTrainerSpriteOffset], a
+ predef TrainerEngage
+ pop de
+ pop hl
+ ld a, [wTrainerSpriteOffset]
+ and a
+ ret nz ; break if the trainer is engaging
+.continue
+ ld hl, $c
+ add hl, de
+ ld d, h
+ ld e, l
+ jr .trainerLoop
+
+; hl = text if the player wins
+; de = text if the player loses
+SaveEndBattleTextPointers::
+ ld a, [hLoadedROMBank]
+ ld [wEndBattleTextRomBank], a
+ ld a, h
+ ld [wEndBattleWinTextPointer], a
+ ld a, l
+ ld [wEndBattleWinTextPointer + 1], a
+ ld a, d
+ ld [wEndBattleLoseTextPointer], a
+ ld a, e
+ ld [wEndBattleLoseTextPointer + 1], a
+ ret
+
+; loads data of some trainer on the current map and plays pre-battle music
+; [wSpriteIndex]: sprite ID of trainer who is engaged
+EngageMapTrainer::
+ ld hl, wMapSpriteExtraData
+ ld d, $0
+ ld a, [wSpriteIndex]
+ dec a
+ add a
+ ld e, a
+ add hl, de ; seek to engaged trainer data
+ ld a, [hli] ; load trainer class
+ ld [wEngagedTrainerClass], a
+ ld a, [hl] ; load trainer mon set
+ ld [wEngagedTrainerSet], a
+ jp PlayTrainerMusic
+
+PrintEndBattleText::
+ push hl
+ ld hl, wd72d
+ bit 7, [hl]
+ res 7, [hl]
+ pop hl
+ ret z
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, [wEndBattleTextRomBank]
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ push hl
+ callba SaveTrainerName
+ ld hl, TrainerEndBattleText
+ call PrintText
+ pop hl
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ callba FreezeEnemyTrainerSprite
+ jp WaitForSoundToFinish
+
+GetSavedEndBattleTextPointer::
+ ld a, [wBattleResult]
+ and a
+; won battle
+ jr nz, .lostBattle
+ ld a, [wEndBattleWinTextPointer]
+ ld h, a
+ ld a, [wEndBattleWinTextPointer + 1]
+ ld l, a
+ ret
+.lostBattle
+ ld a, [wEndBattleLoseTextPointer]
+ ld h, a
+ ld a, [wEndBattleLoseTextPointer + 1]
+ ld l, a
+ ret
+
+TrainerEndBattleText::
+ TX_FAR _TrainerNameText
+ TX_ASM
+ call GetSavedEndBattleTextPointer
+ call TextCommandProcessor
+ jp TextScriptEnd
+
+; only engage with the trainer if the player is not already
+; engaged with another trainer
+; XXX unused?
+CheckIfAlreadyEngaged::
+ ld a, [wFlags_0xcd60]
+ bit 0, a
+ ret nz
+ call EngageMapTrainer
+ xor a
+ ret
+
+PlayTrainerMusic::
+ ld a, [wEngagedTrainerClass]
+ cp OPP_SONY1
+ ret z
+ cp OPP_SONY2
+ ret z
+ cp OPP_SONY3
+ ret z
+ ld a, [wGymLeaderNo]
+ and a
+ ret nz
+ xor a
+ ld [wAudioFadeOutControl], a
+ ld a, SFX_STOP_ALL_MUSIC
+ call PlaySound
+ ld a, BANK(Music_MeetEvilTrainer)
+ ld [wAudioROMBank], a
+ ld [wAudioSavedROMBank], a
+ ld a, [wEngagedTrainerClass]
+ ld b, a
+ ld hl, EvilTrainerList
+.evilTrainerListLoop
+ ld a, [hli]
+ cp $ff
+ jr z, .noEvilTrainer
+ cp b
+ jr nz, .evilTrainerListLoop
+ ld a, MUSIC_MEET_EVIL_TRAINER
+ jr .PlaySound
+.noEvilTrainer
+ ld hl, FemaleTrainerList
+.femaleTrainerListLoop
+ ld a, [hli]
+ cp $ff
+ jr z, .maleTrainer
+ cp b
+ jr nz, .femaleTrainerListLoop
+ ld a, MUSIC_MEET_FEMALE_TRAINER
+ jr .PlaySound
+.maleTrainer
+ ld a, MUSIC_MEET_MALE_TRAINER
+.PlaySound
+ ld [wNewSoundID], a
+ jp PlaySound
+
+INCLUDE "data/trainers/encounter_types.asm"
--- /dev/null
+++ b/home/uncompress.asm
@@ -1,0 +1,591 @@
+; bankswitches and runs _UncompressSpriteData
+; bank is given in a, sprite input stream is pointed to in wSpriteInputPtr
+UncompressSpriteData::
+ ld b, a
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, b
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ld a, SRAM_ENABLE
+ ld [MBC1SRamEnable], a
+ xor a
+ ld [MBC1SRamBank], a
+ call _UncompressSpriteData
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ ret
+
+; initializes necessary data to load a sprite and runs UncompressSpriteDataLoop
+_UncompressSpriteData::
+ ld hl, sSpriteBuffer1
+ ld c, (2*SPRITEBUFFERSIZE) % $100
+ ld b, (2*SPRITEBUFFERSIZE) / $100
+ xor a
+ call FillMemory ; clear sprite buffer 1 and 2
+ ld a, $1
+ ld [wSpriteInputBitCounter], a
+ ld a, $3
+ ld [wSpriteOutputBitOffset], a
+ xor a
+ ld [wSpriteCurPosX], a
+ ld [wSpriteCurPosY], a
+ ld [wSpriteLoadFlags], a
+ call ReadNextInputByte ; first byte of input determines sprite width (high nybble) and height (low nybble) in tiles (8x8 pixels)
+ ld b, a
+ and $f
+ add a
+ add a
+ add a
+ ld [wSpriteHeight], a
+ ld a, b
+ swap a
+ and $f
+ add a
+ add a
+ add a
+ ld [wSpriteWidth], a
+ call ReadNextInputBit
+ ld [wSpriteLoadFlags], a ; initialite bit1 to 0 and bit0 to the first input bit
+ ; this will load two chunks of data to sSpriteBuffer1 and sSpriteBuffer2
+ ; bit 0 decides in which one the first chunk is placed
+ ; fall through
+
+; uncompresses a chunk from the sprite input data stream (pointed to at wd0da) into sSpriteBuffer1 or sSpriteBuffer2
+; each chunk is a 1bpp sprite. A 2bpp sprite consist of two chunks which are merged afterwards
+; note that this is an endless loop which is terminated during a call to MoveToNextBufferPosition by manipulating the stack
+UncompressSpriteDataLoop::
+ ld hl, sSpriteBuffer1
+ ld a, [wSpriteLoadFlags]
+ bit 0, a
+ jr z, .useSpriteBuffer1 ; check which buffer to use
+ ld hl, sSpriteBuffer2
+.useSpriteBuffer1
+ call StoreSpriteOutputPointer
+ ld a, [wSpriteLoadFlags]
+ bit 1, a
+ jr z, .startDecompression ; check if last iteration
+ call ReadNextInputBit ; if last chunk, read 1-2 bit unpacking mode
+ and a
+ jr z, .unpackingMode0 ; 0 -> mode 0
+ call ReadNextInputBit ; 1 0 -> mode 1
+ inc a ; 1 1 -> mode 2
+.unpackingMode0
+ ld [wSpriteUnpackMode], a
+.startDecompression
+ call ReadNextInputBit
+ and a
+ jr z, .readRLEncodedZeros ; if first bit is 0, the input starts with zeroes, otherwise with (non-zero) input
+.readNextInput
+ call ReadNextInputBit
+ ld c, a
+ call ReadNextInputBit
+ sla c
+ or c ; read next two bits into c
+ and a
+ jr z, .readRLEncodedZeros ; 00 -> RLEncoded zeroes following
+ call WriteSpriteBitsToBuffer ; otherwise write input to output and repeat
+ call MoveToNextBufferPosition
+ jr .readNextInput
+.readRLEncodedZeros
+ ld c, $0 ; number of zeroes it length encoded, the number
+.countConsecutiveOnesLoop ; of consecutive ones determines the number of bits the number has
+ call ReadNextInputBit
+ and a
+ jr z, .countConsecutiveOnesFinished
+ inc c
+ jr .countConsecutiveOnesLoop
+.countConsecutiveOnesFinished
+ ld a, c
+ add a
+ ld hl, LengthEncodingOffsetList
+ add l
+ ld l, a
+ jr nc, .noCarry
+ inc h
+.noCarry
+ ld a, [hli] ; read offset that is added to the number later on
+ ld e, a ; adding an offset of 2^length - 1 makes every integer uniquely
+ ld d, [hl] ; representable in the length encoding and saves bits
+ push de
+ inc c
+ ld e, $0
+ ld d, e
+.readNumberOfZerosLoop ; reads the next c+1 bits of input
+ call ReadNextInputBit
+ or e
+ ld e, a
+ dec c
+ jr z, .readNumberOfZerosDone
+ sla e
+ rl d
+ jr .readNumberOfZerosLoop
+.readNumberOfZerosDone
+ pop hl ; add the offset
+ add hl, de
+ ld e, l
+ ld d, h
+.writeZerosLoop
+ ld b, e
+ xor a ; write 00 to buffer
+ call WriteSpriteBitsToBuffer
+ ld e, b
+ call MoveToNextBufferPosition
+ dec de
+ ld a, d
+ and a
+ jr nz, .continueLoop
+ ld a, e
+ and a
+.continueLoop
+ jr nz, .writeZerosLoop
+ jr .readNextInput
+
+; moves output pointer to next position
+; also cancels the calling function if the all output is done (by removing the return pointer from stack)
+; and calls postprocessing functions according to the unpack mode
+MoveToNextBufferPosition::
+ ld a, [wSpriteHeight]
+ ld b, a
+ ld a, [wSpriteCurPosY]
+ inc a
+ cp b
+ jr z, .curColumnDone
+ ld [wSpriteCurPosY], a
+ ld a, [wSpriteOutputPtr]
+ inc a
+ ld [wSpriteOutputPtr], a
+ ret nz
+ ld a, [wSpriteOutputPtr+1]
+ inc a
+ ld [wSpriteOutputPtr+1], a
+ ret
+.curColumnDone
+ xor a
+ ld [wSpriteCurPosY], a
+ ld a, [wSpriteOutputBitOffset]
+ and a
+ jr z, .bitOffsetsDone
+ dec a
+ ld [wSpriteOutputBitOffset], a
+ ld hl, wSpriteOutputPtrCached
+ ld a, [hli]
+ ld [wSpriteOutputPtr], a
+ ld a, [hl]
+ ld [wSpriteOutputPtr+1], a
+ ret
+.bitOffsetsDone
+ ld a, $3
+ ld [wSpriteOutputBitOffset], a
+ ld a, [wSpriteCurPosX]
+ add $8
+ ld [wSpriteCurPosX], a
+ ld b, a
+ ld a, [wSpriteWidth]
+ cp b
+ jr z, .allColumnsDone
+ ld a, [wSpriteOutputPtr]
+ ld l, a
+ ld a, [wSpriteOutputPtr+1]
+ ld h, a
+ inc hl
+ jp StoreSpriteOutputPointer
+.allColumnsDone
+ pop hl
+ xor a
+ ld [wSpriteCurPosX], a
+ ld a, [wSpriteLoadFlags]
+ bit 1, a
+ jr nz, .done ; test if there is one more sprite to go
+ xor $1
+ set 1, a
+ ld [wSpriteLoadFlags], a
+ jp UncompressSpriteDataLoop
+.done
+ jp UnpackSprite
+
+; writes 2 bits (from a) to the output buffer (pointed to from wSpriteOutputPtr)
+WriteSpriteBitsToBuffer::
+ ld e, a
+ ld a, [wSpriteOutputBitOffset]
+ and a
+ jr z, .offset0
+ cp $2
+ jr c, .offset1
+ jr z, .offset2
+ rrc e ; offset 3
+ rrc e
+ jr .offset0
+.offset1
+ sla e
+ sla e
+ jr .offset0
+.offset2
+ swap e
+.offset0
+ ld a, [wSpriteOutputPtr]
+ ld l, a
+ ld a, [wSpriteOutputPtr+1]
+ ld h, a
+ ld a, [hl]
+ or e
+ ld [hl], a
+ ret
+
+; reads next bit from input stream and returns it in a
+ReadNextInputBit::
+ ld a, [wSpriteInputBitCounter]
+ dec a
+ jr nz, .curByteHasMoreBitsToRead
+ call ReadNextInputByte
+ ld [wSpriteInputCurByte], a
+ ld a, $8
+.curByteHasMoreBitsToRead
+ ld [wSpriteInputBitCounter], a
+ ld a, [wSpriteInputCurByte]
+ rlca
+ ld [wSpriteInputCurByte], a
+ and $1
+ ret
+
+; reads next byte from input stream and returns it in a
+ReadNextInputByte::
+ ld a, [wSpriteInputPtr]
+ ld l, a
+ ld a, [wSpriteInputPtr+1]
+ ld h, a
+ ld a, [hli]
+ ld b, a
+ ld a, l
+ ld [wSpriteInputPtr], a
+ ld a, h
+ ld [wSpriteInputPtr+1], a
+ ld a, b
+ ret
+
+; the nth item is 2^n - 1
+LengthEncodingOffsetList::
+ dw %0000000000000001
+ dw %0000000000000011
+ dw %0000000000000111
+ dw %0000000000001111
+ dw %0000000000011111
+ dw %0000000000111111
+ dw %0000000001111111
+ dw %0000000011111111
+ dw %0000000111111111
+ dw %0000001111111111
+ dw %0000011111111111
+ dw %0000111111111111
+ dw %0001111111111111
+ dw %0011111111111111
+ dw %0111111111111111
+ dw %1111111111111111
+
+; unpacks the sprite data depending on the unpack mode
+UnpackSprite::
+ ld a, [wSpriteUnpackMode]
+ cp $2
+ jp z, UnpackSpriteMode2
+ and a
+ jp nz, XorSpriteChunks
+ ld hl, sSpriteBuffer1
+ call SpriteDifferentialDecode
+ ld hl, sSpriteBuffer2
+ ; fall through
+
+; decodes differential encoded sprite data
+; input bit value 0 preserves the current bit value and input bit value 1 toggles it (starting from initial value 0).
+SpriteDifferentialDecode::
+ xor a
+ ld [wSpriteCurPosX], a
+ ld [wSpriteCurPosY], a
+ call StoreSpriteOutputPointer
+ ld a, [wSpriteFlipped]
+ and a
+ jr z, .notFlipped
+ ld hl, DecodeNybble0TableFlipped
+ ld de, DecodeNybble1TableFlipped
+ jr .storeDecodeTablesPointers
+.notFlipped
+ ld hl, DecodeNybble0Table
+ ld de, DecodeNybble1Table
+.storeDecodeTablesPointers
+ ld a, l
+ ld [wSpriteDecodeTable0Ptr], a
+ ld a, h
+ ld [wSpriteDecodeTable0Ptr+1], a
+ ld a, e
+ ld [wSpriteDecodeTable1Ptr], a
+ ld a, d
+ ld [wSpriteDecodeTable1Ptr+1], a
+ ld e, $0 ; last decoded nybble, initialized to 0
+.decodeNextByteLoop
+ ld a, [wSpriteOutputPtr]
+ ld l, a
+ ld a, [wSpriteOutputPtr+1]
+ ld h, a
+ ld a, [hl]
+ ld b, a
+ swap a
+ and $f
+ call DifferentialDecodeNybble ; decode high nybble
+ swap a
+ ld d, a
+ ld a, b
+ and $f
+ call DifferentialDecodeNybble ; decode low nybble
+ or d
+ ld b, a
+ ld a, [wSpriteOutputPtr]
+ ld l, a
+ ld a, [wSpriteOutputPtr+1]
+ ld h, a
+ ld a, b
+ ld [hl], a ; write back decoded data
+ ld a, [wSpriteHeight]
+ add l ; move on to next column
+ jr nc, .noCarry
+ inc h
+.noCarry
+ ld [wSpriteOutputPtr], a
+ ld a, h
+ ld [wSpriteOutputPtr+1], a
+ ld a, [wSpriteCurPosX]
+ add $8
+ ld [wSpriteCurPosX], a
+ ld b, a
+ ld a, [wSpriteWidth]
+ cp b
+ jr nz, .decodeNextByteLoop ; test if current row is done
+ xor a
+ ld e, a
+ ld [wSpriteCurPosX], a
+ ld a, [wSpriteCurPosY] ; move on to next row
+ inc a
+ ld [wSpriteCurPosY], a
+ ld b, a
+ ld a, [wSpriteHeight]
+ cp b
+ jr z, .done ; test if all rows finished
+ ld a, [wSpriteOutputPtrCached]
+ ld l, a
+ ld a, [wSpriteOutputPtrCached+1]
+ ld h, a
+ inc hl
+ call StoreSpriteOutputPointer
+ jr .decodeNextByteLoop
+.done
+ xor a
+ ld [wSpriteCurPosY], a
+ ret
+
+; decodes the nybble stored in a. Last decoded data is assumed to be in e (needed to determine if initial value is 0 or 1)
+DifferentialDecodeNybble::
+ srl a ; c=a%2, a/=2
+ ld c, $0
+ jr nc, .evenNumber
+ ld c, $1
+.evenNumber
+ ld l, a
+ ld a, [wSpriteFlipped]
+ and a
+ jr z, .notFlipped ; determine if initial value is 0 or one
+ bit 3, e ; if flipped, consider MSB of last data
+ jr .selectLookupTable
+.notFlipped
+ bit 0, e ; else consider LSB
+.selectLookupTable
+ ld e, l
+ jr nz, .initialValue1 ; load the appropriate table
+ ld a, [wSpriteDecodeTable0Ptr]
+ ld l, a
+ ld a, [wSpriteDecodeTable0Ptr+1]
+ jr .tableLookup
+.initialValue1
+ ld a, [wSpriteDecodeTable1Ptr]
+ ld l, a
+ ld a, [wSpriteDecodeTable1Ptr+1]
+.tableLookup
+ ld h, a
+ ld a, e
+ add l
+ ld l, a
+ jr nc, .noCarry
+ inc h
+.noCarry
+ ld a, [hl]
+ bit 0, c
+ jr nz, .selectLowNybble
+ swap a ; select high nybble
+.selectLowNybble
+ and $f
+ ld e, a ; update last decoded data
+ ret
+
+DecodeNybble0Table::
+ dn $0, $1
+ dn $3, $2
+ dn $7, $6
+ dn $4, $5
+ dn $f, $e
+ dn $c, $d
+ dn $8, $9
+ dn $b, $a
+DecodeNybble1Table::
+ dn $f, $e
+ dn $c, $d
+ dn $8, $9
+ dn $b, $a
+ dn $0, $1
+ dn $3, $2
+ dn $7, $6
+ dn $4, $5
+DecodeNybble0TableFlipped::
+ dn $0, $8
+ dn $c, $4
+ dn $e, $6
+ dn $2, $a
+ dn $f, $7
+ dn $3, $b
+ dn $1, $9
+ dn $d, $5
+DecodeNybble1TableFlipped::
+ dn $f, $7
+ dn $3, $b
+ dn $1, $9
+ dn $d, $5
+ dn $0, $8
+ dn $c, $4
+ dn $e, $6
+ dn $2, $a
+
+; combines the two loaded chunks with xor (the chunk loaded second is the destination). The source chunk is differeintial decoded beforehand.
+XorSpriteChunks::
+ xor a
+ ld [wSpriteCurPosX], a
+ ld [wSpriteCurPosY], a
+ call ResetSpriteBufferPointers
+ ld a, [wSpriteOutputPtr] ; points to buffer 1 or 2, depending on flags
+ ld l, a
+ ld a, [wSpriteOutputPtr+1]
+ ld h, a
+ call SpriteDifferentialDecode ; decode buffer 1 or 2, depending on flags
+ call ResetSpriteBufferPointers
+ ld a, [wSpriteOutputPtr] ; source buffer, points to buffer 1 or 2, depending on flags
+ ld l, a
+ ld a, [wSpriteOutputPtr+1]
+ ld h, a
+ ld a, [wSpriteOutputPtrCached] ; destination buffer, points to buffer 2 or 1, depending on flags
+ ld e, a
+ ld a, [wSpriteOutputPtrCached+1]
+ ld d, a
+.xorChunksLoop
+ ld a, [wSpriteFlipped]
+ and a
+ jr z, .notFlipped
+ push de
+ ld a, [de]
+ ld b, a
+ swap a
+ and $f
+ call ReverseNybble ; if flipped reverse the nybbles in the destination buffer
+ swap a
+ ld c, a
+ ld a, b
+ and $f
+ call ReverseNybble
+ or c
+ pop de
+ ld [de], a
+.notFlipped
+ ld a, [hli]
+ ld b, a
+ ld a, [de]
+ xor b
+ ld [de], a
+ inc de
+ ld a, [wSpriteCurPosY]
+ inc a
+ ld [wSpriteCurPosY], a ; go to next row
+ ld b, a
+ ld a, [wSpriteHeight]
+ cp b
+ jr nz, .xorChunksLoop ; test if column finished
+ xor a
+ ld [wSpriteCurPosY], a
+ ld a, [wSpriteCurPosX]
+ add $8
+ ld [wSpriteCurPosX], a ; go to next column
+ ld b, a
+ ld a, [wSpriteWidth]
+ cp b
+ jr nz, .xorChunksLoop ; test if all columns finished
+ xor a
+ ld [wSpriteCurPosX], a
+ ret
+
+; reverses the bits in the nybble given in register a
+ReverseNybble::
+ ld de, NybbleReverseTable
+ add e
+ ld e, a
+ jr nc, .noCarry
+ inc d
+.noCarry
+ ld a, [de]
+ ret
+
+; resets sprite buffer pointers to buffer 1 and 2, depending on wSpriteLoadFlags
+ResetSpriteBufferPointers::
+ ld a, [wSpriteLoadFlags]
+ bit 0, a
+ jr nz, .buffer2Selected
+ ld de, sSpriteBuffer1
+ ld hl, sSpriteBuffer2
+ jr .storeBufferPointers
+.buffer2Selected
+ ld de, sSpriteBuffer2
+ ld hl, sSpriteBuffer1
+.storeBufferPointers
+ ld a, l
+ ld [wSpriteOutputPtr], a
+ ld a, h
+ ld [wSpriteOutputPtr+1], a
+ ld a, e
+ ld [wSpriteOutputPtrCached], a
+ ld a, d
+ ld [wSpriteOutputPtrCached+1], a
+ ret
+
+; maps each nybble to its reverse
+NybbleReverseTable::
+ db $0, $8, $4, $c, $2, $a, $6 ,$e, $1, $9, $5, $d, $3, $b, $7 ,$f
+
+; combines the two loaded chunks with xor (the chunk loaded second is the destination). Both chunks are differeintial decoded beforehand.
+UnpackSpriteMode2::
+ call ResetSpriteBufferPointers
+ ld a, [wSpriteFlipped]
+ push af
+ xor a
+ ld [wSpriteFlipped], a ; temporarily clear flipped flag for decoding the destination chunk
+ ld a, [wSpriteOutputPtrCached]
+ ld l, a
+ ld a, [wSpriteOutputPtrCached+1]
+ ld h, a
+ call SpriteDifferentialDecode
+ call ResetSpriteBufferPointers
+ pop af
+ ld [wSpriteFlipped], a
+ jp XorSpriteChunks
+
+; stores hl into the output pointers
+StoreSpriteOutputPointer::
+ ld a, l
+ ld [wSpriteOutputPtr], a
+ ld [wSpriteOutputPtrCached], a
+ ld a, h
+ ld [wSpriteOutputPtr+1], a
+ ld [wSpriteOutputPtrCached+1], a
+ ret
--- a/home/vblank.asm
+++ b/home/vblank.asm
@@ -5,7 +5,7 @@
push de
push hl
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [wVBlankSavedROMBank], a
ld a, [hSCX]
@@ -26,9 +26,9 @@
call VBlankCopy
call VBlankCopyDouble
call UpdateMovingBgTiles
- call $ff80 ; hOAMDMA
+ call hDMARoutine
ld a, BANK(PrepareOAMData)
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
call PrepareOAMData
@@ -36,24 +36,24 @@
call Random
- ld a, [H_VBLANKOCCURRED]
+ ld a, [hVBlankOccurred]
and a
jr z, .skipZeroing
xor a
- ld [H_VBLANKOCCURRED], a
+ ld [hVBlankOccurred], a
.skipZeroing
- ld a, [H_FRAMECOUNTER]
+ ld a, [hFrameCounter]
and a
jr z, .skipDec
dec a
- ld [H_FRAMECOUNTER], a
+ ld [hFrameCounter], a
.skipDec
call FadeOutAudio
ld a, [wAudioROMBank] ; music ROM bank
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
cp BANK(Audio1_UpdateMusic)
@@ -79,7 +79,7 @@
call z, ReadJoypad
ld a, [wVBlankSavedROMBank]
- ld [H_LOADEDROMBANK], a
+ ld [hLoadedROMBank], a
ld [MBC1RomBank], a
pop hl
@@ -96,10 +96,10 @@
NOT_VBLANKED EQU 1
ld a, NOT_VBLANKED
- ld [H_VBLANKOCCURRED], a
+ ld [hVBlankOccurred], a
.halt
halt
- ld a, [H_VBLANKOCCURRED]
+ ld a, [hVBlankOccurred]
and a
jr nz, .halt
ret
--- a/home/vcopy.asm
+++ b/home/vcopy.asm
@@ -120,15 +120,15 @@
; the above function, RedrawRowOrColumn, is used when walking to
; improve efficiency.
AutoBgMapTransfer::
- ld a, [H_AUTOBGTRANSFERENABLED]
+ ld a, [hAutoBGTransferEnabled]
and a
ret z
ld hl, sp + 0
ld a, h
- ld [H_SPTEMP], a
+ ld [hSPTemp], a
ld a, l
- ld [H_SPTEMP + 1], a ; save stack pinter
- ld a, [H_AUTOBGTRANSFERPORTION]
+ ld [hSPTemp + 1], a ; save stack pinter
+ ld a, [hAutoBGTransferPortion]
and a
jr z, .transferTopThird
dec a
@@ -136,9 +136,9 @@
.transferBottomThird
coord hl, 0, 12
ld sp, hl
- ld a, [H_AUTOBGTRANSFERDEST + 1]
+ ld a, [hAutoBGTransferDest + 1]
ld h, a
- ld a, [H_AUTOBGTRANSFERDEST]
+ ld a, [hAutoBGTransferDest]
ld l, a
ld de, (12 * 32)
add hl, de
@@ -147,9 +147,9 @@
.transferTopThird
coord hl, 0, 0
ld sp, hl
- ld a, [H_AUTOBGTRANSFERDEST + 1]
+ ld a, [hAutoBGTransferDest + 1]
ld h, a
- ld a, [H_AUTOBGTRANSFERDEST]
+ ld a, [hAutoBGTransferDest]
ld l, a
ld a, TRANSFERMIDDLE
jr .doTransfer
@@ -156,15 +156,15 @@
.transferMiddleThird
coord hl, 0, 6
ld sp, hl
- ld a, [H_AUTOBGTRANSFERDEST + 1]
+ ld a, [hAutoBGTransferDest + 1]
ld h, a
- ld a, [H_AUTOBGTRANSFERDEST]
+ ld a, [hAutoBGTransferDest]
ld l, a
ld de, (6 * 32)
add hl, de
ld a, TRANSFERBOTTOM
.doTransfer
- ld [H_AUTOBGTRANSFERPORTION], a ; store next portion
+ ld [hAutoBGTransferPortion], a ; store next portion
ld b, 6
TransferBgRows::
@@ -192,73 +192,73 @@
dec b
jr nz, TransferBgRows
- ld a, [H_SPTEMP]
+ ld a, [hSPTemp]
ld h, a
- ld a, [H_SPTEMP + 1]
+ ld a, [hSPTemp + 1]
ld l, a
ld sp, hl
ret
-; Copies [H_VBCOPYBGNUMROWS] rows from H_VBCOPYBGSRC to H_VBCOPYBGDEST.
-; If H_VBCOPYBGSRC is XX00, the transfer is disabled.
+; Copies [hVBlankCopyBGNumRows] rows from hVBlankCopyBGSource to hVBlankCopyBGDest.
+; If hVBlankCopyBGSource is XX00, the transfer is disabled.
VBlankCopyBgMap::
- ld a, [H_VBCOPYBGSRC] ; doubles as enabling byte
+ ld a, [hVBlankCopyBGSource] ; doubles as enabling byte
and a
ret z
ld hl, sp + 0
ld a, h
- ld [H_SPTEMP], a
+ ld [hSPTemp], a
ld a, l
- ld [H_SPTEMP + 1], a ; save stack pointer
- ld a, [H_VBCOPYBGSRC]
+ ld [hSPTemp + 1], a ; save stack pointer
+ ld a, [hVBlankCopyBGSource]
ld l, a
- ld a, [H_VBCOPYBGSRC + 1]
+ ld a, [hVBlankCopyBGSource + 1]
ld h, a
ld sp, hl
- ld a, [H_VBCOPYBGDEST]
+ ld a, [hVBlankCopyBGDest]
ld l, a
- ld a, [H_VBCOPYBGDEST + 1]
+ ld a, [hVBlankCopyBGDest + 1]
ld h, a
- ld a, [H_VBCOPYBGNUMROWS]
+ ld a, [hVBlankCopyBGNumRows]
ld b, a
xor a
- ld [H_VBCOPYBGSRC], a ; disable transfer so it doesn't continue next V-blank
+ ld [hVBlankCopyBGSource], a ; disable transfer so it doesn't continue next V-blank
jr TransferBgRows
VBlankCopyDouble::
-; Copy [H_VBCOPYDOUBLESIZE] 1bpp tiles
-; from H_VBCOPYDOUBLESRC to H_VBCOPYDOUBLEDEST.
+; Copy [hVBlankCopyDoubleSize] 1bpp tiles
+; from hVBlankCopyDoubleSource to hVBlankCopyDoubleDest.
; While we're here, convert to 2bpp.
; The process is straightforward:
; copy each byte twice.
- ld a, [H_VBCOPYDOUBLESIZE]
+ ld a, [hVBlankCopyDoubleSize]
and a
ret z
ld hl, sp + 0
ld a, h
- ld [H_SPTEMP], a
+ ld [hSPTemp], a
ld a, l
- ld [H_SPTEMP + 1], a
+ ld [hSPTemp + 1], a
- ld a, [H_VBCOPYDOUBLESRC]
+ ld a, [hVBlankCopyDoubleSource]
ld l, a
- ld a, [H_VBCOPYDOUBLESRC + 1]
+ ld a, [hVBlankCopyDoubleSource + 1]
ld h, a
ld sp, hl
- ld a, [H_VBCOPYDOUBLEDEST]
+ ld a, [hVBlankCopyDoubleDest]
ld l, a
- ld a, [H_VBCOPYDOUBLEDEST + 1]
+ ld a, [hVBlankCopyDoubleDest + 1]
ld h, a
- ld a, [H_VBCOPYDOUBLESIZE]
+ ld a, [hVBlankCopyDoubleSize]
ld b, a
xor a ; transferred
- ld [H_VBCOPYDOUBLESIZE], a
+ ld [hVBlankCopyDoubleSize], a
.loop
rept 3
@@ -286,19 +286,19 @@
jr nz, .loop
ld a, l
- ld [H_VBCOPYDOUBLEDEST], a
+ ld [hVBlankCopyDoubleDest], a
ld a, h
- ld [H_VBCOPYDOUBLEDEST + 1], a
+ ld [hVBlankCopyDoubleDest + 1], a
ld hl, sp + 0
ld a, l
- ld [H_VBCOPYDOUBLESRC], a
+ ld [hVBlankCopyDoubleSource], a
ld a, h
- ld [H_VBCOPYDOUBLESRC + 1], a
+ ld [hVBlankCopyDoubleSource + 1], a
- ld a, [H_SPTEMP]
+ ld a, [hSPTemp]
ld h, a
- ld a, [H_SPTEMP + 1]
+ ld a, [hSPTemp + 1]
ld l, a
ld sp, hl
@@ -306,37 +306,37 @@
VBlankCopy::
-; Copy [H_VBCOPYSIZE] 2bpp tiles (or 16 * [H_VBCOPYSIZE] tile map entries)
-; from H_VBCOPYSRC to H_VBCOPYDEST.
+; Copy [hVBlankCopySize] 2bpp tiles (or 16 * [hVBlankCopySize] tile map entries)
+; from hVBlankCopySource to hVBlankCopyDest.
; Source and destination addresses are updated,
; so transfer can continue in subsequent calls.
- ld a, [H_VBCOPYSIZE]
+ ld a, [hVBlankCopySize]
and a
ret z
ld hl, sp + 0
ld a, h
- ld [H_SPTEMP], a
+ ld [hSPTemp], a
ld a, l
- ld [H_SPTEMP + 1], a
+ ld [hSPTemp + 1], a
- ld a, [H_VBCOPYSRC]
+ ld a, [hVBlankCopySource]
ld l, a
- ld a, [H_VBCOPYSRC + 1]
+ ld a, [hVBlankCopySource + 1]
ld h, a
ld sp, hl
- ld a, [H_VBCOPYDEST]
+ ld a, [hVBlankCopyDest]
ld l, a
- ld a, [H_VBCOPYDEST + 1]
+ ld a, [hVBlankCopyDest + 1]
ld h, a
- ld a, [H_VBCOPYSIZE]
+ ld a, [hVBlankCopySize]
ld b, a
xor a ; transferred
- ld [H_VBCOPYSIZE], a
+ ld [hVBlankCopySize], a
.loop
rept 7
@@ -356,19 +356,19 @@
jr nz, .loop
ld a, l
- ld [H_VBCOPYDEST], a
+ ld [hVBlankCopyDest], a
ld a, h
- ld [H_VBCOPYDEST + 1], a
+ ld [hVBlankCopyDest + 1], a
ld hl, sp + 0
ld a, l
- ld [H_VBCOPYSRC], a
+ ld [hVBlankCopySource], a
ld a, h
- ld [H_VBCOPYSRC + 1], a
+ ld [hVBlankCopySource + 1], a
- ld a, [H_SPTEMP]
+ ld a, [hSPTemp]
ld h, a
- ld a, [H_SPTEMP + 1]
+ ld a, [hSPTemp + 1]
ld l, a
ld sp, hl
--- /dev/null
+++ b/home/yes_no.asm
@@ -1,0 +1,40 @@
+; displays yes/no choice
+; yes -> set carry
+YesNoChoice::
+ call SaveScreenTilesToBuffer1
+ call InitYesNoTextBoxParameters
+ jr DisplayYesNoChoice
+
+Func_35f4::
+ ld a, TWO_OPTION_MENU
+ ld [wTextBoxID], a
+ call InitYesNoTextBoxParameters
+ jp DisplayTextBoxID
+
+InitYesNoTextBoxParameters::
+ xor a ; YES_NO_MENU
+ ld [wTwoOptionMenuID], a
+ coord hl, 14, 7
+ ld bc, $80f
+ ret
+
+YesNoChoicePokeCenter::
+ call SaveScreenTilesToBuffer1
+ ld a, HEAL_CANCEL_MENU
+ ld [wTwoOptionMenuID], a
+ coord hl, 11, 6
+ lb bc, 8, 12
+ jr DisplayYesNoChoice
+
+WideYesNoChoice:: ; unused
+ call SaveScreenTilesToBuffer1
+ ld a, WIDE_YES_NO_MENU
+ ld [wTwoOptionMenuID], a
+ coord hl, 12, 7
+ lb bc, 8, 13
+
+DisplayYesNoChoice::
+ ld a, TWO_OPTION_MENU
+ ld [wTextBoxID], a
+ call DisplayTextBoxID
+ jp LoadScreenTilesFromBuffer1
--- a/hram.asm
+++ b/hram.asm
@@ -1,3 +1,5 @@
+hDMARoutine EQU $FF80
+
hSoftReset EQU $FF8A
; Initialized to 16.
; Decremented each input iteration if the player
@@ -26,17 +28,17 @@
hRLEByteValue EQU $FF8B
-H_SPRITEWIDTH EQU $FF8B ; in tiles
-H_SPRITEINTERLACECOUNTER EQU $FF8B
-H_SPRITEHEIGHT EQU $FF8C ; in tiles
-H_SPRITEOFFSET EQU $FF8D
+hSpriteWidth EQU $FF8B ; in tiles
+hSpriteInterlaceCounter EQU $FF8B
+hSpriteHeight EQU $FF8C ; in tiles
+hSpriteOffset EQU $FF8D
; counters for blinking down arrow
-H_DOWNARROWBLINKCNT1 EQU $FF8B
-H_DOWNARROWBLINKCNT2 EQU $FF8C
+hDownArrowBlinkCount1 EQU $FF8B
+hDownArrowBlinkCount2 EQU $FF8C
-H_SPRITEDATAOFFSET EQU $FF8B
-H_SPRITEINDEX EQU $FF8C
+hSpriteDataOffset EQU $FF8B
+hSpriteIndex EQU $FF8C
hMapStride EQU $FF8B
hMapWidth EQU $FF8C
@@ -81,6 +83,11 @@
hSpriteScreenX EQU $FF91
hSpriteScreenY EQU $FF92
+hFF8F EQU $FF8F
+hFF90 EQU $FF90
+hFF91 EQU $FF91
+hFF92 EQU $FF92
+
hTilePlayerStandingOn EQU $FF93
hSpritePriority EQU $FF94
@@ -90,35 +97,41 @@
hNPCMovementDirections2Index EQU $FF95
+hSwapItemID EQU $FF95
+hSwapItemQuantity EQU $FF96
+
; CalcPositionOfPlayerRelativeToNPC
hNPCSpriteOffset EQU $FF95
-; temp value used when swapping bytes
+; temp value used when swapping bytes or words
hSwapTemp EQU $FF95
hExperience EQU $FF96 ; 3 bytes, big endian
+hMutateWY EQU $FF96
+hMutateWX EQU $FF97
+
; Multiplication and division variables are meant
; to overlap for back-to-back usage. Big endian.
-H_MULTIPLICAND EQU $FF96 ; 3 bytes
-H_MULTIPLIER EQU $FF99 ; 1 byte
-H_PRODUCT EQU $FF95 ; 4 bytes
+hMultiplicand EQU $FF96 ; 3 bytes
+hMultiplier EQU $FF99 ; 1 byte
+hProduct EQU $FF95 ; 4 bytes
-H_DIVIDEND EQU $FF95 ; 4 bytes
-H_DIVISOR EQU $FF99 ; 1 byte
-H_QUOTIENT EQU $FF95 ; 4 bytes
-H_REMAINDER EQU $FF99 ; 1 byte
+hDividend EQU $FF95 ; 4 bytes
+hDivisor EQU $FF99 ; 1 byte
+hQuotient EQU $FF95 ; 4 bytes
+hRemainder EQU $FF99 ; 1 byte
-H_DIVIDEBUFFER EQU $FF9A
+hDivideBuffer EQU $FF9A
-H_MULTIPLYBUFFER EQU $FF9B
+hMultiplyBuffer EQU $FF9B
; PrintNumber (big endian).
-H_PASTLEADINGZEROES EQU $FF95 ; last char printed
-H_NUMTOPRINT EQU $FF96 ; 3 bytes
-H_POWEROFTEN EQU $FF99 ; 3 bytes
-H_SAVEDNUMTOPRINT EQU $FF9C ; 3 bytes
+hPastLeadingZeros EQU $FF95 ; last char printed
+hNumToPrint EQU $FF96 ; 3 bytes
+hPowerOf10 EQU $FF99 ; 3 bytes
+hSavedNumToPrint EQU $FF9C ; 3 bytes
; distance in steps between NPC and player
hNPCPlayerYDistance EQU $FF95
@@ -183,7 +196,7 @@
hJoy6 EQU $FFB6
hJoy7 EQU $FFB7
-H_LOADEDROMBANK EQU $FFB8
+hLoadedROMBank EQU $FFB8
hSavedROMBank EQU $FFB9
@@ -190,7 +203,7 @@
; is automatic background transfer during V-blank enabled?
; if nonzero, yes
; if zero, no
-H_AUTOBGTRANSFERENABLED EQU $FFBA
+hAutoBGTransferEnabled EQU $FFBA
TRANSFERTOP EQU 0
TRANSFERMIDDLE EQU 1
@@ -199,14 +212,16 @@
; 00 = top third of background
; 01 = middle third of background
; 02 = bottom third of background
-H_AUTOBGTRANSFERPORTION EQU $FFBB
+hAutoBGTransferPortion EQU $FFBB
; the destination address of the automatic background transfer
-H_AUTOBGTRANSFERDEST EQU $FFBC ; 2 bytes
+hAutoBGTransferDest EQU $FFBC ; 2 bytes
+hRedrawMapViewRowOffset EQU $FFBE
+
; temporary storage for stack pointer during memory transfers that use pop
; to increase speed
-H_SPTEMP EQU $FFBF ; 2 bytes
+hSPTemp EQU $FFBF ; 2 bytes
; source address for VBlankCopyBgMap function
; the first byte doubles as the byte that enabled the transfer.
@@ -213,31 +228,31 @@
; if it is 0, the transfer is disabled
; if it is not 0, the transfer is enabled
; this means that XX00 is not a valid source address
-H_VBCOPYBGSRC EQU $FFC1 ; 2 bytes
+hVBlankCopyBGSource EQU $FFC1 ; 2 bytes
; destination address for VBlankCopyBgMap function
-H_VBCOPYBGDEST EQU $FFC3 ; 2 bytes
+hVBlankCopyBGDest EQU $FFC3 ; 2 bytes
; number of rows for VBlankCopyBgMap to copy
-H_VBCOPYBGNUMROWS EQU $FFC5
+hVBlankCopyBGNumRows EQU $FFC5
; size of VBlankCopy transfer in 16-byte units
-H_VBCOPYSIZE EQU $FFC6
+hVBlankCopySize EQU $FFC6
; source address for VBlankCopy function
-H_VBCOPYSRC EQU $FFC7
+hVBlankCopySource EQU $FFC7
; destination address for VBlankCopy function
-H_VBCOPYDEST EQU $FFC9
+hVBlankCopyDest EQU $FFC9
; size of source data for VBlankCopyDouble in 8-byte units
-H_VBCOPYDOUBLESIZE EQU $FFCB
+hVBlankCopyDoubleSize EQU $FFCB
; source address for VBlankCopyDouble function
-H_VBCOPYDOUBLESRC EQU $FFCC
+hVBlankCopyDoubleSource EQU $FFCC
; destination address for VBlankCopyDouble function
-H_VBCOPYDOUBLEDEST EQU $FFCE
+hVBlankCopyDoubleDest EQU $FFCE
; controls whether a row or column of 2x2 tile blocks is redrawn in V-blank
; 00 = no redraw
@@ -253,12 +268,12 @@
hRandomAdd EQU $FFD3
hRandomSub EQU $FFD4
-H_FRAMECOUNTER EQU $FFD5 ; decremented every V-blank (used for delays)
+hFrameCounter EQU $FFD5 ; decremented every V-blank (used for delays)
; V-blank sets this to 0 each time it runs.
; So, by setting it to a nonzero value and waiting for it to become 0 again,
; you can detect that the V-blank handler has run since then.
-H_VBLANKOCCURRED EQU $FFD6
+hVBlankOccurred EQU $FFD6
; 00 = indoor
; 01 = cave
@@ -268,11 +283,12 @@
hMovingBGTilesCounter1 EQU $FFD8
-H_CURRENTSPRITEOFFSET EQU $FFDA ; multiple of $10
+hCurrentSpriteOffset EQU $FFDA ; multiple of $10
hItemCounter EQU $FFDB
-hGymGateIndex EQU $FFDB
+hGymGateIndex EQU $FFDB
+hGymGateAnswer EQU $FFDC
hGymTrashCanRandNumMask EQU $FFDB
@@ -285,10 +301,18 @@
; $FF = player cancelled
hOaksAideResult EQU $FFDB
+hSavedCoordIndex EQU $FFDB
+
hOaksAideRequirement EQU $FFDB ; required number of owned mons
hOaksAideRewardItem EQU $FFDC
hOaksAideNumMonsOwned EQU $FFDD
+hPlayerFacing EQU $FFDB
+hPlayerYCoord EQU $FFDC
+hPlayerXCoord EQU $FFDD
+
+hMissableObjectIndex EQU $FFDB
+
hItemToRemoveID EQU $FFDB
hItemToRemoveIndex EQU $FFDC
@@ -295,15 +319,26 @@
hVendingMachineItem EQU $FFDB
hVendingMachinePrice EQU $FFDC ; 3-byte BCD number
+hFFDB EQU $FFDB
+hFFDC EQU $FFDC
+
+hBackupGymGateIndex EQU $FFE0
+
+hUnlockedSilphCoDoors EQU $FFE0
+
; the first tile ID in a sequence of tile IDs that increase by 1 each step
hStartTileID EQU $FFE1
hNewPartyLength EQU $FFE4
+hIsHiddenMissableObject EQU $FFE5
+
hDividend2 EQU $FFE5
hDivisor2 EQU $FFE6
hQuotient2 EQU $FFE7
+hMapROMBank EQU $FFE8
+
hSpriteVRAMSlotAndFacing EQU $FFE9
hCoordsInFrontOfPlayerMatch EQU $FFEA
@@ -310,11 +345,23 @@
hSpriteAnimFrameCounter EQU $FFEA
-H_WHOSETURN EQU $FFF3 ; 0 on player’s turn, 1 on enemy’s turn
+hSpriteScreenYCoord EQU $FFEB
+hSpriteScreenXCoord EQU $FFEC
+hSpriteMapYCoord EQU $FFED
+hSpriteMapXCoord EQU $FFEE
+hFoundHiddenObjectOrBookshelf EQU $FFEB
+hFoundHiddenObject EQU $FFEE
+
+hSavedMapTextPtr EQU $FFEC
+
+hWhoseTurn EQU $FFF3 ; 0 on player’s turn, 1 on enemy’s turn
+
+hClearLetterPrintingDelayFlags EQU $FFF4
+
; bit 0: draw HP fraction to the right of bar instead of below (for party menu)
; bit 1: menu is double spaced
-hFlags_0xFFF6 EQU $FFF6
+hFlagsFFF6 EQU $FFF6
hFieldMoveMonMenuTopMenuItemX EQU $FFF7
@@ -321,4 +368,3 @@
hDisableJoypadPolling EQU $FFF9
hJoyInput EQU $FFF8
-
--- a/layout.link
+++ b/layout.link
@@ -1,59 +1,43 @@
ROM0
org $0000
- "rst 00"
-
+ "NULL"
+ org $0000
+ "rst0"
org $0008
- "rst 08"
-
+ "rst8"
org $0010
- "rst 10"
-
+ "rst10"
org $0018
- "rst 18"
-
+ "rst18"
org $0020
- "rst 20"
-
+ "rst20"
org $0028
- "rst 28"
-
+ "rst28"
org $0030
- "rst 30"
-
+ "rst30"
org $0038
- "rst 38"
-
+ "rst38"
org $0040
"vblank"
-
org $0048
- "hblank"
-
+ "lcd"
org $0050
"timer"
-
org $0058
"serial"
-
org $0060
"joypad"
; $0061
- "Home"
-
+ "High Home"
org $100
- "Entry"
- ; $0104
"Header"
-
org $150
- "Main"
+ "Home"
ROMX $1
- org $4000
"bank1"
ROMX $2
- org $4000
"Sound Effect Headers 1"
"Music Headers 1"
"Sound Effects 1"
@@ -61,22 +45,18 @@
"Music 1"
ROMX $3
- org $4000
"bank3"
ROMX $4
- org $4000
"NPC Sprites 1"
"Graphics (BANK 4)"
"Battle (BANK 4)"
ROMX $5
- org $4000
"NPC Sprites 2"
"Battle (BANK 5)"
ROMX $6
- org $4000
"Maps 1"
"bank6_1"
"Maps 2"
@@ -83,7 +63,6 @@
"bank6_2"
ROMX $7
- org $4000
"Maps 3"
"bank7_1"
"Maps 4"
@@ -90,7 +69,6 @@
"bank7_2"
ROMX $8
- org $4000
"Sound Effect Headers 2"
"Music Headers 2"
"Sound Effects 2"
@@ -100,44 +78,35 @@
"Music 2"
ROMX $9
- org $4000
"Pics 1"
"Battle (BANK 9)"
ROMX $A
- org $4000
"Pics 2"
"Battle (BANK A)"
ROMX $B
- org $4000
"Pics 3"
"Battle (BANK B)"
ROMX $C
- org $4000
"Pics 4"
"Battle (BANK C)"
ROMX $D
- org $4000
"Pics 5"
"Battle (BANK D)"
ROMX $E
- org $4000
"bankE"
ROMX $F
- org $4000
"bankF"
ROMX $10
- org $4000
"bank10"
ROMX $11
- org $4000
"Maps 5"
"bank11_1"
"Maps 6"
@@ -144,24 +113,20 @@
"bank11_2"
ROMX $12
- org $4000
"Maps 7"
"bank12"
"Maps 8"
ROMX $13
- org $4000
"Pics 6"
"Maps 9"
"bank13"
ROMX $14
- org $4000
"Maps 10"
"bank14"
ROMX $15
- org $4000
"Maps 11"
"bank15_1"
"Maps 12"
@@ -168,7 +133,6 @@
"bank15_2"
ROMX $16
- org $4000
"Maps 13"
"bank16_1"
"Maps 14"
@@ -175,7 +139,6 @@
"bank16_2"
ROMX $17
- org $4000
"Maps 15"
"bank17_1"
"Maps 16"
@@ -182,7 +145,6 @@
"bank17_2"
ROMX $18
- org $4000
"Maps 17"
"bank18_1"
"Maps 18"
@@ -189,24 +151,19 @@
"bank18_2"
ROMX $19
- org $4000
"Tilesets 1"
ROMX $1A
- org $4000
"bank1A"
"Tilesets 2"
ROMX $1B
- org $4000
"Tilesets 3"
ROMX $1C
- org $4000
"bank1C"
ROMX $1D
- org $4000
"Maps 19"
"bank1D_1"
"Maps 20"
@@ -215,11 +172,9 @@
"bank1D_3"
ROMX $1E
- org $4000
"bank1E"
ROMX $1F
- org $4000
"Sound Effect Headers 3"
"Music Headers 3"
"Sound Effects 3"
@@ -227,81 +182,60 @@
"Music 3"
ROMX $20
- org $4000
"Text 1"
ROMX $21
- org $4000
"Text 2"
ROMX $22
- org $4000
"Text 3"
ROMX $23
- org $4000
"Text 4"
ROMX $24
- org $4000
"Text 5"
ROMX $25
- org $4000
"Text 6"
ROMX $26
- org $4000
"Text 7"
ROMX $27
- org $4000
"Text 8"
ROMX $28
- org $4000
"Text 9"
ROMX $29
- org $4000
"Text 10"
ROMX $2A
- org $4000
"Text 11"
ROMX $2B
- org $4000
"Pokedex Text"
ROMX $2C
- org $4000
"Move Names"
WRAM0
- org $c000
"WRAM Bank 0"
-
org $c100
"Sprite State Data"
"OAM Buffer"
-
org $dfff
"Stack"
-SRAM 0
- org $a000
+SRAM $0
"Sprite Buffers"
-SRAM 1
- org $a000
+SRAM $1
"Save Data"
-SRAM 2
- org $a000
+SRAM $2
"Saved Boxes 1"
-SRAM 3
- org $a000
+SRAM $3
"Saved Boxes 2"
-
--- a/macros.asm
+++ b/macros.asm
@@ -1,5 +1,11 @@
-INCLUDE "macros/asm_macros.asm"
-INCLUDE "macros/data_macros.asm"
-INCLUDE "macros/text_macros.asm"
-INCLUDE "macros/audio_macros.asm"
-INCLUDE "macros/event_macros.asm"
+INCLUDE "macros/enum.asm"
+INCLUDE "macros/predef.asm"
+INCLUDE "macros/farcall.asm"
+INCLUDE "macros/data.asm"
+INCLUDE "macros/code.asm"
+INCLUDE "macros/coords.asm"
+
+INCLUDE "macros/scripts/audio.asm"
+INCLUDE "macros/scripts/maps.asm"
+INCLUDE "macros/scripts/events.asm"
+INCLUDE "macros/scripts/text.asm"
--- a/macros/asm_macros.asm
+++ /dev/null
@@ -1,192 +1,0 @@
-
-lb: MACRO ; r, hi, lo
- ld \1, ((\2) & $ff) << 8 + ((\3) & $ff)
-ENDM
-
-homecall: MACRO
- ld a, [H_LOADEDROMBANK]
- push af
- ld a, BANK(\1)
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
- call \1
- pop af
- ld [H_LOADEDROMBANK], a
- ld [MBC1RomBank], a
-ENDM
-
-farcall EQUS "callba"
-
-callba: MACRO
- ld b, BANK(\1)
- ld hl, \1
- call Bankswitch
-ENDM
-
-callab: MACRO
- ld hl, \1
- ld b, BANK(\1)
- call Bankswitch
-ENDM
-
-jpba: MACRO
- ld b, BANK(\1)
- ld hl, \1
- jp Bankswitch
-ENDM
-
-jpab: MACRO
- ld hl, \1
- ld b, BANK(\1)
- jp Bankswitch
-ENDM
-
-validateCoords: MACRO
- IF \1 >= SCREEN_WIDTH
- fail "x coord out of range"
- ENDC
- IF \2 >= SCREEN_HEIGHT
- fail "y coord out of range"
- ENDC
-ENDM
-
-;\1 = r
-;\2 = X
-;\3 = Y
-;\4 = which tilemap (optional)
-coord: MACRO
- validateCoords \2, \3
- IF _NARG >= 4
- ld \1, \4 + SCREEN_WIDTH * \3 + \2
- ELSE
- ld \1, wTileMap + SCREEN_WIDTH * \3 + \2
- ENDC
-ENDM
-
-;\1 = X
-;\2 = Y
-;\3 = which tilemap (optional)
-aCoord: MACRO
- validateCoords \1, \2
- IF _NARG >= 3
- ld a, [\3 + SCREEN_WIDTH * \2 + \1]
- ELSE
- ld a, [wTileMap + SCREEN_WIDTH * \2 + \1]
- ENDC
-ENDM
-
-;\1 = X
-;\2 = Y
-;\3 = which tilemap (optional)
-Coorda: MACRO
- validateCoords \1, \2
- IF _NARG >= 3
- ld [\3 + SCREEN_WIDTH * \2 + \1], a
- ELSE
- ld [wTileMap + SCREEN_WIDTH * \2 + \1], a
- ENDC
-ENDM
-
-;\1 = X
-;\2 = Y
-;\3 = which tilemap (optional)
-dwCoord: MACRO
- validateCoords \1, \2
- IF _NARG >= 3
- dw \3 + SCREEN_WIDTH * \2 + \1
- ELSE
- dw wTileMap + SCREEN_WIDTH * \2 + \1
- ENDC
-ENDM
-
-;\1 = r
-;\2 = X
-;\3 = Y
-;\4 = map width
-overworldMapCoord: MACRO
- ld \1, wOverworldMap + ((\2) + 3) + (((\3) + 3) * ((\4) + (3 * 2)))
-ENDM
-
-; macro for two nibbles
-dn: MACRO
- db (\1 << 4 | \2)
-ENDM
-
-; macro for putting a byte then a word
-dbw: MACRO
- db \1
- dw \2
-ENDM
-
-dba: MACRO
- dbw BANK(\1), \1
-ENDM
-
-dwb: MACRO
- dw \1
- db \2
-ENDM
-
-dab: MACRO
- dwb \1, BANK(\1)
-ENDM
-
-dbbw: MACRO
- db \1, \2
- dw \3
-ENDM
-
-; Predef macro.
-predef_const: MACRO
- const \1PredefID
-ENDM
-
-add_predef: MACRO
-\1Predef::
- db BANK(\1)
- dw \1
-ENDM
-
-predef_id: MACRO
- ld a, (\1Predef - PredefPointers) / 3
-ENDM
-
-predef: MACRO
- predef_id \1
- call Predef
-ENDM
-
-predef_jump: MACRO
- predef_id \1
- jp Predef
-ENDM
-
-tx_pre_const: MACRO
- const \1_id
-ENDM
-
-add_tx_pre: MACRO
-\1_id:: dw \1
-ENDM
-
-db_tx_pre: MACRO
- db (\1_id - TextPredefs) / 2 + 1
-ENDM
-
-tx_pre_id: MACRO
- ld a, (\1_id - TextPredefs) / 2 + 1
-ENDM
-
-tx_pre: MACRO
- tx_pre_id \1
- call PrintPredefTextID
-ENDM
-
-tx_pre_jump: MACRO
- tx_pre_id \1
- jp PrintPredefTextID
-ENDM
-
-ldPal: MACRO
- ld \1, \2 << 6 | \3 << 4 | \4 << 2 | \5
-ENDM
--- a/macros/audio_macros.asm
+++ /dev/null
@@ -1,214 +1,0 @@
-
-StopAllMusic: MACRO
- ld a, $ff
- call PlaySound
-ENDM
-
-Ch1 EQU 0
-Ch2 EQU 1
-Ch3 EQU 2
-Ch4 EQU 3
-Ch5 EQU 4
-Ch6 EQU 5
-Ch7 EQU 6
-Ch8 EQU 7
-
-audio_header: MACRO
- db (_NARG - 2) << 6 | \2
- dw \1_\2
- IF _NARG > 2
- db \3
- dw \1_\3
- ENDC
- IF _NARG > 3
- db \4
- dw \1_\4
- ENDC
- IF _NARG > 4
- db \5
- dw \1_\5
- ENDC
-ENDM
-
-; arguments: length [0, 7], pitch change [-7, 7]
-; length: length of time between pitch shifts
-; sometimes used with a value >7 in which case the MSB is ignored
-; pitch change: positive value means increase in pitch, negative value means decrease in pitch
-; small magnitude means quick change, large magnitude means slow change
-; in signed magnitude representation, so a value of 8 is the same as (negative) 0
-pitch_sweep: MACRO
- db $10
- IF \2 < 0
- db (\1 << 4) | (%1000 | (\2 * -1))
- ELSE
- db (\1 << 4) | \2
- ENDC
-ENDM
-
-; arguments: length [0, 15], volume [0, 15], fade [-7, 7], frequency
-; fade: positive value means decrease in volume, negative value means increase in volume
-; small magnitude means quick change, large magnitude means slow change
-; in signed magnitude representation, so a value of 8 is the same as (negative) 0
-square_note: MACRO
- db $20 | \1
- IF \3 < 0
- db (\2 << 4) | (%1000 | (\3 * -1))
- ELSE
- db (\2 << 4) | \3
- ENDC
- dw \4
-ENDM
-
-; arguments: length [0, 15], volume [0, 15], fade [-7, 7], frequency
-; fade: positive value means decrease in volume, negative value means increase in volume
-; small magnitude means quick change, large magnitude means slow change
-; in signed magnitude representation, so a value of 8 is the same as (negative) 0
-noise_note: MACRO
- db $20 | \1
- IF \3 < 0
- db (\2 << 4) | (%1000 | (\3 * -1))
- ELSE
- db (\2 << 4) | \3
- ENDC
- db \4
-ENDM
-
-C_ EQU $0
-C# EQU $1
-D_ EQU $2
-D# EQU $3
-E_ EQU $4
-F_ EQU $5
-F# EQU $6
-G_ EQU $7
-G# EQU $8
-A_ EQU $9
-A# EQU $A
-B_ EQU $B
-
-; arguments: pitch, length [1, 16]
-note: MACRO
- db (\1 << 4) | (\2 - 1)
-ENDM
-
-; arguments: instrument [1, 19], length [1, 16]
-drum_note: MACRO
- db $B0 | (\2 - 1)
- db \1
-ENDM
-
-; arguments: instrument, length [1, 16]
-; like drum_note but one 1 byte instead of 2
-; can only be used with instruments 1-10, excluding 2
-; unused
-drum_note_short: MACRO
- db (\1 << 4) | (\2 - 1)
-ENDM
-
-; arguments: length [1, 16]
-rest: MACRO
- db $C0 | (\1 - 1)
-ENDM
-
-; arguments: speed [0, 15], volume [0, 15], fade [-7, 7]
-; fade: positive value means decrease in volume, negative value means increase in volume
-; small magnitude means quick change, large magnitude means slow change
-; in signed magnitude representation, so a value of 8 is the same as (negative) 0
-note_type: MACRO
- db $D0 | \1
- IF \3 < 0
- db (\2 << 4) | (%1000 | (\3 * -1))
- ELSE
- db (\2 << 4) | \3
- ENDC
-ENDM
-
-; arguments: speed [0, 15]
-drum_speed: MACRO
- db $D0 | \1
-ENDM
-
-; arguments: octave [1, 8]
-octave: MACRO
- db $E8 - \1
-ENDM
-
-; when enabled, effective frequency used is incremented by 1
-toggle_perfect_pitch: MACRO
- db $E8
-ENDM
-
-; arguments: delay [0, 255], depth [0, 15], rate [0, 15]
-; delay: time delay until vibrato effect begins
-; depth: amplitude of vibrato wave
-; rate: frequency of vibrato wave
-vibrato: MACRO
- db $EA
- db \1
- db (\2 << 4) | \3
-ENDM
-
-; arguments: length [1, 256], octave [1, 8], pitch
-pitch_slide: MACRO
- db $EB
- db \1 - 1
- db ((8 - \2) << 4) | \3
-ENDM
-
-; arguments: duty cycle [0, 3] (12.5%, 25%, 50%, 75%)
-duty_cycle: MACRO
- db $EC
- db \1
-ENDM
-
-; arguments: tempo [0, $ffff]
-; used to calculate note delay counters
-; so a smaller value means music plays faster
-; ideally should be set to $100 or less to guarantee no overflow
-; if larger than $100, large note speed or note length values might cause overflow
-; stored in big endian
-tempo: MACRO
- db $ED
- db \1 / $100
- db \1 % $100
-ENDM
-
-; arguments: left output enable mask, right output enable mask
-stereo_panning: MACRO
- db $EE
- db (\1 << 4) | \2
-ENDM
-
-; arguments: left master volume [0, 7], right master volume [0, 7]
-volume: MACRO
- db $F0
- db (\1 << 4) | \2
-ENDM
-
-; when enabled, the sfx data is interpreted as music data
-execute_music: MACRO
- db $F8
-ENDM
-
-; arguments: duty cycle 1, duty cycle 2, duty cycle 3, duty cycle 4
-duty_cycle_pattern: MACRO
- db $FC
- db \1 << 6 | \2 << 4 | \3 << 2 | \4
-ENDM
-
-; arguments: address
-sound_call: MACRO
- db $FD
- dw \1
-ENDM
-
-; arguments: count, address
-sound_loop: MACRO
- db $FE
- db \1
- dw \2
-ENDM
-
-sound_ret: MACRO
- db $FF
-ENDM
--- /dev/null
+++ b/macros/code.asm
@@ -1,0 +1,9 @@
+; Syntactic sugar macros
+
+lb: MACRO ; r, hi, lo
+ ld \1, ((\2) & $ff) << 8 + ((\3) & $ff)
+ENDM
+
+ldPal: MACRO
+ ld \1, \2 << 6 | \3 << 4 | \4 << 2 | \5
+ENDM
--- /dev/null
+++ b/macros/coords.asm
@@ -1,0 +1,65 @@
+validateCoords: MACRO
+ IF \1 >= SCREEN_WIDTH
+ fail "x coord out of range"
+ ENDC
+ IF \2 >= SCREEN_HEIGHT
+ fail "y coord out of range"
+ ENDC
+ENDM
+
+;\1 = r
+;\2 = X
+;\3 = Y
+;\4 = which tilemap (optional)
+coord: MACRO
+ validateCoords \2, \3
+ IF _NARG >= 4
+ ld \1, \4 + SCREEN_WIDTH * \3 + \2
+ ELSE
+ ld \1, wTileMap + SCREEN_WIDTH * \3 + \2
+ ENDC
+ENDM
+
+;\1 = X
+;\2 = Y
+;\3 = which tilemap (optional)
+aCoord: MACRO
+ validateCoords \1, \2
+ IF _NARG >= 3
+ ld a, [\3 + SCREEN_WIDTH * \2 + \1]
+ ELSE
+ ld a, [wTileMap + SCREEN_WIDTH * \2 + \1]
+ ENDC
+ENDM
+
+;\1 = X
+;\2 = Y
+;\3 = which tilemap (optional)
+Coorda: MACRO
+ validateCoords \1, \2
+ IF _NARG >= 3
+ ld [\3 + SCREEN_WIDTH * \2 + \1], a
+ ELSE
+ ld [wTileMap + SCREEN_WIDTH * \2 + \1], a
+ ENDC
+ENDM
+
+;\1 = X
+;\2 = Y
+;\3 = which tilemap (optional)
+dwCoord: MACRO
+ validateCoords \1, \2
+ IF _NARG >= 3
+ dw \3 + SCREEN_WIDTH * \2 + \1
+ ELSE
+ dw wTileMap + SCREEN_WIDTH * \2 + \1
+ ENDC
+ENDM
+
+;\1 = r
+;\2 = X
+;\3 = Y
+;\4 = map width
+overworldMapCoord: MACRO
+ ld \1, wOverworldMap + ((\2) + 3) + (((\3) + 3) * ((\4) + (3 * 2)))
+ENDM
--- /dev/null
+++ b/macros/data.asm
@@ -1,0 +1,62 @@
+; Value macros
+
+percent EQUS "* $ff / 100"
+
+bcd2: MACRO
+ dn ((\1) / 1000) % 10, ((\1) / 100) % 10
+ dn ((\1) / 10) % 10, (\1) % 10
+ENDM
+
+bcd3: MACRO
+ dn ((\1) / 100000) % 10, ((\1) / 10000) % 10
+ dn ((\1) / 1000) % 10, ((\1) / 100) % 10
+ dn ((\1) / 10) % 10, (\1) % 10
+ENDM
+
+coins equs "bcd2"
+money equs "bcd3"
+
+RGB: MACRO
+ dw (\3 << 10 | \2 << 5 | \1)
+ENDM
+
+tmlearn: MACRO
+x = 0
+ REPT _NARG
+IF \1 != 0
+x = x | (1 << ((\1 - 1) % 8))
+ENDC
+ SHIFT
+ ENDR
+ db x
+ENDM
+
+
+; Constant data (db, dw, dl) macros
+
+dn: MACRO ; nybbles
+ db (\1 << 4 | \2)
+ENDM
+
+dbw: MACRO
+ db \1
+ dw \2
+ENDM
+
+dba: MACRO
+ dbw BANK(\1), \1
+ENDM
+
+dwb: MACRO
+ dw \1
+ db \2
+ENDM
+
+dab: MACRO
+ dwb \1, BANK(\1)
+ENDM
+
+dbbw: MACRO
+ db \1, \2
+ dw \3
+ENDM
--- a/macros/data_macros.asm
+++ /dev/null
@@ -1,242 +1,0 @@
-
-; Constant enumeration is useful for monsters, items, moves, etc.
-const_def: MACRO
-const_value = 0
-ENDM
-
-const: MACRO
-\1 EQU const_value
-const_value = const_value + 1
-ENDM
-
-; data format macros
-
-percent EQUS "* $ff / 100"
-
-bcd2: MACRO
- dn ((\1) / 1000) % 10, ((\1) / 100) % 10
- dn ((\1) / 10) % 10, (\1) % 10
-ENDM
-
-bcd3: MACRO
- dn ((\1) / 100000) % 10, ((\1) / 10000) % 10
- dn ((\1) / 1000) % 10, ((\1) / 100) % 10
- dn ((\1) / 10) % 10, (\1) % 10
-ENDM
-
-coins equs "bcd2"
-money equs "bcd3"
-
-;\1 = Map Width
-;\2 = Rows above (Y-blocks)
-;\3 = X movement (X-blocks)
-EVENT_DISP: MACRO
- dw (wOverworldMap + 7 + (\1) + ((\1) + 6) * ((\2) >> 1) + ((\3) >> 1)) ; Ev.Disp
- db \2,\3 ;Y,X
-ENDM
-
-FLYWARP_DATA: MACRO
- EVENT_DISP \1,\2,\3
- db ((\2) & $01) ;sub-block Y
- db ((\3) & $01) ;sub-block X
-ENDM
-
-; external map entry macro
-EMAP: MACRO ; emap x-coordinate,y-coordinate,textpointer
-; the appearance of towns and routes in the town map, indexed by map id
- ; nybble: y-coordinate
- ; nybble: x-coordinate
- ; word : pointer to map name
- dn \2, \1
- dw \3
-ENDM
-
-; internal map entry macro
-IMAP: MACRO ; imap mapid_less_than,x-coordinate,y-coordinate,textpointer
-; the appearance of buildings and dungeons in the town map
- ; byte : maximum map id subject to this rule
- ; nybble: y-coordinate
- ; nybble: x-coordinate
- ; word : pointer to map name
- db \1 + 1
- dn \3, \2
- dw \4
-ENDM
-
-; tilesets' headers macro
-tileset: MACRO
- db BANK(\2) ; BANK(GFX)
- dw \1, \2, \3 ; Block, GFX, Coll
- db \4, \5, \6 ; counter tiles
- db \7 ; grass tile
- db \8 ; permission (indoor, cave, outdoor)
-ENDM
-
-INDOOR EQU 0
-CAVE EQU 1
-OUTDOOR EQU 2
-
-RGB: MACRO
- dw (\3 << 10 | \2 << 5 | \1)
-ENDM
-
-WALK EQU $FE
-STAY EQU $FF
-
-DOWN EQU $D0
-UP EQU $D1
-LEFT EQU $D2
-RIGHT EQU $D3
-NONE EQU $FF
-
-;\1 sprite id
-;\2 x position
-;\3 y position
-;\4 movement (WALK/STAY)
-;\5 range or direction
-;\6 text id
-;\7 items only: item id
-;\7 trainers only: trainer class/pokemon id
-;\8 trainers only: trainer number/pokemon level
-object: MACRO
- db \1
- db \3 + 4
- db \2 + 4
- db \4
- db \5
- IF (_NARG > 7)
- db TRAINER | \6
- db \7
- db \8
- ELSE
- IF (_NARG > 6)
- db ITEM | \6
- db \7
- ELSE
- db \6
- ENDC
- ENDC
-ENDM
-
-;\1 x position
-;\2 y position
-;\3 destination warp id
-;\4 destination map (-1 = wLastMap)
-warp: MACRO
- db \2, \1, \3, \4
-ENDM
-
-;\1 x position
-;\2 y position
-;\3 sign id
-sign: MACRO
- db \2, \1, \3
-ENDM
-
-;\1 x position
-;\2 y position
-;\3 map width
-warp_to: MACRO
- EVENT_DISP \3, \2, \1
-ENDM
-
-;\1 (byte) = current map id
-;\2 (byte) = connected map id
-;\3 (byte) = x movement of connection strip
-;\4 (byte) = connection strip offset
-;\5 (word) = connected map blocks pointer
-NORTH_MAP_CONNECTION: MACRO
- db \2 ; map id
- dw \5 + (\2_WIDTH * (\2_HEIGHT - 3)) + \4; "Connection Strip" location
- dw wOverworldMap + 3 + \3 ; current map position
- IF (\1_WIDTH < \2_WIDTH)
- db \1_WIDTH - \3 + 3 ; width of connection strip
- ELSE
- db \2_WIDTH - \4 ; width of connection strip
- ENDC
- db \2_WIDTH ; map width
- db (\2_HEIGHT * 2) - 1 ; y alignment (y coordinate of player when entering map)
- db (\3 - \4) * -2 ; x alignment (x coordinate of player when entering map)
- dw wOverworldMap + 1 + (\2_HEIGHT * (\2_WIDTH + 6)) ; window (position of the upper left block after entering the map)
-ENDM
-
-;\1 (byte) = current map id
-;\2 (byte) = connected map id
-;\3 (byte) = x movement of connection strip
-;\4 (byte) = connection strip offset
-;\5 (word) = connected map blocks pointer
-;\6 (flag) = add 3 to width of connection strip (why?)
-SOUTH_MAP_CONNECTION: MACRO
- db \2 ; map id
- dw \5 + \4 ; "Connection Strip" location
- dw wOverworldMap + 3 + (\1_HEIGHT + 3) * (\1_WIDTH + 6) + \3 ; current map position
- IF (\1_WIDTH < \2_WIDTH)
- IF (_NARG > 5)
- db \1_WIDTH - \3 + 3 ; width of connection strip
- ELSE
- db \1_WIDTH - \3 ; width of connection strip
- ENDC
- ELSE
- db \2_WIDTH - \4 ; width of connection strip
- ENDC
- db \2_WIDTH ; map width
- db 0 ; y alignment (y coordinate of player when entering map)
- db (\3 - \4) * -2 ; x alignment (x coordinate of player when entering map)
- dw wOverworldMap + 7 + \2_WIDTH ; window (position of the upper left block after entering the map)
-ENDM
-
-;\1 (byte) = current map id
-;\2 (byte) = connected map id
-;\3 (byte) = y movement of connection strip
-;\4 (byte) = connection strip offset
-;\5 (word) = connected map blocks pointer
-WEST_MAP_CONNECTION: MACRO
- db \2 ; map id
- dw \5 + (\2_WIDTH * \4) + \2_WIDTH - 3 ; "Connection Strip" location
- dw wOverworldMap + (\1_WIDTH + 6) * (\3 + 3) ; current map position
- IF (\1_HEIGHT < \2_HEIGHT)
- db \1_HEIGHT - \3 + 3 ; height of connection strip
- ELSE
- db \2_HEIGHT - \4 ; height of connection strip
- ENDC
- db \2_WIDTH ; map width
- db (\3 - \4) * -2 ; y alignment
- db (\2_WIDTH * 2) - 1 ; x alignment
- dw wOverworldMap + 6 + (2 * \2_WIDTH) ; window (position of the upper left block after entering the map)
-ENDM
-
-;\1 (byte) = current map id
-;\2 (byte) = connected map id
-;\3 (byte) = y movement of connection strip
-;\4 (byte) = connection strip offset
-;\5 (word) = connected map blocks pointer
-;\6 (flag) = add 3 to height of connection strip (why?)
-EAST_MAP_CONNECTION: MACRO
- db \2 ; map id
- dw \5 + (\2_WIDTH * \4) ; "Connection Strip" location
- dw wOverworldMap - 3 + (\1_WIDTH + 6) * (\3 + 4) ; current map position
- IF (\1_HEIGHT < \2_HEIGHT)
- IF (_NARG > 5)
- db \1_HEIGHT - \3 + 3 ; height of connection strip
- ELSE
- db \1_HEIGHT - \3 ; height of connection strip
- ENDC
- ELSE
- db \2_HEIGHT - \4 ; height of connection strip
- ENDC
- db \2_WIDTH ; map width
- db (\3 - \4) * -2 ; y alignment
- db 0 ; x alignment
- dw wOverworldMap + 7 + \2_WIDTH ; window (position of the upper left block after entering the map)
-ENDM
-
-tmlearn: MACRO
-x = 0
- REPT _NARG
-IF \1 != 0
-x = x | (1 << ((\1 - 1) % 8))
-ENDC
- SHIFT
- ENDR
- db x
-ENDM
--- /dev/null
+++ b/macros/enum.asm
@@ -1,0 +1,43 @@
+; Enumerate variables
+
+enum_start: MACRO
+if _NARG >= 1
+__enum__ = \1
+else
+__enum__ = 0
+endc
+if _NARG >= 2
+__enumdir__ = \2
+else
+__enumdir__ = 1
+endc
+ENDM
+
+enum: MACRO
+\1 EQU __enum__
+__enum__ = __enum__ + __enumdir__
+ENDM
+
+enum_set: MACRO
+__enum__ = \1
+ENDM
+
+; Enumerate constants
+
+const_def: MACRO
+if _NARG >= 1
+const_value = \1
+else
+const_value = 0
+endc
+ENDM
+
+const: MACRO
+\1 EQU const_value
+const_value = const_value + 1
+ENDM
+
+shift_const: MACRO
+\1 EQU (1 << const_value)
+const_value = const_value + 1
+ENDM
--- a/macros/event_macros.asm
+++ /dev/null
@@ -1,441 +1,0 @@
-;\1 = event index
-;\2 = return result in carry instead of zero flag
-CheckEvent: MACRO
-event_byte = ((\1) / 8)
- ld a, [wEventFlags + event_byte]
-
- IF _NARG > 1
- IF ((\1) % 8) == 7
- add a
- ELSE
- REPT ((\1) % 8) + 1
- rrca
- ENDR
- ENDC
- ELSE
- bit (\1) % 8, a
- ENDC
- ENDM
-
-;\1 = event index
-CheckEventReuseA: MACRO
- IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld a, [wEventFlags + event_byte]
- ENDC
-
- bit (\1) % 8, a
- ENDM
-
-;\1 = event index
-;\2 = event index of the last event used before the branch
-CheckEventAfterBranchReuseA: MACRO
-event_byte = ((\2) / 8)
- IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld a, [wEventFlags + event_byte]
- ENDC
-
- bit (\1) % 8, a
- ENDM
-
-;\1 = reg
-;\2 = event index
-;\3 = event index this event is relative to (optional, this is needed when there is a fixed flag address)
-EventFlagBit: MACRO
- IF _NARG > 2
- ld \1, ((\3) % 8) + ((\2) - (\3))
- ELSE
- ld \1, (\2) % 8
- ENDC
- ENDM
-
-;\1 = reg
-;\2 = event index
-EventFlagAddress: MACRO
-event_byte = ((\2) / 8)
- ld \1, wEventFlags + event_byte
- ENDM
-
-;\1 = event index
-CheckEventHL: MACRO
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- bit (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-CheckEventReuseHL: MACRO
-IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- ENDC
-
- bit (\1) % 8, [hl]
- ENDM
-
-; dangerous, only use when HL is guaranteed to be the desired value
-;\1 = event index
-CheckEventForceReuseHL: MACRO
-event_byte = ((\1) / 8)
- bit (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-;\2 = event index of the last event used before the branch
-CheckEventAfterBranchReuseHL: MACRO
-event_byte = ((\2) / 8)
-IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- ENDC
-
- bit (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-CheckAndSetEvent: MACRO
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- bit (\1) % 8, [hl]
- set (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-CheckAndResetEvent: MACRO
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- bit (\1) % 8, [hl]
- res (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-CheckAndSetEventA: MACRO
- ld a, [wEventFlags + ((\1) / 8)]
- bit (\1) % 8, a
- set (\1) % 8, a
- ld [wEventFlags + ((\1) / 8)], a
- ENDM
-
-;\1 = event index
-CheckAndResetEventA: MACRO
- ld a, [wEventFlags + ((\1) / 8)]
- bit (\1) % 8, a
- res (\1) % 8, a
- ld [wEventFlags + ((\1) / 8)], a
- ENDM
-
-;\1 = event index
-SetEvent: MACRO
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- set (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-SetEventReuseHL: MACRO
- IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- ENDC
-
- set (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-;\2 = event index of the last event used before the branch
-SetEventAfterBranchReuseHL: MACRO
-event_byte = ((\2) / 8)
-IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- ENDC
-
- set (\1) % 8, [hl]
- ENDM
-
-; dangerous, only use when HL is guaranteed to be the desired value
-;\1 = event index
-SetEventForceReuseHL: MACRO
-event_byte = ((\1) / 8)
- set (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-;\2 = event index
-;\3, \4, ... = additional (optional) event indices
-SetEvents: MACRO
- SetEvent \1
- rept (_NARG + -1)
- SetEventReuseHL \2
- shift
- endr
- ENDM
-
-;\1 = event index
-ResetEvent: MACRO
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- res (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-ResetEventReuseHL: MACRO
- IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- ENDC
-
- res (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-;\2 = event index of the last event used before the branch
-ResetEventAfterBranchReuseHL: MACRO
-event_byte = ((\2) / 8)
-IF event_byte != ((\1) / 8)
-event_byte = ((\1) / 8)
- ld hl, wEventFlags + event_byte
- ENDC
-
- res (\1) % 8, [hl]
- ENDM
-
-; dangerous, only use when HL is guaranteed to be the desired value
-;\1 = event index
-ResetEventForceReuseHL: MACRO
-event_byte = ((\1) / 8)
- res (\1) % 8, [hl]
- ENDM
-
-;\1 = event index
-;\2 = event index
-;\3 = event index (optional)
-ResetEvents: MACRO
- ResetEvent \1
- rept (_NARG + -1)
- ResetEventReuseHL \2
- shift
- endr
- ENDM
-
-;\1 = event index
-;\2 = number of bytes away from the base address (optional, for matching the ROM)
-dbEventFlagBit: MACRO
- IF _NARG > 1
- db ((\1) % 8) + ((\2) * 8)
- ELSE
- db ((\1) % 8)
- ENDC
- ENDM
-
-;\1 = event index
-;\2 = number of bytes away from the base address (optional, for matching the ROM)
-dwEventFlagAddress: MACRO
- IF _NARG > 1
- dw wEventFlags + ((\1) / 8) - (\2)
- ELSE
- dw wEventFlags + ((\1) / 8)
- ENDC
- ENDM
-
-;\1 = start
-;\2 = end
-SetEventRange: MACRO
-event_start_byte = ((\1) / 8)
-event_end_byte = ((\2) / 8)
-
- IF event_end_byte < event_start_byte
- FAIL "Incorrect argument order in SetEventRange."
- ENDC
-
- IF event_start_byte == event_end_byte
- ld a, [wEventFlags + event_start_byte]
- or (1 << (((\2) % 8) + 1)) - (1 << ((\1) % 8))
- ld [wEventFlags + event_start_byte], a
- ELSE
-event_fill_start = event_start_byte + 1
-event_fill_count = event_end_byte - event_start_byte - 1
-
- IF ((\1) % 8) == 0
-event_fill_start = event_fill_start + -1
-event_fill_count = event_fill_count + 1
- ELSE
- ld a, [wEventFlags + event_start_byte]
- or $ff - ((1 << ((\1) % 8)) - 1)
- ld [wEventFlags + event_start_byte], a
- ENDC
-
- IF ((\2) % 8) == 7
-event_fill_count = event_fill_count + 1
- ENDC
-
- IF event_fill_count == 1
- ld hl, wEventFlags + event_fill_start
- ld [hl], $ff
- ENDC
-
- IF event_fill_count > 1
- ld a, $ff
- ld hl, wEventFlags + event_fill_start
-
- REPT event_fill_count + -1
- ld [hli], a
- ENDR
-
- ld [hl], a
- ENDC
-
- IF ((\2) % 8) == 0
- ld hl, wEventFlags + event_end_byte
- set 0, [hl]
- ELSE
- IF ((\2) % 8) != 7
- ld a, [wEventFlags + event_end_byte]
- or (1 << (((\2) % 8) + 1)) - 1
- ld [wEventFlags + event_end_byte], a
- ENDC
- ENDC
- ENDC
- ENDM
-
-;\1 = start
-;\2 = end
-;\3 = assume a is 0 if present
-ResetEventRange: MACRO
-event_start_byte = ((\1) / 8)
-event_end_byte = ((\2) / 8)
-
- IF event_end_byte < event_start_byte
- FAIL "Incorrect argument order in ResetEventRange."
- ENDC
-
- IF event_start_byte == event_end_byte
- ld a, [wEventFlags + event_start_byte]
- and ~((1 << (((\2) % 8) + 1)) - (1 << ((\1) % 8))) & $ff
- ld [wEventFlags + event_start_byte], a
- ELSE
-event_fill_start = event_start_byte + 1
-event_fill_count = event_end_byte - event_start_byte - 1
-
- IF ((\1) % 8) == 0
-event_fill_start = event_fill_start + -1
-event_fill_count = event_fill_count + 1
- ELSE
- ld a, [wEventFlags + event_start_byte]
- and ~($ff - ((1 << ((\1) % 8)) - 1)) & $ff
- ld [wEventFlags + event_start_byte], a
- ENDC
-
- IF ((\2) % 8) == 7
-event_fill_count = event_fill_count + 1
- ENDC
-
- IF event_fill_count == 1
- ld hl, wEventFlags + event_fill_start
- ld [hl], 0
- ENDC
-
- IF event_fill_count > 1
- ld hl, wEventFlags + event_fill_start
-
- ; force xor a if we just to wrote to it above
- IF (_NARG < 3) || (((\1) % 8) != 0)
- xor a
- ENDC
-
- REPT event_fill_count + -1
- ld [hli], a
- ENDR
-
- ld [hl], a
- ENDC
-
- IF ((\2) % 8) == 0
- ld hl, wEventFlags + event_end_byte
- res 0, [hl]
- ELSE
- IF ((\2) % 8) != 7
- ld a, [wEventFlags + event_end_byte]
- and ~((1 << (((\2) % 8) + 1)) - 1) & $ff
- ld [wEventFlags + event_end_byte], a
- ENDC
- ENDC
- ENDC
- ENDM
-
-; returns whether both events are set in Z flag
-; This is counter-intuitive because the other event checks set the Z flag when
-; the event is not set, but this sets the Z flag when the event is set.
-;\1 = event index 1
-;\2 = event index 2
-;\3 = try to reuse a (optional)
-CheckBothEventsSet: MACRO
- IF ((\1) / 8) == ((\2) / 8)
- IF (_NARG < 3) || (((\1) / 8) != event_byte)
-event_byte = ((\1) / 8)
- ld a, [wEventFlags + ((\1) / 8)]
- ENDC
- and (1 << ((\1) % 8)) | (1 << ((\2) % 8))
- cp (1 << ((\1) % 8)) | (1 << ((\2) % 8))
- ELSE
- ; This case doesn't happen in the original ROM.
- IF ((\1) % 8) == ((\2) % 8)
- push hl
- ld a, [wEventFlags + ((\1) / 8)]
- ld hl, wEventFlags + ((\2) / 8)
- and [hl]
- cpl
- bit ((\1) % 8), a
- pop hl
- ELSE
- push bc
- ld a, [wEventFlags + ((\1) / 8)]
- and (1 << ((\1) % 8))
- ld b, a
- ld a, [wEventFlags + ((\2) / 8)]
- and (1 << ((\2) % 8))
- or b
- cp (1 << ((\1) % 8)) | (1 << ((\2) % 8))
- pop bc
- ENDC
- ENDC
- ENDM
-
-; returns the complement of whether either event is set in Z flag
-;\1 = event index 1
-;\2 = event index 2
-CheckEitherEventSet: MACRO
- IF ((\1) / 8) == ((\2) / 8)
- ld a, [wEventFlags + ((\1) / 8)]
- and (1 << ((\1) % 8)) | (1 << ((\2) % 8))
- ELSE
- ; This case doesn't happen in the original ROM.
- IF ((\1) % 8) == ((\2) % 8)
- push hl
- ld a, [wEventFlags + ((\1) / 8)]
- ld hl, wEventFlags + ((\2) / 8)
- or [hl]
- bit ((\1) % 8), a
- pop hl
- ELSE
- push bc
- ld a, [wEventFlags + ((\1) / 8)]
- and (1 << ((\1) % 8))
- ld b, a
- ld a, [wEventFlags + ((\2) / 8)]
- and (1 << ((\2) % 8))
- or b
- pop bc
- ENDC
- ENDC
- ENDM
-
-; for handling fixed event bits when events are inserted/removed
-;\1 = event index
-;\2 = fixed flag bit
-AdjustEventBit: MACRO
- IF ((\1) % 8) != (\2)
- add ((\1) % 8) - (\2)
- ENDC
- ENDM
--- /dev/null
+++ b/macros/farcall.asm
@@ -1,0 +1,37 @@
+farcall EQUS "callba"
+
+callba: MACRO
+ ld b, BANK(\1)
+ ld hl, \1
+ call Bankswitch
+ENDM
+
+callab: MACRO
+ ld hl, \1
+ ld b, BANK(\1)
+ call Bankswitch
+ENDM
+
+jpba: MACRO
+ ld b, BANK(\1)
+ ld hl, \1
+ jp Bankswitch
+ENDM
+
+jpab: MACRO
+ ld hl, \1
+ ld b, BANK(\1)
+ jp Bankswitch
+ENDM
+
+homecall: MACRO
+ ld a, [hLoadedROMBank]
+ push af
+ ld a, BANK(\1)
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ call \1
+ pop af
+ ld [hLoadedROMBank], a
+ ld [MBC1RomBank], a
+ENDM
--- /dev/null
+++ b/macros/predef.asm
@@ -1,0 +1,32 @@
+predef_id: MACRO
+ ld a, (\1Predef - PredefPointers) / 3
+ENDM
+
+predef: MACRO
+ predef_id \1
+ call Predef
+ENDM
+
+predef_jump: MACRO
+ predef_id \1
+ jp Predef
+ENDM
+
+
+tx_pre_id: MACRO
+ ld a, (\1_id - TextPredefs) / 2 + 1
+ENDM
+
+tx_pre: MACRO
+ tx_pre_id \1
+ call PrintPredefTextID
+ENDM
+
+tx_pre_jump: MACRO
+ tx_pre_id \1
+ jp PrintPredefTextID
+ENDM
+
+db_tx_pre: MACRO
+ db (\1_id - TextPredefs) / 2 + 1
+ENDM
--- /dev/null
+++ b/macros/scripts/audio.asm
@@ -1,0 +1,186 @@
+audio_header: MACRO
+ db (_NARG - 2) << 6 | \2
+ dw \1_\2
+ IF _NARG > 2
+ db \3
+ dw \1_\3
+ ENDC
+ IF _NARG > 3
+ db \4
+ dw \1_\4
+ ENDC
+ IF _NARG > 4
+ db \5
+ dw \1_\5
+ ENDC
+ENDM
+
+; arguments: length [0, 7], pitch change [-7, 7]
+; length: length of time between pitch shifts
+; sometimes used with a value >7 in which case the MSB is ignored
+; pitch change: positive value means increase in pitch, negative value means decrease in pitch
+; small magnitude means quick change, large magnitude means slow change
+; in signed magnitude representation, so a value of 8 is the same as (negative) 0
+pitch_sweep: MACRO
+ db $10
+ IF \2 < 0
+ db (\1 << 4) | (%1000 | (\2 * -1))
+ ELSE
+ db (\1 << 4) | \2
+ ENDC
+ENDM
+
+; arguments: length [0, 15], volume [0, 15], fade [-7, 7], frequency
+; fade: positive value means decrease in volume, negative value means increase in volume
+; small magnitude means quick change, large magnitude means slow change
+; in signed magnitude representation, so a value of 8 is the same as (negative) 0
+square_note: MACRO
+ db $20 | \1
+ IF \3 < 0
+ db (\2 << 4) | (%1000 | (\3 * -1))
+ ELSE
+ db (\2 << 4) | \3
+ ENDC
+ dw \4
+ENDM
+
+; arguments: length [0, 15], volume [0, 15], fade [-7, 7], frequency
+; fade: positive value means decrease in volume, negative value means increase in volume
+; small magnitude means quick change, large magnitude means slow change
+; in signed magnitude representation, so a value of 8 is the same as (negative) 0
+noise_note: MACRO
+ db $20 | \1
+ IF \3 < 0
+ db (\2 << 4) | (%1000 | (\3 * -1))
+ ELSE
+ db (\2 << 4) | \3
+ ENDC
+ db \4
+ENDM
+
+; arguments: pitch, length [1, 16]
+note: MACRO
+ db (\1 << 4) | (\2 - 1)
+ENDM
+
+; arguments: instrument [1, 19], length [1, 16]
+drum_note: MACRO
+ db $B0 | (\2 - 1)
+ db \1
+ENDM
+
+; arguments: instrument, length [1, 16]
+; like drum_note but one 1 byte instead of 2
+; can only be used with instruments 1-10, excluding 2
+; unused
+drum_note_short: MACRO
+ db (\1 << 4) | (\2 - 1)
+ENDM
+
+; arguments: length [1, 16]
+rest: MACRO
+ db $C0 | (\1 - 1)
+ENDM
+
+; arguments: speed [0, 15], volume [0, 15], fade [-7, 7]
+; fade: positive value means decrease in volume, negative value means increase in volume
+; small magnitude means quick change, large magnitude means slow change
+; in signed magnitude representation, so a value of 8 is the same as (negative) 0
+note_type: MACRO
+ db $D0 | \1
+ IF \3 < 0
+ db (\2 << 4) | (%1000 | (\3 * -1))
+ ELSE
+ db (\2 << 4) | \3
+ ENDC
+ENDM
+
+; arguments: speed [0, 15]
+drum_speed: MACRO
+ db $D0 | \1
+ENDM
+
+; arguments: octave [1, 8]
+octave: MACRO
+ db $E8 - \1
+ENDM
+
+; when enabled, effective frequency used is incremented by 1
+toggle_perfect_pitch: MACRO
+ db $E8
+ENDM
+
+; arguments: delay [0, 255], depth [0, 15], rate [0, 15]
+; delay: time delay until vibrato effect begins
+; depth: amplitude of vibrato wave
+; rate: frequency of vibrato wave
+vibrato: MACRO
+ db $EA
+ db \1
+ db (\2 << 4) | \3
+ENDM
+
+; arguments: length [1, 256], octave [1, 8], pitch
+pitch_slide: MACRO
+ db $EB
+ db \1 - 1
+ db ((8 - \2) << 4) | \3
+ENDM
+
+; arguments: duty cycle [0, 3] (12.5%, 25%, 50%, 75%)
+duty_cycle: MACRO
+ db $EC
+ db \1
+ENDM
+
+; arguments: tempo [0, $ffff]
+; used to calculate note delay counters
+; so a smaller value means music plays faster
+; ideally should be set to $100 or less to guarantee no overflow
+; if larger than $100, large note speed or note length values might cause overflow
+; stored in big endian
+tempo: MACRO
+ db $ED
+ db \1 / $100
+ db \1 % $100
+ENDM
+
+; arguments: left output enable mask, right output enable mask
+stereo_panning: MACRO
+ db $EE
+ db (\1 << 4) | \2
+ENDM
+
+; arguments: left master volume [0, 7], right master volume [0, 7]
+volume: MACRO
+ db $F0
+ db (\1 << 4) | \2
+ENDM
+
+; when enabled, the sfx data is interpreted as music data
+execute_music: MACRO
+ db $F8
+ENDM
+
+; arguments: duty cycle 1, duty cycle 2, duty cycle 3, duty cycle 4
+duty_cycle_pattern: MACRO
+ db $FC
+ db \1 << 6 | \2 << 4 | \3 << 2 | \4
+ENDM
+
+; arguments: address
+sound_call: MACRO
+ db $FD
+ dw \1
+ENDM
+
+; arguments: count, address
+sound_loop: MACRO
+ db $FE
+ db \1
+ dw \2
+ENDM
+
+sound_ret: MACRO
+ db $FF
+ENDM
--- /dev/null
+++ b/macros/scripts/events.asm
@@ -1,0 +1,471 @@
+;\1 = event index
+;\2 = return result in carry instead of zero flag
+CheckEvent: MACRO
+event_byte = ((\1) / 8)
+ ld a, [wEventFlags + event_byte]
+
+ IF _NARG > 1
+ IF ((\1) % 8) == 7
+ add a
+ ELSE
+ REPT ((\1) % 8) + 1
+ rrca
+ ENDR
+ ENDC
+ ELSE
+ bit (\1) % 8, a
+ ENDC
+ENDM
+
+
+;\1 = event index
+CheckEventReuseA: MACRO
+ IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld a, [wEventFlags + event_byte]
+ ENDC
+
+ bit (\1) % 8, a
+ENDM
+
+
+;\1 = event index
+;\2 = event index of the last event used before the branch
+CheckEventAfterBranchReuseA: MACRO
+event_byte = ((\2) / 8)
+ IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld a, [wEventFlags + event_byte]
+ ENDC
+
+ bit (\1) % 8, a
+ENDM
+
+
+;\1 = reg
+;\2 = event index
+;\3 = event index this event is relative to (optional, this is needed when there is a fixed flag address)
+EventFlagBit: MACRO
+ IF _NARG > 2
+ ld \1, ((\3) % 8) + ((\2) - (\3))
+ ELSE
+ ld \1, (\2) % 8
+ ENDC
+ENDM
+
+
+;\1 = reg
+;\2 = event index
+EventFlagAddress: MACRO
+event_byte = ((\2) / 8)
+ ld \1, wEventFlags + event_byte
+ENDM
+
+
+;\1 = event index
+CheckEventHL: MACRO
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ bit (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+CheckEventReuseHL: MACRO
+IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ ENDC
+
+ bit (\1) % 8, [hl]
+ENDM
+
+
+; dangerous, only use when HL is guaranteed to be the desired value
+;\1 = event index
+CheckEventForceReuseHL: MACRO
+event_byte = ((\1) / 8)
+ bit (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+;\2 = event index of the last event used before the branch
+CheckEventAfterBranchReuseHL: MACRO
+event_byte = ((\2) / 8)
+IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ ENDC
+
+ bit (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+CheckAndSetEvent: MACRO
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ bit (\1) % 8, [hl]
+ set (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+CheckAndResetEvent: MACRO
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ bit (\1) % 8, [hl]
+ res (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+CheckAndSetEventA: MACRO
+ ld a, [wEventFlags + ((\1) / 8)]
+ bit (\1) % 8, a
+ set (\1) % 8, a
+ ld [wEventFlags + ((\1) / 8)], a
+ENDM
+
+
+;\1 = event index
+CheckAndResetEventA: MACRO
+ ld a, [wEventFlags + ((\1) / 8)]
+ bit (\1) % 8, a
+ res (\1) % 8, a
+ ld [wEventFlags + ((\1) / 8)], a
+ENDM
+
+
+;\1 = event index
+SetEvent: MACRO
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ set (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+SetEventReuseHL: MACRO
+ IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ ENDC
+
+ set (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+;\2 = event index of the last event used before the branch
+SetEventAfterBranchReuseHL: MACRO
+event_byte = ((\2) / 8)
+IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ ENDC
+
+ set (\1) % 8, [hl]
+ENDM
+
+
+; dangerous, only use when HL is guaranteed to be the desired value
+;\1 = event index
+SetEventForceReuseHL: MACRO
+event_byte = ((\1) / 8)
+ set (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+;\2 = event index
+;\3, \4, ... = additional (optional) event indices
+SetEvents: MACRO
+ SetEvent \1
+ rept _NARG - 1
+ SetEventReuseHL \2
+ shift
+ endr
+ENDM
+
+
+;\1 = event index
+ResetEvent: MACRO
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ res (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+ResetEventReuseHL: MACRO
+ IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ ENDC
+
+ res (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+;\2 = event index of the last event used before the branch
+ResetEventAfterBranchReuseHL: MACRO
+event_byte = ((\2) / 8)
+IF event_byte != ((\1) / 8)
+event_byte = ((\1) / 8)
+ ld hl, wEventFlags + event_byte
+ ENDC
+
+ res (\1) % 8, [hl]
+ENDM
+
+
+; dangerous, only use when HL is guaranteed to be the desired value
+;\1 = event index
+ResetEventForceReuseHL: MACRO
+event_byte = ((\1) / 8)
+ res (\1) % 8, [hl]
+ENDM
+
+
+;\1 = event index
+;\2 = event index
+;\3 = event index (optional)
+ResetEvents: MACRO
+ ResetEvent \1
+ rept _NARG - 1
+ ResetEventReuseHL \2
+ shift
+ endr
+ENDM
+
+
+;\1 = event index
+;\2 = number of bytes away from the base address (optional, for matching the ROM)
+dbEventFlagBit: MACRO
+ IF _NARG > 1
+ db ((\1) % 8) + ((\2) * 8)
+ ELSE
+ db ((\1) % 8)
+ ENDC
+ENDM
+
+
+;\1 = event index
+;\2 = number of bytes away from the base address (optional, for matching the ROM)
+dwEventFlagAddress: MACRO
+ IF _NARG > 1
+ dw wEventFlags + ((\1) / 8) - (\2)
+ ELSE
+ dw wEventFlags + ((\1) / 8)
+ ENDC
+ENDM
+
+
+;\1 = start
+;\2 = end
+SetEventRange: MACRO
+event_start_byte = ((\1) / 8)
+event_end_byte = ((\2) / 8)
+
+ IF event_end_byte < event_start_byte
+ FAIL "Incorrect argument order in SetEventRange."
+ ENDC
+
+ IF event_start_byte == event_end_byte
+ ld a, [wEventFlags + event_start_byte]
+ or (1 << (((\2) % 8) + 1)) - (1 << ((\1) % 8))
+ ld [wEventFlags + event_start_byte], a
+ ELSE
+event_fill_start = event_start_byte + 1
+event_fill_count = event_end_byte - event_start_byte - 1
+
+ IF ((\1) % 8) == 0
+event_fill_start = event_fill_start - 1
+event_fill_count = event_fill_count + 1
+ ELSE
+ ld a, [wEventFlags + event_start_byte]
+ or $ff - ((1 << ((\1) % 8)) - 1)
+ ld [wEventFlags + event_start_byte], a
+ ENDC
+
+ IF ((\2) % 8) == 7
+event_fill_count = event_fill_count + 1
+ ENDC
+
+ IF event_fill_count == 1
+ ld hl, wEventFlags + event_fill_start
+ ld [hl], $ff
+ ENDC
+
+ IF event_fill_count > 1
+ ld a, $ff
+ ld hl, wEventFlags + event_fill_start
+
+ REPT event_fill_count - 1
+ ld [hli], a
+ ENDR
+
+ ld [hl], a
+ ENDC
+
+ IF ((\2) % 8) == 0
+ ld hl, wEventFlags + event_end_byte
+ set 0, [hl]
+ ELSE
+ IF ((\2) % 8) != 7
+ ld a, [wEventFlags + event_end_byte]
+ or (1 << (((\2) % 8) + 1)) - 1
+ ld [wEventFlags + event_end_byte], a
+ ENDC
+ ENDC
+ ENDC
+ENDM
+
+
+;\1 = start
+;\2 = end
+;\3 = assume a is 0 if present
+ResetEventRange: MACRO
+event_start_byte = ((\1) / 8)
+event_end_byte = ((\2) / 8)
+
+ IF event_end_byte < event_start_byte
+ FAIL "Incorrect argument order in ResetEventRange."
+ ENDC
+
+ IF event_start_byte == event_end_byte
+ ld a, [wEventFlags + event_start_byte]
+ and ~((1 << (((\2) % 8) + 1)) - (1 << ((\1) % 8))) & $ff
+ ld [wEventFlags + event_start_byte], a
+ ELSE
+event_fill_start = event_start_byte + 1
+event_fill_count = event_end_byte - event_start_byte - 1
+
+ IF ((\1) % 8) == 0
+event_fill_start = event_fill_start - 1
+event_fill_count = event_fill_count + 1
+ ELSE
+ ld a, [wEventFlags + event_start_byte]
+ and ~($ff - ((1 << ((\1) % 8)) - 1)) & $ff
+ ld [wEventFlags + event_start_byte], a
+ ENDC
+
+ IF ((\2) % 8) == 7
+event_fill_count = event_fill_count + 1
+ ENDC
+
+ IF event_fill_count == 1
+ ld hl, wEventFlags + event_fill_start
+ ld [hl], 0
+ ENDC
+
+ IF event_fill_count > 1
+ ld hl, wEventFlags + event_fill_start
+
+ ; force xor a if we just to wrote to it above
+ IF (_NARG < 3) || (((\1) % 8) != 0)
+ xor a
+ ENDC
+
+ REPT event_fill_count - 1
+ ld [hli], a
+ ENDR
+
+ ld [hl], a
+ ENDC
+
+ IF ((\2) % 8) == 0
+ ld hl, wEventFlags + event_end_byte
+ res 0, [hl]
+ ELSE
+ IF ((\2) % 8) != 7
+ ld a, [wEventFlags + event_end_byte]
+ and ~((1 << (((\2) % 8) + 1)) - 1) & $ff
+ ld [wEventFlags + event_end_byte], a
+ ENDC
+ ENDC
+ ENDC
+ENDM
+
+
+; returns whether both events are set in Z flag
+; This is counter-intuitive because the other event checks set the Z flag when
+; the event is not set, but this sets the Z flag when the event is set.
+;\1 = event index 1
+;\2 = event index 2
+;\3 = try to reuse a (optional)
+CheckBothEventsSet: MACRO
+ IF ((\1) / 8) == ((\2) / 8)
+ IF (_NARG < 3) || (((\1) / 8) != event_byte)
+event_byte = ((\1) / 8)
+ ld a, [wEventFlags + ((\1) / 8)]
+ ENDC
+ and (1 << ((\1) % 8)) | (1 << ((\2) % 8))
+ cp (1 << ((\1) % 8)) | (1 << ((\2) % 8))
+ ELSE
+ ; This case doesn't happen in the original ROM.
+ IF ((\1) % 8) == ((\2) % 8)
+ push hl
+ ld a, [wEventFlags + ((\1) / 8)]
+ ld hl, wEventFlags + ((\2) / 8)
+ and [hl]
+ cpl
+ bit ((\1) % 8), a
+ pop hl
+ ELSE
+ push bc
+ ld a, [wEventFlags + ((\1) / 8)]
+ and (1 << ((\1) % 8))
+ ld b, a
+ ld a, [wEventFlags + ((\2) / 8)]
+ and (1 << ((\2) % 8))
+ or b
+ cp (1 << ((\1) % 8)) | (1 << ((\2) % 8))
+ pop bc
+ ENDC
+ ENDC
+ENDM
+
+
+; returns the complement of whether either event is set in Z flag
+;\1 = event index 1
+;\2 = event index 2
+CheckEitherEventSet: MACRO
+ IF ((\1) / 8) == ((\2) / 8)
+ ld a, [wEventFlags + ((\1) / 8)]
+ and (1 << ((\1) % 8)) | (1 << ((\2) % 8))
+ ELSE
+ ; This case doesn't happen in the original ROM.
+ IF ((\1) % 8) == ((\2) % 8)
+ push hl
+ ld a, [wEventFlags + ((\1) / 8)]
+ ld hl, wEventFlags + ((\2) / 8)
+ or [hl]
+ bit ((\1) % 8), a
+ pop hl
+ ELSE
+ push bc
+ ld a, [wEventFlags + ((\1) / 8)]
+ and (1 << ((\1) % 8))
+ ld b, a
+ ld a, [wEventFlags + ((\2) / 8)]
+ and (1 << ((\2) % 8))
+ or b
+ pop bc
+ ENDC
+ ENDC
+ENDM
+
+
+; for handling fixed event bits when events are inserted/removed
+;\1 = event index
+;\2 = fixed flag bit
+AdjustEventBit: MACRO
+ IF ((\1) % 8) != (\2)
+ add ((\1) % 8) - (\2)
+ ENDC
+ENDM
+
--- /dev/null
+++ b/macros/scripts/maps.asm
@@ -1,0 +1,184 @@
+;\1 map width
+;\2 Rows above (Y-blocks)
+;\3 X movement (X-blocks)
+EVENT_DISP: MACRO
+ dw (wOverworldMap + 7 + (\1) + ((\1) + 6) * ((\2) >> 1) + ((\3) >> 1)) ; Ev.Disp
+ db \2,\3 ;Y,X
+ENDM
+
+FLYWARP_DATA: MACRO
+ EVENT_DISP \1,\2,\3
+ db ((\2) & $01) ;sub-block Y
+ db ((\3) & $01) ;sub-block X
+ENDM
+
+; external map entry macro
+EMAP: MACRO ; emap x-coordinate,y-coordinate,textpointer
+; the appearance of towns and routes in the town map, indexed by map id
+ ; nybble: y-coordinate
+ ; nybble: x-coordinate
+ ; word : pointer to map name
+ dn \2, \1
+ dw \3
+ENDM
+
+; internal map entry macro
+IMAP: MACRO ; imap mapid_less_than,x-coordinate,y-coordinate,textpointer
+; the appearance of buildings and dungeons in the town map
+ ; byte : maximum map id subject to this rule
+ ; nybble: y-coordinate
+ ; nybble: x-coordinate
+ ; word : pointer to map name
+ db \1 + 1
+ dn \3, \2
+ dw \4
+ENDM
+
+;\1 sprite id
+;\2 x position
+;\3 y position
+;\4 movement (WALK/STAY)
+;\5 range or direction
+;\6 text id
+;\7 items only: item id
+;\7 trainers only: trainer class/pokemon id
+;\8 trainers only: trainer number/pokemon level
+object: MACRO
+ db \1
+ db \3 + 4
+ db \2 + 4
+ db \4
+ db \5
+ IF (_NARG > 7)
+ db TRAINER | \6
+ db \7
+ db \8
+ ELSE
+ IF (_NARG > 6)
+ db ITEM | \6
+ db \7
+ ELSE
+ db \6
+ ENDC
+ ENDC
+ENDM
+
+;\1 x position
+;\2 y position
+;\3 destination warp id
+;\4 destination map (-1 = wLastMap)
+warp: MACRO
+ db \2, \1, \3, \4
+ENDM
+
+;\1 x position
+;\2 y position
+;\3 sign id
+sign: MACRO
+ db \2, \1, \3
+ENDM
+
+;\1 x position
+;\2 y position
+;\3 map width
+warp_to: MACRO
+ EVENT_DISP \3, \2, \1
+ENDM
+
+;\1 map name
+;\2 map id
+;\3 tileset
+;\4 connections: combo of NORTH, SOUTH, WEST, and/or EAST, or 0 for none
+map_header: MACRO
+CURRENT_MAP_WIDTH = \2_WIDTH
+CURRENT_MAP_HEIGHT = \2_HEIGHT
+CURRENT_MAP_OBJECT EQUS "\1_Object"
+\1_h::
+ db \3
+ db CURRENT_MAP_HEIGHT, CURRENT_MAP_WIDTH
+ dw \1_Blocks
+ dw \1_TextPointers
+ dw \1_Script
+ db \4
+ENDM
+
+; Comes after map_header and connection macros
+end_map_header: MACRO
+ dw CURRENT_MAP_OBJECT
+PURGE CURRENT_MAP_WIDTH
+PURGE CURRENT_MAP_HEIGHT
+PURGE CURRENT_MAP_OBJECT
+ENDM
+
+; Connections go in order: north, south, west, east
+;\1 direction
+;\2 map name
+;\3 map id
+;\4 offset of the target map relative to the current map
+; (x offset for east/west, y offset for north/south)
+connection: MACRO
+
+; Calculate tile offsets for source (current) and target maps
+_src = 0
+_tgt = (\4) + 3
+if _tgt < 2
+_src = -_tgt
+_tgt = 0
+endc
+
+if "\1" == "north"
+_blk = \3_WIDTH * (\3_HEIGHT - 3) + _src
+_map = _tgt
+_win = (\3_WIDTH + 6) * \3_HEIGHT + 1
+_y = \3_HEIGHT * 2 - 1
+_x = (\4) * -2
+_len = CURRENT_MAP_WIDTH + 3 - (\4)
+if _len > \3_WIDTH
+_len = \3_WIDTH
+endc
+
+elif "\1" == "south"
+_blk = _src
+_map = (CURRENT_MAP_WIDTH + 6) * (CURRENT_MAP_HEIGHT + 3) + _tgt
+_win = \3_WIDTH + 7
+_y = 0
+_x = (\4) * -2
+_len = CURRENT_MAP_WIDTH + 3 - (\4)
+if _len > \3_WIDTH
+_len = \3_WIDTH
+endc
+
+elif "\1" == "west"
+_blk = (\3_WIDTH * _src) + \3_WIDTH - 3
+_map = (CURRENT_MAP_WIDTH + 6) * _tgt
+_win = (\3_WIDTH + 6) * 2 - 6
+_y = (\4) * -2
+_x = \3_WIDTH * 2 - 1
+_len = CURRENT_MAP_HEIGHT + 3 - (\4)
+if _len > \3_HEIGHT
+_len = \3_HEIGHT
+endc
+
+elif "\1" == "east"
+_blk = (\3_WIDTH * _src)
+_map = (CURRENT_MAP_WIDTH + 6) * _tgt + CURRENT_MAP_WIDTH + 3
+_win = \3_WIDTH + 7
+_y = (\4) * -2
+_x = 0
+_len = CURRENT_MAP_HEIGHT + 3 - (\4)
+if _len > \3_HEIGHT
+_len = \3_HEIGHT
+endc
+
+else
+fail "Invalid direction for 'connection'."
+endc
+
+ db \3
+ dw \2_Blocks + _blk
+ dw wOverworldMap + _map
+ db _len - _src
+ db \3_WIDTH
+ db _y, _x
+ dw wOverworldMap + _win
+ENDM
--- /dev/null
+++ b/macros/scripts/text.asm
@@ -1,0 +1,78 @@
+text EQUS "db $00," ; Start writing text.
+next EQUS "db $4e," ; Move a line down.
+line EQUS "db $4f," ; Start writing at the bottom line.
+para EQUS "db $51," ; Start a new paragraph.
+cont EQUS "db $55," ; Scroll to the next line.
+done EQUS "db $57" ; End a text box.
+prompt EQUS "db $58" ; Prompt the player to end a text box (initiating some other event).
+
+page EQUS "db $49," ; Start a new Pokedex page.
+dex EQUS "db $5f, $50" ; End a Pokedex entry.
+
+TX_RAM: MACRO
+; prints text to screen
+; \1: RAM address to read from
+ db $1
+ dw \1
+ENDM
+
+TX_BCD: MACRO
+; \1: RAM address to read from
+; \2: number of bytes + print flags
+ db $2
+ dw \1
+ db \2
+ENDM
+
+TX_LINE EQUS "db $05"
+TX_BLINK EQUS "db $06"
+;TX_SCROLL EQUS "db $07"
+TX_ASM EQUS "db $08"
+
+TX_NUM: MACRO
+; print a big-endian decimal number.
+; \1: address to read from
+; \2: number of bytes to read
+; \3: number of digits to display
+ db $09
+ dw \1
+ db \2 << 4 | \3
+ENDM
+
+TX_DELAY EQUS "db $0a"
+TX_SFX_ITEM_1 EQUS "db $0b"
+TX_SFX_LEVEL_UP EQUS "db $0b"
+;TX_ELLIPSES EQUS "db $0c"
+TX_WAIT EQUS "db $0d"
+;TX_SFX_DEX_RATING EQUS "db $0e"
+TX_SFX_ITEM_2 EQUS "db $10"
+TX_SFX_KEY_ITEM EQUS "db $11"
+TX_SFX_CAUGHT_MON EQUS "db $12"
+TX_SFX_DEX_PAGE_ADDED EQUS "db $13"
+TX_CRY_NIDORINA EQUS "db $14"
+TX_CRY_PIDGEOT EQUS "db $15"
+;TX_CRY_DEWGONG EQUS "db $16"
+
+TX_FAR: MACRO
+ db $17
+ dw \1
+ db BANK(\1)
+ENDM
+
+TX_VENDING_MACHINE EQUS "db $f5"
+TX_CABLE_CLUB_RECEPTIONIST EQUS "db $f6"
+TX_PRIZE_VENDOR EQUS "db $f7"
+TX_POKECENTER_PC EQUS "db $f9"
+TX_PLAYERS_PC EQUS "db $fc"
+TX_BILLS_PC EQUS "db $fd"
+
+TX_MART: MACRO
+ db $FE, _NARG
+ REPT _NARG
+ db \1
+ SHIFT
+ ENDR
+ db $FF
+ENDM
+
+TX_POKECENTER_NURSE EQUS "db $ff"
--- a/macros/text_macros.asm
+++ /dev/null
@@ -1,80 +1,0 @@
-
-; text macros
-text EQUS "db $00," ; Start writing text.
-next EQUS "db $4e," ; Move a line down.
-line EQUS "db $4f," ; Start writing at the bottom line.
-para EQUS "db $51," ; Start a new paragraph.
-cont EQUS "db $55," ; Scroll to the next line.
-done EQUS "db $57" ; End a text box.
-prompt EQUS "db $58" ; Prompt the player to end a text box (initiating some other event).
-
-page EQUS "db $49," ; Start a new Pokedex page.
-dex EQUS "db $5f, $50" ; End a Pokedex entry.
-
-TX_RAM: MACRO
-; prints text to screen
-; \1: RAM address to read from
- db $1
- dw \1
-ENDM
-
-TX_BCD: MACRO
-; \1: RAM address to read from
-; \2: number of bytes + print flags
- db $2
- dw \1
- db \2
-ENDM
-
-TX_LINE EQUS "db $05"
-TX_BLINK EQUS "db $06"
-;TX_SCROLL EQUS "db $07"
-TX_ASM EQUS "db $08"
-
-TX_NUM: MACRO
-; print a big-endian decimal number.
-; \1: address to read from
-; \2: number of bytes to read
-; \3: number of digits to display
- db $09
- dw \1
- db \2 << 4 | \3
-ENDM
-
-TX_DELAY EQUS "db $0a"
-TX_SFX_ITEM_1 EQUS "db $0b"
-TX_SFX_LEVEL_UP EQUS "db $0b"
-;TX_ELLIPSES EQUS "db $0c"
-TX_WAIT EQUS "db $0d"
-;TX_SFX_DEX_RATING EQUS "db $0e"
-TX_SFX_ITEM_2 EQUS "db $10"
-TX_SFX_KEY_ITEM EQUS "db $11"
-TX_SFX_CAUGHT_MON EQUS "db $12"
-TX_SFX_DEX_PAGE_ADDED EQUS "db $13"
-TX_CRY_NIDORINA EQUS "db $14"
-TX_CRY_PIDGEOT EQUS "db $15"
-;TX_CRY_DEWGONG EQUS "db $16"
-
-TX_FAR: MACRO
- db $17
- dw \1
- db BANK(\1)
-ENDM
-
-TX_VENDING_MACHINE EQUS "db $f5"
-TX_CABLE_CLUB_RECEPTIONIST EQUS "db $f6"
-TX_PRIZE_VENDOR EQUS "db $f7"
-TX_POKECENTER_PC EQUS "db $f9"
-TX_PLAYERS_PC EQUS "db $fc"
-TX_BILLS_PC EQUS "db $fd"
-
-TX_MART: MACRO
- db $FE, _NARG
- REPT _NARG
- db \1
- SHIFT
- ENDR
- db $FF
-ENDM
-
-TX_POKECENTER_NURSE EQUS "db $ff"
--- /dev/null
+++ b/macros/wram.asm
@@ -1,0 +1,92 @@
+; Used in wram.asm
+
+flag_array: MACRO
+ ds ((\1) + 7) / 8
+ENDM
+
+BOX_STRUCT_LENGTH EQU 25 + NUM_MOVES * 2
+
+box_struct: MACRO
+\1Species:: db
+\1HP:: dw
+\1BoxLevel:: db
+\1Status:: db
+\1Type::
+\1Type1:: db
+\1Type2:: db
+\1CatchRate:: db
+\1Moves:: ds NUM_MOVES
+\1OTID:: dw
+\1Exp:: ds 3
+\1HPExp:: dw
+\1AttackExp:: dw
+\1DefenseExp:: dw
+\1SpeedExp:: dw
+\1SpecialExp:: dw
+\1DVs:: ds 2
+\1PP:: ds NUM_MOVES
+ENDM
+
+party_struct: MACRO
+ box_struct \1
+\1Level:: db
+\1Stats::
+\1MaxHP:: dw
+\1Attack:: dw
+\1Defense:: dw
+\1Speed:: dw
+\1Special:: dw
+ENDM
+
+battle_struct: MACRO
+\1Species:: db
+\1HP:: dw
+\1PartyPos::
+\1BoxLevel:: db
+\1Status:: db
+\1Type::
+\1Type1:: db
+\1Type2:: db
+\1CatchRate:: db
+\1Moves:: ds NUM_MOVES
+\1DVs:: ds 2
+\1Level:: db
+\1Stats::
+\1MaxHP:: dw
+\1Attack:: dw
+\1Defense:: dw
+\1Speed:: dw
+\1Special:: dw
+\1PP:: ds NUM_MOVES
+ENDM
+
+spritestatedata1: MACRO
+\1PictureID:: db
+\1MovementStatus:: db
+\1ImageIndex:: db
+\1YStepVector:: db
+\1YPixels:: db
+\1XStepVector:: db
+\1XPixels:: db
+\1IntraAnimFrameCounter:: db
+\1AnimFrameCounter:: db
+\1FacingDirection:: db
+ ds 6
+\1End::
+ENDM
+
+spritestatedata2: MACRO
+\1WalkAnimationCounter:: db
+ ds 1
+\1YDisplacement:: db
+\1XDisplacement:: db
+\1MapY:: db
+\1MapX:: db
+\1MovementByte1:: db
+\1GrassPriority:: db
+\1MovementDelay:: db
+ ds 5
+\1ImageBaseOffset:: db
+ ds 1
+\1End::
+ENDM
--- a/main.asm
+++ b/main.asm
@@ -3,19 +3,15 @@
SECTION "bank1", ROMX
-INCLUDE "data/facing.asm"
+INCLUDE "data/sprites/facings.asm"
INCLUDE "engine/events/black_out.asm"
-
-MewPicFront:: INCBIN "gfx/pokemon/front/mew.pic"
-MewPicBack:: INCBIN "gfx/pokemon/back/mewb.pic"
-INCLUDE "data/baseStats/mew.asm"
-
+INCLUDE "data/pokemon/mew.asm"
INCLUDE "engine/battle/safari_zone.asm"
-INCLUDE "engine/movie/titlescreen.asm"
+INCLUDE "engine/movie/title.asm"
INCLUDE "engine/pokemon/load_mon_data.asm"
-INCLUDE "data/item_prices.asm"
-INCLUDE "text/item_names.asm"
-INCLUDE "text/unused_names.asm"
+INCLUDE "data/items/prices.asm"
+INCLUDE "data/items/names.asm"
+INCLUDE "data/text/unused_names.asm"
INCLUDE "engine/gfx/sprite_oam.asm"
INCLUDE "engine/gfx/oam_dma.asm"
INCLUDE "engine/link/print_waiting_text.asm"
@@ -49,14 +45,14 @@
SECTION "bank3", ROMX
INCLUDE "engine/joypad.asm"
-INCLUDE "data/map_songs.asm"
-INCLUDE "data/map_header_banks.asm"
+INCLUDE "data/maps/songs.asm"
+INCLUDE "data/maps/map_header_banks.asm"
INCLUDE "engine/overworld/clear_variables.asm"
INCLUDE "engine/overworld/player_state.asm"
INCLUDE "engine/events/poison.asm"
INCLUDE "engine/overworld/tilesets.asm"
INCLUDE "engine/overworld/daycare_exp.asm"
-INCLUDE "data/hide_show_data.asm"
+INCLUDE "data/maps/hide_show_data.asm"
INCLUDE "engine/overworld/field_move_messages.asm"
INCLUDE "engine/items/inventory.asm"
INCLUDE "engine/overworld/wild_mons.asm"
@@ -74,33 +70,17 @@
INCLUDE "engine/items/get_bag_item_quantity.asm"
INCLUDE "engine/overworld/pathfinding.asm"
INCLUDE "engine/gfx/hp_bar.asm"
-INCLUDE "engine/events/hidden_object_functions3.asm"
+INCLUDE "engine/events/hidden_objects/bookshelves.asm"
+INCLUDE "engine/events/hidden_objects/indigo_plateau_statues.asm"
+INCLUDE "engine/events/hidden_objects/book_or_sculpture.asm"
+INCLUDE "engine/events/hidden_objects/elevator.asm"
+INCLUDE "engine/events/hidden_objects/town_map.asm"
+INCLUDE "engine/events/hidden_objects/pokemon_stuff.asm"
SECTION "Graphics (BANK 4)", ROMX
-PokemonLogoGraphics: INCBIN "gfx/title/pokemon_logo.2bpp"
-FontGraphics:: INCBIN "gfx/font/font.1bpp"
-FontGraphicsEnd::
-ABTiles: INCBIN "gfx/font/AB.2bpp"
-HpBarAndStatusGraphics:: INCBIN "gfx/font/font_battle_extra.2bpp"
-HpBarAndStatusGraphicsEnd::
-BattleHudTiles1: INCBIN "gfx/battle/battle_hud_1.1bpp"
-BattleHudTiles1End:
-BattleHudTiles2: INCBIN "gfx/battle/battle_hud_2.1bpp"
-BattleHudTiles3: INCBIN "gfx/battle/battle_hud_3.1bpp"
-BattleHudTiles3End:
-NintendoCopyrightLogoGraphics: INCBIN "gfx/intro_credits/copyright.2bpp"
-GamefreakLogoGraphics: INCBIN "gfx/title/gamefreak_inc.2bpp"
-GamefreakLogoGraphicsEnd:
-TextBoxGraphics:: INCBIN "gfx/font/font_extra.2bpp"
-TextBoxGraphicsEnd::
-PokedexTileGraphics: INCBIN "gfx/pokedex/pokedex.2bpp"
-PokedexTileGraphicsEnd:
-WorldMapTileGraphics: INCBIN "gfx/town_map/town_map.2bpp"
-WorldMapTileGraphicsEnd:
-PlayerCharacterTitleGraphics: INCBIN "gfx/title/player.2bpp"
-PlayerCharacterTitleGraphicsEnd:
+INCLUDE "gfx/font.asm"
SECTION "Battle (BANK 4)", ROMX
@@ -108,11 +88,7 @@
INCLUDE "engine/overworld/is_player_just_outside_map.asm"
INCLUDE "engine/pokemon/status_screen.asm"
INCLUDE "engine/menus/party_menu.asm"
-
-RedPicFront:: INCBIN "gfx/player/red.pic"
-ShrinkPic1:: INCBIN "gfx/player/shrink1.pic"
-ShrinkPic2:: INCBIN "gfx/player/shrink2.pic"
-
+INCLUDE "gfx/player.asm"
INCLUDE "engine/overworld/turn_sprite.asm"
INCLUDE "engine/menus/start_sub_menus.asm"
INCLUDE "engine/items/tms.asm"
@@ -149,7 +125,7 @@
SECTION "bank7_1", ROMX
-INCLUDE "text/monster_names.asm"
+INCLUDE "data/pokemon/names.asm"
INCLUDE "engine/movie/oak_speech/clear_save.asm"
INCLUDE "engine/events/elevator.asm"
@@ -157,7 +133,13 @@
SECTION "bank7_2", ROMX
INCLUDE "engine/menus/oaks_pc.asm"
-INCLUDE "engine/events/hidden_object_functions7.asm"
+INCLUDE "engine/events/hidden_objects/new_bike.asm"
+INCLUDE "engine/events/hidden_objects/oaks_lab_posters.asm"
+INCLUDE "engine/events/hidden_objects/safari_game.asm"
+INCLUDE "engine/events/hidden_objects/cinnabar_gym_quiz.asm"
+INCLUDE "engine/events/hidden_objects/magazines.asm"
+INCLUDE "engine/events/hidden_objects/bills_house_pc.asm"
+INCLUDE "engine/events/hidden_objects/oaks_lab_email.asm"
SECTION "Bill's PC", ROMX
@@ -180,13 +162,7 @@
SECTION "Battle (BANK B)", ROMX
INCLUDE "engine/battle/display_effectiveness.asm"
-
-TrainerInfoTextBoxTileGraphics: INCBIN "gfx/trainer_card/trainer_info.2bpp"
-TrainerInfoTextBoxTileGraphicsEnd:
-BlankLeaderNames: INCBIN "gfx/trainer_card/blank_leader_names.2bpp"
-CircleTile: INCBIN "gfx/trainer_card/circle_tile.2bpp"
-BadgeNumbersTileGraphics: INCBIN "gfx/trainer_card/badge_numbers.2bpp"
-
+INCLUDE "gfx/trainer_card.asm"
INCLUDE "engine/items/tmhm.asm"
INCLUDE "engine/battle/scale_sprites.asm"
INCLUDE "engine/battle/move_effects/pay_day.asm"
@@ -201,7 +177,7 @@
SECTION "Battle (BANK D)", ROMX
-INCLUDE "engine/movie/titlescreen2.asm"
+INCLUDE "engine/movie/title2.asm"
INCLUDE "engine/battle/link_battle_versus_text.asm"
INCLUDE "engine/slots/slot_machine.asm"
INCLUDE "engine/events/pewter_guys.asm"
@@ -211,23 +187,14 @@
SECTION "bankE", ROMX
-INCLUDE "data/moves.asm"
-INCLUDE "data/base_stats.asm"
-INCLUDE "data/cries.asm"
+INCLUDE "data/moves/moves.asm"
+INCLUDE "data/pokemon/base_stats.asm"
+INCLUDE "data/pokemon/cries.asm"
INCLUDE "engine/battle/unused_stats_functions.asm"
INCLUDE "engine/battle/scroll_draw_trainer_pic.asm"
INCLUDE "engine/battle/trainer_ai.asm"
INCLUDE "engine/battle/draw_hud_pokeball_gfx.asm"
-
-TradingAnimationGraphics:
-INCBIN "gfx/trade/game_boy.2bpp"
-INCBIN "gfx/trade/link_cable.2bpp"
-TradingAnimationGraphicsEnd:
-
-; Pokeball traveling through the link cable.
-TradingAnimationGraphics2: INCBIN "gfx/trade/cable_ball.2bpp"
-TradingAnimationGraphics2End:
-
+INCLUDE "gfx/trade.asm"
INCLUDE "engine/pokemon/evos_moves.asm"
INCLUDE "engine/battle/move_effects/heal.asm"
INCLUDE "engine/battle/move_effects/transform.asm"
@@ -275,7 +242,9 @@
INCLUDE "engine/battle/move_effects/paralyze.asm"
INCLUDE "engine/events/card_key.asm"
INCLUDE "engine/events/prize_menu.asm"
-INCLUDE "engine/events/hidden_object_functions14.asm"
+INCLUDE "engine/events/hidden_objects/school_notebooks.asm"
+INCLUDE "engine/events/hidden_objects/fighting_dojo.asm"
+INCLUDE "engine/events/hidden_objects/indigo_plateau_hq.asm"
SECTION "bank15_1", ROMX
@@ -309,7 +278,11 @@
SECTION "bank17_2", ROMX
INCLUDE "engine/pokemon/set_types.asm"
-INCLUDE "engine/events/hidden_object_functions17.asm"
+INCLUDE "engine/events/hidden_objects/reds_room.asm"
+INCLUDE "engine/events/hidden_objects/route_15_binoculars.asm"
+INCLUDE "engine/events/hidden_objects/museum_fossils.asm"
+INCLUDE "engine/events/hidden_objects/school_blackboard.asm"
+INCLUDE "engine/events/hidden_objects/vermilion_gym_trash.asm"
SECTION "bank18_1", ROMX
@@ -319,23 +292,18 @@
SECTION "bank18_2", ROMX
-INCLUDE "engine/events/hidden_object_functions18.asm"
+INCLUDE "engine/events/hidden_objects/gym_statues.asm"
+INCLUDE "engine/events/hidden_objects/bench_guys.asm"
+INCLUDE "engine/events/hidden_objects/blues_room.asm"
+INCLUDE "engine/events/hidden_objects/pokecenter_pc.asm"
SECTION "bank1A", ROMX
INCLUDE "engine/battle/decrement_pp.asm"
+INCLUDE "gfx/version.asm"
-Version_GFX:
-IF DEF(_RED)
- INCBIN "gfx/title/red_version.1bpp" ; 10 tiles
-ENDC
-IF DEF(_BLUE)
- INCBIN "gfx/title/blue_version.1bpp" ; 8 tiles
-ENDC
-Version_GFXEnd:
-
SECTION "bank1C", ROMX
INCLUDE "engine/movie/gamefreak.asm"
@@ -374,13 +342,8 @@
INCLUDE "engine/battle/animations.asm"
INCLUDE "engine/overworld/cut2.asm"
INCLUDE "engine/overworld/dust_smoke.asm"
-
-RedFishingTilesFront: INCBIN "gfx/overworld/red_fish_front.2bpp"
-RedFishingTilesBack: INCBIN "gfx/overworld/red_fish_back.2bpp"
-RedFishingTilesSide: INCBIN "gfx/overworld/red_fish_side.2bpp"
-RedFishingRodTiles: INCBIN "gfx/overworld/fishing_rod.2bpp"
-
-INCLUDE "data/animations.asm"
+INCLUDE "gfx/fishing.asm"
+INCLUDE "data/moves/animations.asm"
INCLUDE "engine/movie/evolution.asm"
INCLUDE "engine/overworld/elevator.asm"
INCLUDE "engine/items/tm_prices.asm"
--- a/maps.asm
+++ b/maps.asm
@@ -3,33 +3,33 @@
SECTION "Maps 1", ROMX
-INCLUDE "data/mapHeaders/CeladonCity.asm"
-INCLUDE "data/mapObjects/CeladonCity.asm"
+INCLUDE "data/maps/headers/CeladonCity.asm"
+INCLUDE "data/maps/objects/CeladonCity.asm"
CeladonCity_Blocks: INCBIN "maps/CeladonCity.blk"
-INCLUDE "data/mapHeaders/PalletTown.asm"
-INCLUDE "data/mapObjects/PalletTown.asm"
+INCLUDE "data/maps/headers/PalletTown.asm"
+INCLUDE "data/maps/objects/PalletTown.asm"
PalletTown_Blocks: INCBIN "maps/PalletTown.blk"
-INCLUDE "data/mapHeaders/ViridianCity.asm"
-INCLUDE "data/mapObjects/ViridianCity.asm"
+INCLUDE "data/maps/headers/ViridianCity.asm"
+INCLUDE "data/maps/objects/ViridianCity.asm"
ViridianCity_Blocks: INCBIN "maps/ViridianCity.blk"
-INCLUDE "data/mapHeaders/PewterCity.asm"
+INCLUDE "data/maps/headers/PewterCity.asm"
ds 1
-INCLUDE "data/mapObjects/PewterCity.asm"
+INCLUDE "data/maps/objects/PewterCity.asm"
PewterCity_Blocks: INCBIN "maps/PewterCity.blk"
-INCLUDE "data/mapHeaders/CeruleanCity.asm"
-INCLUDE "data/mapObjects/CeruleanCity.asm"
+INCLUDE "data/maps/headers/CeruleanCity.asm"
+INCLUDE "data/maps/objects/CeruleanCity.asm"
CeruleanCity_Blocks: INCBIN "maps/CeruleanCity.blk"
-INCLUDE "data/mapHeaders/VermilionCity.asm"
-INCLUDE "data/mapObjects/VermilionCity.asm"
+INCLUDE "data/maps/headers/VermilionCity.asm"
+INCLUDE "data/maps/objects/VermilionCity.asm"
VermilionCity_Blocks: INCBIN "maps/VermilionCity.blk"
-INCLUDE "data/mapHeaders/FuchsiaCity.asm"
-INCLUDE "data/mapObjects/FuchsiaCity.asm"
+INCLUDE "data/maps/headers/FuchsiaCity.asm"
+INCLUDE "data/maps/objects/FuchsiaCity.asm"
FuchsiaCity_Blocks: INCBIN "maps/FuchsiaCity.blk"
@@ -43,45 +43,45 @@
INCLUDE "scripts/CeladonCity.asm"
INCLUDE "scripts/FuchsiaCity.asm"
-INCLUDE "data/mapHeaders/BluesHouse.asm"
+INCLUDE "data/maps/headers/BluesHouse.asm"
INCLUDE "scripts/BluesHouse.asm"
-INCLUDE "data/mapObjects/BluesHouse.asm"
+INCLUDE "data/maps/objects/BluesHouse.asm"
BluesHouse_Blocks: INCBIN "maps/BluesHouse.blk"
-INCLUDE "data/mapHeaders/VermilionTradeHouse.asm"
+INCLUDE "data/maps/headers/VermilionTradeHouse.asm"
INCLUDE "scripts/VermilionTradeHouse.asm"
-INCLUDE "data/mapObjects/VermilionTradeHouse.asm"
+INCLUDE "data/maps/objects/VermilionTradeHouse.asm"
VermilionTradeHouse_Blocks: INCBIN "maps/VermilionTradeHouse.blk"
-INCLUDE "data/mapHeaders/IndigoPlateauLobby.asm"
+INCLUDE "data/maps/headers/IndigoPlateauLobby.asm"
INCLUDE "scripts/IndigoPlateauLobby.asm"
-INCLUDE "data/mapObjects/IndigoPlateauLobby.asm"
+INCLUDE "data/maps/objects/IndigoPlateauLobby.asm"
IndigoPlateauLobby_Blocks: INCBIN "maps/IndigoPlateauLobby.blk"
-INCLUDE "data/mapHeaders/SilphCo4F.asm"
+INCLUDE "data/maps/headers/SilphCo4F.asm"
INCLUDE "scripts/SilphCo4F.asm"
-INCLUDE "data/mapObjects/SilphCo4F.asm"
+INCLUDE "data/maps/objects/SilphCo4F.asm"
SilphCo4F_Blocks: INCBIN "maps/SilphCo4F.blk"
-INCLUDE "data/mapHeaders/SilphCo5F.asm"
+INCLUDE "data/maps/headers/SilphCo5F.asm"
INCLUDE "scripts/SilphCo5F.asm"
-INCLUDE "data/mapObjects/SilphCo5F.asm"
+INCLUDE "data/maps/objects/SilphCo5F.asm"
SilphCo5F_Blocks: INCBIN "maps/SilphCo5F.blk"
-INCLUDE "data/mapHeaders/SilphCo6F.asm"
+INCLUDE "data/maps/headers/SilphCo6F.asm"
INCLUDE "scripts/SilphCo6F.asm"
-INCLUDE "data/mapObjects/SilphCo6F.asm"
+INCLUDE "data/maps/objects/SilphCo6F.asm"
SilphCo6F_Blocks: INCBIN "maps/SilphCo6F.blk"
SECTION "Maps 3", ROMX
-INCLUDE "data/mapHeaders/CinnabarIsland.asm"
-INCLUDE "data/mapObjects/CinnabarIsland.asm"
+INCLUDE "data/maps/headers/CinnabarIsland.asm"
+INCLUDE "data/maps/objects/CinnabarIsland.asm"
CinnabarIsland_Blocks: INCBIN "maps/CinnabarIsland.blk"
-INCLUDE "data/mapHeaders/Route1.asm"
-INCLUDE "data/mapObjects/Route1.asm"
+INCLUDE "data/maps/headers/Route1.asm"
+INCLUDE "data/maps/objects/Route1.asm"
Route1_Blocks: INCBIN "maps/Route1.blk"
UndergroundPathRoute8_Blocks: INCBIN "maps/UndergroundPathRoute8.blk"
@@ -116,143 +116,143 @@
INCLUDE "scripts/Route1.asm"
-INCLUDE "data/mapHeaders/OaksLab.asm"
+INCLUDE "data/maps/headers/OaksLab.asm"
INCLUDE "scripts/OaksLab.asm"
-INCLUDE "data/mapObjects/OaksLab.asm"
+INCLUDE "data/maps/objects/OaksLab.asm"
-INCLUDE "data/mapHeaders/ViridianMart.asm"
+INCLUDE "data/maps/headers/ViridianMart.asm"
INCLUDE "scripts/ViridianMart.asm"
-INCLUDE "data/mapObjects/ViridianMart.asm"
+INCLUDE "data/maps/objects/ViridianMart.asm"
ViridianMart_Blocks: INCBIN "maps/ViridianMart.blk"
-INCLUDE "data/mapHeaders/ViridianSchoolHouse.asm"
+INCLUDE "data/maps/headers/ViridianSchoolHouse.asm"
INCLUDE "scripts/ViridianSchoolHouse.asm"
-INCLUDE "data/mapObjects/ViridianSchoolHouse.asm"
+INCLUDE "data/maps/objects/ViridianSchoolHouse.asm"
-INCLUDE "data/mapHeaders/ViridianNicknameHouse.asm"
+INCLUDE "data/maps/headers/ViridianNicknameHouse.asm"
ds 1
INCLUDE "scripts/ViridianNicknameHouse.asm"
-INCLUDE "data/mapObjects/ViridianNicknameHouse.asm"
+INCLUDE "data/maps/objects/ViridianNicknameHouse.asm"
-INCLUDE "data/mapHeaders/PewterNidoranHouse.asm"
+INCLUDE "data/maps/headers/PewterNidoranHouse.asm"
INCLUDE "scripts/PewterNidoranHouse.asm"
-INCLUDE "data/mapObjects/PewterNidoranHouse.asm"
+INCLUDE "data/maps/objects/PewterNidoranHouse.asm"
-INCLUDE "data/mapHeaders/PewterSpeechHouse.asm"
+INCLUDE "data/maps/headers/PewterSpeechHouse.asm"
INCLUDE "scripts/PewterSpeechHouse.asm"
-INCLUDE "data/mapObjects/PewterSpeechHouse.asm"
+INCLUDE "data/maps/objects/PewterSpeechHouse.asm"
-INCLUDE "data/mapHeaders/CeruleanTrashedHouse.asm"
+INCLUDE "data/maps/headers/CeruleanTrashedHouse.asm"
INCLUDE "scripts/CeruleanTrashedHouse.asm"
-INCLUDE "data/mapObjects/CeruleanTrashedHouse.asm"
+INCLUDE "data/maps/objects/CeruleanTrashedHouse.asm"
-INCLUDE "data/mapHeaders/CeruleanTradeHouse.asm"
+INCLUDE "data/maps/headers/CeruleanTradeHouse.asm"
INCLUDE "scripts/CeruleanTradeHouse.asm"
-INCLUDE "data/mapObjects/CeruleanTradeHouse.asm"
+INCLUDE "data/maps/objects/CeruleanTradeHouse.asm"
-INCLUDE "data/mapHeaders/BikeShop.asm"
+INCLUDE "data/maps/headers/BikeShop.asm"
INCLUDE "scripts/BikeShop.asm"
-INCLUDE "data/mapObjects/BikeShop.asm"
+INCLUDE "data/maps/objects/BikeShop.asm"
BikeShop_Blocks: INCBIN "maps/BikeShop.blk"
-INCLUDE "data/mapHeaders/MrFujisHouse.asm"
+INCLUDE "data/maps/headers/MrFujisHouse.asm"
INCLUDE "scripts/MrFujisHouse.asm"
-INCLUDE "data/mapObjects/MrFujisHouse.asm"
+INCLUDE "data/maps/objects/MrFujisHouse.asm"
-INCLUDE "data/mapHeaders/LavenderCuboneHouse.asm"
+INCLUDE "data/maps/headers/LavenderCuboneHouse.asm"
INCLUDE "scripts/LavenderCuboneHouse.asm"
-INCLUDE "data/mapObjects/LavenderCuboneHouse.asm"
+INCLUDE "data/maps/objects/LavenderCuboneHouse.asm"
-INCLUDE "data/mapHeaders/NameRatersHouse.asm"
+INCLUDE "data/maps/headers/NameRatersHouse.asm"
INCLUDE "scripts/NameRatersHouse.asm"
-INCLUDE "data/mapObjects/NameRatersHouse.asm"
+INCLUDE "data/maps/objects/NameRatersHouse.asm"
-INCLUDE "data/mapHeaders/VermilionPidgeyHouse.asm"
+INCLUDE "data/maps/headers/VermilionPidgeyHouse.asm"
INCLUDE "scripts/VermilionPidgeyHouse.asm"
-INCLUDE "data/mapObjects/VermilionPidgeyHouse.asm"
+INCLUDE "data/maps/objects/VermilionPidgeyHouse.asm"
-INCLUDE "data/mapHeaders/VermilionDock.asm"
+INCLUDE "data/maps/headers/VermilionDock.asm"
INCLUDE "scripts/VermilionDock.asm"
-INCLUDE "data/mapObjects/VermilionDock.asm"
+INCLUDE "data/maps/objects/VermilionDock.asm"
VermilionDock_Blocks: INCBIN "maps/VermilionDock.blk"
-INCLUDE "data/mapHeaders/CeladonMansionRoofHouse.asm"
+INCLUDE "data/maps/headers/CeladonMansionRoofHouse.asm"
INCLUDE "scripts/CeladonMansionRoofHouse.asm"
-INCLUDE "data/mapObjects/CeladonMansionRoofHouse.asm"
+INCLUDE "data/maps/objects/CeladonMansionRoofHouse.asm"
-INCLUDE "data/mapHeaders/FuchsiaMart.asm"
+INCLUDE "data/maps/headers/FuchsiaMart.asm"
INCLUDE "scripts/FuchsiaMart.asm"
-INCLUDE "data/mapObjects/FuchsiaMart.asm"
+INCLUDE "data/maps/objects/FuchsiaMart.asm"
FuchsiaMart_Blocks: INCBIN "maps/FuchsiaMart.blk"
-INCLUDE "data/mapHeaders/SaffronPidgeyHouse.asm"
+INCLUDE "data/maps/headers/SaffronPidgeyHouse.asm"
INCLUDE "scripts/SaffronPidgeyHouse.asm"
-INCLUDE "data/mapObjects/SaffronPidgeyHouse.asm"
+INCLUDE "data/maps/objects/SaffronPidgeyHouse.asm"
-INCLUDE "data/mapHeaders/MrPsychicsHouse.asm"
+INCLUDE "data/maps/headers/MrPsychicsHouse.asm"
INCLUDE "scripts/MrPsychicsHouse.asm"
-INCLUDE "data/mapObjects/MrPsychicsHouse.asm"
+INCLUDE "data/maps/objects/MrPsychicsHouse.asm"
-INCLUDE "data/mapHeaders/DiglettsCaveRoute2.asm"
+INCLUDE "data/maps/headers/DiglettsCaveRoute2.asm"
INCLUDE "scripts/DiglettsCaveRoute2.asm"
-INCLUDE "data/mapObjects/DiglettsCaveRoute2.asm"
+INCLUDE "data/maps/objects/DiglettsCaveRoute2.asm"
-INCLUDE "data/mapHeaders/Route2TradeHouse.asm"
+INCLUDE "data/maps/headers/Route2TradeHouse.asm"
INCLUDE "scripts/Route2TradeHouse.asm"
-INCLUDE "data/mapObjects/Route2TradeHouse.asm"
+INCLUDE "data/maps/objects/Route2TradeHouse.asm"
-INCLUDE "data/mapHeaders/Route5Gate.asm"
+INCLUDE "data/maps/headers/Route5Gate.asm"
INCLUDE "scripts/Route5Gate.asm"
-INCLUDE "data/mapObjects/Route5Gate.asm"
+INCLUDE "data/maps/objects/Route5Gate.asm"
Route5Gate_Blocks: INCBIN "maps/Route5Gate.blk"
-INCLUDE "data/mapHeaders/Route6Gate.asm"
+INCLUDE "data/maps/headers/Route6Gate.asm"
INCLUDE "scripts/Route6Gate.asm"
-INCLUDE "data/mapObjects/Route6Gate.asm"
+INCLUDE "data/maps/objects/Route6Gate.asm"
Route6Gate_Blocks: INCBIN "maps/Route6Gate.blk"
-INCLUDE "data/mapHeaders/Route7Gate.asm"
+INCLUDE "data/maps/headers/Route7Gate.asm"
INCLUDE "scripts/Route7Gate.asm"
-INCLUDE "data/mapObjects/Route7Gate.asm"
+INCLUDE "data/maps/objects/Route7Gate.asm"
Route7Gate_Blocks: INCBIN "maps/Route7Gate.blk"
-INCLUDE "data/mapHeaders/Route8Gate.asm"
+INCLUDE "data/maps/headers/Route8Gate.asm"
INCLUDE "scripts/Route8Gate.asm"
-INCLUDE "data/mapObjects/Route8Gate.asm"
+INCLUDE "data/maps/objects/Route8Gate.asm"
Route8Gate_Blocks: INCBIN "maps/Route8Gate.blk"
-INCLUDE "data/mapHeaders/UndergroundPathRoute8.asm"
+INCLUDE "data/maps/headers/UndergroundPathRoute8.asm"
INCLUDE "scripts/UndergroundPathRoute8.asm"
-INCLUDE "data/mapObjects/UndergroundPathRoute8.asm"
+INCLUDE "data/maps/objects/UndergroundPathRoute8.asm"
-INCLUDE "data/mapHeaders/PowerPlant.asm"
+INCLUDE "data/maps/headers/PowerPlant.asm"
INCLUDE "scripts/PowerPlant.asm"
-INCLUDE "data/mapObjects/PowerPlant.asm"
+INCLUDE "data/maps/objects/PowerPlant.asm"
PowerPlant_Blocks: INCBIN "maps/PowerPlant.blk"
-INCLUDE "data/mapHeaders/DiglettsCaveRoute11.asm"
+INCLUDE "data/maps/headers/DiglettsCaveRoute11.asm"
INCLUDE "scripts/DiglettsCaveRoute11.asm"
-INCLUDE "data/mapObjects/DiglettsCaveRoute11.asm"
+INCLUDE "data/maps/objects/DiglettsCaveRoute11.asm"
-INCLUDE "data/mapHeaders/Route16FlyHouse.asm"
+INCLUDE "data/maps/headers/Route16FlyHouse.asm"
INCLUDE "scripts/Route16FlyHouse.asm"
-INCLUDE "data/mapObjects/Route16FlyHouse.asm"
+INCLUDE "data/maps/objects/Route16FlyHouse.asm"
-INCLUDE "data/mapHeaders/Route22Gate.asm"
+INCLUDE "data/maps/headers/Route22Gate.asm"
INCLUDE "scripts/Route22Gate.asm"
-INCLUDE "data/mapObjects/Route22Gate.asm"
+INCLUDE "data/maps/objects/Route22Gate.asm"
Route22Gate_Blocks: INCBIN "maps/Route22Gate.blk"
-INCLUDE "data/mapHeaders/BillsHouse.asm"
+INCLUDE "data/maps/headers/BillsHouse.asm"
INCLUDE "scripts/BillsHouse.asm"
-INCLUDE "data/mapObjects/BillsHouse.asm"
+INCLUDE "data/maps/objects/BillsHouse.asm"
BillsHouse_Blocks: INCBIN "maps/BillsHouse.blk"
SECTION "Maps 5", ROMX
-INCLUDE "data/mapHeaders/LavenderTown.asm"
-INCLUDE "data/mapObjects/LavenderTown.asm"
+INCLUDE "data/maps/headers/LavenderTown.asm"
+INCLUDE "data/maps/objects/LavenderTown.asm"
LavenderTown_Blocks: INCBIN "maps/LavenderTown.blk"
ViridianPokecenter_Blocks: INCBIN "maps/ViridianPokecenter.blk"
@@ -267,136 +267,136 @@
SECTION "Maps 6", ROMX
-INCLUDE "data/mapHeaders/ViridianPokecenter.asm"
+INCLUDE "data/maps/headers/ViridianPokecenter.asm"
INCLUDE "scripts/ViridianPokecenter.asm"
-INCLUDE "data/mapObjects/ViridianPokecenter.asm"
+INCLUDE "data/maps/objects/ViridianPokecenter.asm"
-INCLUDE "data/mapHeaders/PokemonMansion1F.asm"
+INCLUDE "data/maps/headers/PokemonMansion1F.asm"
INCLUDE "scripts/PokemonMansion1F.asm"
-INCLUDE "data/mapObjects/PokemonMansion1F.asm"
+INCLUDE "data/maps/objects/PokemonMansion1F.asm"
PokemonMansion1F_Blocks: INCBIN "maps/PokemonMansion1F.blk"
-INCLUDE "data/mapHeaders/RockTunnel1F.asm"
+INCLUDE "data/maps/headers/RockTunnel1F.asm"
INCLUDE "scripts/RockTunnel1F.asm"
-INCLUDE "data/mapObjects/RockTunnel1F.asm"
+INCLUDE "data/maps/objects/RockTunnel1F.asm"
RockTunnel1F_Blocks: INCBIN "maps/RockTunnel1F.blk"
-INCLUDE "data/mapHeaders/SeafoamIslands1F.asm"
+INCLUDE "data/maps/headers/SeafoamIslands1F.asm"
INCLUDE "scripts/SeafoamIslands1F.asm"
-INCLUDE "data/mapObjects/SeafoamIslands1F.asm"
+INCLUDE "data/maps/objects/SeafoamIslands1F.asm"
SeafoamIslands1F_Blocks: INCBIN "maps/SeafoamIslands1F.blk"
-INCLUDE "data/mapHeaders/SSAnne3F.asm"
+INCLUDE "data/maps/headers/SSAnne3F.asm"
INCLUDE "scripts/SSAnne3F.asm"
-INCLUDE "data/mapObjects/SSAnne3F.asm"
+INCLUDE "data/maps/objects/SSAnne3F.asm"
SSAnne3F_Blocks: INCBIN "maps/SSAnne3F.blk"
-INCLUDE "data/mapHeaders/VictoryRoad3F.asm"
+INCLUDE "data/maps/headers/VictoryRoad3F.asm"
INCLUDE "scripts/VictoryRoad3F.asm"
-INCLUDE "data/mapObjects/VictoryRoad3F.asm"
+INCLUDE "data/maps/objects/VictoryRoad3F.asm"
VictoryRoad3F_Blocks: INCBIN "maps/VictoryRoad3F.blk"
-INCLUDE "data/mapHeaders/RocketHideoutB1F.asm"
+INCLUDE "data/maps/headers/RocketHideoutB1F.asm"
INCLUDE "scripts/RocketHideoutB1F.asm"
-INCLUDE "data/mapObjects/RocketHideoutB1F.asm"
+INCLUDE "data/maps/objects/RocketHideoutB1F.asm"
RocketHideoutB1F_Blocks: INCBIN "maps/RocketHideoutB1F.blk"
-INCLUDE "data/mapHeaders/RocketHideoutB2F.asm"
+INCLUDE "data/maps/headers/RocketHideoutB2F.asm"
INCLUDE "scripts/RocketHideoutB2F.asm"
-INCLUDE "data/mapObjects/RocketHideoutB2F.asm"
+INCLUDE "data/maps/objects/RocketHideoutB2F.asm"
RocketHideoutB2F_Blocks: INCBIN "maps/RocketHideoutB2F.blk"
-INCLUDE "data/mapHeaders/RocketHideoutB3F.asm"
+INCLUDE "data/maps/headers/RocketHideoutB3F.asm"
INCLUDE "scripts/RocketHideoutB3F.asm"
-INCLUDE "data/mapObjects/RocketHideoutB3F.asm"
+INCLUDE "data/maps/objects/RocketHideoutB3F.asm"
RocketHideoutB3F_Blocks: INCBIN "maps/RocketHideoutB3F.blk"
-INCLUDE "data/mapHeaders/RocketHideoutB4F.asm"
+INCLUDE "data/maps/headers/RocketHideoutB4F.asm"
INCLUDE "scripts/RocketHideoutB4F.asm"
-INCLUDE "data/mapObjects/RocketHideoutB4F.asm"
+INCLUDE "data/maps/objects/RocketHideoutB4F.asm"
RocketHideoutB4F_Blocks: INCBIN "maps/RocketHideoutB4F.blk"
-INCLUDE "data/mapHeaders/RocketHideoutElevator.asm"
+INCLUDE "data/maps/headers/RocketHideoutElevator.asm"
INCLUDE "scripts/RocketHideoutElevator.asm"
-INCLUDE "data/mapObjects/RocketHideoutElevator.asm"
+INCLUDE "data/maps/objects/RocketHideoutElevator.asm"
RocketHideoutElevator_Blocks: INCBIN "maps/RocketHideoutElevator.blk"
-INCLUDE "data/mapHeaders/SilphCoElevator.asm"
+INCLUDE "data/maps/headers/SilphCoElevator.asm"
INCLUDE "scripts/SilphCoElevator.asm"
-INCLUDE "data/mapObjects/SilphCoElevator.asm"
+INCLUDE "data/maps/objects/SilphCoElevator.asm"
SilphCoElevator_Blocks: INCBIN "maps/SilphCoElevator.blk"
-INCLUDE "data/mapHeaders/SafariZoneEast.asm"
+INCLUDE "data/maps/headers/SafariZoneEast.asm"
INCLUDE "scripts/SafariZoneEast.asm"
-INCLUDE "data/mapObjects/SafariZoneEast.asm"
+INCLUDE "data/maps/objects/SafariZoneEast.asm"
SafariZoneEast_Blocks: INCBIN "maps/SafariZoneEast.blk"
-INCLUDE "data/mapHeaders/SafariZoneNorth.asm"
+INCLUDE "data/maps/headers/SafariZoneNorth.asm"
INCLUDE "scripts/SafariZoneNorth.asm"
-INCLUDE "data/mapObjects/SafariZoneNorth.asm"
+INCLUDE "data/maps/objects/SafariZoneNorth.asm"
SafariZoneNorth_Blocks: INCBIN "maps/SafariZoneNorth.blk"
-INCLUDE "data/mapHeaders/SafariZoneCenter.asm"
+INCLUDE "data/maps/headers/SafariZoneCenter.asm"
INCLUDE "scripts/SafariZoneCenter.asm"
-INCLUDE "data/mapObjects/SafariZoneCenter.asm"
+INCLUDE "data/maps/objects/SafariZoneCenter.asm"
SafariZoneCenter_Blocks: INCBIN "maps/SafariZoneCenter.blk"
-INCLUDE "data/mapHeaders/SafariZoneCenterRestHouse.asm"
+INCLUDE "data/maps/headers/SafariZoneCenterRestHouse.asm"
INCLUDE "scripts/SafariZoneCenterRestHouse.asm"
-INCLUDE "data/mapObjects/SafariZoneCenterRestHouse.asm"
+INCLUDE "data/maps/objects/SafariZoneCenterRestHouse.asm"
-INCLUDE "data/mapHeaders/SafariZoneWestRestHouse.asm"
+INCLUDE "data/maps/headers/SafariZoneWestRestHouse.asm"
INCLUDE "scripts/SafariZoneWestRestHouse.asm"
-INCLUDE "data/mapObjects/SafariZoneWestRestHouse.asm"
+INCLUDE "data/maps/objects/SafariZoneWestRestHouse.asm"
-INCLUDE "data/mapHeaders/SafariZoneEastRestHouse.asm"
+INCLUDE "data/maps/headers/SafariZoneEastRestHouse.asm"
INCLUDE "scripts/SafariZoneEastRestHouse.asm"
-INCLUDE "data/mapObjects/SafariZoneEastRestHouse.asm"
+INCLUDE "data/maps/objects/SafariZoneEastRestHouse.asm"
-INCLUDE "data/mapHeaders/SafariZoneNorthRestHouse.asm"
+INCLUDE "data/maps/headers/SafariZoneNorthRestHouse.asm"
INCLUDE "scripts/SafariZoneNorthRestHouse.asm"
-INCLUDE "data/mapObjects/SafariZoneNorthRestHouse.asm"
+INCLUDE "data/maps/objects/SafariZoneNorthRestHouse.asm"
-INCLUDE "data/mapHeaders/CeruleanCave2F.asm"
+INCLUDE "data/maps/headers/CeruleanCave2F.asm"
INCLUDE "scripts/CeruleanCave2F.asm"
-INCLUDE "data/mapObjects/CeruleanCave2F.asm"
+INCLUDE "data/maps/objects/CeruleanCave2F.asm"
CeruleanCave2F_Blocks: INCBIN "maps/CeruleanCave2F.blk"
-INCLUDE "data/mapHeaders/CeruleanCaveB1F.asm"
+INCLUDE "data/maps/headers/CeruleanCaveB1F.asm"
INCLUDE "scripts/CeruleanCaveB1F.asm"
-INCLUDE "data/mapObjects/CeruleanCaveB1F.asm"
+INCLUDE "data/maps/objects/CeruleanCaveB1F.asm"
CeruleanCaveB1F_Blocks: INCBIN "maps/CeruleanCaveB1F.blk"
-INCLUDE "data/mapHeaders/RockTunnelB1F.asm"
+INCLUDE "data/maps/headers/RockTunnelB1F.asm"
INCLUDE "scripts/RockTunnelB1F.asm"
-INCLUDE "data/mapObjects/RockTunnelB1F.asm"
+INCLUDE "data/maps/objects/RockTunnelB1F.asm"
RockTunnelB1F_Blocks: INCBIN "maps/RockTunnelB1F.blk"
-INCLUDE "data/mapHeaders/SeafoamIslandsB1F.asm"
+INCLUDE "data/maps/headers/SeafoamIslandsB1F.asm"
INCLUDE "scripts/SeafoamIslandsB1F.asm"
-INCLUDE "data/mapObjects/SeafoamIslandsB1F.asm"
+INCLUDE "data/maps/objects/SeafoamIslandsB1F.asm"
SeafoamIslandsB1F_Blocks: INCBIN "maps/SeafoamIslandsB1F.blk"
-INCLUDE "data/mapHeaders/SeafoamIslandsB2F.asm"
+INCLUDE "data/maps/headers/SeafoamIslandsB2F.asm"
INCLUDE "scripts/SeafoamIslandsB2F.asm"
-INCLUDE "data/mapObjects/SeafoamIslandsB2F.asm"
+INCLUDE "data/maps/objects/SeafoamIslandsB2F.asm"
SeafoamIslandsB2F_Blocks: INCBIN "maps/SeafoamIslandsB2F.blk"
-INCLUDE "data/mapHeaders/SeafoamIslandsB3F.asm"
+INCLUDE "data/maps/headers/SeafoamIslandsB3F.asm"
INCLUDE "scripts/SeafoamIslandsB3F.asm"
-INCLUDE "data/mapObjects/SeafoamIslandsB3F.asm"
+INCLUDE "data/maps/objects/SeafoamIslandsB3F.asm"
SeafoamIslandsB3F_Blocks: INCBIN "maps/SeafoamIslandsB3F.blk"
-INCLUDE "data/mapHeaders/SeafoamIslandsB4F.asm"
+INCLUDE "data/maps/headers/SeafoamIslandsB4F.asm"
INCLUDE "scripts/SeafoamIslandsB4F.asm"
-INCLUDE "data/mapObjects/SeafoamIslandsB4F.asm"
+INCLUDE "data/maps/objects/SeafoamIslandsB4F.asm"
SeafoamIslandsB4F_Blocks: INCBIN "maps/SeafoamIslandsB4F.blk"
SECTION "Maps 7", ROMX
-INCLUDE "data/mapHeaders/Route7.asm"
-INCLUDE "data/mapObjects/Route7.asm"
+INCLUDE "data/maps/headers/Route7.asm"
+INCLUDE "data/maps/objects/Route7.asm"
Route7_Blocks: INCBIN "maps/Route7.blk"
CeladonPokecenter_Blocks:
@@ -418,203 +418,203 @@
INCLUDE "scripts/Route7.asm"
-INCLUDE "data/mapHeaders/RedsHouse1F.asm"
+INCLUDE "data/maps/headers/RedsHouse1F.asm"
INCLUDE "scripts/RedsHouse1F.asm"
-INCLUDE "data/mapObjects/RedsHouse1F.asm"
+INCLUDE "data/maps/objects/RedsHouse1F.asm"
RedsHouse1F_Blocks: INCBIN "maps/RedsHouse1F.blk"
-INCLUDE "data/mapHeaders/CeladonMart3F.asm"
+INCLUDE "data/maps/headers/CeladonMart3F.asm"
INCLUDE "scripts/CeladonMart3F.asm"
-INCLUDE "data/mapObjects/CeladonMart3F.asm"
+INCLUDE "data/maps/objects/CeladonMart3F.asm"
CeladonMart3F_Blocks: INCBIN "maps/CeladonMart3F.blk"
-INCLUDE "data/mapHeaders/CeladonMart4F.asm"
+INCLUDE "data/maps/headers/CeladonMart4F.asm"
INCLUDE "scripts/CeladonMart4F.asm"
-INCLUDE "data/mapObjects/CeladonMart4F.asm"
+INCLUDE "data/maps/objects/CeladonMart4F.asm"
CeladonMart4F_Blocks: INCBIN "maps/CeladonMart4F.blk"
-INCLUDE "data/mapHeaders/CeladonMartRoof.asm"
+INCLUDE "data/maps/headers/CeladonMartRoof.asm"
INCLUDE "scripts/CeladonMartRoof.asm"
-INCLUDE "data/mapObjects/CeladonMartRoof.asm"
+INCLUDE "data/maps/objects/CeladonMartRoof.asm"
CeladonMartRoof_Blocks: INCBIN "maps/CeladonMartRoof.blk"
-INCLUDE "data/mapHeaders/CeladonMartElevator.asm"
+INCLUDE "data/maps/headers/CeladonMartElevator.asm"
INCLUDE "scripts/CeladonMartElevator.asm"
-INCLUDE "data/mapObjects/CeladonMartElevator.asm"
+INCLUDE "data/maps/objects/CeladonMartElevator.asm"
CeladonMartElevator_Blocks: INCBIN "maps/CeladonMartElevator.blk"
-INCLUDE "data/mapHeaders/CeladonMansion1F.asm"
+INCLUDE "data/maps/headers/CeladonMansion1F.asm"
INCLUDE "scripts/CeladonMansion1F.asm"
-INCLUDE "data/mapObjects/CeladonMansion1F.asm"
+INCLUDE "data/maps/objects/CeladonMansion1F.asm"
CeladonMansion1F_Blocks: INCBIN "maps/CeladonMansion1F.blk"
-INCLUDE "data/mapHeaders/CeladonMansion2F.asm"
+INCLUDE "data/maps/headers/CeladonMansion2F.asm"
INCLUDE "scripts/CeladonMansion2F.asm"
-INCLUDE "data/mapObjects/CeladonMansion2F.asm"
+INCLUDE "data/maps/objects/CeladonMansion2F.asm"
CeladonMansion2F_Blocks: INCBIN "maps/CeladonMansion2F.blk"
-INCLUDE "data/mapHeaders/CeladonMansion3F.asm"
+INCLUDE "data/maps/headers/CeladonMansion3F.asm"
INCLUDE "scripts/CeladonMansion3F.asm"
-INCLUDE "data/mapObjects/CeladonMansion3F.asm"
+INCLUDE "data/maps/objects/CeladonMansion3F.asm"
CeladonMansion3F_Blocks: INCBIN "maps/CeladonMansion3F.blk"
-INCLUDE "data/mapHeaders/CeladonMansionRoof.asm"
+INCLUDE "data/maps/headers/CeladonMansionRoof.asm"
INCLUDE "scripts/CeladonMansionRoof.asm"
-INCLUDE "data/mapObjects/CeladonMansionRoof.asm"
+INCLUDE "data/maps/objects/CeladonMansionRoof.asm"
CeladonMansionRoof_Blocks: INCBIN "maps/CeladonMansionRoof.blk"
-INCLUDE "data/mapHeaders/CeladonPokecenter.asm"
+INCLUDE "data/maps/headers/CeladonPokecenter.asm"
INCLUDE "scripts/CeladonPokecenter.asm"
-INCLUDE "data/mapObjects/CeladonPokecenter.asm"
+INCLUDE "data/maps/objects/CeladonPokecenter.asm"
-INCLUDE "data/mapHeaders/CeladonGym.asm"
+INCLUDE "data/maps/headers/CeladonGym.asm"
INCLUDE "scripts/CeladonGym.asm"
-INCLUDE "data/mapObjects/CeladonGym.asm"
+INCLUDE "data/maps/objects/CeladonGym.asm"
CeladonGym_Blocks: INCBIN "maps/CeladonGym.blk"
-INCLUDE "data/mapHeaders/GameCorner.asm"
+INCLUDE "data/maps/headers/GameCorner.asm"
INCLUDE "scripts/GameCorner.asm"
-INCLUDE "data/mapObjects/GameCorner.asm"
+INCLUDE "data/maps/objects/GameCorner.asm"
GameCorner_Blocks: INCBIN "maps/GameCorner.blk"
-INCLUDE "data/mapHeaders/CeladonMart5F.asm"
+INCLUDE "data/maps/headers/CeladonMart5F.asm"
INCLUDE "scripts/CeladonMart5F.asm"
-INCLUDE "data/mapObjects/CeladonMart5F.asm"
+INCLUDE "data/maps/objects/CeladonMart5F.asm"
CeladonMart5F_Blocks: INCBIN "maps/CeladonMart5F.blk"
-INCLUDE "data/mapHeaders/GameCornerPrizeRoom.asm"
+INCLUDE "data/maps/headers/GameCornerPrizeRoom.asm"
INCLUDE "scripts/GameCornerPrizeRoom.asm"
-INCLUDE "data/mapObjects/GameCornerPrizeRoom.asm"
+INCLUDE "data/maps/objects/GameCornerPrizeRoom.asm"
GameCornerPrizeRoom_Blocks: INCBIN "maps/GameCornerPrizeRoom.blk"
-INCLUDE "data/mapHeaders/CeladonDiner.asm"
+INCLUDE "data/maps/headers/CeladonDiner.asm"
INCLUDE "scripts/CeladonDiner.asm"
-INCLUDE "data/mapObjects/CeladonDiner.asm"
+INCLUDE "data/maps/objects/CeladonDiner.asm"
CeladonDiner_Blocks: INCBIN "maps/CeladonDiner.blk"
-INCLUDE "data/mapHeaders/CeladonChiefHouse.asm"
+INCLUDE "data/maps/headers/CeladonChiefHouse.asm"
INCLUDE "scripts/CeladonChiefHouse.asm"
-INCLUDE "data/mapObjects/CeladonChiefHouse.asm"
+INCLUDE "data/maps/objects/CeladonChiefHouse.asm"
CeladonChiefHouse_Blocks: INCBIN "maps/CeladonChiefHouse.blk"
-INCLUDE "data/mapHeaders/CeladonHotel.asm"
+INCLUDE "data/maps/headers/CeladonHotel.asm"
INCLUDE "scripts/CeladonHotel.asm"
-INCLUDE "data/mapObjects/CeladonHotel.asm"
+INCLUDE "data/maps/objects/CeladonHotel.asm"
CeladonHotel_Blocks: INCBIN "maps/CeladonHotel.blk"
-INCLUDE "data/mapHeaders/MtMoonPokecenter.asm"
+INCLUDE "data/maps/headers/MtMoonPokecenter.asm"
INCLUDE "scripts/MtMoonPokecenter.asm"
-INCLUDE "data/mapObjects/MtMoonPokecenter.asm"
+INCLUDE "data/maps/objects/MtMoonPokecenter.asm"
-INCLUDE "data/mapHeaders/RockTunnelPokecenter.asm"
+INCLUDE "data/maps/headers/RockTunnelPokecenter.asm"
INCLUDE "scripts/RockTunnelPokecenter.asm"
-INCLUDE "data/mapObjects/RockTunnelPokecenter.asm"
+INCLUDE "data/maps/objects/RockTunnelPokecenter.asm"
-INCLUDE "data/mapHeaders/Route11Gate1F.asm"
+INCLUDE "data/maps/headers/Route11Gate1F.asm"
INCLUDE "scripts/Route11Gate1F.asm"
-INCLUDE "data/mapObjects/Route11Gate1F.asm"
+INCLUDE "data/maps/objects/Route11Gate1F.asm"
-INCLUDE "data/mapHeaders/Route11Gate2F.asm"
+INCLUDE "data/maps/headers/Route11Gate2F.asm"
INCLUDE "scripts/Route11Gate2F.asm"
-INCLUDE "data/mapObjects/Route11Gate2F.asm"
+INCLUDE "data/maps/objects/Route11Gate2F.asm"
-INCLUDE "data/mapHeaders/Route12Gate1F.asm"
+INCLUDE "data/maps/headers/Route12Gate1F.asm"
INCLUDE "scripts/Route12Gate1F.asm"
-INCLUDE "data/mapObjects/Route12Gate1F.asm"
+INCLUDE "data/maps/objects/Route12Gate1F.asm"
Route12Gate1F_Blocks: INCBIN "maps/Route12Gate1F.blk"
-INCLUDE "data/mapHeaders/Route12Gate2F.asm"
+INCLUDE "data/maps/headers/Route12Gate2F.asm"
INCLUDE "scripts/Route12Gate2F.asm"
-INCLUDE "data/mapObjects/Route12Gate2F.asm"
+INCLUDE "data/maps/objects/Route12Gate2F.asm"
-INCLUDE "data/mapHeaders/Route15Gate1F.asm"
+INCLUDE "data/maps/headers/Route15Gate1F.asm"
INCLUDE "scripts/Route15Gate1F.asm"
-INCLUDE "data/mapObjects/Route15Gate1F.asm"
+INCLUDE "data/maps/objects/Route15Gate1F.asm"
-INCLUDE "data/mapHeaders/Route15Gate2F.asm"
+INCLUDE "data/maps/headers/Route15Gate2F.asm"
INCLUDE "scripts/Route15Gate2F.asm"
-INCLUDE "data/mapObjects/Route15Gate2F.asm"
+INCLUDE "data/maps/objects/Route15Gate2F.asm"
-INCLUDE "data/mapHeaders/Route16Gate1F.asm"
+INCLUDE "data/maps/headers/Route16Gate1F.asm"
INCLUDE "scripts/Route16Gate1F.asm"
-INCLUDE "data/mapObjects/Route16Gate1F.asm"
+INCLUDE "data/maps/objects/Route16Gate1F.asm"
Route16Gate1F_Blocks: INCBIN "maps/Route16Gate1F.blk"
-INCLUDE "data/mapHeaders/Route16Gate2F.asm"
+INCLUDE "data/maps/headers/Route16Gate2F.asm"
INCLUDE "scripts/Route16Gate2F.asm"
-INCLUDE "data/mapObjects/Route16Gate2F.asm"
+INCLUDE "data/maps/objects/Route16Gate2F.asm"
-INCLUDE "data/mapHeaders/Route18Gate1F.asm"
+INCLUDE "data/maps/headers/Route18Gate1F.asm"
INCLUDE "scripts/Route18Gate1F.asm"
-INCLUDE "data/mapObjects/Route18Gate1F.asm"
+INCLUDE "data/maps/objects/Route18Gate1F.asm"
-INCLUDE "data/mapHeaders/Route18Gate2F.asm"
+INCLUDE "data/maps/headers/Route18Gate2F.asm"
INCLUDE "scripts/Route18Gate2F.asm"
-INCLUDE "data/mapObjects/Route18Gate2F.asm"
+INCLUDE "data/maps/objects/Route18Gate2F.asm"
-INCLUDE "data/mapHeaders/MtMoon1F.asm"
+INCLUDE "data/maps/headers/MtMoon1F.asm"
INCLUDE "scripts/MtMoon1F.asm"
-INCLUDE "data/mapObjects/MtMoon1F.asm"
+INCLUDE "data/maps/objects/MtMoon1F.asm"
MtMoon1F_Blocks: INCBIN "maps/MtMoon1F.blk"
-INCLUDE "data/mapHeaders/MtMoonB2F.asm"
+INCLUDE "data/maps/headers/MtMoonB2F.asm"
INCLUDE "scripts/MtMoonB2F.asm"
-INCLUDE "data/mapObjects/MtMoonB2F.asm"
+INCLUDE "data/maps/objects/MtMoonB2F.asm"
MtMoonB2F_Blocks: INCBIN "maps/MtMoonB2F.blk"
-INCLUDE "data/mapHeaders/SafariZoneWest.asm"
+INCLUDE "data/maps/headers/SafariZoneWest.asm"
INCLUDE "scripts/SafariZoneWest.asm"
-INCLUDE "data/mapObjects/SafariZoneWest.asm"
+INCLUDE "data/maps/objects/SafariZoneWest.asm"
SafariZoneWest_Blocks: INCBIN "maps/SafariZoneWest.blk"
-INCLUDE "data/mapHeaders/SafariZoneSecretHouse.asm"
+INCLUDE "data/maps/headers/SafariZoneSecretHouse.asm"
INCLUDE "scripts/SafariZoneSecretHouse.asm"
-INCLUDE "data/mapObjects/SafariZoneSecretHouse.asm"
+INCLUDE "data/maps/objects/SafariZoneSecretHouse.asm"
SafariZoneSecretHouse_Blocks: INCBIN "maps/SafariZoneSecretHouse.blk"
SECTION "Maps 9", ROMX
-INCLUDE "data/mapHeaders/TradeCenter.asm"
+INCLUDE "data/maps/headers/TradeCenter.asm"
INCLUDE "scripts/TradeCenter.asm"
-INCLUDE "data/mapObjects/TradeCenter.asm"
+INCLUDE "data/maps/objects/TradeCenter.asm"
TradeCenter_Blocks: INCBIN "maps/TradeCenter.blk"
-INCLUDE "data/mapHeaders/Colosseum.asm"
+INCLUDE "data/maps/headers/Colosseum.asm"
INCLUDE "scripts/Colosseum.asm"
-INCLUDE "data/mapObjects/Colosseum.asm"
+INCLUDE "data/maps/objects/Colosseum.asm"
Colosseum_Blocks: INCBIN "maps/Colosseum.blk"
SECTION "Maps 10", ROMX
-INCLUDE "data/mapHeaders/Route22.asm"
-INCLUDE "data/mapObjects/Route22.asm"
+INCLUDE "data/maps/headers/Route22.asm"
+INCLUDE "data/maps/objects/Route22.asm"
Route22_Blocks: INCBIN "maps/Route22.blk"
-INCLUDE "data/mapHeaders/Route20.asm"
-INCLUDE "data/mapObjects/Route20.asm"
+INCLUDE "data/maps/headers/Route20.asm"
+INCLUDE "data/maps/objects/Route20.asm"
Route20_Blocks: INCBIN "maps/Route20.blk"
-INCLUDE "data/mapHeaders/Route23.asm"
-INCLUDE "data/mapObjects/Route23.asm"
+INCLUDE "data/maps/headers/Route23.asm"
+INCLUDE "data/maps/objects/Route23.asm"
Route23_Blocks: INCBIN "maps/Route23.blk"
-INCLUDE "data/mapHeaders/Route24.asm"
-INCLUDE "data/mapObjects/Route24.asm"
+INCLUDE "data/maps/headers/Route24.asm"
+INCLUDE "data/maps/objects/Route24.asm"
Route24_Blocks: INCBIN "maps/Route24.blk"
-INCLUDE "data/mapHeaders/Route25.asm"
-INCLUDE "data/mapObjects/Route25.asm"
+INCLUDE "data/maps/headers/Route25.asm"
+INCLUDE "data/maps/objects/Route25.asm"
Route25_Blocks: INCBIN "maps/Route25.blk"
-INCLUDE "data/mapHeaders/IndigoPlateau.asm"
+INCLUDE "data/maps/headers/IndigoPlateau.asm"
INCLUDE "scripts/IndigoPlateau.asm"
-INCLUDE "data/mapObjects/IndigoPlateau.asm"
+INCLUDE "data/maps/objects/IndigoPlateau.asm"
IndigoPlateau_Blocks: INCBIN "maps/IndigoPlateau.blk"
-INCLUDE "data/mapHeaders/SaffronCity.asm"
-INCLUDE "data/mapObjects/SaffronCity.asm"
+INCLUDE "data/maps/headers/SaffronCity.asm"
+INCLUDE "data/maps/objects/SaffronCity.asm"
SaffronCity_Blocks: INCBIN "maps/SaffronCity.blk"
INCLUDE "scripts/SaffronCity.asm"
@@ -624,77 +624,77 @@
INCLUDE "scripts/Route24.asm"
INCLUDE "scripts/Route25.asm"
-INCLUDE "data/mapHeaders/VictoryRoad2F.asm"
+INCLUDE "data/maps/headers/VictoryRoad2F.asm"
INCLUDE "scripts/VictoryRoad2F.asm"
-INCLUDE "data/mapObjects/VictoryRoad2F.asm"
+INCLUDE "data/maps/objects/VictoryRoad2F.asm"
VictoryRoad2F_Blocks: INCBIN "maps/VictoryRoad2F.blk"
-INCLUDE "data/mapHeaders/MtMoonB1F.asm"
+INCLUDE "data/maps/headers/MtMoonB1F.asm"
INCLUDE "scripts/MtMoonB1F.asm"
-INCLUDE "data/mapObjects/MtMoonB1F.asm"
+INCLUDE "data/maps/objects/MtMoonB1F.asm"
MtMoonB1F_Blocks: INCBIN "maps/MtMoonB1F.blk"
-INCLUDE "data/mapHeaders/SilphCo7F.asm"
+INCLUDE "data/maps/headers/SilphCo7F.asm"
INCLUDE "scripts/SilphCo7F.asm"
-INCLUDE "data/mapObjects/SilphCo7F.asm"
+INCLUDE "data/maps/objects/SilphCo7F.asm"
SilphCo7F_Blocks: INCBIN "maps/SilphCo7F.blk"
-INCLUDE "data/mapHeaders/PokemonMansion2F.asm"
+INCLUDE "data/maps/headers/PokemonMansion2F.asm"
INCLUDE "scripts/PokemonMansion2F.asm"
-INCLUDE "data/mapObjects/PokemonMansion2F.asm"
+INCLUDE "data/maps/objects/PokemonMansion2F.asm"
PokemonMansion2F_Blocks: INCBIN "maps/PokemonMansion2F.blk"
-INCLUDE "data/mapHeaders/PokemonMansion3F.asm"
+INCLUDE "data/maps/headers/PokemonMansion3F.asm"
INCLUDE "scripts/PokemonMansion3F.asm"
-INCLUDE "data/mapObjects/PokemonMansion3F.asm"
+INCLUDE "data/maps/objects/PokemonMansion3F.asm"
PokemonMansion3F_Blocks: INCBIN "maps/PokemonMansion3F.blk"
-INCLUDE "data/mapHeaders/PokemonMansionB1F.asm"
+INCLUDE "data/maps/headers/PokemonMansionB1F.asm"
INCLUDE "scripts/PokemonMansionB1F.asm"
-INCLUDE "data/mapObjects/PokemonMansionB1F.asm"
+INCLUDE "data/maps/objects/PokemonMansionB1F.asm"
PokemonMansionB1F_Blocks: INCBIN "maps/PokemonMansionB1F.blk"
SECTION "Maps 11", ROMX
-INCLUDE "data/mapHeaders/Route2.asm"
-INCLUDE "data/mapObjects/Route2.asm"
+INCLUDE "data/maps/headers/Route2.asm"
+INCLUDE "data/maps/objects/Route2.asm"
Route2_Blocks: INCBIN "maps/Route2.blk"
-INCLUDE "data/mapHeaders/Route3.asm"
-INCLUDE "data/mapObjects/Route3.asm"
+INCLUDE "data/maps/headers/Route3.asm"
+INCLUDE "data/maps/objects/Route3.asm"
Route3_Blocks: INCBIN "maps/Route3.blk"
-INCLUDE "data/mapHeaders/Route4.asm"
-INCLUDE "data/mapObjects/Route4.asm"
+INCLUDE "data/maps/headers/Route4.asm"
+INCLUDE "data/maps/objects/Route4.asm"
Route4_Blocks: INCBIN "maps/Route4.blk"
-INCLUDE "data/mapHeaders/Route5.asm"
-INCLUDE "data/mapObjects/Route5.asm"
+INCLUDE "data/maps/headers/Route5.asm"
+INCLUDE "data/maps/objects/Route5.asm"
Route5_Blocks: INCBIN "maps/Route5.blk"
-INCLUDE "data/mapHeaders/Route9.asm"
-INCLUDE "data/mapObjects/Route9.asm"
+INCLUDE "data/maps/headers/Route9.asm"
+INCLUDE "data/maps/objects/Route9.asm"
Route9_Blocks: INCBIN "maps/Route9.blk"
-INCLUDE "data/mapHeaders/Route13.asm"
-INCLUDE "data/mapObjects/Route13.asm"
+INCLUDE "data/maps/headers/Route13.asm"
+INCLUDE "data/maps/objects/Route13.asm"
Route13_Blocks: INCBIN "maps/Route13.blk"
-INCLUDE "data/mapHeaders/Route14.asm"
-INCLUDE "data/mapObjects/Route14.asm"
+INCLUDE "data/maps/headers/Route14.asm"
+INCLUDE "data/maps/objects/Route14.asm"
Route14_Blocks: INCBIN "maps/Route14.blk"
-INCLUDE "data/mapHeaders/Route17.asm"
-INCLUDE "data/mapObjects/Route17.asm"
+INCLUDE "data/maps/headers/Route17.asm"
+INCLUDE "data/maps/objects/Route17.asm"
Route17_Blocks: INCBIN "maps/Route17.blk"
-INCLUDE "data/mapHeaders/Route19.asm"
-INCLUDE "data/mapObjects/Route19.asm"
+INCLUDE "data/maps/headers/Route19.asm"
+INCLUDE "data/maps/objects/Route19.asm"
Route19_Blocks: INCBIN "maps/Route19.blk"
-INCLUDE "data/mapHeaders/Route21.asm"
-INCLUDE "data/mapObjects/Route21.asm"
+INCLUDE "data/maps/headers/Route21.asm"
+INCLUDE "data/maps/objects/Route21.asm"
Route21_Blocks: INCBIN "maps/Route21.blk"
VermilionOldRodHouse_Blocks:
@@ -717,65 +717,65 @@
INCLUDE "scripts/Route19.asm"
INCLUDE "scripts/Route21.asm"
-INCLUDE "data/mapHeaders/VermilionOldRodHouse.asm"
+INCLUDE "data/maps/headers/VermilionOldRodHouse.asm"
INCLUDE "scripts/VermilionOldRodHouse.asm"
-INCLUDE "data/mapObjects/VermilionOldRodHouse.asm"
+INCLUDE "data/maps/objects/VermilionOldRodHouse.asm"
-INCLUDE "data/mapHeaders/CeladonMart2F.asm"
+INCLUDE "data/maps/headers/CeladonMart2F.asm"
INCLUDE "scripts/CeladonMart2F.asm"
-INCLUDE "data/mapObjects/CeladonMart2F.asm"
+INCLUDE "data/maps/objects/CeladonMart2F.asm"
CeladonMart2F_Blocks: INCBIN "maps/CeladonMart2F.blk"
-INCLUDE "data/mapHeaders/FuchsiaGoodRodHouse.asm"
+INCLUDE "data/maps/headers/FuchsiaGoodRodHouse.asm"
INCLUDE "scripts/FuchsiaGoodRodHouse.asm"
-INCLUDE "data/mapObjects/FuchsiaGoodRodHouse.asm"
+INCLUDE "data/maps/objects/FuchsiaGoodRodHouse.asm"
-INCLUDE "data/mapHeaders/Daycare.asm"
+INCLUDE "data/maps/headers/Daycare.asm"
INCLUDE "scripts/Daycare.asm"
-INCLUDE "data/mapObjects/Daycare.asm"
+INCLUDE "data/maps/objects/Daycare.asm"
-INCLUDE "data/mapHeaders/Route12SuperRodHouse.asm"
+INCLUDE "data/maps/headers/Route12SuperRodHouse.asm"
INCLUDE "scripts/Route12SuperRodHouse.asm"
-INCLUDE "data/mapObjects/Route12SuperRodHouse.asm"
+INCLUDE "data/maps/objects/Route12SuperRodHouse.asm"
-INCLUDE "data/mapHeaders/SilphCo8F.asm"
+INCLUDE "data/maps/headers/SilphCo8F.asm"
INCLUDE "scripts/SilphCo8F.asm"
-INCLUDE "data/mapObjects/SilphCo8F.asm"
+INCLUDE "data/maps/objects/SilphCo8F.asm"
SilphCo8F_Blocks: INCBIN "maps/SilphCo8F.blk"
SECTION "Maps 13", ROMX
-INCLUDE "data/mapHeaders/Route6.asm"
-INCLUDE "data/mapObjects/Route6.asm"
+INCLUDE "data/maps/headers/Route6.asm"
+INCLUDE "data/maps/objects/Route6.asm"
Route6_Blocks: INCBIN "maps/Route6.blk"
-INCLUDE "data/mapHeaders/Route8.asm"
-INCLUDE "data/mapObjects/Route8.asm"
+INCLUDE "data/maps/headers/Route8.asm"
+INCLUDE "data/maps/objects/Route8.asm"
Route8_Blocks: INCBIN "maps/Route8.blk"
-INCLUDE "data/mapHeaders/Route10.asm"
-INCLUDE "data/mapObjects/Route10.asm"
+INCLUDE "data/maps/headers/Route10.asm"
+INCLUDE "data/maps/objects/Route10.asm"
Route10_Blocks: INCBIN "maps/Route10.blk"
-INCLUDE "data/mapHeaders/Route11.asm"
-INCLUDE "data/mapObjects/Route11.asm"
+INCLUDE "data/maps/headers/Route11.asm"
+INCLUDE "data/maps/objects/Route11.asm"
Route11_Blocks: INCBIN "maps/Route11.blk"
-INCLUDE "data/mapHeaders/Route12.asm"
-INCLUDE "data/mapObjects/Route12.asm"
+INCLUDE "data/maps/headers/Route12.asm"
+INCLUDE "data/maps/objects/Route12.asm"
Route12_Blocks: INCBIN "maps/Route12.blk"
-INCLUDE "data/mapHeaders/Route15.asm"
-INCLUDE "data/mapObjects/Route15.asm"
+INCLUDE "data/maps/headers/Route15.asm"
+INCLUDE "data/maps/objects/Route15.asm"
Route15_Blocks: INCBIN "maps/Route15.blk"
-INCLUDE "data/mapHeaders/Route16.asm"
-INCLUDE "data/mapObjects/Route16.asm"
+INCLUDE "data/maps/headers/Route16.asm"
+INCLUDE "data/maps/objects/Route16.asm"
Route16_Blocks: INCBIN "maps/Route16.blk"
-INCLUDE "data/mapHeaders/Route18.asm"
-INCLUDE "data/mapObjects/Route18.asm"
+INCLUDE "data/maps/headers/Route18.asm"
+INCLUDE "data/maps/objects/Route18.asm"
Route18_Blocks: INCBIN "maps/Route18.blk"
INCBIN "maps/UnusedPokecenterCopy.blk"
@@ -792,34 +792,34 @@
INCLUDE "scripts/Route16.asm"
INCLUDE "scripts/Route18.asm"
-INCLUDE "data/mapHeaders/PokemonFanClub.asm"
+INCLUDE "data/maps/headers/PokemonFanClub.asm"
INCLUDE "scripts/PokemonFanClub.asm"
-INCLUDE "data/mapObjects/PokemonFanClub.asm"
+INCLUDE "data/maps/objects/PokemonFanClub.asm"
PokemonFanClub_Blocks: INCBIN "maps/PokemonFanClub.blk"
-INCLUDE "data/mapHeaders/SilphCo2F.asm"
+INCLUDE "data/maps/headers/SilphCo2F.asm"
INCLUDE "scripts/SilphCo2F.asm"
-INCLUDE "data/mapObjects/SilphCo2F.asm"
+INCLUDE "data/maps/objects/SilphCo2F.asm"
SilphCo2F_Blocks: INCBIN "maps/SilphCo2F.blk"
-INCLUDE "data/mapHeaders/SilphCo3F.asm"
+INCLUDE "data/maps/headers/SilphCo3F.asm"
INCLUDE "scripts/SilphCo3F.asm"
-INCLUDE "data/mapObjects/SilphCo3F.asm"
+INCLUDE "data/maps/objects/SilphCo3F.asm"
SilphCo3F_Blocks: INCBIN "maps/SilphCo3F.blk"
-INCLUDE "data/mapHeaders/SilphCo10F.asm"
+INCLUDE "data/maps/headers/SilphCo10F.asm"
INCLUDE "scripts/SilphCo10F.asm"
-INCLUDE "data/mapObjects/SilphCo10F.asm"
+INCLUDE "data/maps/objects/SilphCo10F.asm"
SilphCo10F_Blocks: INCBIN "maps/SilphCo10F.blk"
-INCLUDE "data/mapHeaders/LancesRoom.asm"
+INCLUDE "data/maps/headers/LancesRoom.asm"
INCLUDE "scripts/LancesRoom.asm"
-INCLUDE "data/mapObjects/LancesRoom.asm"
+INCLUDE "data/maps/objects/LancesRoom.asm"
LancesRoom_Blocks: INCBIN "maps/LancesRoom.blk"
-INCLUDE "data/mapHeaders/HallOfFame.asm"
+INCLUDE "data/maps/headers/HallOfFame.asm"
INCLUDE "scripts/HallOfFame.asm"
-INCLUDE "data/mapObjects/HallOfFame.asm"
+INCLUDE "data/maps/objects/HallOfFame.asm"
HallOfFame_Blocks: INCBIN "maps/HallOfFame.blk"
@@ -851,128 +851,128 @@
ViridianForestSouthGate_Blocks:
ViridianForestNorthGate_Blocks: INCBIN "maps/ViridianForestNorthGate.blk"
-INCLUDE "data/mapHeaders/RedsHouse2F.asm"
+INCLUDE "data/maps/headers/RedsHouse2F.asm"
INCLUDE "scripts/RedsHouse2F.asm"
-INCLUDE "data/mapObjects/RedsHouse2F.asm"
+INCLUDE "data/maps/objects/RedsHouse2F.asm"
SECTION "Maps 16", ROMX
-INCLUDE "data/mapHeaders/Museum1F.asm"
+INCLUDE "data/maps/headers/Museum1F.asm"
INCLUDE "scripts/Museum1F.asm"
-INCLUDE "data/mapObjects/Museum1F.asm"
+INCLUDE "data/maps/objects/Museum1F.asm"
-INCLUDE "data/mapHeaders/Museum2F.asm"
+INCLUDE "data/maps/headers/Museum2F.asm"
INCLUDE "scripts/Museum2F.asm"
-INCLUDE "data/mapObjects/Museum2F.asm"
+INCLUDE "data/maps/objects/Museum2F.asm"
-INCLUDE "data/mapHeaders/PewterGym.asm"
+INCLUDE "data/maps/headers/PewterGym.asm"
INCLUDE "scripts/PewterGym.asm"
-INCLUDE "data/mapObjects/PewterGym.asm"
+INCLUDE "data/maps/objects/PewterGym.asm"
PewterGym_Blocks: INCBIN "maps/PewterGym.blk"
-INCLUDE "data/mapHeaders/PewterPokecenter.asm"
+INCLUDE "data/maps/headers/PewterPokecenter.asm"
INCLUDE "scripts/PewterPokecenter.asm"
-INCLUDE "data/mapObjects/PewterPokecenter.asm"
+INCLUDE "data/maps/objects/PewterPokecenter.asm"
-INCLUDE "data/mapHeaders/CeruleanPokecenter.asm"
+INCLUDE "data/maps/headers/CeruleanPokecenter.asm"
INCLUDE "scripts/CeruleanPokecenter.asm"
-INCLUDE "data/mapObjects/CeruleanPokecenter.asm"
+INCLUDE "data/maps/objects/CeruleanPokecenter.asm"
CeruleanPokecenter_Blocks: INCBIN "maps/CeruleanPokecenter.blk"
-INCLUDE "data/mapHeaders/CeruleanGym.asm"
+INCLUDE "data/maps/headers/CeruleanGym.asm"
INCLUDE "scripts/CeruleanGym.asm"
-INCLUDE "data/mapObjects/CeruleanGym.asm"
+INCLUDE "data/maps/objects/CeruleanGym.asm"
CeruleanGym_Blocks: INCBIN "maps/CeruleanGym.blk"
-INCLUDE "data/mapHeaders/CeruleanMart.asm"
+INCLUDE "data/maps/headers/CeruleanMart.asm"
INCLUDE "scripts/CeruleanMart.asm"
-INCLUDE "data/mapObjects/CeruleanMart.asm"
+INCLUDE "data/maps/objects/CeruleanMart.asm"
-INCLUDE "data/mapHeaders/LavenderPokecenter.asm"
+INCLUDE "data/maps/headers/LavenderPokecenter.asm"
INCLUDE "scripts/LavenderPokecenter.asm"
-INCLUDE "data/mapObjects/LavenderPokecenter.asm"
+INCLUDE "data/maps/objects/LavenderPokecenter.asm"
-INCLUDE "data/mapHeaders/LavenderMart.asm"
+INCLUDE "data/maps/headers/LavenderMart.asm"
INCLUDE "scripts/LavenderMart.asm"
-INCLUDE "data/mapObjects/LavenderMart.asm"
+INCLUDE "data/maps/objects/LavenderMart.asm"
-INCLUDE "data/mapHeaders/VermilionPokecenter.asm"
+INCLUDE "data/maps/headers/VermilionPokecenter.asm"
INCLUDE "scripts/VermilionPokecenter.asm"
-INCLUDE "data/mapObjects/VermilionPokecenter.asm"
+INCLUDE "data/maps/objects/VermilionPokecenter.asm"
-INCLUDE "data/mapHeaders/VermilionMart.asm"
+INCLUDE "data/maps/headers/VermilionMart.asm"
INCLUDE "scripts/VermilionMart.asm"
-INCLUDE "data/mapObjects/VermilionMart.asm"
+INCLUDE "data/maps/objects/VermilionMart.asm"
-INCLUDE "data/mapHeaders/VermilionGym.asm"
+INCLUDE "data/maps/headers/VermilionGym.asm"
INCLUDE "scripts/VermilionGym.asm"
-INCLUDE "data/mapObjects/VermilionGym.asm"
+INCLUDE "data/maps/objects/VermilionGym.asm"
VermilionGym_Blocks: INCBIN "maps/VermilionGym.blk"
-INCLUDE "data/mapHeaders/CopycatsHouse2F.asm"
+INCLUDE "data/maps/headers/CopycatsHouse2F.asm"
INCLUDE "scripts/CopycatsHouse2F.asm"
-INCLUDE "data/mapObjects/CopycatsHouse2F.asm"
+INCLUDE "data/maps/objects/CopycatsHouse2F.asm"
-INCLUDE "data/mapHeaders/FightingDojo.asm"
+INCLUDE "data/maps/headers/FightingDojo.asm"
INCLUDE "scripts/FightingDojo.asm"
-INCLUDE "data/mapObjects/FightingDojo.asm"
+INCLUDE "data/maps/objects/FightingDojo.asm"
FightingDojo_Blocks: INCBIN "maps/FightingDojo.blk"
-INCLUDE "data/mapHeaders/SaffronGym.asm"
+INCLUDE "data/maps/headers/SaffronGym.asm"
INCLUDE "scripts/SaffronGym.asm"
-INCLUDE "data/mapObjects/SaffronGym.asm"
+INCLUDE "data/maps/objects/SaffronGym.asm"
SaffronGym_Blocks: INCBIN "maps/SaffronGym.blk"
-INCLUDE "data/mapHeaders/SaffronMart.asm"
+INCLUDE "data/maps/headers/SaffronMart.asm"
INCLUDE "scripts/SaffronMart.asm"
-INCLUDE "data/mapObjects/SaffronMart.asm"
+INCLUDE "data/maps/objects/SaffronMart.asm"
-INCLUDE "data/mapHeaders/SilphCo1F.asm"
+INCLUDE "data/maps/headers/SilphCo1F.asm"
INCLUDE "scripts/SilphCo1F.asm"
-INCLUDE "data/mapObjects/SilphCo1F.asm"
+INCLUDE "data/maps/objects/SilphCo1F.asm"
SilphCo1F_Blocks: INCBIN "maps/SilphCo1F.blk"
-INCLUDE "data/mapHeaders/SaffronPokecenter.asm"
+INCLUDE "data/maps/headers/SaffronPokecenter.asm"
INCLUDE "scripts/SaffronPokecenter.asm"
-INCLUDE "data/mapObjects/SaffronPokecenter.asm"
+INCLUDE "data/maps/objects/SaffronPokecenter.asm"
-INCLUDE "data/mapHeaders/ViridianForestNorthGate.asm"
+INCLUDE "data/maps/headers/ViridianForestNorthGate.asm"
INCLUDE "scripts/ViridianForestNorthGate.asm"
-INCLUDE "data/mapObjects/ViridianForestNorthGate.asm"
+INCLUDE "data/maps/objects/ViridianForestNorthGate.asm"
-INCLUDE "data/mapHeaders/Route2Gate.asm"
+INCLUDE "data/maps/headers/Route2Gate.asm"
INCLUDE "scripts/Route2Gate.asm"
-INCLUDE "data/mapObjects/Route2Gate.asm"
+INCLUDE "data/maps/objects/Route2Gate.asm"
-INCLUDE "data/mapHeaders/ViridianForestSouthGate.asm"
+INCLUDE "data/maps/headers/ViridianForestSouthGate.asm"
INCLUDE "scripts/ViridianForestSouthGate.asm"
-INCLUDE "data/mapObjects/ViridianForestSouthGate.asm"
+INCLUDE "data/maps/objects/ViridianForestSouthGate.asm"
-INCLUDE "data/mapHeaders/UndergroundPathRoute5.asm"
+INCLUDE "data/maps/headers/UndergroundPathRoute5.asm"
INCLUDE "scripts/UndergroundPathRoute5.asm"
-INCLUDE "data/mapObjects/UndergroundPathRoute5.asm"
+INCLUDE "data/maps/objects/UndergroundPathRoute5.asm"
-INCLUDE "data/mapHeaders/UndergroundPathRoute6.asm"
+INCLUDE "data/maps/headers/UndergroundPathRoute6.asm"
INCLUDE "scripts/UndergroundPathRoute6.asm"
-INCLUDE "data/mapObjects/UndergroundPathRoute6.asm"
+INCLUDE "data/maps/objects/UndergroundPathRoute6.asm"
-INCLUDE "data/mapHeaders/UndergroundPathRoute7.asm"
+INCLUDE "data/maps/headers/UndergroundPathRoute7.asm"
INCLUDE "scripts/UndergroundPathRoute7.asm"
-INCLUDE "data/mapObjects/UndergroundPathRoute7.asm"
+INCLUDE "data/maps/objects/UndergroundPathRoute7.asm"
-INCLUDE "data/mapHeaders/UndergroundPathRoute7Copy.asm"
+INCLUDE "data/maps/headers/UndergroundPathRoute7Copy.asm"
INCLUDE "scripts/UndergroundPathRoute7Copy.asm"
-INCLUDE "data/mapObjects/UndergroundPathRoute7Copy.asm"
+INCLUDE "data/maps/objects/UndergroundPathRoute7Copy.asm"
-INCLUDE "data/mapHeaders/SilphCo9F.asm"
+INCLUDE "data/maps/headers/SilphCo9F.asm"
INCLUDE "scripts/SilphCo9F.asm"
-INCLUDE "data/mapObjects/SilphCo9F.asm"
+INCLUDE "data/maps/objects/SilphCo9F.asm"
SilphCo9F_Blocks: INCBIN "maps/SilphCo9F.blk"
-INCLUDE "data/mapHeaders/VictoryRoad1F.asm"
+INCLUDE "data/maps/headers/VictoryRoad1F.asm"
INCLUDE "scripts/VictoryRoad1F.asm"
-INCLUDE "data/mapObjects/VictoryRoad1F.asm"
+INCLUDE "data/maps/objects/VictoryRoad1F.asm"
VictoryRoad1F_Blocks: INCBIN "maps/VictoryRoad1F.blk"
@@ -987,114 +987,114 @@
SSAnneB1FRooms_Blocks:
SSAnne2FRooms_Blocks: INCBIN "maps/SSAnne2FRooms.blk"
-INCLUDE "data/mapHeaders/PokemonTower1F.asm"
+INCLUDE "data/maps/headers/PokemonTower1F.asm"
INCLUDE "scripts/PokemonTower1F.asm"
-INCLUDE "data/mapObjects/PokemonTower1F.asm"
+INCLUDE "data/maps/objects/PokemonTower1F.asm"
PokemonTower1F_Blocks: INCBIN "maps/PokemonTower1F.blk"
-INCLUDE "data/mapHeaders/PokemonTower2F.asm"
+INCLUDE "data/maps/headers/PokemonTower2F.asm"
INCLUDE "scripts/PokemonTower2F.asm"
-INCLUDE "data/mapObjects/PokemonTower2F.asm"
+INCLUDE "data/maps/objects/PokemonTower2F.asm"
PokemonTower2F_Blocks: INCBIN "maps/PokemonTower2F.blk"
-INCLUDE "data/mapHeaders/PokemonTower3F.asm"
+INCLUDE "data/maps/headers/PokemonTower3F.asm"
INCLUDE "scripts/PokemonTower3F.asm"
-INCLUDE "data/mapObjects/PokemonTower3F.asm"
+INCLUDE "data/maps/objects/PokemonTower3F.asm"
PokemonTower3F_Blocks: INCBIN "maps/PokemonTower3F.blk"
-INCLUDE "data/mapHeaders/PokemonTower4F.asm"
+INCLUDE "data/maps/headers/PokemonTower4F.asm"
INCLUDE "scripts/PokemonTower4F.asm"
-INCLUDE "data/mapObjects/PokemonTower4F.asm"
+INCLUDE "data/maps/objects/PokemonTower4F.asm"
PokemonTower4F_Blocks: INCBIN "maps/PokemonTower4F.blk"
-INCLUDE "data/mapHeaders/PokemonTower5F.asm"
+INCLUDE "data/maps/headers/PokemonTower5F.asm"
INCLUDE "scripts/PokemonTower5F.asm"
-INCLUDE "data/mapObjects/PokemonTower5F.asm"
+INCLUDE "data/maps/objects/PokemonTower5F.asm"
PokemonTower5F_Blocks: INCBIN "maps/PokemonTower5F.blk"
-INCLUDE "data/mapHeaders/PokemonTower6F.asm"
+INCLUDE "data/maps/headers/PokemonTower6F.asm"
INCLUDE "scripts/PokemonTower6F.asm"
-INCLUDE "data/mapObjects/PokemonTower6F.asm"
+INCLUDE "data/maps/objects/PokemonTower6F.asm"
PokemonTower6F_Blocks: INCBIN "maps/PokemonTower6F.blk"
INCBIN "maps/UnusedEmptyMap.blk"
-INCLUDE "data/mapHeaders/PokemonTower7F.asm"
+INCLUDE "data/maps/headers/PokemonTower7F.asm"
INCLUDE "scripts/PokemonTower7F.asm"
-INCLUDE "data/mapObjects/PokemonTower7F.asm"
+INCLUDE "data/maps/objects/PokemonTower7F.asm"
PokemonTower7F_Blocks: INCBIN "maps/PokemonTower7F.blk"
-INCLUDE "data/mapHeaders/CeladonMart1F.asm"
+INCLUDE "data/maps/headers/CeladonMart1F.asm"
INCLUDE "scripts/CeladonMart1F.asm"
-INCLUDE "data/mapObjects/CeladonMart1F.asm"
+INCLUDE "data/maps/objects/CeladonMart1F.asm"
CeladonMart1F_Blocks: INCBIN "maps/CeladonMart1F.blk"
SECTION "Maps 18", ROMX
-INCLUDE "data/mapHeaders/ViridianForest.asm"
+INCLUDE "data/maps/headers/ViridianForest.asm"
INCLUDE "scripts/ViridianForest.asm"
-INCLUDE "data/mapObjects/ViridianForest.asm"
+INCLUDE "data/maps/objects/ViridianForest.asm"
-INCLUDE "data/mapHeaders/SSAnne1F.asm"
+INCLUDE "data/maps/headers/SSAnne1F.asm"
INCLUDE "scripts/SSAnne1F.asm"
-INCLUDE "data/mapObjects/SSAnne1F.asm"
+INCLUDE "data/maps/objects/SSAnne1F.asm"
SSAnne1F_Blocks: INCBIN "maps/SSAnne1F.blk"
-INCLUDE "data/mapHeaders/SSAnne2F.asm"
+INCLUDE "data/maps/headers/SSAnne2F.asm"
INCLUDE "scripts/SSAnne2F.asm"
-INCLUDE "data/mapObjects/SSAnne2F.asm"
+INCLUDE "data/maps/objects/SSAnne2F.asm"
SSAnne2F_Blocks: INCBIN "maps/SSAnne2F.blk"
-INCLUDE "data/mapHeaders/SSAnneB1F.asm"
+INCLUDE "data/maps/headers/SSAnneB1F.asm"
INCLUDE "scripts/SSAnneB1F.asm"
-INCLUDE "data/mapObjects/SSAnneB1F.asm"
+INCLUDE "data/maps/objects/SSAnneB1F.asm"
SSAnneB1F_Blocks: INCBIN "maps/SSAnneB1F.blk"
-INCLUDE "data/mapHeaders/SSAnneBow.asm"
+INCLUDE "data/maps/headers/SSAnneBow.asm"
INCLUDE "scripts/SSAnneBow.asm"
-INCLUDE "data/mapObjects/SSAnneBow.asm"
+INCLUDE "data/maps/objects/SSAnneBow.asm"
SSAnneBow_Blocks: INCBIN "maps/SSAnneBow.blk"
-INCLUDE "data/mapHeaders/SSAnneKitchen.asm"
+INCLUDE "data/maps/headers/SSAnneKitchen.asm"
INCLUDE "scripts/SSAnneKitchen.asm"
-INCLUDE "data/mapObjects/SSAnneKitchen.asm"
+INCLUDE "data/maps/objects/SSAnneKitchen.asm"
SSAnneKitchen_Blocks: INCBIN "maps/SSAnneKitchen.blk"
-INCLUDE "data/mapHeaders/SSAnneCaptainsRoom.asm"
+INCLUDE "data/maps/headers/SSAnneCaptainsRoom.asm"
INCLUDE "scripts/SSAnneCaptainsRoom.asm"
-INCLUDE "data/mapObjects/SSAnneCaptainsRoom.asm"
+INCLUDE "data/maps/objects/SSAnneCaptainsRoom.asm"
SSAnneCaptainsRoom_Blocks: INCBIN "maps/SSAnneCaptainsRoom.blk"
-INCLUDE "data/mapHeaders/SSAnne1FRooms.asm"
+INCLUDE "data/maps/headers/SSAnne1FRooms.asm"
INCLUDE "scripts/SSAnne1FRooms.asm"
-INCLUDE "data/mapObjects/SSAnne1FRooms.asm"
+INCLUDE "data/maps/objects/SSAnne1FRooms.asm"
SSAnne1FRooms_Blocks: INCBIN "maps/SSAnne1FRooms.blk"
-INCLUDE "data/mapHeaders/SSAnne2FRooms.asm"
+INCLUDE "data/maps/headers/SSAnne2FRooms.asm"
INCLUDE "scripts/SSAnne2FRooms.asm"
-INCLUDE "data/mapObjects/SSAnne2FRooms.asm"
+INCLUDE "data/maps/objects/SSAnne2FRooms.asm"
-INCLUDE "data/mapHeaders/SSAnneB1FRooms.asm"
+INCLUDE "data/maps/headers/SSAnneB1FRooms.asm"
INCLUDE "scripts/SSAnneB1FRooms.asm"
-INCLUDE "data/mapObjects/SSAnneB1FRooms.asm"
+INCLUDE "data/maps/objects/SSAnneB1FRooms.asm"
-INCLUDE "data/mapHeaders/UndergroundPathNorthSouth.asm"
+INCLUDE "data/maps/headers/UndergroundPathNorthSouth.asm"
INCLUDE "scripts/UndergroundPathNorthSouth.asm"
-INCLUDE "data/mapObjects/UndergroundPathNorthSouth.asm"
+INCLUDE "data/maps/objects/UndergroundPathNorthSouth.asm"
-INCLUDE "data/mapHeaders/UndergroundPathWestEast.asm"
+INCLUDE "data/maps/headers/UndergroundPathWestEast.asm"
INCLUDE "scripts/UndergroundPathWestEast.asm"
-INCLUDE "data/mapObjects/UndergroundPathWestEast.asm"
+INCLUDE "data/maps/objects/UndergroundPathWestEast.asm"
-INCLUDE "data/mapHeaders/DiglettsCave.asm"
+INCLUDE "data/maps/headers/DiglettsCave.asm"
INCLUDE "scripts/DiglettsCave.asm"
-INCLUDE "data/mapObjects/DiglettsCave.asm"
+INCLUDE "data/maps/objects/DiglettsCave.asm"
DiglettsCave_Blocks: INCBIN "maps/DiglettsCave.blk"
-INCLUDE "data/mapHeaders/SilphCo11F.asm"
+INCLUDE "data/maps/headers/SilphCo11F.asm"
INCLUDE "scripts/SilphCo11F.asm"
-INCLUDE "data/mapObjects/SilphCo11F.asm"
+INCLUDE "data/maps/objects/SilphCo11F.asm"
SilphCo11F_Blocks: INCBIN "maps/SilphCo11F.blk"
@@ -1117,108 +1117,108 @@
INCLUDE "scripts/CeruleanCity_2.asm"
-INCLUDE "data/mapHeaders/ViridianGym.asm"
+INCLUDE "data/maps/headers/ViridianGym.asm"
INCLUDE "scripts/ViridianGym.asm"
-INCLUDE "data/mapObjects/ViridianGym.asm"
+INCLUDE "data/maps/objects/ViridianGym.asm"
ViridianGym_Blocks: INCBIN "maps/ViridianGym.blk"
-INCLUDE "data/mapHeaders/PewterMart.asm"
+INCLUDE "data/maps/headers/PewterMart.asm"
INCLUDE "scripts/PewterMart.asm"
-INCLUDE "data/mapObjects/PewterMart.asm"
+INCLUDE "data/maps/objects/PewterMart.asm"
-INCLUDE "data/mapHeaders/CeruleanCave1F.asm"
+INCLUDE "data/maps/headers/CeruleanCave1F.asm"
INCLUDE "scripts/CeruleanCave1F.asm"
-INCLUDE "data/mapObjects/CeruleanCave1F.asm"
+INCLUDE "data/maps/objects/CeruleanCave1F.asm"
CeruleanCave1F_Blocks: INCBIN "maps/CeruleanCave1F.blk"
-INCLUDE "data/mapHeaders/CeruleanBadgeHouse.asm"
+INCLUDE "data/maps/headers/CeruleanBadgeHouse.asm"
INCLUDE "scripts/CeruleanBadgeHouse.asm"
-INCLUDE "data/mapObjects/CeruleanBadgeHouse.asm"
+INCLUDE "data/maps/objects/CeruleanBadgeHouse.asm"
SECTION "Maps 21", ROMX
-INCLUDE "data/mapHeaders/FuchsiaBillsGrandpasHouse.asm"
+INCLUDE "data/maps/headers/FuchsiaBillsGrandpasHouse.asm"
INCLUDE "scripts/FuchsiaBillsGrandpasHouse.asm"
-INCLUDE "data/mapObjects/FuchsiaBillsGrandpasHouse.asm"
+INCLUDE "data/maps/objects/FuchsiaBillsGrandpasHouse.asm"
-INCLUDE "data/mapHeaders/FuchsiaPokecenter.asm"
+INCLUDE "data/maps/headers/FuchsiaPokecenter.asm"
INCLUDE "scripts/FuchsiaPokecenter.asm"
-INCLUDE "data/mapObjects/FuchsiaPokecenter.asm"
+INCLUDE "data/maps/objects/FuchsiaPokecenter.asm"
-INCLUDE "data/mapHeaders/WardensHouse.asm"
+INCLUDE "data/maps/headers/WardensHouse.asm"
INCLUDE "scripts/WardensHouse.asm"
-INCLUDE "data/mapObjects/WardensHouse.asm"
+INCLUDE "data/maps/objects/WardensHouse.asm"
WardensHouse_Blocks: INCBIN "maps/WardensHouse.blk"
-INCLUDE "data/mapHeaders/SafariZoneGate.asm"
+INCLUDE "data/maps/headers/SafariZoneGate.asm"
INCLUDE "scripts/SafariZoneGate.asm"
-INCLUDE "data/mapObjects/SafariZoneGate.asm"
+INCLUDE "data/maps/objects/SafariZoneGate.asm"
SafariZoneGate_Blocks: INCBIN "maps/SafariZoneGate.blk"
-INCLUDE "data/mapHeaders/FuchsiaGym.asm"
+INCLUDE "data/maps/headers/FuchsiaGym.asm"
INCLUDE "scripts/FuchsiaGym.asm"
-INCLUDE "data/mapObjects/FuchsiaGym.asm"
+INCLUDE "data/maps/objects/FuchsiaGym.asm"
FuchsiaGym_Blocks: INCBIN "maps/FuchsiaGym.blk"
-INCLUDE "data/mapHeaders/FuchsiaMeetingRoom.asm"
+INCLUDE "data/maps/headers/FuchsiaMeetingRoom.asm"
INCLUDE "scripts/FuchsiaMeetingRoom.asm"
-INCLUDE "data/mapObjects/FuchsiaMeetingRoom.asm"
+INCLUDE "data/maps/objects/FuchsiaMeetingRoom.asm"
FuchsiaMeetingRoom_Blocks: INCBIN "maps/FuchsiaMeetingRoom.blk"
-INCLUDE "data/mapHeaders/CinnabarGym.asm"
+INCLUDE "data/maps/headers/CinnabarGym.asm"
INCLUDE "scripts/CinnabarGym.asm"
-INCLUDE "data/mapObjects/CinnabarGym.asm"
+INCLUDE "data/maps/objects/CinnabarGym.asm"
CinnabarGym_Blocks: INCBIN "maps/CinnabarGym.blk"
-INCLUDE "data/mapHeaders/CinnabarLab.asm"
+INCLUDE "data/maps/headers/CinnabarLab.asm"
INCLUDE "scripts/CinnabarLab.asm"
-INCLUDE "data/mapObjects/CinnabarLab.asm"
+INCLUDE "data/maps/objects/CinnabarLab.asm"
CinnabarLab_Blocks: INCBIN "maps/CinnabarLab.blk"
-INCLUDE "data/mapHeaders/CinnabarLabTradeRoom.asm"
+INCLUDE "data/maps/headers/CinnabarLabTradeRoom.asm"
INCLUDE "scripts/CinnabarLabTradeRoom.asm"
-INCLUDE "data/mapObjects/CinnabarLabTradeRoom.asm"
+INCLUDE "data/maps/objects/CinnabarLabTradeRoom.asm"
CinnabarLabTradeRoom_Blocks: INCBIN "maps/CinnabarLabTradeRoom.blk"
-INCLUDE "data/mapHeaders/CinnabarLabMetronomeRoom.asm"
+INCLUDE "data/maps/headers/CinnabarLabMetronomeRoom.asm"
INCLUDE "scripts/CinnabarLabMetronomeRoom.asm"
-INCLUDE "data/mapObjects/CinnabarLabMetronomeRoom.asm"
+INCLUDE "data/maps/objects/CinnabarLabMetronomeRoom.asm"
CinnabarLabMetronomeRoom_Blocks: INCBIN "maps/CinnabarLabMetronomeRoom.blk"
-INCLUDE "data/mapHeaders/CinnabarLabFossilRoom.asm"
+INCLUDE "data/maps/headers/CinnabarLabFossilRoom.asm"
INCLUDE "scripts/CinnabarLabFossilRoom.asm"
-INCLUDE "data/mapObjects/CinnabarLabFossilRoom.asm"
+INCLUDE "data/maps/objects/CinnabarLabFossilRoom.asm"
CinnabarLabFossilRoom_Blocks: INCBIN "maps/CinnabarLabFossilRoom.blk"
-INCLUDE "data/mapHeaders/CinnabarPokecenter.asm"
+INCLUDE "data/maps/headers/CinnabarPokecenter.asm"
INCLUDE "scripts/CinnabarPokecenter.asm"
-INCLUDE "data/mapObjects/CinnabarPokecenter.asm"
+INCLUDE "data/maps/objects/CinnabarPokecenter.asm"
-INCLUDE "data/mapHeaders/CinnabarMart.asm"
+INCLUDE "data/maps/headers/CinnabarMart.asm"
INCLUDE "scripts/CinnabarMart.asm"
-INCLUDE "data/mapObjects/CinnabarMart.asm"
+INCLUDE "data/maps/objects/CinnabarMart.asm"
-INCLUDE "data/mapHeaders/CopycatsHouse1F.asm"
+INCLUDE "data/maps/headers/CopycatsHouse1F.asm"
INCLUDE "scripts/CopycatsHouse1F.asm"
-INCLUDE "data/mapObjects/CopycatsHouse1F.asm"
+INCLUDE "data/maps/objects/CopycatsHouse1F.asm"
-INCLUDE "data/mapHeaders/ChampionsRoom.asm"
+INCLUDE "data/maps/headers/ChampionsRoom.asm"
INCLUDE "scripts/ChampionsRoom.asm"
-INCLUDE "data/mapObjects/ChampionsRoom.asm"
+INCLUDE "data/maps/objects/ChampionsRoom.asm"
ChampionsRoom_Blocks: INCBIN "maps/ChampionsRoom.blk"
-INCLUDE "data/mapHeaders/LoreleisRoom.asm"
+INCLUDE "data/maps/headers/LoreleisRoom.asm"
INCLUDE "scripts/LoreleisRoom.asm"
-INCLUDE "data/mapObjects/LoreleisRoom.asm"
+INCLUDE "data/maps/objects/LoreleisRoom.asm"
LoreleisRoom_Blocks: INCBIN "maps/LoreleisRoom.blk"
-INCLUDE "data/mapHeaders/BrunosRoom.asm"
+INCLUDE "data/maps/headers/BrunosRoom.asm"
INCLUDE "scripts/BrunosRoom.asm"
-INCLUDE "data/mapObjects/BrunosRoom.asm"
+INCLUDE "data/maps/objects/BrunosRoom.asm"
BrunosRoom_Blocks: INCBIN "maps/BrunosRoom.blk"
-INCLUDE "data/mapHeaders/AgathasRoom.asm"
+INCLUDE "data/maps/headers/AgathasRoom.asm"
INCLUDE "scripts/AgathasRoom.asm"
-INCLUDE "data/mapObjects/AgathasRoom.asm"
+INCLUDE "data/maps/objects/AgathasRoom.asm"
AgathasRoom_Blocks: INCBIN "maps/AgathasRoom.blk"
--- a/pics.asm
+++ /dev/null
@@ -1,376 +1,0 @@
-SECTION "Pics 1", ROMX
-
-RhydonPicFront:: INCBIN "gfx/pokemon/front/rhydon.pic"
-RhydonPicBack:: INCBIN "gfx/pokemon/back/rhydonb.pic"
-KangaskhanPicFront:: INCBIN "gfx/pokemon/front/kangaskhan.pic"
-KangaskhanPicBack:: INCBIN "gfx/pokemon/back/kangaskhanb.pic"
-NidoranMPicFront:: INCBIN "gfx/pokemon/front/nidoranm.pic"
-NidoranMPicBack:: INCBIN "gfx/pokemon/back/nidoranmb.pic"
-ClefairyPicFront:: INCBIN "gfx/pokemon/front/clefairy.pic"
-ClefairyPicBack:: INCBIN "gfx/pokemon/back/clefairyb.pic"
-SpearowPicFront:: INCBIN "gfx/pokemon/front/spearow.pic"
-SpearowPicBack:: INCBIN "gfx/pokemon/back/spearowb.pic"
-VoltorbPicFront:: INCBIN "gfx/pokemon/front/voltorb.pic"
-VoltorbPicBack:: INCBIN "gfx/pokemon/back/voltorbb.pic"
-NidokingPicFront:: INCBIN "gfx/pokemon/front/nidoking.pic"
-NidokingPicBack:: INCBIN "gfx/pokemon/back/nidokingb.pic"
-SlowbroPicFront:: INCBIN "gfx/pokemon/front/slowbro.pic"
-SlowbroPicBack:: INCBIN "gfx/pokemon/back/slowbrob.pic"
-IvysaurPicFront:: INCBIN "gfx/pokemon/front/ivysaur.pic"
-IvysaurPicBack:: INCBIN "gfx/pokemon/back/ivysaurb.pic"
-ExeggutorPicFront:: INCBIN "gfx/pokemon/front/exeggutor.pic"
-ExeggutorPicBack:: INCBIN "gfx/pokemon/back/exeggutorb.pic"
-LickitungPicFront:: INCBIN "gfx/pokemon/front/lickitung.pic"
-LickitungPicBack:: INCBIN "gfx/pokemon/back/lickitungb.pic"
-ExeggcutePicFront:: INCBIN "gfx/pokemon/front/exeggcute.pic"
-ExeggcutePicBack:: INCBIN "gfx/pokemon/back/exeggcuteb.pic"
-GrimerPicFront:: INCBIN "gfx/pokemon/front/grimer.pic"
-GrimerPicBack:: INCBIN "gfx/pokemon/back/grimerb.pic"
-GengarPicFront:: INCBIN "gfx/pokemon/front/gengar.pic"
-GengarPicBack:: INCBIN "gfx/pokemon/back/gengarb.pic"
-NidoranFPicFront:: INCBIN "gfx/pokemon/front/nidoranf.pic"
-NidoranFPicBack:: INCBIN "gfx/pokemon/back/nidoranfb.pic"
-NidoqueenPicFront:: INCBIN "gfx/pokemon/front/nidoqueen.pic"
-NidoqueenPicBack:: INCBIN "gfx/pokemon/back/nidoqueenb.pic"
-CubonePicFront:: INCBIN "gfx/pokemon/front/cubone.pic"
-CubonePicBack:: INCBIN "gfx/pokemon/back/cuboneb.pic"
-RhyhornPicFront:: INCBIN "gfx/pokemon/front/rhyhorn.pic"
-RhyhornPicBack:: INCBIN "gfx/pokemon/back/rhyhornb.pic"
-LaprasPicFront:: INCBIN "gfx/pokemon/front/lapras.pic"
-LaprasPicBack:: INCBIN "gfx/pokemon/back/laprasb.pic"
-ArcaninePicFront:: INCBIN "gfx/pokemon/front/arcanine.pic"
-ArcaninePicBack:: INCBIN "gfx/pokemon/back/arcanineb.pic"
-GyaradosPicFront:: INCBIN "gfx/pokemon/front/gyarados.pic"
-GyaradosPicBack:: INCBIN "gfx/pokemon/back/gyaradosb.pic"
-ShellderPicFront:: INCBIN "gfx/pokemon/front/shellder.pic"
-ShellderPicBack:: INCBIN "gfx/pokemon/back/shellderb.pic"
-TentacoolPicFront:: INCBIN "gfx/pokemon/front/tentacool.pic"
-TentacoolPicBack:: INCBIN "gfx/pokemon/back/tentacoolb.pic"
-GastlyPicFront:: INCBIN "gfx/pokemon/front/gastly.pic"
-GastlyPicBack:: INCBIN "gfx/pokemon/back/gastlyb.pic"
-ScytherPicFront:: INCBIN "gfx/pokemon/front/scyther.pic"
-ScytherPicBack:: INCBIN "gfx/pokemon/back/scytherb.pic"
-StaryuPicFront:: INCBIN "gfx/pokemon/front/staryu.pic"
-StaryuPicBack:: INCBIN "gfx/pokemon/back/staryub.pic"
-BlastoisePicFront:: INCBIN "gfx/pokemon/front/blastoise.pic"
-BlastoisePicBack:: INCBIN "gfx/pokemon/back/blastoiseb.pic"
-PinsirPicFront:: INCBIN "gfx/pokemon/front/pinsir.pic"
-PinsirPicBack:: INCBIN "gfx/pokemon/back/pinsirb.pic"
-TangelaPicFront:: INCBIN "gfx/pokemon/front/tangela.pic"
-TangelaPicBack:: INCBIN "gfx/pokemon/back/tangelab.pic"
-
-
-SECTION "Pics 2", ROMX
-
-GrowlithePicFront:: INCBIN "gfx/pokemon/front/growlithe.pic"
-GrowlithePicBack:: INCBIN "gfx/pokemon/back/growlitheb.pic"
-OnixPicFront:: INCBIN "gfx/pokemon/front/onix.pic"
-OnixPicBack:: INCBIN "gfx/pokemon/back/onixb.pic"
-FearowPicFront:: INCBIN "gfx/pokemon/front/fearow.pic"
-FearowPicBack:: INCBIN "gfx/pokemon/back/fearowb.pic"
-PidgeyPicFront:: INCBIN "gfx/pokemon/front/pidgey.pic"
-PidgeyPicBack:: INCBIN "gfx/pokemon/back/pidgeyb.pic"
-SlowpokePicFront:: INCBIN "gfx/pokemon/front/slowpoke.pic"
-SlowpokePicBack:: INCBIN "gfx/pokemon/back/slowpokeb.pic"
-KadabraPicFront:: INCBIN "gfx/pokemon/front/kadabra.pic"
-KadabraPicBack:: INCBIN "gfx/pokemon/back/kadabrab.pic"
-GravelerPicFront:: INCBIN "gfx/pokemon/front/graveler.pic"
-GravelerPicBack:: INCBIN "gfx/pokemon/back/gravelerb.pic"
-ChanseyPicFront:: INCBIN "gfx/pokemon/front/chansey.pic"
-ChanseyPicBack:: INCBIN "gfx/pokemon/back/chanseyb.pic"
-MachokePicFront:: INCBIN "gfx/pokemon/front/machoke.pic"
-MachokePicBack:: INCBIN "gfx/pokemon/back/machokeb.pic"
-MrMimePicFront:: INCBIN "gfx/pokemon/front/mr.mime.pic"
-MrMimePicBack:: INCBIN "gfx/pokemon/back/mr.mimeb.pic"
-HitmonleePicFront:: INCBIN "gfx/pokemon/front/hitmonlee.pic"
-HitmonleePicBack:: INCBIN "gfx/pokemon/back/hitmonleeb.pic"
-HitmonchanPicFront:: INCBIN "gfx/pokemon/front/hitmonchan.pic"
-HitmonchanPicBack:: INCBIN "gfx/pokemon/back/hitmonchanb.pic"
-ArbokPicFront:: INCBIN "gfx/pokemon/front/arbok.pic"
-ArbokPicBack:: INCBIN "gfx/pokemon/back/arbokb.pic"
-ParasectPicFront:: INCBIN "gfx/pokemon/front/parasect.pic"
-ParasectPicBack:: INCBIN "gfx/pokemon/back/parasectb.pic"
-PsyduckPicFront:: INCBIN "gfx/pokemon/front/psyduck.pic"
-PsyduckPicBack:: INCBIN "gfx/pokemon/back/psyduckb.pic"
-DrowzeePicFront:: INCBIN "gfx/pokemon/front/drowzee.pic"
-DrowzeePicBack:: INCBIN "gfx/pokemon/back/drowzeeb.pic"
-GolemPicFront:: INCBIN "gfx/pokemon/front/golem.pic"
-GolemPicBack:: INCBIN "gfx/pokemon/back/golemb.pic"
-MagmarPicFront:: INCBIN "gfx/pokemon/front/magmar.pic"
-MagmarPicBack:: INCBIN "gfx/pokemon/back/magmarb.pic"
-ElectabuzzPicFront:: INCBIN "gfx/pokemon/front/electabuzz.pic"
-ElectabuzzPicBack:: INCBIN "gfx/pokemon/back/electabuzzb.pic"
-MagnetonPicFront:: INCBIN "gfx/pokemon/front/magneton.pic"
-MagnetonPicBack:: INCBIN "gfx/pokemon/back/magnetonb.pic"
-KoffingPicFront:: INCBIN "gfx/pokemon/front/koffing.pic"
-KoffingPicBack:: INCBIN "gfx/pokemon/back/koffingb.pic"
-MankeyPicFront:: INCBIN "gfx/pokemon/front/mankey.pic"
-MankeyPicBack:: INCBIN "gfx/pokemon/back/mankeyb.pic"
-SeelPicFront:: INCBIN "gfx/pokemon/front/seel.pic"
-SeelPicBack:: INCBIN "gfx/pokemon/back/seelb.pic"
-DiglettPicFront:: INCBIN "gfx/pokemon/front/diglett.pic"
-DiglettPicBack:: INCBIN "gfx/pokemon/back/diglettb.pic"
-TaurosPicFront:: INCBIN "gfx/pokemon/front/tauros.pic"
-TaurosPicBack:: INCBIN "gfx/pokemon/back/taurosb.pic"
-FarfetchdPicFront:: INCBIN "gfx/pokemon/front/farfetchd.pic"
-FarfetchdPicBack:: INCBIN "gfx/pokemon/back/farfetchdb.pic"
-VenonatPicFront:: INCBIN "gfx/pokemon/front/venonat.pic"
-VenonatPicBack:: INCBIN "gfx/pokemon/back/venonatb.pic"
-DragonitePicFront:: INCBIN "gfx/pokemon/front/dragonite.pic"
-DragonitePicBack:: INCBIN "gfx/pokemon/back/dragoniteb.pic"
-DoduoPicFront:: INCBIN "gfx/pokemon/front/doduo.pic"
-DoduoPicBack:: INCBIN "gfx/pokemon/back/doduob.pic"
-PoliwagPicFront:: INCBIN "gfx/pokemon/front/poliwag.pic"
-PoliwagPicBack:: INCBIN "gfx/pokemon/back/poliwagb.pic"
-JynxPicFront:: INCBIN "gfx/pokemon/front/jynx.pic"
-JynxPicBack:: INCBIN "gfx/pokemon/back/jynxb.pic"
-MoltresPicFront:: INCBIN "gfx/pokemon/front/moltres.pic"
-MoltresPicBack:: INCBIN "gfx/pokemon/back/moltresb.pic"
-
-
-SECTION "Pics 3", ROMX
-
-ArticunoPicFront:: INCBIN "gfx/pokemon/front/articuno.pic"
-ArticunoPicBack:: INCBIN "gfx/pokemon/back/articunob.pic"
-ZapdosPicFront:: INCBIN "gfx/pokemon/front/zapdos.pic"
-ZapdosPicBack:: INCBIN "gfx/pokemon/back/zapdosb.pic"
-DittoPicFront:: INCBIN "gfx/pokemon/front/ditto.pic"
-DittoPicBack:: INCBIN "gfx/pokemon/back/dittob.pic"
-MeowthPicFront:: INCBIN "gfx/pokemon/front/meowth.pic"
-MeowthPicBack:: INCBIN "gfx/pokemon/back/meowthb.pic"
-KrabbyPicFront:: INCBIN "gfx/pokemon/front/krabby.pic"
-KrabbyPicBack:: INCBIN "gfx/pokemon/back/krabbyb.pic"
-VulpixPicFront:: INCBIN "gfx/pokemon/front/vulpix.pic"
-VulpixPicBack:: INCBIN "gfx/pokemon/back/vulpixb.pic"
-NinetalesPicFront:: INCBIN "gfx/pokemon/front/ninetales.pic"
-NinetalesPicBack:: INCBIN "gfx/pokemon/back/ninetalesb.pic"
-PikachuPicFront:: INCBIN "gfx/pokemon/front/pikachu.pic"
-PikachuPicBack:: INCBIN "gfx/pokemon/back/pikachub.pic"
-RaichuPicFront:: INCBIN "gfx/pokemon/front/raichu.pic"
-RaichuPicBack:: INCBIN "gfx/pokemon/back/raichub.pic"
-DratiniPicFront:: INCBIN "gfx/pokemon/front/dratini.pic"
-DratiniPicBack:: INCBIN "gfx/pokemon/back/dratinib.pic"
-DragonairPicFront:: INCBIN "gfx/pokemon/front/dragonair.pic"
-DragonairPicBack:: INCBIN "gfx/pokemon/back/dragonairb.pic"
-KabutoPicFront:: INCBIN "gfx/pokemon/front/kabuto.pic"
-KabutoPicBack:: INCBIN "gfx/pokemon/back/kabutob.pic"
-KabutopsPicFront:: INCBIN "gfx/pokemon/front/kabutops.pic"
-KabutopsPicBack:: INCBIN "gfx/pokemon/back/kabutopsb.pic"
-HorseaPicFront:: INCBIN "gfx/pokemon/front/horsea.pic"
-HorseaPicBack:: INCBIN "gfx/pokemon/back/horseab.pic"
-SeadraPicFront:: INCBIN "gfx/pokemon/front/seadra.pic"
-SeadraPicBack:: INCBIN "gfx/pokemon/back/seadrab.pic"
-SandshrewPicFront:: INCBIN "gfx/pokemon/front/sandshrew.pic"
-SandshrewPicBack:: INCBIN "gfx/pokemon/back/sandshrewb.pic"
-SandslashPicFront:: INCBIN "gfx/pokemon/front/sandslash.pic"
-SandslashPicBack:: INCBIN "gfx/pokemon/back/sandslashb.pic"
-OmanytePicFront:: INCBIN "gfx/pokemon/front/omanyte.pic"
-OmanytePicBack:: INCBIN "gfx/pokemon/back/omanyteb.pic"
-OmastarPicFront:: INCBIN "gfx/pokemon/front/omastar.pic"
-OmastarPicBack:: INCBIN "gfx/pokemon/back/omastarb.pic"
-JigglypuffPicFront:: INCBIN "gfx/pokemon/front/jigglypuff.pic"
-JigglypuffPicBack:: INCBIN "gfx/pokemon/back/jigglypuffb.pic"
-WigglytuffPicFront:: INCBIN "gfx/pokemon/front/wigglytuff.pic"
-WigglytuffPicBack:: INCBIN "gfx/pokemon/back/wigglytuffb.pic"
-EeveePicFront:: INCBIN "gfx/pokemon/front/eevee.pic"
-EeveePicBack:: INCBIN "gfx/pokemon/back/eeveeb.pic"
-FlareonPicFront:: INCBIN "gfx/pokemon/front/flareon.pic"
-FlareonPicBack:: INCBIN "gfx/pokemon/back/flareonb.pic"
-JolteonPicFront:: INCBIN "gfx/pokemon/front/jolteon.pic"
-JolteonPicBack:: INCBIN "gfx/pokemon/back/jolteonb.pic"
-VaporeonPicFront:: INCBIN "gfx/pokemon/front/vaporeon.pic"
-VaporeonPicBack:: INCBIN "gfx/pokemon/back/vaporeonb.pic"
-MachopPicFront:: INCBIN "gfx/pokemon/front/machop.pic"
-MachopPicBack:: INCBIN "gfx/pokemon/back/machopb.pic"
-ZubatPicFront:: INCBIN "gfx/pokemon/front/zubat.pic"
-ZubatPicBack:: INCBIN "gfx/pokemon/back/zubatb.pic"
-EkansPicFront:: INCBIN "gfx/pokemon/front/ekans.pic"
-EkansPicBack:: INCBIN "gfx/pokemon/back/ekansb.pic"
-ParasPicFront:: INCBIN "gfx/pokemon/front/paras.pic"
-ParasPicBack:: INCBIN "gfx/pokemon/back/parasb.pic"
-PoliwhirlPicFront:: INCBIN "gfx/pokemon/front/poliwhirl.pic"
-PoliwhirlPicBack:: INCBIN "gfx/pokemon/back/poliwhirlb.pic"
-PoliwrathPicFront:: INCBIN "gfx/pokemon/front/poliwrath.pic"
-PoliwrathPicBack:: INCBIN "gfx/pokemon/back/poliwrathb.pic"
-WeedlePicFront:: INCBIN "gfx/pokemon/front/weedle.pic"
-WeedlePicBack:: INCBIN "gfx/pokemon/back/weedleb.pic"
-KakunaPicFront:: INCBIN "gfx/pokemon/front/kakuna.pic"
-KakunaPicBack:: INCBIN "gfx/pokemon/back/kakunab.pic"
-BeedrillPicFront:: INCBIN "gfx/pokemon/front/beedrill.pic"
-BeedrillPicBack:: INCBIN "gfx/pokemon/back/beedrillb.pic"
-
-FossilKabutopsPic:: INCBIN "gfx/pokemon/front/fossilkabutops.pic"
-
-
-SECTION "Pics 4", ROMX
-
-DodrioPicFront:: INCBIN "gfx/pokemon/front/dodrio.pic"
-DodrioPicBack:: INCBIN "gfx/pokemon/back/dodriob.pic"
-PrimeapePicFront:: INCBIN "gfx/pokemon/front/primeape.pic"
-PrimeapePicBack:: INCBIN "gfx/pokemon/back/primeapeb.pic"
-DugtrioPicFront:: INCBIN "gfx/pokemon/front/dugtrio.pic"
-DugtrioPicBack:: INCBIN "gfx/pokemon/back/dugtriob.pic"
-VenomothPicFront:: INCBIN "gfx/pokemon/front/venomoth.pic"
-VenomothPicBack:: INCBIN "gfx/pokemon/back/venomothb.pic"
-DewgongPicFront:: INCBIN "gfx/pokemon/front/dewgong.pic"
-DewgongPicBack:: INCBIN "gfx/pokemon/back/dewgongb.pic"
-CaterpiePicFront:: INCBIN "gfx/pokemon/front/caterpie.pic"
-CaterpiePicBack:: INCBIN "gfx/pokemon/back/caterpieb.pic"
-MetapodPicFront:: INCBIN "gfx/pokemon/front/metapod.pic"
-MetapodPicBack:: INCBIN "gfx/pokemon/back/metapodb.pic"
-ButterfreePicFront:: INCBIN "gfx/pokemon/front/butterfree.pic"
-ButterfreePicBack:: INCBIN "gfx/pokemon/back/butterfreeb.pic"
-MachampPicFront:: INCBIN "gfx/pokemon/front/machamp.pic"
-MachampPicBack:: INCBIN "gfx/pokemon/back/machampb.pic"
-GolduckPicFront:: INCBIN "gfx/pokemon/front/golduck.pic"
-GolduckPicBack:: INCBIN "gfx/pokemon/back/golduckb.pic"
-HypnoPicFront:: INCBIN "gfx/pokemon/front/hypno.pic"
-HypnoPicBack:: INCBIN "gfx/pokemon/back/hypnob.pic"
-GolbatPicFront:: INCBIN "gfx/pokemon/front/golbat.pic"
-GolbatPicBack:: INCBIN "gfx/pokemon/back/golbatb.pic"
-MewtwoPicFront:: INCBIN "gfx/pokemon/front/mewtwo.pic"
-MewtwoPicBack:: INCBIN "gfx/pokemon/back/mewtwob.pic"
-SnorlaxPicFront:: INCBIN "gfx/pokemon/front/snorlax.pic"
-SnorlaxPicBack:: INCBIN "gfx/pokemon/back/snorlaxb.pic"
-MagikarpPicFront:: INCBIN "gfx/pokemon/front/magikarp.pic"
-MagikarpPicBack:: INCBIN "gfx/pokemon/back/magikarpb.pic"
-MukPicFront:: INCBIN "gfx/pokemon/front/muk.pic"
-MukPicBack:: INCBIN "gfx/pokemon/back/mukb.pic"
-KinglerPicFront:: INCBIN "gfx/pokemon/front/kingler.pic"
-KinglerPicBack:: INCBIN "gfx/pokemon/back/kinglerb.pic"
-CloysterPicFront:: INCBIN "gfx/pokemon/front/cloyster.pic"
-CloysterPicBack:: INCBIN "gfx/pokemon/back/cloysterb.pic"
-ElectrodePicFront:: INCBIN "gfx/pokemon/front/electrode.pic"
-ElectrodePicBack:: INCBIN "gfx/pokemon/back/electrodeb.pic"
-ClefablePicFront:: INCBIN "gfx/pokemon/front/clefable.pic"
-ClefablePicBack:: INCBIN "gfx/pokemon/back/clefableb.pic"
-WeezingPicFront:: INCBIN "gfx/pokemon/front/weezing.pic"
-WeezingPicBack:: INCBIN "gfx/pokemon/back/weezingb.pic"
-PersianPicFront:: INCBIN "gfx/pokemon/front/persian.pic"
-PersianPicBack:: INCBIN "gfx/pokemon/back/persianb.pic"
-MarowakPicFront:: INCBIN "gfx/pokemon/front/marowak.pic"
-MarowakPicBack:: INCBIN "gfx/pokemon/back/marowakb.pic"
-HaunterPicFront:: INCBIN "gfx/pokemon/front/haunter.pic"
-HaunterPicBack:: INCBIN "gfx/pokemon/back/haunterb.pic"
-AbraPicFront:: INCBIN "gfx/pokemon/front/abra.pic"
-AbraPicBack:: INCBIN "gfx/pokemon/back/abrab.pic"
-AlakazamPicFront:: INCBIN "gfx/pokemon/front/alakazam.pic"
-AlakazamPicBack:: INCBIN "gfx/pokemon/back/alakazamb.pic"
-PidgeottoPicFront:: INCBIN "gfx/pokemon/front/pidgeotto.pic"
-PidgeottoPicBack:: INCBIN "gfx/pokemon/back/pidgeottob.pic"
-PidgeotPicFront:: INCBIN "gfx/pokemon/front/pidgeot.pic"
-PidgeotPicBack:: INCBIN "gfx/pokemon/back/pidgeotb.pic"
-StarmiePicFront:: INCBIN "gfx/pokemon/front/starmie.pic"
-StarmiePicBack:: INCBIN "gfx/pokemon/back/starmieb.pic"
-
-RedPicBack:: INCBIN "gfx/player/redb.pic"
-OldManPic:: INCBIN "gfx/battle/oldman.pic"
-
-
-SECTION "Pics 5", ROMX
-
-BulbasaurPicFront:: INCBIN "gfx/pokemon/front/bulbasaur.pic"
-BulbasaurPicBack:: INCBIN "gfx/pokemon/back/bulbasaurb.pic"
-VenusaurPicFront:: INCBIN "gfx/pokemon/front/venusaur.pic"
-VenusaurPicBack:: INCBIN "gfx/pokemon/back/venusaurb.pic"
-TentacruelPicFront:: INCBIN "gfx/pokemon/front/tentacruel.pic"
-TentacruelPicBack:: INCBIN "gfx/pokemon/back/tentacruelb.pic"
-GoldeenPicFront:: INCBIN "gfx/pokemon/front/goldeen.pic"
-GoldeenPicBack:: INCBIN "gfx/pokemon/back/goldeenb.pic"
-SeakingPicFront:: INCBIN "gfx/pokemon/front/seaking.pic"
-SeakingPicBack:: INCBIN "gfx/pokemon/back/seakingb.pic"
-PonytaPicFront:: INCBIN "gfx/pokemon/front/ponyta.pic"
-RapidashPicFront:: INCBIN "gfx/pokemon/front/rapidash.pic"
-PonytaPicBack:: INCBIN "gfx/pokemon/back/ponytab.pic"
-RapidashPicBack:: INCBIN "gfx/pokemon/back/rapidashb.pic"
-RattataPicFront:: INCBIN "gfx/pokemon/front/rattata.pic"
-RattataPicBack:: INCBIN "gfx/pokemon/back/rattatab.pic"
-RaticatePicFront:: INCBIN "gfx/pokemon/front/raticate.pic"
-RaticatePicBack:: INCBIN "gfx/pokemon/back/raticateb.pic"
-NidorinoPicFront:: INCBIN "gfx/pokemon/front/nidorino.pic"
-NidorinoPicBack:: INCBIN "gfx/pokemon/back/nidorinob.pic"
-NidorinaPicFront:: INCBIN "gfx/pokemon/front/nidorina.pic"
-NidorinaPicBack:: INCBIN "gfx/pokemon/back/nidorinab.pic"
-GeodudePicFront:: INCBIN "gfx/pokemon/front/geodude.pic"
-GeodudePicBack:: INCBIN "gfx/pokemon/back/geodudeb.pic"
-PorygonPicFront:: INCBIN "gfx/pokemon/front/porygon.pic"
-PorygonPicBack:: INCBIN "gfx/pokemon/back/porygonb.pic"
-AerodactylPicFront:: INCBIN "gfx/pokemon/front/aerodactyl.pic"
-AerodactylPicBack:: INCBIN "gfx/pokemon/back/aerodactylb.pic"
-MagnemitePicFront:: INCBIN "gfx/pokemon/front/magnemite.pic"
-MagnemitePicBack:: INCBIN "gfx/pokemon/back/magnemiteb.pic"
-CharmanderPicFront:: INCBIN "gfx/pokemon/front/charmander.pic"
-CharmanderPicBack:: INCBIN "gfx/pokemon/back/charmanderb.pic"
-SquirtlePicFront:: INCBIN "gfx/pokemon/front/squirtle.pic"
-SquirtlePicBack:: INCBIN "gfx/pokemon/back/squirtleb.pic"
-CharmeleonPicFront:: INCBIN "gfx/pokemon/front/charmeleon.pic"
-CharmeleonPicBack:: INCBIN "gfx/pokemon/back/charmeleonb.pic"
-WartortlePicFront:: INCBIN "gfx/pokemon/front/wartortle.pic"
-WartortlePicBack:: INCBIN "gfx/pokemon/back/wartortleb.pic"
-CharizardPicFront:: INCBIN "gfx/pokemon/front/charizard.pic"
-CharizardPicBack:: INCBIN "gfx/pokemon/back/charizardb.pic"
-FossilAerodactylPic:: INCBIN "gfx/pokemon/front/fossilaerodactyl.pic"
-GhostPic:: INCBIN "gfx/battle/ghost.pic"
-OddishPicFront:: INCBIN "gfx/pokemon/front/oddish.pic"
-OddishPicBack:: INCBIN "gfx/pokemon/back/oddishb.pic"
-GloomPicFront:: INCBIN "gfx/pokemon/front/gloom.pic"
-GloomPicBack:: INCBIN "gfx/pokemon/back/gloomb.pic"
-VileplumePicFront:: INCBIN "gfx/pokemon/front/vileplume.pic"
-VileplumePicBack:: INCBIN "gfx/pokemon/back/vileplumeb.pic"
-BellsproutPicFront:: INCBIN "gfx/pokemon/front/bellsprout.pic"
-BellsproutPicBack:: INCBIN "gfx/pokemon/back/bellsproutb.pic"
-WeepinbellPicFront:: INCBIN "gfx/pokemon/front/weepinbell.pic"
-WeepinbellPicBack:: INCBIN "gfx/pokemon/back/weepinbellb.pic"
-VictreebelPicFront:: INCBIN "gfx/pokemon/front/victreebel.pic"
-VictreebelPicBack:: INCBIN "gfx/pokemon/back/victreebelb.pic"
-
-
-SECTION "Pics 6", ROMX
-
-TrainerPics::
-YoungsterPic:: INCBIN "gfx/trainers/youngster.pic"
-BugCatcherPic:: INCBIN "gfx/trainers/bugcatcher.pic"
-LassPic:: INCBIN "gfx/trainers/lass.pic"
-SailorPic:: INCBIN "gfx/trainers/sailor.pic"
-JrTrainerMPic:: INCBIN "gfx/trainers/jr.trainerm.pic"
-JrTrainerFPic:: INCBIN "gfx/trainers/jr.trainerf.pic"
-PokemaniacPic:: INCBIN "gfx/trainers/pokemaniac.pic"
-SuperNerdPic:: INCBIN "gfx/trainers/supernerd.pic"
-HikerPic:: INCBIN "gfx/trainers/hiker.pic"
-BikerPic:: INCBIN "gfx/trainers/biker.pic"
-BurglarPic:: INCBIN "gfx/trainers/burglar.pic"
-EngineerPic:: INCBIN "gfx/trainers/engineer.pic"
-FisherPic:: INCBIN "gfx/trainers/fisher.pic"
-SwimmerPic:: INCBIN "gfx/trainers/swimmer.pic"
-CueBallPic:: INCBIN "gfx/trainers/cueball.pic"
-GamblerPic:: INCBIN "gfx/trainers/gambler.pic"
-BeautyPic:: INCBIN "gfx/trainers/beauty.pic"
-PsychicPic:: INCBIN "gfx/trainers/psychic.pic"
-RockerPic:: INCBIN "gfx/trainers/rocker.pic"
-JugglerPic:: INCBIN "gfx/trainers/juggler.pic"
-TamerPic:: INCBIN "gfx/trainers/tamer.pic"
-BirdKeeperPic:: INCBIN "gfx/trainers/birdkeeper.pic"
-BlackbeltPic:: INCBIN "gfx/trainers/blackbelt.pic"
-Rival1Pic:: INCBIN "gfx/trainers/rival1.pic"
-ProfOakPic:: INCBIN "gfx/trainers/prof.oak.pic"
-ChiefPic::
-ScientistPic:: INCBIN "gfx/trainers/scientist.pic"
-GiovanniPic:: INCBIN "gfx/trainers/giovanni.pic"
-RocketPic:: INCBIN "gfx/trainers/rocket.pic"
-CooltrainerMPic:: INCBIN "gfx/trainers/cooltrainerm.pic"
-CooltrainerFPic:: INCBIN "gfx/trainers/cooltrainerf.pic"
-BrunoPic:: INCBIN "gfx/trainers/bruno.pic"
-BrockPic:: INCBIN "gfx/trainers/brock.pic"
-MistyPic:: INCBIN "gfx/trainers/misty.pic"
-LtSurgePic:: INCBIN "gfx/trainers/lt.surge.pic"
-ErikaPic:: INCBIN "gfx/trainers/erika.pic"
-KogaPic:: INCBIN "gfx/trainers/koga.pic"
-BlainePic:: INCBIN "gfx/trainers/blaine.pic"
-SabrinaPic:: INCBIN "gfx/trainers/sabrina.pic"
-GentlemanPic:: INCBIN "gfx/trainers/gentleman.pic"
-Rival2Pic:: INCBIN "gfx/trainers/rival2.pic"
-Rival3Pic:: INCBIN "gfx/trainers/rival3.pic"
-LoreleiPic:: INCBIN "gfx/trainers/lorelei.pic"
-ChannelerPic:: INCBIN "gfx/trainers/channeler.pic"
-AgathaPic:: INCBIN "gfx/trainers/agatha.pic"
-LancePic:: INCBIN "gfx/trainers/lance.pic"
--- /dev/null
+++ b/rgbdscheck.asm
@@ -1,0 +1,12 @@
+; pokered requires rgbds 0.4.0 or newer.
+MAJOR EQU 0
+MINOR EQU 4
+PATCH EQU 0
+
+if !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__)
+ fail "pokered requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
+elif (__RGBDS_MAJOR__ < MAJOR) || \
+ (__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ < MINOR) || \
+ (__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ == MINOR && __RGBDS_PATCH__ < PATCH)
+ fail "pokered requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
+endc
--- a/scripts/BikeShop.asm
+++ b/scripts/BikeShop.asm
@@ -23,7 +23,7 @@
call GiveItem
jr nc, .BagFull
ld a, BIKE_VOUCHER
- ld [$ffdb], a
+ ld [hItemToRemoveID], a
callba RemoveItemByID
SetEvent EVENT_GOT_BICYCLE
ld hl, BikeShopText_1d824
--- a/scripts/BillsHouse.asm
+++ b/scripts/BillsHouse.asm
@@ -23,7 +23,7 @@
ld de, MovementData_1e7a0
.notDown
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $2
ld [wBillsHouseCurScript], a
@@ -66,13 +66,13 @@
ld a, $2
ld [wSpriteIndex], a
ld a, $c
- ld [$ffeb], a
+ ld [hSpriteScreenYCoord], a
ld a, $40
- ld [$ffec], a
+ ld [hSpriteScreenXCoord], a
ld a, $6
- ld [$ffed], a
+ ld [hSpriteMapYCoord], a
ld a, $5
- ld [$ffee], a
+ ld [hSpriteMapXCoord], a
call SetSpritePosition1
ld a, HS_BILL_1
ld [wMissableObjectIndex], a
@@ -80,7 +80,7 @@
ld c, 8
call DelayFrames
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, MovementData_1e807
call MoveSprite
ld a, $4
--- a/scripts/CeladonGym.asm
+++ b/scripts/CeladonGym.asm
@@ -170,7 +170,7 @@
ld hl, CeladonGymText_48a63
ld de, CeladonGymText_48a63
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/CeladonMart3F.asm
+++ b/scripts/CeladonMart3F.asm
@@ -74,7 +74,7 @@
TX_FAR _CeladonMart3Text5
db "@"
-CeladonMart3Text12
+CeladonMart3Text12:
CeladonMart3Text10:
CeladonMart3Text8:
CeladonMart3Text6:
--- a/scripts/CeruleanCaveB1F.asm
+++ b/scripts/CeruleanCaveB1F.asm
@@ -7,7 +7,7 @@
ld [wCeruleanCaveB1FCurScript], a
ret
-CeruleanCaveB1F_ScriptPointers
+CeruleanCaveB1F_ScriptPointers:
dw CheckFightingMapTrainers
dw DisplayEnemyTrainerTextAndStartBattle
dw EndTrainerBattle
--- a/scripts/CeruleanCity.asm
+++ b/scripts/CeruleanCity.asm
@@ -64,7 +64,7 @@
ld a, [wWalkBikeSurfState]
and a
jr z, .asm_19512
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
.asm_19512
@@ -79,9 +79,9 @@
cp $14
jr z, .asm_19535
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, $5
- ld [H_SPRITEDATAOFFSET], a
+ ld [hSpriteDataOffset], a
call GetPointerWithinSpriteStateData2
ld [hl], $19
.asm_19535
@@ -90,7 +90,7 @@
predef ShowObject
ld de, CeruleanCityMovement1
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $1
ld [wCeruleanCityCurScript], a
@@ -114,7 +114,7 @@
CeruleanCityScript_1955d:
ld a, 1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
jp SetSpriteFacingDirectionAndDelay ; face object
@@ -171,12 +171,12 @@
ld a, $1
ld [hSpriteIndexOrTextID], a
call DisplayTextID
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld a, [wXCoord]
cp $14
@@ -187,7 +187,7 @@
ld de, CeruleanCityMovement3
.asm_195f3
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $3
ld [wCeruleanCityCurScript], a
--- a/scripts/CeruleanGym.asm
+++ b/scripts/CeruleanGym.asm
@@ -121,7 +121,7 @@
ld hl, CeruleanGymText_5c7d8
ld de, CeruleanGymText_5c7d8
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/ChampionsRoom.asm
+++ b/scripts/ChampionsRoom.asm
@@ -101,7 +101,7 @@
ld [hSpriteIndexOrTextID], a
call GaryScript_760c8
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld a, $4
ld [wChampionsRoomCurScript], a
@@ -113,11 +113,11 @@
ld [hSpriteIndexOrTextID], a
call GaryScript_760c8
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld de, OakEntranceAfterVictoryMovement
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, HS_CHAMPIONS_ROOM_OAK
ld [wMissableObjectIndex], a
@@ -141,12 +141,12 @@
ld a, PLAYER_DIR_LEFT
ld [wPlayerMovingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_LEFT
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -159,7 +159,7 @@
GaryScript6:
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_RIGHT
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -172,7 +172,7 @@
GaryScript7:
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -181,7 +181,7 @@
call GaryScript_760c8
ld de, OakExitGaryRoomMovement
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $8
ld [wChampionsRoomCurScript], a
--- a/scripts/CinnabarGym.asm
+++ b/scripts/CinnabarGym.asm
@@ -50,7 +50,7 @@
ld a, [wOpponentAfterWrongAnswer]
and a
ret z
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
cp $4
jr nz, .asm_757c3
ld a, PLAYER_DIR_DOWN
@@ -96,7 +96,7 @@
cp $ff
jp z, CinnabarGymScript_75792
ld a, [wTrainerHeaderFlagBit]
- ld [$ffdb], a
+ ld [hGymGateIndex], a
AdjustEventBit EVENT_BEAT_CINNABAR_GYM_TRAINER_0, 2
ld c, a
ld b, FLAG_TEST
@@ -111,7 +111,7 @@
call WaitForSoundToFinish
.asm_7581b
ld a, [wTrainerHeaderFlagBit]
- ld [$ffdb], a
+ ld [hGymGateIndex], a
AdjustEventBit EVENT_BEAT_CINNABAR_GYM_TRAINER_0, 2
ld c, a
ld b, FLAG_SET
--- a/scripts/CopycatsHouse2F.asm
+++ b/scripts/CopycatsHouse2F.asm
@@ -29,7 +29,7 @@
ld hl, ReceivedTM31Text
call PrintText
ld a, POKE_DOLL
- ld [$ffdb], a
+ ld [hItemToRemoveID], a
callba RemoveItemByID
SetEvent EVENT_GOT_TM31
jr .asm_62ecd
--- a/scripts/FightingDojo.asm
+++ b/scripts/FightingDojo.asm
@@ -43,7 +43,7 @@
ld a, PLAYER_DIR_RIGHT
ld [wPlayerMovingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_LEFT
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -62,7 +62,7 @@
ld a, PLAYER_DIR_RIGHT
ld [wPlayerMovingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_LEFT
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
--- a/scripts/FuchsiaGym.asm
+++ b/scripts/FuchsiaGym.asm
@@ -161,7 +161,7 @@
ld hl, KogaAfterBattleText
ld de, KogaAfterBattleText
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/GameCorner.asm
+++ b/scripts/GameCorner.asm
@@ -60,7 +60,7 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $b
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld de, MovementData_48c5a
ld a, [wYCoord]
@@ -75,7 +75,7 @@
ld de, MovementData_48c63
.asm_48c4d
ld a, $b
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $2
ld [wGameCornerCurScript], a
@@ -418,7 +418,7 @@
ld hl, CeladonGameCornerText_48ed3
ld de, CeladonGameCornerText_48ed3
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/HallOfFame.asm
+++ b/scripts/HallOfFame.asm
@@ -79,7 +79,7 @@
ld a, PLAYER_DIR_RIGHT
ld [wPlayerMovingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld a, SPRITE_FACING_LEFT
ld [hSpriteFacingDirection], a
--- a/scripts/MtMoonB2F.asm
+++ b/scripts/MtMoonB2F.asm
@@ -88,7 +88,7 @@
MtMoon3Script4:
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld hl, CoordsData_49dea
call ArePlayerCoordsInArray
@@ -102,7 +102,7 @@
ld de, MovementData_49df8
.asm_49dda
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $5
ld [wMtMoonB2FCurScript], a
@@ -222,7 +222,7 @@
ld hl, MtMoon3Text_49f8a
ld de, MtMoon3Text_49f8a
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/OaksLab.asm
+++ b/scripts/OaksLab.asm
@@ -48,7 +48,7 @@
OaksLabScript1:
ld a, $8
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, OakEntryMovement
call MoveSprite
@@ -86,12 +86,12 @@
ld [wSimulatedJoypadStatesIndex], a
call StartSimulatingJoypadStates
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
ld a, $5
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -111,7 +111,7 @@
SetEvent EVENT_FOLLOWED_OAK_INTO_LAB
SetEvent EVENT_FOLLOWED_OAK_INTO_LAB_2
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -155,12 +155,12 @@
cp $6
ret nz
ld a, $5
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -254,9 +254,9 @@
jr nz, .moveBlue
push hl
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, $4
- ld [H_SPRITEDATAOFFSET], a
+ ld [hSpriteDataOffset], a
call GetPointerWithinSpriteStateData1
push hl
ld [hl], $4c
@@ -281,7 +281,7 @@
.moveBlue
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $9
@@ -295,7 +295,7 @@
ld a, $fc
ld [wJoyIgnore], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -324,7 +324,7 @@
ld [wd11e], a
call GetMonName
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -344,7 +344,7 @@
cp $6
ret nz
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -368,7 +368,7 @@
predef FindPathToPlayer
ld de, wNPCMovementDirections2
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $b
@@ -424,7 +424,7 @@
ld [wSpriteIndex], a
call SetSpritePosition1
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -443,7 +443,7 @@
call DisplayTextID
callba Music_RivalAlternateStart
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, .RivalExitMovement
call MoveSprite
ld a, [wXCoord]
@@ -510,7 +510,7 @@
xor a
ld [hJoyHeld], a
call EnableAutoTextBoxDrawing
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
@@ -530,7 +530,7 @@
call FillMemory
ld [hl], $ff
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, wNPCMovementDirections2
call MoveSprite
@@ -540,12 +540,12 @@
OaksLabScript_1cefd:
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
ld a, $8
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
xor a ; SPRITE_FACING_DOWN
ld [hSpriteFacingDirection], a
jp SetSpriteFacingDirectionAndDelay
@@ -588,7 +588,7 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_RIGHT
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -611,12 +611,12 @@
xor a ; NPC_MOVEMENT_DOWN
call FillMemory
ld [hl], $ff
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, wNPCMovementDirections2
call MoveSprite
@@ -652,7 +652,7 @@
OaksLabScript_RemoveParcel:
ld hl, wBagItems
- ld bc, $0000
+ ld bc, 0
.loop
ld a, [hli]
cp $ff
@@ -672,9 +672,9 @@
OaksLabScript_1d02b:
ld a, $7c
- ld [$ffeb], a
+ ld [hSpriteScreenYCoord], a
ld a, $8
- ld [$ffee], a
+ ld [hSpriteMapXCoord], a
ld a, [wYCoord]
cp $3
jr nz, .asm_1d045
@@ -703,9 +703,9 @@
.asm_1d066
ld a, $20
.asm_1d068
- ld [$ffec], a
+ ld [hSpriteScreenXCoord], a
ld a, b
- ld [$ffed], a
+ ld [hSpriteMapYCoord], a
ld a, $1
ld [wSpriteIndex], a
call SetSpritePosition1
@@ -840,15 +840,15 @@
OaksLabScript_1d157:
ld a, $5
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, $9
- ld [H_SPRITEDATAOFFSET], a
+ ld [hSpriteDataOffset], a
call GetPointerWithinSpriteStateData1
ld [hl], SPRITE_FACING_DOWN
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, $9
- ld [H_SPRITEDATAOFFSET], a
+ ld [hSpriteDataOffset], a
call GetPointerWithinSpriteStateData1
ld [hl], SPRITE_FACING_RIGHT
ld hl, wd730
@@ -947,9 +947,9 @@
OaksLabScript_1d22d:
ld a, $5
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, $9
- ld [H_SPRITEDATAOFFSET], a
+ ld [hSpriteDataOffset], a
call GetPointerWithinSpriteStateData1
ld [hl], $0
ld hl, OaksLabLastMonText
--- a/scripts/PalletTown.asm
+++ b/scripts/PalletTown.asm
@@ -27,8 +27,8 @@
ld [hJoyHeld], a
ld a, PLAYER_DIR_DOWN
ld [wPlayerMovingDirection], a
- ld a, $FF
- call PlaySound ; stop music
+ ld a, SFX_STOP_ALL_MUSIC
+ call PlaySound
ld a, BANK(Music_MeetProfOak)
ld c, a
ld a, MUSIC_MEET_PROF_OAK ; “oak appears” music
@@ -61,7 +61,7 @@
PalletTownScript2:
ld a, 1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -79,7 +79,7 @@
predef FindPathToPlayer ; load Oak’s movement into wNPCMovementDirections2
ld de, wNPCMovementDirections2
ld a, 1 ; oak
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $FF
ld [wJoyIgnore], a
@@ -111,7 +111,7 @@
ld [wNPCMovementScriptFunctionNum], a
ld a, 1
ld [wNPCMovementScriptPointerTableNum], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [wNPCMovementScriptBank], a
; trigger the next script
--- a/scripts/PewterCity.asm
+++ b/scripts/PewterCity.asm
@@ -44,7 +44,7 @@
and a
ret nz
ld a, $3
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -58,18 +58,18 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $3c
- ld [$ffeb], a
+ ld [hSpriteScreenYCoord], a
ld a, $30
- ld [$ffec], a
+ ld [hSpriteScreenXCoord], a
ld a, $c
- ld [$ffed], a
+ ld [hSpriteMapYCoord], a
ld a, $11
- ld [$ffee], a
+ ld [hSpriteMapXCoord], a
ld a, $3
ld [wSpriteIndex], a
call SetSpritePosition1
ld a, $3
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, MovementData_PewterMuseumGuyExit
call MoveSprite
ld a, $2
@@ -112,7 +112,7 @@
and a
ret nz
ld a, $5
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_LEFT
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -126,18 +126,18 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $3c
- ld [$ffeb], a
+ ld [hSpriteScreenYCoord], a
ld a, $40
- ld [$ffec], a
+ ld [hSpriteScreenXCoord], a
ld a, $16
- ld [$ffed], a
+ ld [hSpriteMapYCoord], a
ld a, $10
- ld [$ffee], a
+ ld [hSpriteMapXCoord], a
ld a, $5
ld [wSpriteIndex], a
call SetSpritePosition1
ld a, $5
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld de, MovementData_PewterGymGuyExit
call MoveSprite
ld a, $5
@@ -220,7 +220,7 @@
ld [wNPCMovementScriptFunctionNum], a
ld a, $2
ld [wNPCMovementScriptPointerTableNum], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [wNPCMovementScriptBank], a
ld a, $3
ld [wSpriteIndex], a
@@ -284,7 +284,7 @@
ld [wNPCMovementScriptFunctionNum], a
ld a, $3
ld [wNPCMovementScriptPointerTableNum], a
- ld a, [H_LOADEDROMBANK]
+ ld a, [hLoadedROMBank]
ld [wNPCMovementScriptBank], a
ld a, $5
ld [wSpriteIndex], a
--- a/scripts/PewterGym.asm
+++ b/scripts/PewterGym.asm
@@ -120,7 +120,7 @@
ld hl, PewterGymText_5c4bc
ld de, PewterGymText_5c4bc
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/PewterPokecenter.asm
+++ b/scripts/PewterPokecenter.asm
@@ -21,7 +21,8 @@
ld [wDoNotWaitForButtonPressAfterDisplayingText], a
ld hl, .Text
call PrintText
- StopAllMusic
+ ld a, SFX_STOP_ALL_MUSIC
+ call PlaySound
ld c, 32
call DelayFrames
ld hl, JigglypuffFacingDirections
--- a/scripts/PokemonTower2F.asm
+++ b/scripts/PokemonTower2F.asm
@@ -22,7 +22,7 @@
ld hl, CoordsData_6055e
call ArePlayerCoordsInArray
ret nc
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld c, BANK(Music_MeetRival)
@@ -41,7 +41,7 @@
.asm_60544
ld [wPlayerMovingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, b
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -74,9 +74,9 @@
ld de, MovementData_605a9
.asm_60589
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
--- a/scripts/PokemonTower7F.asm
+++ b/scripts/PokemonTower7F.asm
@@ -107,7 +107,7 @@
ld d, [hl]
ld e, a
ld a, [wSpriteIndex]
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
jp MoveSprite
.asm_60dde
inc hl
--- a/scripts/PowerPlant.asm
+++ b/scripts/PowerPlant.asm
@@ -7,7 +7,7 @@
ld [wPowerPlantCurScript], a
ret
-PowerPlant_ScriptPointers
+PowerPlant_ScriptPointers:
dw CheckFightingMapTrainers
dw DisplayEnemyTrainerTextAndStartBattle
dw EndTrainerBattle
--- a/scripts/RocketHideoutB4F.asm
+++ b/scripts/RocketHideoutB4F.asm
@@ -125,7 +125,7 @@
ld hl, RocketHideout4Text_4557f
ld de, RocketHideout4Text_4557f
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/Route22.asm
+++ b/scripts/Route22.asm
@@ -88,7 +88,7 @@
ld a, [wWalkBikeSurfState]
and a
jr z, .asm_50f4e
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
.asm_50f4e
@@ -96,7 +96,7 @@
ld a, MUSIC_MEET_RIVAL
call PlayMusic
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call Route22MoveRivalSprite
ld a, $1
ld [wRoute22CurScript], a
@@ -118,7 +118,7 @@
.asm_50f7a
ld [hSpriteFacingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteFacingDirectionAndDelay
xor a
ld [wJoyIgnore], a
@@ -159,7 +159,7 @@
.done
ld [hSpriteFacingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteFacingDirectionAndDelay
ld a, $f0
ld [wJoyIgnore], a
@@ -167,7 +167,7 @@
ld a, $1
ld [hSpriteIndexOrTextID], a
call DisplayTextID
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
@@ -191,7 +191,7 @@
ld de, Route22RivalExitMovementData2
Route22MoveRival1:
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
jp MoveSprite
Route22RivalExitMovementData1:
@@ -241,16 +241,16 @@
ld a, [wWalkBikeSurfState]
and a
jr z, .skipYVisibilityTesta
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
.skipYVisibilityTesta
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateTempo
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call Route22MoveRivalSprite
ld a, $4
ld [wRoute22CurScript], a
@@ -261,7 +261,7 @@
bit 0, a
ret nz
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, [wcf0d]
cp $1
jr nz, .asm_510a1
@@ -305,7 +305,7 @@
cp $ff
jp z, Route22Script_50ece
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, [wcf0d]
cp $1
jr nz, .asm_510fb
@@ -326,7 +326,7 @@
ld a, $2
ld [hSpriteIndexOrTextID], a
call DisplayTextID
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStartAndTempo
@@ -350,7 +350,7 @@
ld de, MovementData_5114d
Route22MoveRival2:
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
jp MoveSprite
MovementData_5114c:
--- a/scripts/Route5Gate.asm
+++ b/scripts/Route5Gate.asm
@@ -27,7 +27,7 @@
xor a
ld [hJoyHeld], a
callba RemoveGuardDrink
- ld a, [$ffdb]
+ ld a, [hItemToRemoveID]
and a
jr nz, .asm_1df82
ld a, $2
@@ -74,7 +74,7 @@
bit 6, a
jr nz, .asm_88856
callba RemoveGuardDrink
- ld a, [$ffdb]
+ ld a, [hItemToRemoveID]
and a
jr nz, .asm_768a2
ld hl, Route5GateText2
--- a/scripts/Route6Gate.asm
+++ b/scripts/Route6Gate.asm
@@ -21,7 +21,7 @@
xor a
ld [hJoyHeld], a
callba RemoveGuardDrink
- ld a, [$ffdb]
+ ld a, [hItemToRemoveID]
and a
jr nz, .asm_1e080
ld a, $2
--- a/scripts/Route7Gate.asm
+++ b/scripts/Route7Gate.asm
@@ -33,7 +33,7 @@
xor a
ld [hJoyHeld], a
callba RemoveGuardDrink
- ld a, [$ffdb]
+ ld a, [hItemToRemoveID]
and a
jr nz, .asm_1e15a
ld a, $2
--- a/scripts/Route8Gate.asm
+++ b/scripts/Route8Gate.asm
@@ -32,7 +32,7 @@
xor a
ld [hJoyHeld], a
callba RemoveGuardDrink
- ld a, [$ffdb]
+ ld a, [hItemToRemoveID]
and a
jr nz, .asm_1e220
ld a, $2
--- a/scripts/SSAnne2F.asm
+++ b/scripts/SSAnne2F.asm
@@ -24,7 +24,7 @@
ld hl, CoordsData_61411
call ArePlayerCoordsInArray
ret nc
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld c, BANK(Music_MeetRival)
@@ -31,19 +31,19 @@
ld a, MUSIC_MEET_RIVAL
call PlayMusic
ld a, [wCoordIndex]
- ld [$ffdb], a
+ ld [hSavedCoordIndex], a
ld a, HS_SS_ANNE_2F_RIVAL
ld [wMissableObjectIndex], a
predef ShowObject
call Delay3
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
xor a
ld [hJoyHeld], a
ld a, $f0
ld [wJoyIgnore], a
- ld a, [$ffdb]
+ ld a, [hSavedCoordIndex]
cp $2
jr nz, .asm_61400
ld de, MovementData_6140c
@@ -83,7 +83,7 @@
.asm_61427
ld [hSpriteFacingDirection], a
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
jp SetSpriteFacingDirectionAndDelay
SSAnne2Script1:
@@ -132,7 +132,7 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld a, [wXCoord]
cp $25
@@ -143,9 +143,9 @@
ld de, MovementData_614b7
.asm_6149a
ld a, $2
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
--- a/scripts/SSAnneCaptainsRoom.asm
+++ b/scripts/SSAnneCaptainsRoom.asm
@@ -48,10 +48,10 @@
cp BANK(Audio3_UpdateMusic)
ld [wAudioSavedROMBank], a
jr nz, .asm_61908
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
- ld a, Bank(Music_PkmnHealed)
+ ld a, BANK(Music_PkmnHealed)
ld [wAudioROMBank], a
.asm_61908
ld a, MUSIC_PKMN_HEALED
--- a/scripts/SaffronGym.asm
+++ b/scripts/SaffronGym.asm
@@ -171,7 +171,7 @@
ld hl, SaffronGymText_5d167
ld de, SaffronGymText_5d167
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/SilphCo10F.asm
+++ b/scripts/SilphCo10F.asm
@@ -28,7 +28,7 @@
db $FF
SilphCo10Text_5a176:
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
SetEvent EVENT_SILPH_CO_10_UNLOCKED_DOOR
--- a/scripts/SilphCo11F.asm
+++ b/scripts/SilphCo11F.asm
@@ -35,7 +35,7 @@
ld a, [hl]
ld c, a
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
pop hl
.asm_62143
ld a, [hli]
@@ -42,7 +42,7 @@
cp $ff
jr z, .asm_6215f
push hl
- ld hl, $ffe0
+ ld hl, hUnlockedSilphCoDoors
inc [hl]
pop hl
cp b
@@ -60,11 +60,11 @@
ret
.asm_6215f
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
ret
SilphCo11Script_62163:
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
SetEvent EVENT_SILPH_CO_11_UNLOCKED_DOOR
@@ -178,7 +178,7 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $3
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld de, MovementData_62216
call MoveSprite
@@ -199,7 +199,7 @@
SilphCo11Script_6221a:
ld [wPlayerMovingDirection], a
ld a, $3
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, b
ld [hSpriteFacingDirection], a
jp SetSpriteFacingDirectionAndDelay
@@ -239,7 +239,7 @@
bit 0, a
ret nz
ld a, $3
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld a, [wcf0d]
cp $1
@@ -263,7 +263,7 @@
ld hl, SilphCo10Text_62330
ld de, SilphCo10Text_62330
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/SilphCo2F.asm
+++ b/scripts/SilphCo2F.asm
@@ -45,7 +45,7 @@
ld a, [hl]
ld c, a
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
pop hl
.asm_59d4f
ld a, [hli]
@@ -52,7 +52,7 @@
cp $ff
jr z, .asm_59d6b
push hl
- ld hl, $ffe0
+ ld hl, hUnlockedSilphCoDoors
inc [hl]
pop hl
cp b
@@ -70,12 +70,12 @@
ret
.asm_59d6b
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
ret
SilphCo2Script_59d6f:
EventFlagAddress hl, EVENT_SILPH_CO_2_UNLOCKED_DOOR1
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
cp $1
--- a/scripts/SilphCo3F.asm
+++ b/scripts/SilphCo3F.asm
@@ -39,7 +39,7 @@
SilphCo3Script_59fad:
EventFlagAddress hl, EVENT_SILPH_CO_3_UNLOCKED_DOOR1
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
cp $1
--- a/scripts/SilphCo4F.asm
+++ b/scripts/SilphCo4F.asm
@@ -45,7 +45,7 @@
ld a, [hl]
ld c, a
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
pop hl
.asm_19d69
ld a, [hli]
@@ -52,7 +52,7 @@
cp $ff
jr z, .asm_19d85
push hl
- ld hl, $ffe0
+ ld hl, hUnlockedSilphCoDoors
inc [hl]
pop hl
cp b
@@ -70,12 +70,12 @@
ret
.asm_19d85
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
ret
SilphCo4Script_19d89:
EventFlagAddress hl, EVENT_SILPH_CO_4_UNLOCKED_DOOR1
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
cp $1
--- a/scripts/SilphCo5F.asm
+++ b/scripts/SilphCo5F.asm
@@ -49,7 +49,7 @@
SilphCo5Script_19f9e:
EventFlagAddress hl, EVENT_SILPH_CO_5_UNLOCKED_DOOR1
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
cp $1
--- a/scripts/SilphCo6F.asm
+++ b/scripts/SilphCo6F.asm
@@ -28,7 +28,7 @@
db $FF
SilphCo6Script_1a1e6:
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
SetEvent EVENT_SILPH_CO_6_UNLOCKED_DOOR
--- a/scripts/SilphCo7F.asm
+++ b/scripts/SilphCo7F.asm
@@ -55,7 +55,7 @@
ld a, [hl]
ld c, a
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
pop hl
.asm_51bd4
ld a, [hli]
@@ -62,7 +62,7 @@
cp $ff
jr z, .asm_51bf0
push hl
- ld hl, $ffe0
+ ld hl, hUnlockedSilphCoDoors
inc [hl]
pop hl
cp b
@@ -80,12 +80,12 @@
ret
.asm_51bf0
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
ret
SilphCo7Text_51bf4:
EventFlagAddress hl, EVENT_SILPH_CO_7_UNLOCKED_DOOR1
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
cp $1
@@ -130,7 +130,7 @@
ld [wJoyIgnore], a
ld a, PLAYER_DIR_DOWN
ld [wPlayerMovingDirection], a
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld c, BANK(Music_MeetRival)
@@ -140,7 +140,7 @@
ld [hSpriteIndexOrTextID], a
call DisplayTextID
ld a, $9
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteMovementBytesToFF
ld de, MovementData_51c7d
ld a, [wCoordIndex]
@@ -150,7 +150,7 @@
inc de
.asm_51c6c
ld a, $9
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $3
jp SilphCo7Text_51c10
@@ -212,7 +212,7 @@
ld a, PLAYER_DIR_DOWN
ld [wPlayerMovingDirection], a
ld a, $9
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
ld a, SPRITE_FACING_UP
ld [hSpriteFacingDirection], a
call SetSpriteFacingDirectionAndDelay
@@ -219,7 +219,7 @@
ld a, $f
ld [hSpriteIndexOrTextID], a
call DisplayTextID
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
callba Music_RivalAlternateStart
@@ -230,7 +230,7 @@
ld de, MovementData_51d1a
.asm_51d0e
ld a, $9
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call MoveSprite
ld a, $5
jp SilphCo7Text_51c10
--- a/scripts/SilphCo8F.asm
+++ b/scripts/SilphCo8F.asm
@@ -35,7 +35,7 @@
ld a, [hl]
ld c, a
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
pop hl
.asm_5654d
ld a, [hli]
@@ -42,7 +42,7 @@
cp $ff
jr z, .asm_56569
push hl
- ld hl, $ffe0
+ ld hl, hUnlockedSilphCoDoors
inc [hl]
pop hl
cp b
@@ -60,11 +60,11 @@
ret
.asm_56569
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
ret
SilphCo8Script_5656d:
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
SetEvent EVENT_SILPH_CO_8_UNLOCKED_DOOR
--- a/scripts/SilphCo9F.asm
+++ b/scripts/SilphCo9F.asm
@@ -65,7 +65,7 @@
ld a, [hl]
ld c, a
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
pop hl
.asm_5d843
ld a, [hli]
@@ -72,7 +72,7 @@
cp $ff
jr z, .asm_5d85f
push hl
- ld hl, $ffe0
+ ld hl, hUnlockedSilphCoDoors
inc [hl]
pop hl
cp b
@@ -90,12 +90,12 @@
ret
.asm_5d85f
xor a
- ld [$ffe0], a
+ ld [hUnlockedSilphCoDoors], a
ret
SilphCo9Script_5d863:
EventFlagAddress hl, EVENT_SILPH_CO_9_UNLOCKED_DOOR1
- ld a, [$ffe0]
+ ld a, [hUnlockedSilphCoDoors]
and a
ret z
cp $1
--- a/scripts/TradeCenter.asm
+++ b/scripts/TradeCenter.asm
@@ -8,7 +8,7 @@
.next
ld [hSpriteFacingDirection], a
ld a, $1
- ld [H_SPRITEINDEX], a
+ ld [hSpriteIndex], a
call SetSpriteFacingDirection
ld hl, wd72d
bit 0, [hl]
--- a/scripts/VermilionDock.asm
+++ b/scripts/VermilionDock.asm
@@ -38,7 +38,7 @@
VermilionDock_1db9b:
SetEventForceReuseHL EVENT_SS_ANNE_LEFT
- ld a, $ff
+ ld a, SFX_STOP_ALL_MUSIC
ld [wJoyIgnore], a
ld [wNewSoundID], a
call PlaySound
@@ -57,10 +57,10 @@
ld a, $14 ; water tile
call FillMemory
ld a, 1
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
call Delay3
xor a
- ld [H_AUTOBGTRANSFERENABLED], a
+ ld [hAutoBGTransferEnabled], a
ld [wSSAnneSmokeDriftAmount], a
ld [rOBP1], a
ld a, 88
@@ -78,7 +78,7 @@
ld d, $0
ld e, $8
.asm_1dbfa
- ld hl, $0002
+ ld hl, $2
add hl, bc
ld a, l
ld [wMapViewVRAMPointer], a
--- a/scripts/VermilionGym.asm
+++ b/scripts/VermilionGym.asm
@@ -150,7 +150,7 @@
ld hl, ReceivedThunderbadgeText
ld de, ReceivedThunderbadgeText
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/ViridianCity.asm
+++ b/scripts/ViridianCity.asm
@@ -59,14 +59,14 @@
ret
ViridianCityScript1:
- ld a, [wSpriteStateData1 + $34]
- ld [$ffeb], a
- ld a, [wSpriteStateData1 + $36]
- ld [$ffec], a
- ld a, [wSpriteStateData2 + $34]
- ld [$ffed], a
- ld a, [wSpriteStateData2 + $35]
- ld [$ffee], a
+ ld a, [wSprite03StateData1YPixels]
+ ld [hSpriteScreenYCoord], a
+ ld a, [wSprite03StateData1XPixels]
+ ld [hSpriteScreenXCoord], a
+ ld a, [wSprite03StateData2MapY]
+ ld [hSpriteMapYCoord], a
+ ld a, [wSprite03StateData2MapX]
+ ld [hSpriteMapXCoord], a
xor a
ld [wListScrollOffset], a
@@ -82,14 +82,14 @@
ret
ViridianCityScript2:
- ld a, [$ffeb]
- ld [wSpriteStateData1 + $34], a
- ld a, [$ffec]
- ld [wSpriteStateData1 + $36], a
- ld a, [$ffed]
- ld [wSpriteStateData2 + $34], a
- ld a, [$ffee]
- ld [wSpriteStateData2 + $35], a
+ ld a, [hSpriteScreenYCoord]
+ ld [wSprite03StateData1YPixels], a
+ ld a, [hSpriteScreenXCoord]
+ ld [wSprite03StateData1XPixels], a
+ ld a, [hSpriteMapYCoord]
+ ld [wSprite03StateData2MapY], a
+ ld a, [hSpriteMapXCoord]
+ ld [wSprite03StateData2MapX], a
call UpdateSprites
call Delay3
xor a
--- a/scripts/ViridianGym.asm
+++ b/scripts/ViridianGym.asm
@@ -289,7 +289,7 @@
ld hl, ViridianGymText_74ad3
ld de, ViridianGymText_74ad3
call SaveEndBattleTextPointers
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
ld [wSpriteIndex], a
call EngageMapTrainer
call InitBattleEnemyParameters
--- a/scripts/WardensHouse.asm
+++ b/scripts/WardensHouse.asm
@@ -32,7 +32,7 @@
ld hl, WardenTeethText1
call PrintText
ld a, GOLD_TEETH
- ld [$ffdb], a
+ ld [hItemToRemoveID], a
callba RemoveItemByID
SetEvent EVENT_GAVE_GOLD_TEETH
.asm_60cba
@@ -95,7 +95,7 @@
FuchsiaHouse2Text5:
FuchsiaHouse2Text4:
TX_ASM
- ld a, [H_SPRITEINDEX]
+ ld a, [hSpriteIndex]
cp $4
ld hl, FuchsiaHouse2Text_7517b
jr nz, .asm_4c9a2
--- a/sprites.asm
+++ /dev/null
@@ -1,73 +1,0 @@
-SECTION "NPC Sprites 1", ROMX
-
-OakAideSprite:: INCBIN "gfx/sprites/oak_aide.2bpp"
-RockerSprite:: INCBIN "gfx/sprites/rocker.2bpp"
-SwimmerSprite:: INCBIN "gfx/sprites/swimmer.2bpp"
-WhitePlayerSprite:: INCBIN "gfx/sprites/white_player.2bpp"
-GymHelperSprite:: INCBIN "gfx/sprites/gym_helper.2bpp"
-OldPersonSprite:: INCBIN "gfx/sprites/old_person.2bpp"
-MartGuySprite:: INCBIN "gfx/sprites/mart_guy.2bpp"
-FisherSprite:: INCBIN "gfx/sprites/fisher.2bpp"
-OldMediumWomanSprite:: INCBIN "gfx/sprites/old_medium_woman.2bpp"
-NurseSprite:: INCBIN "gfx/sprites/nurse.2bpp"
-CableClubWomanSprite:: INCBIN "gfx/sprites/cable_club_woman.2bpp"
-MrMasterballSprite:: INCBIN "gfx/sprites/mr_masterball.2bpp"
-LaprasGiverSprite:: INCBIN "gfx/sprites/lapras_giver.2bpp"
-WardenSprite:: INCBIN "gfx/sprites/warden.2bpp"
-SsCaptainSprite:: INCBIN "gfx/sprites/ss_captain.2bpp"
-Fisher2Sprite:: INCBIN "gfx/sprites/fisher2.2bpp"
-BlackbeltSprite:: INCBIN "gfx/sprites/blackbelt.2bpp"
-GuardSprite:: INCBIN "gfx/sprites/guard.2bpp"
-BallSprite:: INCBIN "gfx/sprites/ball.2bpp"
-OmanyteSprite:: INCBIN "gfx/sprites/omanyte.2bpp"
-BoulderSprite:: INCBIN "gfx/sprites/boulder.2bpp"
-PaperSheetSprite:: INCBIN "gfx/sprites/paper_sheet.2bpp"
-BookMapDexSprite:: INCBIN "gfx/sprites/book_map_dex.2bpp"
-ClipboardSprite:: INCBIN "gfx/sprites/clipboard.2bpp"
-SnorlaxSprite:: INCBIN "gfx/sprites/snorlax.2bpp"
-OldAmberSprite:: INCBIN "gfx/sprites/old_amber.2bpp"
-LyingOldManSprite:: INCBIN "gfx/sprites/lying_old_man.2bpp"
-
-
-SECTION "NPC Sprites 2", ROMX
-
-RedCyclingSprite:: INCBIN "gfx/sprites/cycling.2bpp"
-RedSprite:: INCBIN "gfx/sprites/red.2bpp"
-BlueSprite:: INCBIN "gfx/sprites/blue.2bpp"
-OakSprite:: INCBIN "gfx/sprites/oak.2bpp"
-BugCatcherSprite:: INCBIN "gfx/sprites/bug_catcher.2bpp"
-SlowbroSprite:: INCBIN "gfx/sprites/slowbro.2bpp"
-LassSprite:: INCBIN "gfx/sprites/lass.2bpp"
-BlackHairBoy1Sprite:: INCBIN "gfx/sprites/black_hair_boy_1.2bpp"
-LittleGirlSprite:: INCBIN "gfx/sprites/little_girl.2bpp"
-BirdSprite:: INCBIN "gfx/sprites/bird.2bpp"
-FatBaldGuySprite:: INCBIN "gfx/sprites/fat_bald_guy.2bpp"
-GamblerSprite:: INCBIN "gfx/sprites/gambler.2bpp"
-BlackHairBoy2Sprite:: INCBIN "gfx/sprites/black_hair_boy_2.2bpp"
-GirlSprite:: INCBIN "gfx/sprites/girl.2bpp"
-HikerSprite:: INCBIN "gfx/sprites/hiker.2bpp"
-FoulardWomanSprite:: INCBIN "gfx/sprites/foulard_woman.2bpp"
-GentlemanSprite:: INCBIN "gfx/sprites/gentleman.2bpp"
-DaisySprite:: INCBIN "gfx/sprites/daisy.2bpp"
-BikerSprite:: INCBIN "gfx/sprites/biker.2bpp"
-SailorSprite:: INCBIN "gfx/sprites/sailor.2bpp"
-CookSprite:: INCBIN "gfx/sprites/cook.2bpp"
-BikeShopGuySprite:: INCBIN "gfx/sprites/bike_shop_guy.2bpp"
-MrFujiSprite:: INCBIN "gfx/sprites/mr_fuji.2bpp"
-GiovanniSprite:: INCBIN "gfx/sprites/giovanni.2bpp"
-RocketSprite:: INCBIN "gfx/sprites/rocket.2bpp"
-MediumSprite:: INCBIN "gfx/sprites/medium.2bpp"
-WaiterSprite:: INCBIN "gfx/sprites/waiter.2bpp"
-ErikaSprite:: INCBIN "gfx/sprites/erika.2bpp"
-MomGeishaSprite:: INCBIN "gfx/sprites/mom_geisha.2bpp"
-BrunetteGirlSprite:: INCBIN "gfx/sprites/brunette_girl.2bpp"
-LanceSprite:: INCBIN "gfx/sprites/lance.2bpp"
-MomSprite:: INCBIN "gfx/sprites/mom.2bpp"
-BaldingGuySprite:: INCBIN "gfx/sprites/balding_guy.2bpp"
-YoungBoySprite:: INCBIN "gfx/sprites/young_boy.2bpp"
-GameboyKidSprite:: INCBIN "gfx/sprites/gameboy_kid.2bpp"
-ClefairySprite:: INCBIN "gfx/sprites/clefairy.2bpp"
-AgathaSprite:: INCBIN "gfx/sprites/agatha.2bpp"
-BrunoSprite:: INCBIN "gfx/sprites/bruno.2bpp"
-LoreleiSprite:: INCBIN "gfx/sprites/lorelei.2bpp"
-SeelSprite:: INCBIN "gfx/sprites/seel.2bpp"
--- a/text.asm
+++ b/text.asm
@@ -1,3189 +1,280 @@
-INCLUDE "macros.asm"
-INCLUDE "charmap.asm"
+INCLUDE "constants.asm"
-INCLUDE "hram.asm"
-INCLUDE "constants/text_constants.asm"
-
-
SECTION "Text 1", ROMX
-_CardKeySuccessText1::
- text "Bingo!@@"
+INCLUDE "data/text/text_1.asm"
-_CardKeySuccessText2::
- text ""
- line "The CARD KEY"
- cont "opened the door!"
- done
+INCLUDE "text/ViridianForest.asm"
+INCLUDE "text/MtMoon1F.asm"
+INCLUDE "text/MtMoonB1F.asm"
+INCLUDE "text/MtMoonB2F.asm"
+INCLUDE "text/SSAnne1F.asm"
+INCLUDE "text/SSAnne2F.asm"
+INCLUDE "text/SSAnne3F.asm"
+INCLUDE "text/SSAnneBow.asm"
+INCLUDE "text/SSAnneKitchen.asm"
+INCLUDE "text/SSAnneCaptainsRoom.asm"
+INCLUDE "text/SSAnne1FRooms.asm"
+INCLUDE "text/SSAnne2FRooms.asm"
+INCLUDE "text/SSAnneB1FRooms.asm"
+INCLUDE "text/VictoryRoad3F.asm"
+INCLUDE "text/RocketHideoutB1F.asm"
+INCLUDE "text/RocketHideoutB2F.asm"
+INCLUDE "text/RocketHideoutB3F.asm"
+INCLUDE "text/RocketHideoutB4F.asm"
+INCLUDE "text/RocketHideoutElevator.asm"
+INCLUDE "text/SilphCo2F.asm"
+INCLUDE "text/SilphCo3F.asm"
+INCLUDE "text/SilphCo4F.asm"
+INCLUDE "text/SilphCo5F.asm"
-_CardKeyFailText::
- text "Darn! It needs a"
- line "CARD KEY!"
- done
-_TrainerNameText::
- TX_RAM wcd6d
- text ": @@"
-
-_NoNibbleText::
- text "Not even a nibble!"
- prompt
-
-_NothingHereText::
- text "Looks like there's"
- line "nothing here."
- prompt
-
-_ItsABiteText::
- text "Oh!"
- line "It's a bite!"
- prompt
-
-_ExclamationText::
- text "!"
- done
-
-_GroundRoseText::
- text "Ground rose up"
- line "somewhere!"
- done
-
-_BoulderText::
- text "This requires"
- line "STRENGTH to move!"
- done
-
-_MartSignText::
- text "All your item"
- line "needs fulfilled!"
- cont "#MON MART"
- done
-
-_PokeCenterSignText::
- text "Heal Your #MON!"
- line "#MON CENTER"
- done
-
-_FoundItemText::
- text "<PLAYER> found"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_NoMoreRoomForItemText::
- text "No more room for"
- line "items!"
- done
-
-_OaksAideHiText::
- text "Hi! Remember me?"
- line "I'm PROF.OAK's"
- cont "AIDE!"
-
- para "If you caught @"
- TX_NUM hOaksAideRequirement, 1, 3
- text ""
- line "kinds of #MON,"
- cont "I'm supposed to"
- cont "give you an"
- cont "@"
- TX_RAM wOaksAideRewardItemName
- text "!"
-
- para "So, <PLAYER>! Have"
- line "you caught at"
- cont "least @"
- TX_NUM hOaksAideRequirement, 1, 3
- text " kinds of"
- cont "#MON?"
- done
-
-_OaksAideUhOhText::
- text "Let's see..."
- line "Uh-oh! You have"
- cont "caught only @"
- TX_NUM hOaksAideNumMonsOwned, 1, 3
- text ""
- cont "kinds of #MON!"
-
- para "You need @"
- TX_NUM hOaksAideRequirement, 1, 3
- text " kinds"
- line "if you want the"
- cont "@"
- TX_RAM wOaksAideRewardItemName
- text "."
- done
-
-_OaksAideComeBackText::
- text "Oh. I see."
-
- para "When you get @"
- TX_NUM hOaksAideRequirement, 1, 3
- text ""
- line "kinds, come back"
- cont "for @"
- TX_RAM wOaksAideRewardItemName
- text "."
- done
-
-_OaksAideHereYouGoText::
- text "Great! You have"
- line "caught @"
- TX_NUM hOaksAideNumMonsOwned, 1, 3
- text " kinds "
- cont "of #MON!"
- cont "Congratulations!"
-
- para "Here you go!"
- prompt
-
-_OaksAideGotItemText::
- text "<PLAYER> got the"
- line "@"
- TX_RAM wOaksAideRewardItemName
- text "!@@"
-
-_OaksAideNoRoomText::
- text "Oh! I see you"
- line "don't have any"
- cont "room for the"
- cont "@"
- TX_RAM wOaksAideRewardItemName
- text "."
- done
-
-INCLUDE "text/maps/ViridianForest.asm"
-INCLUDE "text/maps/MtMoon1F.asm"
-INCLUDE "text/maps/MtMoonB1F.asm"
-INCLUDE "text/maps/MtMoonB2F.asm"
-INCLUDE "text/maps/SSAnne1F.asm"
-INCLUDE "text/maps/SSAnne2F.asm"
-INCLUDE "text/maps/SSAnne3F.asm"
-INCLUDE "text/maps/SSAnneBow.asm"
-INCLUDE "text/maps/SSAnneKitchen.asm"
-INCLUDE "text/maps/SSAnneCaptainsRoom.asm"
-INCLUDE "text/maps/SSAnne1FRooms.asm"
-INCLUDE "text/maps/SSAnne2FRooms.asm"
-INCLUDE "text/maps/SSAnneB1FRooms.asm"
-INCLUDE "text/maps/VictoryRoad3F.asm"
-INCLUDE "text/maps/RocketHideoutB1F.asm"
-INCLUDE "text/maps/RocketHideoutB2F.asm"
-INCLUDE "text/maps/RocketHideoutB3F.asm"
-INCLUDE "text/maps/RocketHideoutB4F.asm"
-INCLUDE "text/maps/RocketHideoutElevator.asm"
-INCLUDE "text/maps/SilphCo2F.asm"
-INCLUDE "text/maps/SilphCo3F.asm"
-INCLUDE "text/maps/SilphCo4F.asm"
-INCLUDE "text/maps/SilphCo5F.asm"
-
-
SECTION "Text 2", ROMX
-INCLUDE "text/maps/SilphCo5F_2.asm"
-INCLUDE "text/maps/SilphCo6F.asm"
-INCLUDE "text/maps/SilphCo7F.asm"
-INCLUDE "text/maps/SilphCo8F.asm"
-INCLUDE "text/maps/SilphCo9F.asm"
-INCLUDE "text/maps/SilphCo10F.asm"
-INCLUDE "text/maps/SilphCo11F.asm"
-INCLUDE "text/maps/PokemonMansion2F.asm"
-INCLUDE "text/maps/PokemonMansion3F.asm"
-INCLUDE "text/maps/PokemonMansionB1F.asm"
-INCLUDE "text/maps/SafariZoneEast.asm"
-INCLUDE "text/maps/SafariZoneNorth.asm"
-INCLUDE "text/maps/SafariZoneWest.asm"
-INCLUDE "text/maps/SafariZoneCenter.asm"
-INCLUDE "text/maps/SafariZoneCenterRestHouse.asm"
-INCLUDE "text/maps/SafariZoneSecretHouse.asm"
-INCLUDE "text/maps/SafariZoneWestRestHouse.asm"
-INCLUDE "text/maps/SafariZoneEastRestHouse.asm"
-INCLUDE "text/maps/SafariZoneNorthRestHouse.asm"
-INCLUDE "text/maps/CeruleanCaveB1F.asm"
-INCLUDE "text/maps/VictoryRoad1F.asm"
-INCLUDE "text/maps/LancesRoom.asm"
-INCLUDE "text/maps/HallOfFame.asm"
-INCLUDE "text/maps/ChampionsRoom.asm"
-INCLUDE "text/maps/LoreleisRoom.asm"
-INCLUDE "text/maps/BrunosRoom.asm"
-INCLUDE "text/maps/AgathasRoom.asm"
-INCLUDE "text/maps/RockTunnelB1F.asm"
+INCLUDE "text/SilphCo5F_2.asm"
+INCLUDE "text/SilphCo6F.asm"
+INCLUDE "text/SilphCo7F.asm"
+INCLUDE "text/SilphCo8F.asm"
+INCLUDE "text/SilphCo9F.asm"
+INCLUDE "text/SilphCo10F.asm"
+INCLUDE "text/SilphCo11F.asm"
+INCLUDE "text/PokemonMansion2F.asm"
+INCLUDE "text/PokemonMansion3F.asm"
+INCLUDE "text/PokemonMansionB1F.asm"
+INCLUDE "text/SafariZoneEast.asm"
+INCLUDE "text/SafariZoneNorth.asm"
+INCLUDE "text/SafariZoneWest.asm"
+INCLUDE "text/SafariZoneCenter.asm"
+INCLUDE "text/SafariZoneCenterRestHouse.asm"
+INCLUDE "text/SafariZoneSecretHouse.asm"
+INCLUDE "text/SafariZoneWestRestHouse.asm"
+INCLUDE "text/SafariZoneEastRestHouse.asm"
+INCLUDE "text/SafariZoneNorthRestHouse.asm"
+INCLUDE "text/CeruleanCaveB1F.asm"
+INCLUDE "text/VictoryRoad1F.asm"
+INCLUDE "text/LancesRoom.asm"
+INCLUDE "text/HallOfFame.asm"
+INCLUDE "text/ChampionsRoom.asm"
+INCLUDE "text/LoreleisRoom.asm"
+INCLUDE "text/BrunosRoom.asm"
+INCLUDE "text/AgathasRoom.asm"
+INCLUDE "text/RockTunnelB1F.asm"
SECTION "Text 3", ROMX
-INCLUDE "text/maps/RockTunnelB1F_2.asm"
-INCLUDE "text/maps/SeafoamIslandsB4F.asm"
+INCLUDE "text/RockTunnelB1F_2.asm"
+INCLUDE "text/SeafoamIslandsB4F.asm"
-_AIBattleWithdrawText::
- TX_RAM wTrainerName
- text " with-"
- line "drew @"
- TX_RAM wEnemyMonNick
- text "!"
- prompt
+INCLUDE "data/text/text_2.asm"
-_AIBattleUseItemText::
- TX_RAM wTrainerName
- text ""
- line "used @"
- TX_RAM wcd6d
- text ""
- cont "on @"
- TX_RAM wEnemyMonNick
- text "!"
- prompt
+INCLUDE "text/DiglettsCaveRoute2.asm"
+INCLUDE "text/ViridianForestNorthGate.asm"
+INCLUDE "text/Route2TradeHouse.asm"
+INCLUDE "text/Route2Gate.asm"
+INCLUDE "text/ViridianForestSouthGate.asm"
+INCLUDE "text/MtMoonPokecenter.asm"
+INCLUDE "text/SaffronGates.asm"
+INCLUDE "text/Daycare.asm"
-_TradeWentToText::
- TX_RAM wcf4b
- text " went"
- line "to @"
- TX_RAM wLinkEnemyTrainerName
- text "."
- done
-_TradeForText::
- text "For <PLAYER>'s"
- line "@"
- TX_RAM wcf4b
- text ","
- done
+SECTION "Text 4", ROMX
-_TradeSendsText::
- TX_RAM wLinkEnemyTrainerName
- text " sends"
- line "@"
- TX_RAM wcd6d
- text "."
- done
-
-_TradeWavesFarewellText::
- TX_RAM wLinkEnemyTrainerName
- text " waves"
- line "farewell as"
- done
-
-_TradeTransferredText::
- TX_RAM wcd6d
- text " is"
- line "transferred."
- done
-
-_TradeTakeCareText::
- text "Take good care of"
- line "@"
- TX_RAM wcd6d
- text "."
- done
-
-_TradeWillTradeText::
- TX_RAM wLinkEnemyTrainerName
- text " will"
- line "trade @"
- TX_RAM wcd6d
- text ""
- done
-
-_TradeforText::
- text "for <PLAYER>'s"
- line "@"
- TX_RAM wcf4b
- text "."
- done
-
-_PlaySlotMachineText::
- text "A slot machine!"
- line "Want to play?"
- done
-
-_OutOfCoinsSlotMachineText::
- text "Darn!"
- line "Ran out of coins!"
- done
-
-_BetHowManySlotMachineText::
- text "Bet how many"
- line "coins?"
- done
-
-_StartSlotMachineText::
- text "Start!"
- done
-
-_NotEnoughCoinsSlotMachineText::
- text "Not enough"
- line "coins!"
- prompt
-
-_OneMoreGoSlotMachineText::
- text "One more "
- line "go?"
- done
-
-_LinedUpText::
- text " lined up!"
- line "Scored @"
- TX_RAM wcf4b
- text " coins!"
- done
-
-_NotThisTimeText::
- text "Not this time!"
- prompt
-
-_YeahText::
- text "Yeah!@@"
-
-_DexSeenOwnedText::
- text "#DEX Seen:@"
- TX_NUM wDexRatingNumMonsSeen, 1, 3
- text ""
- line " Owned:@"
- TX_NUM wDexRatingNumMonsOwned, 1, 3
- db "@"
-
-_DexRatingText::
- text "#DEX Rating", $6d
- done
-
-_GymStatueText1::
- TX_RAM wGymCityName
- text ""
- line "#MON GYM"
- cont "LEADER: @"
- TX_RAM wGymLeaderName
- text ""
-
- para "WINNING TRAINERS:"
- line "<RIVAL>"
- done
-
-_GymStatueText2::
- TX_RAM wGymCityName
- text ""
- line "#MON GYM"
- cont "LEADER: @"
- TX_RAM wGymLeaderName
- text ""
-
- para "WINNING TRAINERS:"
- line "<RIVAL>"
- cont "<PLAYER>"
- done
-
-_ViridianCityPokecenterGuyText::
- text "#MON CENTERs"
- line "heal your tired,"
- cont "hurt or fainted"
- cont "#MON!"
- done
-
-_PewterCityPokecenterGuyText::
- text "Yawn!"
-
- para "When JIGGLYPUFF"
- line "sings, #MON"
- cont "get drowsy..."
-
- para "...Me too..."
- line "Snore..."
- done
-
-_CeruleanPokecenterGuyText::
- text "BILL has lots of"
- line "#MON!"
-
- para "He collects rare"
- line "ones too!"
- done
-
-_LavenderPokecenterGuyText::
- text "CUBONEs wear"
- line "skulls, right?"
-
- para "People will pay a"
- line "lot for one!"
- done
-
-_MtMoonPokecenterBenchGuyText::
- text "If you have too"
- line "many #MON, you"
- cont "should store them"
- cont "via PC!"
- done
-
-_RockTunnelPokecenterGuyText::
- text "I heard that"
- line "GHOSTs haunt"
- cont "LAVENDER TOWN!"
- done
-
-_UnusedBenchGuyText1::
- text "I wish I could"
- line "catch #MON."
- done
-
-_UnusedBenchGuyText2::
- text "I'm tired from"
- line "all the fun..."
- done
-
-_UnusedBenchGuyText3::
- text "SILPH's manager"
- line "is hiding in the"
- cont "SAFARI ZONE."
- done
-
-_VermilionPokecenterGuyText::
- text "It is true that a"
- line "higher level"
- cont "#MON will be"
- cont "more powerful..."
-
- para "But, all #MON"
- line "will have weak"
- cont "points against"
- cont "specific types."
-
- para "So, there is no"
- line "universally"
- cont "strong #MON."
- done
-
-_CeladonCityPokecenterGuyText::
- text "If I had a BIKE,"
- line "I would go to"
- cont "CYCLING ROAD!"
- done
-
-_FuchsiaCityPokecenterGuyText::
- text "If you're studying "
- line "#MON, visit"
- cont "the SAFARI ZONE."
-
- para "It has all sorts"
- line "of rare #MON."
- done
-
-_CinnabarPokecenterGuyText::
- text "#MON can still"
- line "learn techniques"
- cont "after canceling"
- cont "evolution."
-
- para "Evolution can wait"
- line "until new moves"
- cont "have been learned."
- done
-
-_SaffronCityPokecenterGuyText1::
- text "It would be great"
- line "if the ELITE FOUR"
- cont "came and stomped"
- cont "TEAM ROCKET!"
- done
-
-_SaffronCityPokecenterGuyText2::
- text "TEAM ROCKET took"
- line "off! We can go"
- cont "out safely again!"
- cont "That's great!"
- done
-
-_CeladonCityHotelText::
- text "My sis brought me"
- line "on this vacation!"
- done
-
-_BookcaseText::
- text "Crammed full of"
- line "#MON books!"
- done
-
-_NewBicycleText::
- text "A shiny new"
- line "BICYCLE!"
- done
-
-_PushStartText::
- text "Push START to"
- line "open the MENU!"
- done
-
-_SaveOptionText::
- text "The SAVE option is"
- line "on the MENU"
- cont "screen."
- done
-
-_StrengthsAndWeaknessesText::
- text "All #MON types"
- line "have strong and"
- cont "weak points"
- cont "against others."
- done
-
-_TimesUpText::
- text "PA: Ding-dong!"
-
- para "Time's up!"
- prompt
-
-_GameOverText::
- text "PA: Your SAFARI"
- line "GAME is over!"
- done
-
-_CinnabarGymQuizIntroText::
- text "#MON Quiz!"
-
- para "Get it right and"
- line "the door opens to"
- cont "the next room!"
-
- para "Get it wrong and"
- line "face a trainer!"
-
- para "If you want to"
- line "conserve your"
- cont "#MON for the"
- cont "GYM LEADER..."
-
- para "Then get it right!"
- line "Here we go!"
- prompt
-
-_CinnabarQuizQuestionsText1::
- text "CATERPIE evolves"
- line "into BUTTERFREE?"
- done
-
-_CinnabarQuizQuestionsText2::
- text "There are 9"
- line "certified #MON"
- cont "LEAGUE BADGEs?"
- done
-
-_CinnabarQuizQuestionsText3::
- text "POLIWAG evolves 3"
- line "times?"
- done
-
-_CinnabarQuizQuestionsText4::
- text "Are thunder moves"
- line "effective against"
- cont "ground element-"
- cont "type #MON?"
- done
-
-_CinnabarQuizQuestionsText5::
- text "#MON of the"
- line "same kind and"
- cont "level are not"
- cont "identical?"
- done
-
-_CinnabarQuizQuestionsText6::
- text "TM28 contains"
- line "TOMBSTONER?"
- done
-
-_CinnabarGymQuizCorrectText::
- text "You're absolutely"
- line "correct!"
-
- para "Go on through!@@"
-
-_CinnabarGymQuizIncorrectText::
- text "Sorry! Bad call!"
- prompt
-
-_MagazinesText::
- text "#MON magazines!"
-
- para "#MON notebooks!"
-
- para "#MON graphs!"
- done
-
-_BillsHouseMonitorText::
- text "TELEPORTER is"
- line "displayed on the"
- cont "PC monitor."
- done
-
-_BillsHouseInitiatedText::
- text "<PLAYER> initiated"
- line "TELEPORTER's Cell"
- cont "Separator!@@"
-
-_BillsHousePokemonListText1::
- text "BILL's favorite"
- line "#MON list!"
- prompt
-
-_BillsHousePokemonListText2::
- text "Which #MON do"
- line "you want to see?"
- done
-
-_OakLabEmailText::
- text "There's an e-mail"
- line "message here!"
-
- para "..."
-
- para "Calling all"
- line "#MON trainers!"
-
- para "The elite trainers"
- line "of #MON LEAGUE"
- cont "are ready to take"
- cont "on all comers!"
-
- para "Bring your best"
- line "#MON and see"
- cont "how you rate as a"
- cont "trainer!"
-
- para "#MON LEAGUE HQ"
- line "INDIGO PLATEAU"
-
- para "PS: PROF.OAK,"
- line "please visit us!"
- cont "..."
- done
-
-_GameCornerCoinCaseText::
- text "A COIN CASE is"
- line "required!"
- done
-
-_GameCornerNoCoinsText::
- text "You don't have"
- line "any coins!"
- done
-
-_GameCornerOutOfOrderText::
- text "OUT OF ORDER"
- line "This is broken."
- done
-
-_GameCornerOutToLunchText::
- text "OUT TO LUNCH"
- line "This is reserved."
- done
-
-_GameCornerSomeonesKeysText::
- text "Someone's keys!"
- line "They'll be back."
- done
-
-_JustAMomentText::
- text "Just a moment."
- done
-
-TMNotebookText::
- text "It's a pamphlet"
- line "on TMs."
-
- para "..."
-
- para "There are 50 TMs"
- line "in all."
-
- para "There are also 5"
- line "HMs that can be"
- cont "used repeatedly."
-
- para "SILPH CO.@@"
-
-_TurnPageText::
- text "Turn the page?"
- done
-
-_ViridianSchoolNotebookText5::
- text "GIRL: Hey! Don't"
- line "look at my notes!@@"
-
-_ViridianSchoolNotebookText1::
- text "Looked at the"
- line "notebook!"
-
- para "First page..."
-
- para "# BALLs are"
- line "used to catch"
- cont "#MON."
+INCLUDE "text/Daycare_2.asm"
+INCLUDE "text/UndergroundPathRoute6.asm"
+INCLUDE "text/UndergroundPathRoute7.asm"
+INCLUDE "text/UndergroundPathRoute7Copy.asm"
+INCLUDE "text/UndergroundPathRoute8.asm"
+INCLUDE "text/RockTunnelPokecenter.asm"
+INCLUDE "text/RockTunnel1F.asm"
+INCLUDE "text/PowerPlant.asm"
+INCLUDE "text/Route11Gate1F.asm"
+INCLUDE "text/Route11Gate2F.asm"
+INCLUDE "text/DiglettsCaveRoute11.asm"
+INCLUDE "text/Route12Gate1F.asm"
+INCLUDE "text/Route12Gate2F.asm"
+INCLUDE "text/Route12SuperRodHouse.asm"
+INCLUDE "text/Route15Gate1F.asm"
+INCLUDE "text/Route15Gate2F.asm"
+INCLUDE "text/Route16Gate1F.asm"
+INCLUDE "text/Route16Gate2F.asm"
+INCLUDE "text/Route16FlyHouse.asm"
+INCLUDE "text/Route18Gate1F.asm"
+INCLUDE "text/Route18Gate2F.asm"
+INCLUDE "text/Route22Gate.asm"
+INCLUDE "text/VictoryRoad2F.asm"
+INCLUDE "text/BillsHouse.asm"
+INCLUDE "text/Route1.asm"
+INCLUDE "text/Route2.asm"
+INCLUDE "text/Route3.asm"
+INCLUDE "text/Route4.asm"
+INCLUDE "text/Route5.asm"
+INCLUDE "text/Route6.asm"
+INCLUDE "text/Route7.asm"
+INCLUDE "text/Route8.asm"
+INCLUDE "text/Route9.asm"
+INCLUDE "text/Route10.asm"
+INCLUDE "text/Route11.asm"
- para "Up to 6 #MON"
- line "can be carried."
- para "People who raise"
- line "and make #MON"
- cont "fight are called"
- cont "#MON trainers."
- prompt
-
-_ViridianSchoolNotebookText2::
- text "Second page..."
-
- para "A healthy #MON"
- line "may be hard to"
- cont "catch, so weaken"
- cont "it first!"
-
- para "Poison, burns and"
- line "other damage are"
- cont "effective!"
- prompt
-
-_ViridianSchoolNotebookText3::
- text "Third page..."
-
- para "#MON trainers"
- line "seek others to"
- cont "engage in #MON"
- cont "fights."
-
- para "Battles are"
- line "constantly fought"
- cont "at #MON GYMs."
- prompt
-
-_ViridianSchoolNotebookText4::
- text "Fourth page..."
-
- para "The goal for"
- line "#MON trainers"
- cont "is to beat the "
- cont "top 8 #MON"
- cont "GYM LEADERs."
-
- para "Do so to earn the"
- line "right to face..."
-
- para "The ELITE FOUR of"
- line "#MON LEAGUE!"
- prompt
-
-_EnemiesOnEverySideText::
- text "Enemies on every"
- line "side!"
- done
-
-_WhatGoesAroundComesAroundText::
- text "What goes around"
- line "comes around!"
- done
-
-_FightingDojoText::
- text "FIGHTING DOJO"
- done
-
-_IndigoPlateauHQText::
- text "INDIGO PLATEAU"
- line "#MON LEAGUE HQ"
- done
-
-_RedBedroomSNESText::
- text "<PLAYER> is"
- line "playing the SNES!"
- cont "...Okay!"
- cont "It's time to go!"
- done
-
-_Route15UpstairsBinocularsText::
- text "Looked into the"
- line "binoculars..."
-
- para "A large, shining"
- line "bird is flying"
- cont "toward the sea."
- done
-
-_AerodactylFossilText::
- text "AERODACTYL Fossil"
- line "A primitive and"
- cont "rare #MON."
- done
-
-_KabutopsFossilText::
- text "KABUTOPS Fossil"
- line "A primitive and"
- cont "rare #MON."
- done
-
-_LinkCableHelpText1::
- text "TRAINER TIPS"
-
- para "Using a Game Link"
- line "Cable"
- prompt
-
-_LinkCableHelpText2::
- text "Which heading do"
- line "you want to read?"
- done
-
-_LinkCableInfoText1::
- text "When you have"
- line "linked your GAME"
- cont "BOY with another"
- cont "GAME BOY, talk to"
- cont "the attendant on"
- cont "the right in any"
- cont "#MON CENTER."
- prompt
-
-_LinkCableInfoText2::
- text "COLOSSEUM lets"
- line "you play against"
- cont "a friend."
- prompt
-
-_LinkCableInfoText3::
- text "TRADE CENTER is"
- line "used for trading"
- cont "#MON."
- prompt
-
-_ViridianSchoolBlackboardText1::
- text "The blackboard"
- line "describes #MON"
- cont "STATUS changes"
- cont "during battles."
- prompt
-
-_ViridianSchoolBlackboardText2::
- text "Which heading do"
- line "you want to read?"
- done
-
-_ViridianBlackboardSleepText::
- text "A #MON can't"
- line "attack if it's"
- cont "asleep!"
-
- para "#MON will stay"
- line "asleep even after"
- cont "battles."
-
- para "Use AWAKENING to"
- line "wake them up!"
- prompt
-
-_ViridianBlackboardPoisonText::
- text "When poisoned, a"
- line "#MON's health"
- cont "steadily drops."
-
- para "Poison lingers"
- line "after battles."
-
- para "Use an ANTIDOTE"
- line "to cure poison!"
- prompt
-
-_ViridianBlackboardPrlzText::
- text "Paralysis could"
- line "make #MON"
- cont "moves misfire!"
-
- para "Paralysis remains"
- line "after battles."
-
- para "Use PARLYZ HEAL"
- line "for treatment!"
- prompt
-
-_ViridianBlackboardBurnText::
- text "A burn reduces"
- line "power and speed."
- cont "It also causes"
- cont "ongoing damage."
-
- para "Burns remain"
- line "after battles."
-
- para "Use BURN HEAL to"
- line "cure a burn!"
- prompt
-
-_ViridianBlackboardFrozenText::
- text "If frozen, a"
- line "#MON becomes"
- cont "totally immobile!"
-
- para "It stays frozen"
- line "even after the"
- cont "battle ends."
-
- para "Use ICE HEAL to"
- line "thaw out #MON!"
- prompt
-
-_VermilionGymTrashText::
- text "Nope, there's"
- line "only trash here."
- done
-
-_VermilionGymTrashSuccessText1::
- text "Hey! There's a"
- line "switch under the"
- cont "trash!"
- cont "Turn it on!"
-
- para "The 1st electric"
- line "lock opened!@@"
-
-_VermilionGymTrashSuccessText2::
- text "Hey! There's"
- line "another switch"
- cont "under the trash!"
- cont "Turn it on!"
- prompt
-
-_VermilionGymTrashSuccessText3::
- text "The 2nd electric"
- line "lock opened!"
-
- para "The motorized door"
- line "opened!@@"
-
-_VermilionGymTrashFailText::
- text "Nope! There's"
- line "only trash here."
- cont "Hey! The electric"
- cont "locks were reset!@@"
-
-_FoundHiddenItemText::
- text "<PLAYER> found"
- line "@"
- TX_RAM wcd6d
- text "!@@"
-
-_HiddenItemBagFullText::
- text "But, <PLAYER> has"
- line "no more room for"
- cont "other items!"
- done
-
-_FoundHiddenCoinsText::
- text "<PLAYER> found"
- line "@"
- TX_BCD hCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
- text " coins!@@"
-
-_FoundHiddenCoins2Text::
- text "<PLAYER> found"
- line "@"
- TX_BCD hCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
- text " coins!@@"
-
-_DroppedHiddenCoinsText::
- text ""
- para "Oops! Dropped"
- line "some coins!"
- done
-
-_IndigoPlateauStatuesText1::
- text "INDIGO PLATEAU"
- prompt
-
-_IndigoPlateauStatuesText2::
- text "The ultimate goal"
- line "of trainers!"
- cont "#MON LEAGUE HQ"
- done
-
-_IndigoPlateauStatuesText3::
- text "The highest"
- line "#MON authority"
- cont "#MON LEAGUE HQ"
- done
-
-_PokemonBooksText::
- text "Crammed full of"
- line "#MON books!"
- done
-
-_DiglettSculptureText::
- text "It's a sculpture"
- line "of DIGLETT."
- done
-
-_ElevatorText::
- text "This is an"
- line "elevator."
- done
-
-_TownMapText::
- text "A TOWN MAP.@@"
-
-_PokemonStuffText::
- text "Wow! Tons of"
- line "#MON stuff!"
- done
-
-_OutOfSafariBallsText::
- text "PA: Ding-dong!"
-
- para "You are out of"
- line "SAFARI BALLs!"
- prompt
-
-_WildRanText::
- text "Wild @"
- TX_RAM wEnemyMonNick
- text ""
- line "ran!"
- prompt
-
-_EnemyRanText::
- text "Enemy @"
- TX_RAM wEnemyMonNick
- text ""
- line "ran!"
- prompt
-
-_HurtByPoisonText::
- text "<USER>'s"
- line "hurt by poison!"
- prompt
-
-_HurtByBurnText::
- text "<USER>'s"
- line "hurt by the burn!"
- prompt
-
-_HurtByLeechSeedText::
- text "LEECH SEED saps"
- line "<USER>!"
- prompt
-
-_EnemyMonFaintedText::
- text "Enemy @"
- TX_RAM wEnemyMonNick
- text ""
- line "fainted!"
- prompt
-
-_MoneyForWinningText::
- text "<PLAYER> got ¥@"
- TX_BCD wAmountMoneyWon, 3 | LEADING_ZEROES | LEFT_ALIGN
- text ""
- line "for winning!"
- prompt
-
-_TrainerDefeatedText::
- text "<PLAYER> defeated"
- line "@"
- TX_RAM wTrainerName
- text "!"
- prompt
-
-_PlayerMonFaintedText::
- TX_RAM wBattleMonNick
- text ""
- line "fainted!"
- prompt
-
-_UseNextMonText::
- text "Use next #MON?"
- done
-
-_Sony1WinText::
- text "<RIVAL>: Yeah! Am"
- line "I great or what?"
- prompt
-
-_PlayerBlackedOutText2::
- text "<PLAYER> is out of"
- line "useable #MON!"
-
- para "<PLAYER> blacked"
- line "out!"
- prompt
-
-_LinkBattleLostText::
- text "<PLAYER> lost to"
- line "@"
- TX_RAM wTrainerName
- text "!"
- prompt
-
-_TrainerAboutToUseText::
- TX_RAM wTrainerName
- text " is"
- line "about to use"
- cont"@"
- TX_RAM wEnemyMonNick
- text "!"
-
- para "Will <PLAYER>"
- line "change #MON?"
- done
-
-_TrainerSentOutText::
- TX_RAM wTrainerName
- text " sent"
- line "out @"
- TX_RAM wEnemyMonNick
- text "!"
- done
-
-_NoWillText::
- text "There's no will"
- line "to fight!"
- prompt
-
-_CantEscapeText::
- text "Can't escape!"
- prompt
-
-_NoRunningText::
- text "No! There's no"
- line "running from a"
- cont "trainer battle!"
- prompt
-
-_GotAwayText::
- text "Got away safely!"
- prompt
-
-_ItemsCantBeUsedHereText::
- text "Items can't be"
- line "used here."
- prompt
-
-_AlreadyOutText::
- TX_RAM wBattleMonNick
- text " is"
- line "already out!"
- prompt
-
-_MoveNoPPText::
- text "No PP left for"
- line "this move!"
- prompt
-
-_MoveDisabledText::
- text "The move is"
- line "disabled!"
- prompt
-
-_NoMovesLeftText::
- TX_RAM wBattleMonNick
- text " has no"
- line "moves left!"
- done
-
-_MultiHitText::
- text "Hit the enemy"
- line "@"
- TX_NUM wPlayerNumHits,1,1
- text " times!"
- prompt
-
-_ScaredText::
- TX_RAM wBattleMonNick
- text " is too"
- line "scared to move!"
- prompt
-
-_GetOutText::
- text "GHOST: Get out..."
- line "Get out..."
- prompt
-
-_FastAsleepText::
- text "<USER>"
- line "is fast asleep!"
- prompt
-
-_WokeUpText::
- text "<USER>"
- line "woke up!"
- prompt
-
-_IsFrozenText::
- text "<USER>"
- line "is frozen solid!"
- prompt
-
-_FullyParalyzedText::
- text "<USER>'s"
- line "fully paralyzed!"
- prompt
-
-_FlinchedText::
- text "<USER>"
- line "flinched!"
- prompt
-
-_MustRechargeText::
- text "<USER>"
- line "must recharge!"
- prompt
-
-_DisabledNoMoreText::
- text "<USER>'s"
- line "disabled no more!"
- prompt
-
-_IsConfusedText::
- text "<USER>"
- line "is confused!"
- prompt
-
-_HurtItselfText::
- text "It hurt itself in"
- line "its confusion!"
- prompt
-
-_ConfusedNoMoreText::
- text "<USER>'s"
- line "confused no more!"
- prompt
-
-_SavingEnergyText::
- text "<USER>"
- line "is saving energy!"
- prompt
-
-_UnleashedEnergyText::
- text "<USER>"
- line "unleashed energy!"
- prompt
-
-_ThrashingAboutText::
- text "<USER>'s"
- line "thrashing about!"
- done
-
-_AttackContinuesText::
- text "<USER>'s"
- line "attack continues!"
- done
-
-_CantMoveText::
- text "<USER>"
- line "can't move!"
- prompt
-
-_MoveIsDisabledText::
- text "<USER>'s"
- line "@"
- TX_RAM wcd6d
- text " is"
- cont "disabled!"
- prompt
-
-_MonName1Text::
- text "<USER>@@"
-
-_Used1Text::
- text ""
- line "used @@"
-
-_Used2Text::
- text ""
- line "used @@"
-
-_InsteadText::
- text "instead,"
- cont "@@"
-
-_CF4BText::
- TX_RAM wcf4b
- text "@"
-
-_ExclamationPoint1Text::
- text "!"
- done
-
-_ExclamationPoint2Text::
- text "!"
- done
-
-_ExclamationPoint3Text::
- text "!"
- done
-
-_ExclamationPoint4Text::
- text "!"
- done
-
-_ExclamationPoint5Text::
- text "!"
- done
-
-_AttackMissedText::
- text "<USER>'s"
- line "attack missed!"
- prompt
-
-_KeptGoingAndCrashedText::
- text "<USER>"
- line "kept going and"
- cont "crashed!"
- prompt
-
-_UnaffectedText::
- text "<TARGET>'s"
- line "unaffected!"
- prompt
-
-_DoesntAffectMonText::
- text "It doesn't affect"
- line "<TARGET>!"
- prompt
-
-_CriticalHitText::
- text "Critical hit!"
- prompt
-
-_OHKOText::
- text "One-hit KO!"
- prompt
-
-_LoafingAroundText::
- TX_RAM wBattleMonNick
- text " is"
- line "loafing around."
- prompt
-
-_BeganToNapText::
- TX_RAM wBattleMonNick
- text " began"
- line "to nap!"
- prompt
-
-_WontObeyText::
- TX_RAM wBattleMonNick
- text " won't"
- line "obey!"
- prompt
-
-_TurnedAwayText::
- TX_RAM wBattleMonNick
- text " turned"
- line "away!"
- prompt
-
-_IgnoredOrdersText::
- TX_RAM wBattleMonNick
- text ""
- line "ignored orders!"
- prompt
-
-_SubstituteTookDamageText::
- text "The SUBSTITUTE"
- line "took damage for"
- cont "<TARGET>!"
- prompt
-
-_SubstituteBrokeText::
- text "<TARGET>'s"
- line "SUBSTITUTE broke!"
- prompt
-
-_BuildingRageText::
- text "<USER>'s"
- line "RAGE is building!"
- prompt
-
-_MirrorMoveFailedText::
- text "The MIRROR MOVE"
- next "failed!"
- prompt
-
-_HitXTimesText::
- text "Hit @"
- TX_NUM wEnemyNumHits, 1, 1
- text " times!"
- prompt
-
-_GainedText::
- TX_RAM wcd6d
- text " gained"
- line "@@"
-
-_WithExpAllText::
- text "with EXP.ALL,"
- cont "@@"
-
-_BoostedText::
- text "a boosted"
- cont "@@"
-
-_ExpPointsText::
- TX_NUM wExpAmountGained, 2, 4
- text " EXP. Points!"
- prompt
-
-_GrewLevelText::
- TX_RAM wcd6d
- text " grew"
- line "to level @"
- TX_NUM wCurEnemyLVL, 1, 3
- text "!@@"
-
-_WildMonAppearedText::
- text "Wild @"
- TX_RAM wEnemyMonNick
- text ""
- line "appeared!"
- prompt
-
-_HookedMonAttackedText::
- text "The hooked"
- line "@"
- TX_RAM wEnemyMonNick
- text ""
- cont "attacked!"
- prompt
-
-_EnemyAppearedText::
- TX_RAM wEnemyMonNick
- text ""
- line "appeared!"
- prompt
-
-_TrainerWantsToFightText::
- TX_RAM wTrainerName
- text " wants"
- line "to fight!"
- prompt
-
-_UnveiledGhostText::
- text "SILPH SCOPE"
- line "unveiled the"
- cont "GHOST's identity!"
- prompt
-
-_GhostCantBeIDdText::
- text "Darn! The GHOST"
- line "can't be ID'd!"
- prompt
-
-_GoText::
- text "Go! @@"
-
-_DoItText::
- text "Do it! @@"
-
-_GetmText::
- text "Get'm! @@"
-
-_EnemysWeakText::
- text "The enemy's weak!"
- line "Get'm! @@"
-
-_PlayerMon1Text::
- TX_RAM wBattleMonNick
- text "!"
- done
-
-_PlayerMon2Text::
- TX_RAM wBattleMonNick
- text " @@"
-
-_EnoughText::
- text "enough!@@"
-
-_OKExclamationText::
- text "OK!@@"
-
-_GoodText::
- text "good!@@"
-
-_ComeBackText::
- text ""
- line "Come back!"
- done
-
-_SuperEffectiveText::
- text "It's super"
- line "effective!"
- prompt
-
-_NotVeryEffectiveText::
- text "It's not very"
- line "effective..."
- prompt
-
-_SafariZoneEatingText::
- text "Wild @"
- TX_RAM wEnemyMonNick
- text ""
- line "is eating!"
- prompt
-
-_SafariZoneAngryText::
- text "Wild @"
- TX_RAM wEnemyMonNick
- text ""
- line "is angry!"
- prompt
-
-; money related
-_PickUpPayDayMoneyText::
- text "<PLAYER> picked up"
- line "¥@"
- TX_BCD wTotalPayDayMoney, 3 | LEADING_ZEROES | LEFT_ALIGN
- text "!"
- prompt
-
-_ClearSaveDataText::
- text "Clear all saved"
- line "data?"
- done
-
-_WhichFloorText::
- text "Which floor do"
- line "you want? "
- done
-
-_PartyMenuNormalText::
- text "Choose a #MON."
- done
-
-_PartyMenuItemUseText::
- text "Use item on which"
- line "#MON?"
- done
-
-_PartyMenuBattleText::
- text "Bring out which"
- line "#MON?"
- done
-
-_PartyMenuUseTMText::
- text "Use TM on which"
- line "#MON?"
- done
-
-_PartyMenuSwapMonText::
- text "Move #MON"
- line "where?"
- done
-
-_PotionText::
- TX_RAM wcd6d
- text ""
- line "recovered by @"
- TX_NUM wHPBarHPDifference, 2, 3
- text "!"
- done
-
-_AntidoteText::
- TX_RAM wcd6d
- text " was"
- line "cured of poison!"
- done
-
-_ParlyzHealText::
- TX_RAM wcd6d
- text "'s"
- line "rid of paralysis!"
- done
-
-_BurnHealText::
- TX_RAM wcd6d
- text "'s"
- line "burn was healed!"
- done
-
-_IceHealText::
- TX_RAM wcd6d
- text " was"
- line "defrosted!"
- done
-
-_AwakeningText::
- TX_RAM wcd6d
- text ""
- line "woke up!"
- done
-
-_FullHealText::
- TX_RAM wcd6d
- text "'s"
- line "health returned!"
- done
-
-_ReviveText::
- TX_RAM wcd6d
- text ""
- line "is revitalized!"
- done
-
-_RareCandyText::
- TX_RAM wcd6d
- text " grew"
- line "to level @"
- TX_NUM wCurEnemyLVL, 1, 3
- text "!@@"
-
-_TurnedOnPC1Text::
- text "<PLAYER> turned on"
- line "the PC."
- prompt
-
-_AccessedBillsPCText::
- text "Accessed BILL's"
- line "PC."
-
- para "Accessed #MON"
- line "Storage System."
- prompt
-
-_AccessedSomeonesPCText::
- text "Accessed someone's"
- line "PC."
-
- para "Accessed #MON"
- line "Storage System."
- prompt
-
-_AccessedMyPCText::
- text "Accessed my PC."
-
- para "Accessed Item"
- line "Storage System."
- prompt
-
-_TurnedOnPC2Text::
- text "<PLAYER> turned on"
- line "the PC."
- prompt
-
-_WhatDoYouWantText::
- text "What do you want"
- line "to do?"
- done
-
-_WhatToDepositText::
- text "What do you want"
- line "to deposit?"
- done
-
-_DepositHowManyText::
- text "How many?"
- done
-
-_ItemWasStoredText::
- TX_RAM wcd6d
- text " was"
- line "stored via PC."
- prompt
-
-_NothingToDepositText::
- text "You have nothing"
- line "to deposit."
- prompt
-
-_NoRoomToStoreText::
- text "No room left to"
- line "store items."
- prompt
-
-_WhatToWithdrawText::
- text "What do you want"
- line "to withdraw?"
- done
-
-_WithdrawHowManyText::
- text "How many?"
- done
-
-_WithdrewItemText::
- text "Withdrew"
- line "@"
- TX_RAM wcd6d
- text "."
- prompt
-
-_NothingStoredText::
- text "There is nothing"
- line "stored."
- prompt
-
-_CantCarryMoreText::
- text "You can't carry"
- line "any more items."
- prompt
-
-_WhatToTossText::
- text "What do you want"
- line "to toss away?"
- done
-
-_TossHowManyText::
- text "How many?"
- done
-
-_AccessedHoFPCText::
- text "Accessed #MON"
- line "LEAGUE's site."
-
- para "Accessed the HALL"
- line "OF FAME List."
- prompt
-
-_SwitchOnText::
- text "Switch on!"
- prompt
-
-_WhatText::
- text "What?"
- done
-
-_DepositWhichMonText::
- text "Deposit which"
- line "#MON?"
- done
-
-_MonWasStoredText::
- TX_RAM wcf4b
- text " was"
- line "stored in Box @"
- TX_RAM wBoxNumString
- text "."
- prompt
-
-_CantDepositLastMonText::
- text "You can't deposit"
- line "the last #MON!"
- prompt
-
-_BoxFullText::
- text "Oops! This Box is"
- line "full of #MON."
- prompt
-
-_MonIsTakenOutText::
- TX_RAM wcf4b
- text " is"
- line "taken out."
- cont "Got @"
- TX_RAM wcf4b
- text "."
- prompt
-
-_NoMonText::
- text "What? There are"
- line "no #MON here!"
- prompt
-
-_CantTakeMonText::
- text "You can't take"
- line "any more #MON."
-
- para "Deposit #MON"
- line "first."
- prompt
-
-_ReleaseWhichMonText::
- text "Release which"
- line "#MON?"
- done
-
-_OnceReleasedText::
- text "Once released,"
- line "@"
- TX_RAM wcf4b
- text " is"
- cont "gone forever. OK?"
- done
-
-_MonWasReleasedText::
- TX_RAM wcf4b
- text " was"
- line "released outside."
- cont "Bye @"
-
-_CF4BExclamationText::
- TX_RAM wcf4b
- text "!"
- prompt
-
-_RequireCoinCaseText::
- text "A COIN CASE is"
- line "required!@@"
-
-_ExchangeCoinsForPrizesText::
- text "We exchange your"
- line "coins for prizes."
- prompt
-
-_WhichPrizeText::
- text "Which prize do"
- line "you want?"
- done
-
-_HereYouGoText::
- text "Here you go!@@"
-
-_SoYouWantPrizeText::
- text "So, you want"
- line "@"
- TX_RAM wcd6d
- text "?"
- done
-
-_SorryNeedMoreCoinsText::
- text "Sorry, you need"
- line "more coins.@@"
-
-_OopsYouDontHaveEnoughRoomText::
- text "Oops! You don't"
- line "have enough room.@@"
-
-_OhFineThenText::
- text "Oh, fine then.@@"
-
-_GetDexRatedText::
- text "Want to get your"
- line "#DEX rated?"
- done
-
-_ClosedOaksPCText::
- text "Closed link to"
- line "PROF.OAK's PC.@@"
-
-_AccessedOaksPCText::
- text "Accessed PROF."
- line "OAK's PC."
-
- para "Accessed #DEX"
- line "Rating System."
- prompt
-
-_WhereWouldYouLikeText::
- text "Where would you"
- line "like to go?"
- done
-
-_PleaseWaitText::
- text "OK, please wait"
- line "just a moment."
- done
-
-_LinkCanceledText::
- text "The link was"
- line "canceled."
- done
-
-INCLUDE "text/oakspeech.asm"
-
-_DoYouWantToNicknameText::
- text "Do you want to"
- line "give a nickname"
- cont "to @"
- TX_RAM wcd6d
- text "?"
- done
-
-_YourNameIsText::
- text "Right! So your"
- line "name is <PLAYER>!"
- prompt
-
-_HisNameIsText::
- text "That's right! I"
- line "remember now! His"
- cont "name is <RIVAL>!"
- prompt
-
-_WillBeTradedText::
- TX_RAM wNameOfPlayerMonToBeTraded
- text " and"
- line "@"
- TX_RAM wcd6d
- text " will"
- cont "be traded."
- done
-
-_Char00Text::
- TX_NUM hSpriteIndexOrTextID,1,2
- text " ERROR."
- done
-
-_Char55Text::
- text $4B,"@@"
-
-INCLUDE "text/maps/DiglettsCaveRoute2.asm"
-INCLUDE "text/maps/ViridianForestNorthGate.asm"
-INCLUDE "text/maps/Route2TradeHouse.asm"
-INCLUDE "text/maps/Route2Gate.asm"
-INCLUDE "text/maps/ViridianForestSouthGate.asm"
-INCLUDE "text/maps/MtMoonPokecenter.asm"
-INCLUDE "text/maps/SaffronGates.asm"
-INCLUDE "text/maps/Daycare.asm"
-
-
-SECTION "Text 4", ROMX
-
-INCLUDE "text/maps/Daycare_2.asm"
-INCLUDE "text/maps/UndergroundPathRoute6.asm"
-INCLUDE "text/maps/UndergroundPathRoute7.asm"
-INCLUDE "text/maps/UndergroundPathRoute7Copy.asm"
-INCLUDE "text/maps/UndergroundPathRoute8.asm"
-INCLUDE "text/maps/RockTunnelPokecenter.asm"
-INCLUDE "text/maps/RockTunnel1F.asm"
-INCLUDE "text/maps/PowerPlant.asm"
-INCLUDE "text/maps/Route11Gate1F.asm"
-INCLUDE "text/maps/Route11Gate2F.asm"
-INCLUDE "text/maps/DiglettsCaveRoute11.asm"
-INCLUDE "text/maps/Route12Gate1F.asm"
-INCLUDE "text/maps/Route12Gate2F.asm"
-INCLUDE "text/maps/Route12SuperRodHouse.asm"
-INCLUDE "text/maps/Route15Gate1F.asm"
-INCLUDE "text/maps/Route15Gate2F.asm"
-INCLUDE "text/maps/Route16Gate1F.asm"
-INCLUDE "text/maps/Route16Gate2F.asm"
-INCLUDE "text/maps/Route16FlyHouse.asm"
-INCLUDE "text/maps/Route18Gate1F.asm"
-INCLUDE "text/maps/Route18Gate2F.asm"
-INCLUDE "text/maps/Route22Gate.asm"
-INCLUDE "text/maps/VictoryRoad2F.asm"
-INCLUDE "text/maps/BillsHouse.asm"
-INCLUDE "text/maps/Route1.asm"
-INCLUDE "text/maps/Route2.asm"
-INCLUDE "text/maps/Route3.asm"
-INCLUDE "text/maps/Route4.asm"
-INCLUDE "text/maps/Route5.asm"
-INCLUDE "text/maps/Route6.asm"
-INCLUDE "text/maps/Route7.asm"
-INCLUDE "text/maps/Route8.asm"
-INCLUDE "text/maps/Route9.asm"
-INCLUDE "text/maps/Route10.asm"
-INCLUDE "text/maps/Route11.asm"
-
-
SECTION "Text 5", ROMX
-INCLUDE "text/maps/Route11_2.asm"
-INCLUDE "text/maps/Route12.asm"
-INCLUDE "text/maps/Route13.asm"
-INCLUDE "text/maps/Route14.asm"
-INCLUDE "text/maps/Route15.asm"
-INCLUDE "text/maps/Route16.asm"
-INCLUDE "text/maps/Route17.asm"
-INCLUDE "text/maps/Route18.asm"
-INCLUDE "text/maps/Route19.asm"
-INCLUDE "text/maps/Route20.asm"
-INCLUDE "text/maps/Route21.asm"
-INCLUDE "text/maps/Route22.asm"
-INCLUDE "text/maps/Route23.asm"
-INCLUDE "text/maps/Route24.asm"
+INCLUDE "text/Route11_2.asm"
+INCLUDE "text/Route12.asm"
+INCLUDE "text/Route13.asm"
+INCLUDE "text/Route14.asm"
+INCLUDE "text/Route15.asm"
+INCLUDE "text/Route16.asm"
+INCLUDE "text/Route17.asm"
+INCLUDE "text/Route18.asm"
+INCLUDE "text/Route19.asm"
+INCLUDE "text/Route20.asm"
+INCLUDE "text/Route21.asm"
+INCLUDE "text/Route22.asm"
+INCLUDE "text/Route23.asm"
+INCLUDE "text/Route24.asm"
SECTION "Text 6", ROMX
-INCLUDE "text/maps/Route24_2.asm"
-INCLUDE "text/maps/Route25.asm"
+INCLUDE "text/Route24_2.asm"
+INCLUDE "text/Route25.asm"
-_FileDataDestroyedText::
- text "The file data is"
- line "destroyed!"
- prompt
+INCLUDE "data/text/text_3.asm"
-_WouldYouLikeToSaveText::
- text "Would you like to"
- line "SAVE the game?"
- done
+INCLUDE "text/RedsHouse1F.asm"
+INCLUDE "text/BluesHouse.asm"
+INCLUDE "text/OaksLab.asm"
+INCLUDE "text/ViridianPokecenter.asm"
+INCLUDE "text/ViridianMart.asm"
+INCLUDE "text/ViridianSchoolHouse.asm"
+INCLUDE "text/ViridianNicknameHouse.asm"
+INCLUDE "text/ViridianGym.asm"
+INCLUDE "text/Museum1F.asm"
+INCLUDE "text/Museum2F.asm"
+INCLUDE "text/PewterGym.asm"
-_GameSavedText::
- text "<PLAYER> saved"
- line "the game!"
- done
-_OlderFileWillBeErasedText::
- text "The older file"
- line "will be erased to"
- cont "save. Okay?"
- done
-
-_WhenYouChangeBoxText::
- text "When you change a"
- line "#MON BOX, data"
- cont "will be saved."
-
- para "Is that okay?"
- done
-
-_ChooseABoxText::
- text "Choose a"
- line "<pkmn> BOX.@@"
-
-_EvolvedText::
- TX_RAM wcf4b
- text " evolved"
- done
-
-_IntoText::
- text ""
- line "into @"
- TX_RAM wcd6d
- text "!"
- done
-
-_StoppedEvolvingText::
- text "Huh? @"
- TX_RAM wcf4b
- text ""
- line "stopped evolving!"
- prompt
-
-_IsEvolvingText::
- text "What? @"
- TX_RAM wcf4b
- text ""
- line "is evolving!"
- done
-
-_FellAsleepText::
- text "<TARGET>"
- line "fell asleep!"
- prompt
-
-_AlreadyAsleepText::
- text "<TARGET>'s"
- line "already asleep!"
- prompt
-
-_PoisonedText::
- text "<TARGET>"
- line "was poisoned!"
- prompt
-
-_BadlyPoisonedText::
- text "<TARGET>'s"
- line "badly poisoned!"
- prompt
-
-_BurnedText::
- text "<TARGET>"
- line "was burned!"
- prompt
-
-_FrozenText::
- text "<TARGET>"
- line "was frozen solid!"
- prompt
-
-_FireDefrostedText::
- text "Fire defrosted"
- line "<TARGET>!"
- prompt
-
-_MonsStatsRoseText::
- text "<USER>'s"
- line "@"
- TX_RAM wcf4b
- text "@@"
-
-_GreatlyRoseText::
- text $4c, "greatly@@"
-
-_RoseText::
- text " rose!"
- prompt
-
-_MonsStatsFellText::
- text "<TARGET>'s"
- line "@"
- TX_RAM wcf4b
- text "@@"
-
-_GreatlyFellText::
- text $4c, "greatly@@"
-
-_FellText::
- text " fell!"
- prompt
-
-_RanFromBattleText::
- text "<USER>"
- line "ran from battle!"
- prompt
-
-_RanAwayScaredText::
- text "<TARGET>"
- line "ran away scared!"
- prompt
-
-_WasBlownAwayText::
- text "<TARGET>"
- line "was blown away!"
- prompt
-
-_ChargeMoveEffectText::
- text "<USER>@@"
-
-_MadeWhirlwindText::
- text ""
- line "made a whirlwind!"
- prompt
-
-_TookInSunlightText::
- text ""
- line "took in sunlight!"
- prompt
-
-_LoweredItsHeadText::
- text ""
- line "lowered its head!"
- prompt
-
-_SkyAttackGlowingText::
- text ""
- line "is glowing!"
- prompt
-
-_FlewUpHighText::
- text ""
- line "flew up high!"
- prompt
-
-_DugAHoleText::
- text ""
- line "dug a hole!"
- prompt
-
-_BecameConfusedText::
- text "<TARGET>"
- line "became confused!"
- prompt
-
-_MimicLearnedMoveText::
- text "<USER>"
- line "learned"
- cont "@"
- TX_RAM wcd6d
- text "!"
- prompt
-
-_MoveWasDisabledText::
- text "<TARGET>'s"
- line "@"
- TX_RAM wcd6d
- text " was"
- cont "disabled!"
- prompt
-
-_NothingHappenedText::
- text "Nothing happened!"
- prompt
-
-_NoEffectText::
- text "No effect!"
- prompt
-
-_ButItFailedText::
- text "But, it failed! "
- prompt
-
-_DidntAffectText::
- text "It didn't affect"
- line "<TARGET>!"
- prompt
-
-_IsUnaffectedText::
- text "<TARGET>"
- line "is unaffected!"
- prompt
-
-_ParalyzedMayNotAttackText::
- text "<TARGET>'s"
- line "paralyzed! It may"
- cont "not attack!"
- prompt
-
-_SubstituteText::
- text "It created a"
- line "SUBSTITUTE!"
- prompt
-
-_HasSubstituteText::
- text "<USER>"
- line "has a SUBSTITUTE!"
- prompt
-
-_TooWeakSubstituteText::
- text "Too weak to make"
- line "a SUBSTITUTE!"
- prompt
-
-_CoinsScatteredText::
- text "Coins scattered"
- line "everywhere!"
- prompt
-
-_GettingPumpedText::
- text "<USER>'s"
- line "getting pumped!"
- prompt
-
-_WasSeededText::
- text "<TARGET>"
- line "was seeded!"
- prompt
-
-_EvadedAttackText::
- text "<TARGET>"
- line "evaded attack!"
- prompt
-
-_HitWithRecoilText::
- text "<USER>'s"
- line "hit with recoil!"
- prompt
-
-_ConvertedTypeText::
- text "Converted type to"
- line "<TARGET>'s!"
- prompt
-
-_StatusChangesEliminatedText::
- text "All STATUS changes"
- line "are eliminated!"
- prompt
-
-_StartedSleepingEffect::
- text "<USER>"
- line "started sleeping!"
- done
-
-_FellAsleepBecameHealthyText::
- text "<USER>"
- line "fell asleep and"
- cont "became healthy!"
- done
-
-_RegainedHealthText::
- text "<USER>"
- line "regained health!"
- prompt
-
-_TransformedText::
- text "<USER>"
- line "transformed into"
- cont "@"
- TX_RAM wcd6d
- text "!"
- prompt
-
-_LightScreenProtectedText::
- text "<USER>'s"
- line "protected against"
- cont "special attacks!"
- prompt
-
-_ReflectGainedArmorText::
- text "<USER>"
- line "gained armor!"
- prompt
-
-_ShroudedInMistText::
- text "<USER>'s"
- line "shrouded in mist!"
- prompt
-
-_SuckedHealthText::
- text "Sucked health from"
- line "<TARGET>!"
- prompt
-
-_DreamWasEatenText::
- text "<TARGET>'s"
- line "dream was eaten!"
- prompt
-
-_TradeCenterText1::
- text "!"
- done
-
-_ColosseumText1::
- text "!"
- done
-
-INCLUDE "text/maps/RedsHouse1F.asm"
-INCLUDE "text/maps/BluesHouse.asm"
-INCLUDE "text/maps/OaksLab.asm"
-INCLUDE "text/maps/ViridianPokecenter.asm"
-INCLUDE "text/maps/ViridianMart.asm"
-INCLUDE "text/maps/ViridianSchoolHouse.asm"
-INCLUDE "text/maps/ViridianNicknameHouse.asm"
-INCLUDE "text/maps/ViridianGym.asm"
-INCLUDE "text/maps/Museum1F.asm"
-INCLUDE "text/maps/Museum2F.asm"
-INCLUDE "text/maps/PewterGym.asm"
-
-
SECTION "Text 7", ROMX
-INCLUDE "text/maps/PewterGym_2.asm"
-INCLUDE "text/maps/PewterNidoranHouse.asm"
-INCLUDE "text/maps/PewterMart.asm"
-INCLUDE "text/maps/PewterSpeechHouse.asm"
-INCLUDE "text/maps/PewterPokecenter.asm"
-INCLUDE "text/maps/CeruleanTrashedHouse.asm"
-INCLUDE "text/maps/CeruleanTradeHouse.asm"
-INCLUDE "text/maps/CeruleanPokecenter.asm"
-INCLUDE "text/maps/CeruleanGym.asm"
-INCLUDE "text/maps/BikeShop.asm"
-INCLUDE "text/maps/CeruleanMart.asm"
-INCLUDE "text/maps/CeruleanBadgeHouse.asm"
-INCLUDE "text/maps/LavenderPokecenter.asm"
-INCLUDE "text/maps/PokemonTower1F.asm"
-INCLUDE "text/maps/PokemonTower2F.asm"
-INCLUDE "text/maps/PokemonTower3F.asm"
-INCLUDE "text/maps/PokemonTower4F.asm"
-INCLUDE "text/maps/PokemonTower5F.asm"
-INCLUDE "text/maps/PokemonTower6F.asm"
-INCLUDE "text/maps/PokemonTower7F.asm"
-INCLUDE "text/maps/MrFujisHouse.asm"
-INCLUDE "text/maps/LavenderMart.asm"
-INCLUDE "text/maps/LavenderCuboneHouse.asm"
-INCLUDE "text/maps/NameRatersHouse.asm"
-INCLUDE "text/maps/VermilionPokecenter.asm"
-INCLUDE "text/maps/PokemonFanClub.asm"
-INCLUDE "text/maps/VermilionMart.asm"
-INCLUDE "text/maps/VermilionGym.asm"
+INCLUDE "text/PewterGym_2.asm"
+INCLUDE "text/PewterNidoranHouse.asm"
+INCLUDE "text/PewterMart.asm"
+INCLUDE "text/PewterSpeechHouse.asm"
+INCLUDE "text/PewterPokecenter.asm"
+INCLUDE "text/CeruleanTrashedHouse.asm"
+INCLUDE "text/CeruleanTradeHouse.asm"
+INCLUDE "text/CeruleanPokecenter.asm"
+INCLUDE "text/CeruleanGym.asm"
+INCLUDE "text/BikeShop.asm"
+INCLUDE "text/CeruleanMart.asm"
+INCLUDE "text/CeruleanBadgeHouse.asm"
+INCLUDE "text/LavenderPokecenter.asm"
+INCLUDE "text/PokemonTower1F.asm"
+INCLUDE "text/PokemonTower2F.asm"
+INCLUDE "text/PokemonTower3F.asm"
+INCLUDE "text/PokemonTower4F.asm"
+INCLUDE "text/PokemonTower5F.asm"
+INCLUDE "text/PokemonTower6F.asm"
+INCLUDE "text/PokemonTower7F.asm"
+INCLUDE "text/MrFujisHouse.asm"
+INCLUDE "text/LavenderMart.asm"
+INCLUDE "text/LavenderCuboneHouse.asm"
+INCLUDE "text/NameRatersHouse.asm"
+INCLUDE "text/VermilionPokecenter.asm"
+INCLUDE "text/PokemonFanClub.asm"
+INCLUDE "text/VermilionMart.asm"
+INCLUDE "text/VermilionGym.asm"
SECTION "Text 8", ROMX
-INCLUDE "text/maps/VermilionGym_2.asm"
-INCLUDE "text/maps/VermilionPidgeyHouse.asm"
-INCLUDE "text/maps/VermilionDock.asm"
-INCLUDE "text/maps/VermilionOldRodHouse.asm"
-INCLUDE "text/maps/CeladonMart1F.asm"
-INCLUDE "text/maps/CeladonMart2F.asm"
-INCLUDE "text/maps/CeladonMart3F.asm"
-INCLUDE "text/maps/CeladonMart4F.asm"
-INCLUDE "text/maps/CeladonMartRoof.asm"
-INCLUDE "text/maps/CeladonMansion1F.asm"
-INCLUDE "text/maps/CeladonMansion2F.asm"
-INCLUDE "text/maps/CeladonMansion3F.asm"
-INCLUDE "text/maps/CeladonMansionRoof.asm"
-INCLUDE "text/maps/CeladonMansionRoofHouse.asm"
-INCLUDE "text/maps/CeladonPokecenter.asm"
-INCLUDE "text/maps/CeladonGym.asm"
-INCLUDE "text/maps/GameCorner.asm"
-INCLUDE "text/maps/CeladonMart5F.asm"
-INCLUDE "text/maps/GameCornerPrizeRoom.asm"
-INCLUDE "text/maps/CeladonDiner.asm"
-INCLUDE "text/maps/CeladonChiefHouse.asm"
-INCLUDE "text/maps/CeladonHotel.asm"
-INCLUDE "text/maps/FuchsiaMart.asm"
-INCLUDE "text/maps/FuchsiaBillsGrandpasHouse.asm"
-INCLUDE "text/maps/FuchsiaPokecenter.asm"
-INCLUDE "text/maps/WardensHouse.asm"
-INCLUDE "text/maps/SafariZoneGate.asm"
-INCLUDE "text/maps/FuchsiaGym.asm"
+INCLUDE "text/VermilionGym_2.asm"
+INCLUDE "text/VermilionPidgeyHouse.asm"
+INCLUDE "text/VermilionDock.asm"
+INCLUDE "text/VermilionOldRodHouse.asm"
+INCLUDE "text/CeladonMart1F.asm"
+INCLUDE "text/CeladonMart2F.asm"
+INCLUDE "text/CeladonMart3F.asm"
+INCLUDE "text/CeladonMart4F.asm"
+INCLUDE "text/CeladonMartRoof.asm"
+INCLUDE "text/CeladonMansion1F.asm"
+INCLUDE "text/CeladonMansion2F.asm"
+INCLUDE "text/CeladonMansion3F.asm"
+INCLUDE "text/CeladonMansionRoof.asm"
+INCLUDE "text/CeladonMansionRoofHouse.asm"
+INCLUDE "text/CeladonPokecenter.asm"
+INCLUDE "text/CeladonGym.asm"
+INCLUDE "text/GameCorner.asm"
+INCLUDE "text/CeladonMart5F.asm"
+INCLUDE "text/GameCornerPrizeRoom.asm"
+INCLUDE "text/CeladonDiner.asm"
+INCLUDE "text/CeladonChiefHouse.asm"
+INCLUDE "text/CeladonHotel.asm"
+INCLUDE "text/FuchsiaMart.asm"
+INCLUDE "text/FuchsiaBillsGrandpasHouse.asm"
+INCLUDE "text/FuchsiaPokecenter.asm"
+INCLUDE "text/WardensHouse.asm"
+INCLUDE "text/SafariZoneGate.asm"
+INCLUDE "text/FuchsiaGym.asm"
SECTION "Text 9", ROMX
-INCLUDE "text/maps/FuchsiaGym_2.asm"
-INCLUDE "text/maps/FuchsiaMeetingRoom.asm"
-INCLUDE "text/maps/FuchsiaGoodRodHouse.asm"
-INCLUDE "text/maps/PokemonMansion1F.asm"
-INCLUDE "text/maps/CinnabarGym.asm"
-INCLUDE "text/maps/CinnabarLab.asm"
-INCLUDE "text/maps/CinnabarLabTradeRoom.asm"
-INCLUDE "text/maps/CinnabarLabMetronomeRoom.asm"
-INCLUDE "text/maps/CinnabarLabFossilRoom.asm"
-INCLUDE "text/maps/CinnabarPokecenter.asm"
-INCLUDE "text/maps/CinnabarMart.asm"
-INCLUDE "text/maps/IndigoPlateauLobby.asm"
-INCLUDE "text/maps/CopycatsHouse1F.asm"
-INCLUDE "text/maps/CopycatsHouse2F.asm"
-INCLUDE "text/maps/FightingDojo.asm"
-INCLUDE "text/maps/SaffronGym.asm"
-INCLUDE "text/maps/SaffronPidgeyHouse.asm"
-INCLUDE "text/maps/SaffronMart.asm"
-INCLUDE "text/maps/SilphCo1F.asm"
-INCLUDE "text/maps/SaffronPokecenter.asm"
-INCLUDE "text/maps/MrPsychicsHouse.asm"
+INCLUDE "text/FuchsiaGym_2.asm"
+INCLUDE "text/FuchsiaMeetingRoom.asm"
+INCLUDE "text/FuchsiaGoodRodHouse.asm"
+INCLUDE "text/PokemonMansion1F.asm"
+INCLUDE "text/CinnabarGym.asm"
+INCLUDE "text/CinnabarLab.asm"
+INCLUDE "text/CinnabarLabTradeRoom.asm"
+INCLUDE "text/CinnabarLabMetronomeRoom.asm"
+INCLUDE "text/CinnabarLabFossilRoom.asm"
+INCLUDE "text/CinnabarPokecenter.asm"
+INCLUDE "text/CinnabarMart.asm"
+INCLUDE "text/IndigoPlateauLobby.asm"
+INCLUDE "text/CopycatsHouse1F.asm"
+INCLUDE "text/CopycatsHouse2F.asm"
+INCLUDE "text/FightingDojo.asm"
+INCLUDE "text/SaffronGym.asm"
+INCLUDE "text/SaffronPidgeyHouse.asm"
+INCLUDE "text/SaffronMart.asm"
+INCLUDE "text/SilphCo1F.asm"
+INCLUDE "text/SaffronPokecenter.asm"
+INCLUDE "text/MrPsychicsHouse.asm"
-_PokemartGreetingText::
- text "Hi there!"
- next "May I help you?"
- done
+INCLUDE "data/text/text_4.asm"
-_PokemonFaintedText::
- TX_RAM wcd6d
- text ""
- line "fainted!"
- done
-_PlayerBlackedOutText::
- text "<PLAYER> is out of"
- line "useable #MON!"
-
- para "<PLAYER> blacked"
- line "out!"
- prompt
-
-_RepelWoreOffText::
- text "REPEL's effect"
- line "wore off."
- done
-
-_PokemartBuyingGreetingText::
- text "Take your time."
- done
-
-_PokemartTellBuyPriceText::
- TX_RAM wcf4b
- text "?"
- line "That will be"
- cont "¥@"
- TX_BCD hMoney, 3 | LEADING_ZEROES | LEFT_ALIGN
- text ". OK?"
- done
-
-_PokemartBoughtItemText::
- text "Here you are!"
- line "Thank you!"
- prompt
-
-_PokemartNotEnoughMoneyText::
- text "You don't have"
- line "enough money."
- prompt
-
-_PokemartItemBagFullText::
- text "You can't carry"
- line "any more items."
- prompt
-
-_PokemonSellingGreetingText::
- text "What would you"
- line "like to sell?"
- done
-
-_PokemartTellSellPriceText::
- text "I can pay you"
- line "¥@"
- TX_BCD hMoney, 3 | LEADING_ZEROES | LEFT_ALIGN
- text " for that."
- done
-
-_PokemartItemBagEmptyText::
- text "You don't have"
- line "anything to sell."
- prompt
-
-_PokemartUnsellableItemText::
- text "I can't put a"
- line "price on that."
- prompt
-
-_PokemartThankYouText::
- text "Thank you!"
- done
-
-_PokemartAnythingElseText::
- text "Is there anything"
- line "else I can do?"
- done
-
-_LearnedMove1Text::
- TX_RAM wLearnMoveMonName
- text " learned"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_WhichMoveToForgetText::
- text "Which move should"
- next "be forgotten?"
- done
-
-_AbandonLearningText::
- text "Abandon learning"
- line "@"
- TX_RAM wcf4b
- text "?"
- done
-
-_DidNotLearnText::
- TX_RAM wLearnMoveMonName
- text ""
- line "did not learn"
- cont "@"
- TX_RAM wcf4b
- text "!"
- prompt
-
-_TryingToLearnText::
- TX_RAM wLearnMoveMonName
- text " is"
- line "trying to learn"
- cont "@"
- TX_RAM wcf4b
- text "!"
-
- para "But, @"
- TX_RAM wLearnMoveMonName
- text ""
- line "can't learn more"
- cont "than 4 moves!"
-
- para "Delete an older"
- line "move to make room"
- cont "for @"
- TX_RAM wcf4b
- text "?"
- done
-
-_OneTwoAndText::
- text "1, 2 and...@@"
-
-_PoofText::
- text " Poof!@@"
-
-_ForgotAndText::
- text ""
- para "@"
- TX_RAM wLearnMoveMonName
- text " forgot"
- line "@"
- TX_RAM wcd6d
- text "!"
-
- para "And..."
- prompt
-
-_HMCantDeleteText::
- text "HM techniques"
- line "can't be deleted!"
- prompt
-
-_PokemonCenterWelcomeText::
- text "Welcome to our"
- line "#MON CENTER!"
-
- para "We heal your"
- line "#MON back to"
- cont "perfect health!"
- prompt
-
-_ShallWeHealYourPokemonText::
- text "Shall we heal your"
- line "#MON?"
- done
-
-_NeedYourPokemonText::
- text "OK. We'll need"
- line "your #MON."
- done
-
-_PokemonFightingFitText::
- text "Thank you!"
- line "Your #MON are"
- cont "fighting fit!"
- prompt
-
-_PokemonCenterFarewellText::
- text "We hope to see"
- line "you again!"
- done
-
-_CableClubNPCAreaReservedFor2FriendsLinkedByCableText::
- text "This area is"
- line "reserved for 2"
- cont "friends who are"
- cont "linked by cable."
- done
-
-_CableClubNPCWelcomeText::
- text "Welcome to the"
- line "Cable Club!"
- done
-
-_CableClubNPCPleaseApplyHereHaveToSaveText::
- text "Please apply here."
-
- para "Before opening"
- line "the link, we have"
- cont "to save the game."
- done
-
-_CableClubNPCPleaseWaitText::
- text "Please wait.@@"
-
-_CableClubNPCLinkClosedBecauseOfInactivityText::
- text "The link has been"
- line "closed because of"
- cont "inactivity."
-
- para "Please contact"
- line "your friend and"
- cont "come again!"
- done
-
-
SECTION "Text 10", ROMX
-_CableClubNPCPleaseComeAgainText::
- text "Please come again!"
- done
+INCLUDE "data/text/text_5.asm"
-_CableClubNPCMakingPreparationsText::
- text "We're making"
- line "preparations."
- cont "Please wait."
- done
+INCLUDE "text/PalletTown.asm"
+INCLUDE "text/ViridianCity.asm"
+INCLUDE "text/PewterCity.asm"
+INCLUDE "text/CeruleanCity.asm"
+INCLUDE "text/LavenderTown.asm"
+INCLUDE "text/VermilionCity.asm"
+INCLUDE "text/CeladonCity.asm"
+INCLUDE "text/FuchsiaCity.asm"
+INCLUDE "text/CinnabarIsland.asm"
+INCLUDE "text/SaffronCity.asm"
-_UsedStrengthText::
- TX_RAM wcd6d
- text " used"
- line "STRENGTH.@@"
+INCLUDE "data/text/text_6.asm"
-_CanMoveBouldersText::
- TX_RAM wcd6d
- text " can"
- line "move boulders."
- prompt
-_CurrentTooFastText::
- text "The current is"
- line "much too fast!"
- prompt
-
-_CyclingIsFunText::
- text "Cycling is fun!"
- line "Forget SURFing!"
- prompt
-
-_FlashLightsAreaText::
- text "A blinding FLASH"
- line "lights the area!"
- prompt
-
-_WarpToLastPokemonCenterText::
- text "Warp to the last"
- line "#MON CENTER."
- done
-
-_CannotUseTeleportNowText::
- TX_RAM wcd6d
- text " can't"
- line "use TELEPORT now."
- prompt
-
-_CannotFlyHereText::
- TX_RAM wcd6d
- text " can't"
- line "FLY here."
- prompt
-
-_NotHealthyEnoughText::
- text "Not healthy"
- line "enough."
- prompt
-
-_NewBadgeRequiredText::
- text "No! A new BADGE"
- line "is required."
- prompt
-
-_CannotUseItemsHereText::
- text "You can't use items"
- line "here."
- prompt
-
-_CannotGetOffHereText::
- text "You can't get off"
- line "here."
- prompt
-
-_GotMonText::
- text "<PLAYER> got"
- line "@"
- TX_RAM wcd6d
- text "!@@"
-
-_SentToBoxText::
- text "There's no more"
- line "room for #MON!"
- cont "@"
- TX_RAM wBoxMonNicks
- text " was"
- cont "sent to #MON"
- cont "BOX @"
- TX_RAM wcf4b
- text " on PC!"
- done
-
-_BoxIsFullText::
- text "There's no more"
- line "room for #MON!"
-
- para "The #MON BOX"
- line "is full and can't"
- cont "accept any more!"
-
- para "Change the BOX at"
- line "a #MON CENTER!"
- done
-
-INCLUDE "text/maps/PalletTown.asm"
-INCLUDE "text/maps/ViridianCity.asm"
-INCLUDE "text/maps/PewterCity.asm"
-INCLUDE "text/maps/CeruleanCity.asm"
-INCLUDE "text/maps/LavenderTown.asm"
-INCLUDE "text/maps/VermilionCity.asm"
-INCLUDE "text/maps/CeladonCity.asm"
-INCLUDE "text/maps/FuchsiaCity.asm"
-INCLUDE "text/maps/CinnabarIsland.asm"
-INCLUDE "text/maps/SaffronCity.asm"
-
-_ItemUseBallText00::
- text "It dodged the"
- line "thrown BALL!"
-
- para "This #MON"
- line "can't be caught!"
- prompt
-
-_ItemUseBallText01::
- text "You missed the"
- line "#MON!"
- prompt
-
-_ItemUseBallText02::
- text "Darn! The #MON"
- line "broke free!"
- prompt
-
-_ItemUseBallText03::
- text "Aww! It appeared"
- line "to be caught! "
- prompt
-
-_ItemUseBallText04::
- text "Shoot! It was so"
- line "close too!"
- prompt
-
-_ItemUseBallText05::
- text "All right!"
- line "@"
- TX_RAM wEnemyMonNick
- text " was"
- cont "caught!@@"
-
-_ItemUseBallText07::
- TX_RAM wBoxMonNicks
- text " was"
- line "transferred to"
- cont "BILL's PC!"
- prompt
-
-_ItemUseBallText08::
- TX_RAM wBoxMonNicks
- text " was"
- line "transferred to"
- cont "someone's PC!"
- prompt
-
-_ItemUseBallText06::
- text "New #DEX data"
- line "will be added for"
- cont "@"
- TX_RAM wEnemyMonNick
- text "!@@"
-
-_SurfingGotOnText::
- text "<PLAYER> got on"
- line "@"
- TX_RAM wcd6d
- text "!"
- prompt
-
-_SurfingNoPlaceToGetOffText::
- text "There's no place"
- line "to get off!"
- prompt
-
-_VitaminStatRoseText::
- TX_RAM wcd6d
- text "'s"
- line "@"
- TX_RAM wcf4b
- text " rose."
- prompt
-
-_VitaminNoEffectText::
- text "It won't have any"
- line "effect."
- prompt
-
-_ThrewBaitText::
- text "<PLAYER> threw"
- line "some BAIT."
- done
-
-_ThrewRockText::
- text "<PLAYER> threw a"
- line "ROCK."
- done
-
-_PlayedFluteNoEffectText::
- text "Played the #"
- line "FLUTE."
-
- para "Now, that's a"
- line "catchy tune!"
- prompt
-
-_FluteWokeUpText::
- text "All sleeping"
- line "#MON woke up."
- prompt
-
-_PlayedFluteHadEffectText::
- text "<PLAYER> played the"
- line "# FLUTE.@@"
-
-_CoinCaseNumCoinsText::
- text "Coins"
- line "@"
- TX_BCD wPlayerCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
- text " "
- prompt
-
-_ItemfinderFoundItemText::
- text "Yes! ITEMFINDER"
- line "indicates there's"
- cont "an item nearby."
- prompt
-
-_ItemfinderFoundNothingText::
- text "Nope! ITEMFINDER"
- line "isn't responding."
- prompt
-
-_RaisePPWhichTechniqueText::
- text "Raise PP of which"
- line "technique?"
- done
-
-_RestorePPWhichTechniqueText::
- text "Restore PP of"
- line "which technique?"
- done
-
-_PPMaxedOutText::
- TX_RAM wcf4b
- text "'s PP"
- line "is maxed out."
- prompt
-
-_PPIncreasedText::
- TX_RAM wcf4b
- text "'s PP"
- line "increased."
- prompt
-
-_PPRestoredText::
- text "PP was restored."
- prompt
-
-_BootedUpTMText::
- text "Booted up a TM!"
- prompt
-
-_BootedUpHMText::
- text "Booted up an HM!"
- prompt
-
-_TeachMachineMoveText::
- text "It contained"
- line "@"
- TX_RAM wcf4b
- text "!"
-
- para "Teach @"
- TX_RAM wcf4b
- text ""
- line "to a #MON?"
- done
-
-_MonCannotLearnMachineMoveText::
- TX_RAM wcd6d
- text " is not"
- line "compatible with"
- cont "@"
- TX_RAM wcf4b
- text "."
-
- para "It can't learn"
- line "@"
- TX_RAM wcf4b
- text "."
- prompt
-
-_ItemUseNotTimeText::
- text "OAK: <PLAYER>!"
- line "This isn't the"
- cont "time to use that! "
- prompt
-
-_ItemUseNotYoursToUseText::
- text "This isn't yours"
- line "to use!"
- prompt
-
-_ItemUseNoEffectText::
- text "It won't have any"
- line "effect."
- prompt
-
-_ThrowBallAtTrainerMonText1::
- text "The trainer"
- line "blocked the BALL!"
- prompt
-
-_ThrowBallAtTrainerMonText2::
- text "Don't be a thief!"
- prompt
-
-_NoCyclingAllowedHereText::
- text "No cycling"
- next "allowed here."
- prompt
-
-_NoSurfingHereText::
- text "No SURFing on"
- line "@"
- TX_RAM wcd6d
- text " here!"
- prompt
-
-_BoxFullCannotThrowBallText::
- text "The #MON BOX"
- line "is full! Can't"
- cont "use that item!"
- prompt
-
-
SECTION "Text 11", ROMX
-_ItemUseText001::
- text "<PLAYER> used@@"
+INCLUDE "data/text/text_7.asm"
-_ItemUseText002::
- TX_RAM wcf4b
- text "!"
- done
-_GotOnBicycleText1::
- text "<PLAYER> got on the@@"
-
-_GotOnBicycleText2::
- TX_RAM wcf4b
- text "!"
- prompt
-
-_GotOffBicycleText1::
- text "<PLAYER> got off@@"
-
-_GotOffBicycleText2::
- text "the @"
- TX_RAM wcf4b
- text "."
- prompt
-
-_ThrewAwayItemText::
- text "Threw away"
- line "@"
- TX_RAM wcd6d
- text "."
- prompt
-
-_IsItOKToTossItemText::
- text "Is it OK to toss"
- line "@"
- TX_RAM wcf4b
- text "?"
- prompt
-
-_TooImportantToTossText::
- text "That's too impor-"
- line "tant to toss!"
- prompt
-
-_AlreadyKnowsText::
- TX_RAM wcd6d
- text " knows"
- line "@"
- TX_RAM wcf4b
- text "!"
- prompt
-
-_ConnectCableText::
- text "Okay, connect the"
- line "cable like so!"
- prompt
-
-_TradedForText::
- text "<PLAYER> traded"
- line "@"
- TX_RAM wInGameTradeGiveMonName
- text " for"
- cont "@"
- TX_RAM wInGameTradeReceiveMonName
- text "!@@"
-
-_WannaTrade1Text::
- text "I'm looking for"
- line "@"
- TX_RAM wInGameTradeGiveMonName
- text "! Wanna"
-
- para "trade one for"
- line "@"
- TX_RAM wInGameTradeReceiveMonName
- text "? "
- done
-
-_NoTrade1Text::
- text "Awww!"
- line "Oh well..."
- done
-
-_WrongMon1Text::
- text "What? That's not"
- line "@"
- TX_RAM wInGameTradeGiveMonName
- text "!"
-
- para "If you get one,"
- line "come back here!"
- done
-
-_Thanks1Text::
- text "Hey thanks!"
- done
-
-_AfterTrade1Text::
- text "Isn't my old"
- line "@"
- TX_RAM wInGameTradeReceiveMonName
- text " great?"
- done
-
-_WannaTrade2Text::
- text "Hello there! Do"
- line "you want to trade"
-
- para "your @"
- TX_RAM wInGameTradeGiveMonName
- text ""
- line "for @"
- TX_RAM wInGameTradeReceiveMonName
- text "?"
- done
-
-_NoTrade2Text::
- text "Well, if you"
- line "don't want to..."
- done
-
-_WrongMon2Text::
- text "Hmmm? This isn't"
- line "@"
- TX_RAM wInGameTradeGiveMonName
- text "."
-
- para "Think of me when"
- line "you get one."
- done
-
-_Thanks2Text::
- text "Thanks!"
- done
-
-_AfterTrade2Text::
- text "The @"
- TX_RAM wInGameTradeGiveMonName
- text " you"
- line "traded to me"
-
- para "went and evolved!"
- done
-
-_WannaTrade3Text::
- text "Hi! Do you have"
- line "@"
- TX_RAM wInGameTradeGiveMonName
- text "?"
-
- para "Want to trade it"
- line "for @"
- TX_RAM wInGameTradeReceiveMonName
- text "?"
- done
-
-_NoTrade3Text::
- text "That's too bad."
- done
-
-_WrongMon3Text::
- text "...This is no"
- line "@"
- TX_RAM wInGameTradeGiveMonName
- text "."
-
- para "If you get one,"
- line "trade it with me!"
- done
-
-_Thanks3Text::
- text "Thanks pal!"
- done
-
-_AfterTrade3Text::
- text "How is my old"
- line "@"
- TX_RAM wInGameTradeReceiveMonName
- text "?"
-
- para "My @"
- TX_RAM wInGameTradeGiveMonName
- text " is"
- line "doing great!"
- done
-
-_NothingToCutText::
- text "There isn't"
- line "anything to CUT!"
- prompt
-
-_UsedCutText::
- TX_RAM wcd6d
- text " hacked"
- line "away with CUT!"
- prompt
-
-
SECTION "Pokedex Text", ROMX
-INCLUDE "text/pokedex.asm"
+INCLUDE "data/pokemon/dex_text.asm"
SECTION "Move Names", ROMX
-INCLUDE "text/move_names.asm"
+INCLUDE "data/moves/names.asm"
--- /dev/null
+++ b/text/AgathasRoom.asm
@@ -1,0 +1,44 @@
+_AgathaBeforeBattleText::
+ text "I am AGATHA of"
+ line "the ELITE FOUR!"
+
+ para "OAK's taken a lot"
+ line "of interest in"
+ cont "you, child!"
+
+ para "That old duff was"
+ line "once tough and"
+ cont "handsome! That"
+ cont "was decades ago!"
+
+ para "Now he just wants"
+ line "to fiddle with"
+ cont "his #DEX! He's"
+ cont "wrong! #MON"
+ cont "are for fighting!"
+
+ para "<PLAYER>! I'll show"
+ line "you how a real"
+ cont "trainer fights!"
+ done
+
+_AgathaEndBattleText::
+ text "Oh ho!"
+ line "You're something"
+ cont "special, child!"
+ prompt
+
+_AgathaAfterBattleText::
+ text "You win! I see"
+ line "what the old duff"
+ cont "sees in you now!"
+
+ para "I have nothing"
+ line "else to say! Run"
+ cont "along now, child!"
+ done
+
+_AgathaDontRunAwayText::
+ text "Someone's voice:"
+ line "Don't run away!"
+ done
--- /dev/null
+++ b/text/BikeShop.asm
@@ -1,0 +1,70 @@
+_BikeShopText_1d810::
+ text "Hi! Welcome to"
+ line "our BIKE SHOP."
+
+ para "Have we got just"
+ line "the BIKE for you!"
+ prompt
+
+_BikeShopText_1d815::
+ text "It's a cool BIKE!"
+ line "Do you want it?"
+ done
+
+_BikeShopCantAffordText::
+ text "Sorry! You can't"
+ line "afford it!"
+ prompt
+
+_BikeShopText_1d81f::
+ text "Oh, that's..."
+
+ para "A BIKE VOUCHER!"
+
+ para "OK! Here you go!"
+ prompt
+
+_BikeShopText_1d824::
+ text "<PLAYER> exchanged"
+ line "the BIKE VOUCHER"
+ cont "for a BICYCLE.@@"
+
+_BikeShopComeAgainText::
+ text "Come back again"
+ line "some time!"
+ done
+
+_BikeShopText_1d82f::
+ text "How do you like"
+ line "your new BICYCLE?"
+
+ para "You can take it"
+ line "on CYCLING ROAD"
+ cont "and in caves!"
+ done
+
+_BikeShopText_1d834::
+ text "You better make"
+ line "room for this!"
+ done
+
+_BikeShopText_1d843::
+ text "A plain city BIKE"
+ line "is good enough"
+ cont "for me!"
+
+ para "You can't put a"
+ line "shopping basket"
+ cont "on an MTB!"
+ done
+
+_BikeShopText_1d85c::
+ text "These BIKEs are"
+ line "cool, but they're"
+ cont "way expensive!"
+ done
+
+_BikeShopText_1d861::
+ text "Wow. Your BIKE is"
+ line "really cool!"
+ done
--- /dev/null
+++ b/text/BillsHouse.asm
@@ -1,0 +1,87 @@
+_BillsHouseText_1e865::
+ text "Hiya! I'm a"
+ line "#MON..."
+ cont "...No I'm not!"
+
+ para "Call me BILL!"
+ line "I'm a true blue"
+ cont "#MANIAC! Hey!"
+ cont "What's with that"
+ cont "skeptical look?"
+
+ para "I'm not joshing"
+ line "you, I screwed up"
+ cont "an experiment and"
+ cont "got combined with"
+ cont "a #MON!"
+
+ para "So, how about it?"
+ line "Help me out here!"
+ done
+
+_BillsHouseText_1e86a::
+ text "When I'm in the"
+ line "TELEPORTER, go to"
+ cont "my PC and run the"
+ cont "Cell Separation"
+ cont "System!"
+ done
+
+_BillsHouseText_1e86f::
+ text "No!? Come on, you"
+ line "gotta help a guy"
+ cont "in deep trouble!"
+
+ para "What do you say,"
+ line "chief? Please?"
+ cont "OK? All right!"
+ prompt
+
+_BillThankYouText::
+ text "BILL: Yeehah!"
+ line "Thanks, bud! I"
+ cont "owe you one!"
+
+ para "So, did you come"
+ line "to see my #MON"
+ cont "collection?"
+ cont "You didn't?"
+ cont "That's a bummer."
+
+ para "I've got to thank"
+ line "you... Oh here,"
+ cont "maybe this'll do."
+ prompt
+
+_SSTicketReceivedText::
+ text "<PLAYER> received"
+ line "an @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_SSTicketNoRoomText::
+ text "You've got too"
+ line "much stuff, bud!"
+ done
+
+_BillsHouseText_1e8cb::
+ text "That cruise ship,"
+ line "S.S.ANNE, is in"
+ cont "VERMILION CITY."
+ cont "Its passengers"
+ cont "are all trainers!"
+
+ para "They invited me"
+ line "to their party,"
+ cont "but I can't stand"
+ cont "fancy do's. Why"
+ cont "don't you go"
+ cont "instead of me?"
+ done
+
+_BillsHouseText_1e8da::
+ text "BILL: Look, bud,"
+ line "just check out"
+ cont "some of my rare"
+ cont "#MON on my PC!"
+ done
--- /dev/null
+++ b/text/BluesHouse.asm
@@ -1,0 +1,41 @@
+_DaisyInitialText::
+ text "Hi <PLAYER>!"
+ line "<RIVAL> is out at"
+ cont "Grandpa's lab."
+ done
+
+_DaisyOfferMapText::
+ text "Grandpa asked you"
+ line "to run an errand?"
+ cont "Here, this will"
+ cont "help you!"
+ prompt
+
+_GotMapText::
+ text "<PLAYER> got a"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_DaisyBagFullText::
+ text "You have too much"
+ line "stuff with you."
+ done
+
+_DaisyUseMapText::
+ text "Use the TOWN MAP"
+ line "to find out where"
+ cont "you are."
+ done
+
+_BluesHouseText2::
+ text "#MON are living"
+ line "things! If they"
+ cont "get tired, give"
+ cont "them a rest!"
+ done
+
+_BluesHouseText3::
+ text "It's a big map!"
+ line "This is useful!"
+ done
--- /dev/null
+++ b/text/BrunosRoom.asm
@@ -1,0 +1,37 @@
+_BrunoBeforeBattleText::
+ text "I am BRUNO of"
+ line "the ELITE FOUR!"
+
+ para "Through rigorous"
+ line "training, people"
+ cont "and #MON can"
+ cont "become stronger!"
+
+ para "I've weight"
+ line "trained with"
+ cont "my #MON!"
+
+ para "<PLAYER>!"
+
+ para "We will grind you"
+ line "down with our"
+ cont "superior power!"
+
+ para "Hoo hah!"
+ done
+
+_BrunoEndBattleText::
+ text "Why?"
+ line "How could I lose?"
+ prompt
+
+_BrunoAfterBattleText::
+ text "My job is done!"
+ line "Go face your next"
+ cont "challenge!"
+ done
+
+_BrunoDontRunAwayText::
+ text "Someone's voice:"
+ line "Don't run away!"
+ done
--- /dev/null
+++ b/text/CeladonChiefHouse.asm
@@ -1,0 +1,22 @@
+_CeladonHouseText1::
+ text "Hehehe! The slots"
+ line "just reel in the"
+ cont "dough, big time!"
+ done
+
+_CeladonHouseText2::
+ text "CHIEF!"
+
+ para "We just shipped"
+ line "2000 #MON as"
+ cont "slot prizes!"
+ done
+
+_CeladonHouseText3::
+ text "Don't touch the"
+ line "poster at the"
+ cont "GAME CORNER!"
+
+ para "There's no secret"
+ line "switch behind it!"
+ done
--- /dev/null
+++ b/text/CeladonCity.asm
@@ -1,0 +1,152 @@
+_CeladonCityText1::
+ text "I got my KOFFING"
+ line "in CINNABAR!"
+
+ para "It's nice, but it"
+ line "breathes poison"
+ cont "when it's angry!"
+ done
+
+_CeladonCityText2::
+ text "Heheh! This GYM"
+ line "is great! It's"
+ cont "full of women!"
+ done
+
+_CeladonCityText3::
+ text "The GAME CORNER"
+ line "is bad for our"
+ cont "city's image!"
+ done
+
+_CeladonCityText4::
+ text "Moan! I blew it"
+ line "all at the slots!"
+
+ para "I knew I should"
+ line "have cashed in my"
+ cont "coins for prizes!"
+ done
+
+_TM41PreText::
+ text "Hello, there!"
+
+ para "I've seen you,"
+ line "but I never had a"
+ cont "chance to talk!"
+
+ para "Here's a gift for"
+ line "dropping by!"
+ prompt
+
+_ReceivedTM41Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM41ExplanationText::
+ text "TM41 teaches"
+ line "SOFTBOILED!"
+
+ para "Only one #MON"
+ line "can use it!"
+
+ para "That #MON is"
+ line "CHANSEY!"
+ done
+
+_TM41NoRoomText::
+ text "Oh, your pack is"
+ line "full of items!"
+ done
+
+_CeladonCityText6::
+ text "This is my trusted"
+ line "pal, POLIWRATH!"
+
+ para "It evolved from"
+ line "POLIWHIRL when I"
+ cont "used WATER STONE!"
+ done
+
+_CeladonCityText7::
+ text "POLIWRATH: Ribi"
+ line "ribit!@@"
+
+_CeladonCityText8::
+ text "What are you"
+ line "staring at?"
+ done
+
+_CeladonCityText9::
+ text "Keep out of TEAM"
+ line "ROCKET's way!"
+ done
+
+_CeladonCityText10::
+ text "TRAINER TIPS"
+
+ para "X ACCURACY boosts"
+ line "the accuracy of"
+ cont "techniques!"
+
+ para "DIRE HIT jacks up"
+ line "the likelihood of"
+ cont "critical hits!"
+
+ para "Get your items at"
+ line "CELADON DEPT."
+ cont "STORE!"
+ done
+
+_CeladonCityText11::
+ text "CELADON CITY"
+ line "The City of"
+ cont "Rainbow Dreams"
+ done
+
+_CeladonCityText13::
+ text "CELADON CITY"
+ line "#MON GYM"
+ cont "LEADER: ERIKA"
+
+ para "The Nature Loving"
+ line "Princess!"
+ done
+
+_CeladonCityText14::
+ text "CELADON MANSION"
+ done
+
+_CeladonCityText15::
+ text "Find what you"
+ line "need at CELADON"
+ cont "DEPT. STORE!"
+ done
+
+_CeladonCityText16::
+ text "TRAINER TIPS"
+
+ para "GUARD SPEC."
+ line "protects #MON"
+ cont "against SPECIAL"
+ cont "attacks such as"
+ cont "fire and water!"
+
+ para "Get your items at"
+ line "CELADON DEPT."
+ cont "STORE!"
+ done
+
+_CeladonCityText17::
+ text "Coins exchanged"
+ line "for prizes!"
+ cont "PRIZE EXCHANGE"
+ done
+
+_CeladonCityText18::
+ text "ROCKET GAME CORNER"
+ line "The playground"
+ cont "for grown-ups!"
+ done
--- /dev/null
+++ b/text/CeladonDiner.asm
@@ -1,0 +1,59 @@
+_CeladonDinerText1::
+ text "Hi!"
+
+ para "We're taking a"
+ line "break now."
+ done
+
+_CeladonDinerText2::
+ text "My #MON are"
+ line "weak, so I often"
+ cont "have to go to the"
+ cont "DRUG STORE."
+ done
+
+_CeladonDinerText3::
+ text "Psst! There's a"
+ line "basement under"
+ cont "the GAME CORNER."
+ done
+
+_CeladonDinerText4::
+ text "Munch..."
+
+ para "The man at that"
+ line "table lost it all"
+ cont "at the slots."
+ done
+
+_CeladonDinerText_491a7::
+ text "Go ahead! Laugh!"
+
+ para "I'm flat out"
+ line "busted!"
+
+ para "No more slots for"
+ line "me! I'm going"
+ cont "straight!"
+
+ para "Here! I won't be"
+ line "needing this any-"
+ cont "more!"
+ prompt
+
+_ReceivedCoinCaseText::
+ text "<PLAYER> received"
+ line "a @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_CoinCaseNoRoomText::
+ text "Make room for"
+ line "this!"
+ done
+
+_CeladonDinerText_491b7::
+ text "I always thought"
+ line "I was going to"
+ cont "win it back..."
+ done
--- /dev/null
+++ b/text/CeladonGym.asm
@@ -1,0 +1,219 @@
+_CeladonGymText_48a5e::
+ text "Hello. Lovely"
+ line "weather isn't it?"
+ cont "It's so pleasant."
+
+ para "...Oh dear..."
+ line "I must have dozed"
+ cont "off. Welcome."
+
+ para "My name is ERIKA."
+ line "I am the LEADER"
+ cont "of CELADON GYM."
+
+ para "I teach the art of"
+ line "flower arranging."
+ cont "My #MON are of"
+ cont "the grass-type."
+
+ para "Oh, I'm sorry, I"
+ line "had no idea that"
+ cont "you wished to"
+ cont "challenge me."
+
+ para "Very well, but I"
+ line "shall not lose."
+ done
+
+_CeladonGymText_48a63::
+ text "Oh!"
+ line "I concede defeat."
+
+ para "You are remarkably"
+ line "strong."
+
+ para "I must confer you"
+ line "the RAINBOWBADGE."
+ prompt
+
+_CeladonGymText_48a68::
+ text "You are cataloging"
+ line "#MON? I must"
+ cont "say I'm impressed."
+
+ para "I would never"
+ line "collect #MON"
+ cont "if they were"
+ cont "unattractive."
+ done
+
+_CeladonGymText9::
+ text "The RAINBOWBADGE"
+ line "will make #MON"
+ cont "up to L50 obey."
+
+ para "It also allows"
+ line "#MON to use"
+ cont "STRENGTH in and"
+ cont "out of battle."
+
+ para "Please also take"
+ line "this with you."
+ done
+
+_ReceivedTM21Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM21ExplanationText::
+ text ""
+
+ para "TM21 contains"
+ line "MEGA DRAIN."
+
+ para "Half the damage"
+ line "it inflicts is"
+ cont "drained to heal"
+ cont "your #MON!"
+ done
+
+_TM21NoRoomText::
+ text "You should make"
+ line "room for this."
+ done
+
+_CeladonGymBattleText2::
+ text "Hey!"
+
+ para "You are not"
+ line "allowed in here!"
+ done
+
+_CeladonGymEndBattleText2::
+ text "You're"
+ line "too rough!"
+ prompt
+
+_CeladonGymAfterBattleText2::
+ text "Bleaah!"
+ line "I hope ERIKA"
+ cont "wipes you out!"
+ done
+
+_CeladonGymBattleText3::
+ text "I was getting"
+ line "bored."
+ done
+
+_CeladonGymEndBattleText3::
+ text "My"
+ line "makeup!"
+ prompt
+
+_CeladonGymAfterBattleText3::
+ text "Grass-type #MON"
+ line "are tough against"
+ cont "the water-type!"
+
+ para "They also have an"
+ line "edge on rock and"
+ cont "ground #MON!"
+ done
+
+_CeladonGymBattleText4::
+ text "Aren't you the"
+ line "peeping Tom?"
+ done
+
+_CeladonGymEndBattleText4::
+ text "I'm"
+ line "in shock!"
+ prompt
+
+_CeladonGymAfterBattleText4::
+ text "Oh, you weren't"
+ line "peeping? We get a"
+ cont "lot of gawkers!"
+ done
+
+_CeladonGymBattleText5::
+ text "Look at my grass"
+ line "#MON!"
+
+ para "They're so easy"
+ line "to raise!"
+ done
+
+_CeladonGymEndBattleText5::
+ text "No!"
+ prompt
+
+_CeladonGymAfterBattleText5::
+ text "We only use grass-"
+ line "type #MON at"
+ cont "our GYM!"
+
+ para "We also use them"
+ line "for making flower"
+ cont "arrangements!"
+ done
+
+_CeladonGymBattleText6::
+ text "Don't bring any"
+ line "bugs or fire"
+ cont "#MON in here!"
+ done
+
+_CeladonGymEndBattleText6::
+ text "Oh!"
+ line "You!"
+ prompt
+
+_CeladonGymAfterBattleText6::
+ text "Our LEADER, ERIKA,"
+ line "might be quiet,"
+ cont "but she's also"
+ cont "very skilled!"
+ done
+
+_CeladonGymBattleText7::
+ text "Pleased to meet"
+ line "you. My hobby is"
+ cont "#MON training."
+ done
+
+_CeladonGymEndBattleText7::
+ text "Oh!"
+ line "Splendid!"
+ prompt
+
+_CeladonGymAfterBattleText7::
+ text "I have a blind"
+ line "date coming up."
+ cont "I have to learn"
+ cont "to be polite."
+ done
+
+_CeladonGymBattleText8::
+ text "Welcome to"
+ line "CELADON GYM!"
+
+ para "You better not"
+ line "underestimate"
+ cont "girl power!"
+ done
+
+_CeladonGymEndBattleText8::
+ text "Oh!"
+ line "Beaten!"
+ prompt
+
+_CeladonGymAfterBattleText8::
+ text "I didn't bring my"
+ line "best #MON!"
+
+ para "Wait 'til next"
+ line "time!"
+ done
--- /dev/null
+++ b/text/CeladonHotel.asm
@@ -1,0 +1,21 @@
+_CeladonHotelText1::
+ text "#MON? No, this"
+ line "is a hotel for"
+ cont "people."
+
+ para "We're full up."
+ done
+
+_CeladonHotelText2::
+ text "I'm on vacation"
+ line "with my brother"
+ cont "and boy friend."
+
+ para "CELADON is such a"
+ line "pretty city!"
+ done
+
+_CeladonHotelText3::
+ text "Why did she bring"
+ line "her brother?"
+ done
--- /dev/null
+++ b/text/CeladonMansion1F.asm
@@ -1,0 +1,23 @@
+_CeladonMansion1Text1::
+ text "MEOWTH: Meow!@@"
+
+_CeladonMansion1Text2::
+ text "My dear #MON"
+ line "keep me company."
+
+ para "MEOWTH even brings"
+ line "money home!"
+ done
+
+_CeladonMansion1Text3::
+ text "CLEFAIRY: Pi"
+ line "pippippi!@@"
+
+_CeladonMansion1Text4::
+ text "NIDORAN: Kya"
+ line "kyaoo!@@"
+
+_CeladonMansion1Text5::
+ text "CELADON MANSION"
+ line "Manager's Suite"
+ done
--- /dev/null
+++ b/text/CeladonMansion2F.asm
@@ -1,0 +1,4 @@
+_CeladonMansion2Text1::
+ text "GAME FREAK"
+ line "Meeting Room"
+ done
--- /dev/null
+++ b/text/CeladonMansion3F.asm
@@ -1,0 +1,66 @@
+_ProgrammerText::
+ text "Me? I'm the"
+ line "programmer!"
+ done
+
+_GraphicArtistText::
+ text "I'm the graphic"
+ line "artist!"
+ cont "I drew you!"
+ done
+
+_WriterText::
+ text "I wrote the story!"
+ line "Isn't ERIKA cute?"
+
+ para "I like MISTY a"
+ line "lot too!"
+
+ para "Oh, and SABRINA,"
+ line "I like her!"
+ done
+
+_GameDesignerText::
+ text "Is that right?"
+
+ para "I'm the game"
+ line "designer!"
+
+ para "Filling up your"
+ line "#DEX is tough,"
+ cont "but don't quit!"
+
+ para "When you finish,"
+ line "come tell me!"
+ done
+
+_CompletedDexText::
+ text "Wow! Excellent!"
+ line "You completed"
+ cont "your #DEX!"
+ cont "Congratulations!"
+ cont "...@@"
+
+_CeladonMansion3Text5::
+ text "It's the game"
+ line "program! Messing"
+ cont "with it could bug"
+ cont "out the game!"
+ done
+
+_CeladonMansion3Text6::
+ text "Someone's playing"
+ line "a game instead of"
+ cont "working!"
+ done
+
+_CeladonMansion3Text7::
+ text "It's the script!"
+ line "Better not look"
+ cont "at the ending!"
+ done
+
+_CeladonMansion3Text8::
+ text "GAME FREAK"
+ line "Development Room"
+ done
--- /dev/null
+++ b/text/CeladonMansionRoof.asm
@@ -1,0 +1,3 @@
+_CeladonMansion4Text1::
+ text "I KNOW EVERYTHING!"
+ done
--- /dev/null
+++ b/text/CeladonMansionRoofHouse.asm
@@ -1,0 +1,10 @@
+_CeladonMansion5Text1::
+ text "I know everything"
+ line "about the world"
+ cont "of #MON in"
+ cont "your GAME BOY!"
+
+ para "Get together with"
+ line "your friends and"
+ cont "trade #MON!"
+ done
--- /dev/null
+++ b/text/CeladonMart1F.asm
@@ -1,0 +1,31 @@
+_CeladonMart1Text1::
+ text "Hello! Welcome to"
+ line "CELADON DEPT."
+ cont "STORE."
+
+ para "The board on the"
+ line "right describes"
+ cont "the store layout."
+ done
+
+_CeladonMart1Text2::
+ text "1F: SERVICE"
+ line " COUNTER"
+
+ para "2F: TRAINER'S"
+ line " MARKET"
+
+ para "3F: TV GAME SHOP"
+
+ para "4F: WISEMAN GIFTS"
+
+ para "5F: DRUG STORE"
+
+ para "ROOFTOP SQUARE:"
+ line "VENDING MACHINES"
+ done
+
+_CeladonMart1Text3::
+ text "1F: SERVICE"
+ line " COUNTER"
+ done
--- /dev/null
+++ b/text/CeladonMart2F.asm
@@ -1,0 +1,22 @@
+_CeladonMart2Text3::
+ text "SUPER REPEL keeps"
+ line "weak #MON at"
+ cont "bay..."
+
+ para "Hmm, it's a more"
+ line "powerful REPEL!"
+ done
+
+_CeladonMart2Text4::
+ text "For long outings,"
+ line "you should buy"
+ cont "REVIVE."
+ done
+
+_CeladonMart2Text5::
+ text "Top Grade Items"
+ line "for Trainers!"
+
+ para "2F: TRAINER'S"
+ line " MARKET"
+ done
--- /dev/null
+++ b/text/CeladonMart3F.asm
@@ -1,0 +1,98 @@
+_TM18PreReceiveText::
+ text "Oh, hi! I finally"
+ line "finished #MON!"
+
+ para "Not done yet?"
+ line "This might be"
+ cont "useful!"
+ prompt
+
+_ReceivedTM18Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM18ExplanationText::
+ text "TM18 is COUNTER!"
+ line "Not like the one"
+ cont "I'm leaning on,"
+ cont "mind you!"
+ done
+
+_TM18NoRoomText::
+ text "Your pack is full"
+ line "of items!"
+ done
+
+_CeladonMart3Text2::
+ text "Captured #MON"
+ line "are registered"
+ cont "with an ID No."
+ cont "and OT, the name"
+ cont "of the Original"
+ cont "Trainer that"
+ cont "caught it!"
+ done
+
+_CeladonMart3Text3::
+ text "All right!"
+
+ para "My buddy's going"
+ line "to trade me his"
+ cont "KANGASKHAN for my"
+ cont "GRAVELER!"
+ done
+
+_CeladonMart3Text4::
+ text "Come on GRAVELER!"
+
+ para "I love GRAVELER!"
+ line "I collect them!"
+
+ para "Huh?"
+
+ para "GRAVELER turned"
+ line "into a different"
+ cont "#MON!"
+ done
+
+_CeladonMart3Text5::
+ text "You can identify"
+ line "#MON you got"
+ cont "in trades by"
+ cont "their ID Numbers!"
+ done
+
+_CeladonMart3Text6::
+ text "It's an SNES!"
+ done
+
+_CeladonMart3Text7::
+ text "An RPG! There's"
+ line "no time for that!"
+ done
+
+_CeladonMart3Text9::
+ text "A sports game!"
+ line "Dad'll like that!"
+ done
+
+_CeladonMart3Text11::
+ text "A puzzle game!"
+ line "Looks addictive!"
+ done
+
+_CeladonMart3Text13::
+ text "A fighting game!"
+ line "Looks tough!"
+ done
+
+_CeladonMart3Text14::
+ text "3F: TV GAME SHOP"
+ done
+
+_CeladonMart3Text15::
+ text "Red and Blue!"
+ line "Both are #MON!"
+ done
--- /dev/null
+++ b/text/CeladonMart4F.asm
@@ -1,0 +1,26 @@
+_CeladonMart4Text2::
+ text "I'm getting a"
+ line "# DOLL for my"
+ cont "girl friend!"
+ done
+
+_CeladonMart4Text3::
+ text "I heard something"
+ line "useful."
+
+ para "You can run from"
+ line "wild #MON by"
+ cont "distracting them"
+ cont "with a # DOLL!"
+ done
+
+_CeladonMart4Text4::
+ text "Express yourself"
+ line "with gifts!"
+
+ para "4F: WISEMAN GIFTS"
+
+ para "Evolution Special!"
+ line "Element STONEs on"
+ cont "sale now!"
+ done
--- /dev/null
+++ b/text/CeladonMart5F.asm
@@ -1,0 +1,28 @@
+_CeladonMart5Text1::
+ text "#MON ability"
+ line "enhancers can be"
+ cont "bought only here."
+
+ para "Use CALCIUM to"
+ line "increase SPECIAL"
+ cont "abilities."
+
+ para "Use CARBOS to"
+ line "increase SPEED."
+ done
+
+_CeladonMart5Text2::
+ text "I'm here for"
+ line "#MON ability"
+ cont "enhancers."
+
+ para "PROTEIN increases"
+ line "ATTACK power."
+
+ para "IRON increases"
+ line "DEFENSE!"
+ done
+
+_CeladonMart5Text5::
+ text "5F: DRUG STORE"
+ done
--- /dev/null
+++ b/text/CeladonMartRoof.asm
@@ -1,0 +1,141 @@
+_CeladonMartRoofText_484ee::
+ text "Give her which"
+ line "drink?"
+ done
+
+_CeladonMartRoofText_484f3::
+ text "Yay!"
+
+ para "FRESH WATER!"
+
+ para "Thank you!"
+
+ para "You can have this"
+ line "from me!@@"
+
+_CeladonMartRoofText_484f9::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_CeladonMartRoofText_484fe::
+ text ""
+
+ para "@"
+ TX_RAM wcf4b
+ text " contains"
+ line "ICE BEAM!"
+
+ para "It can freeze the"
+ line "target sometimes!@@"
+
+_CeladonMartRoofText_48504::
+ text "Yay!"
+
+ para "SODA POP!"
+
+ para "Thank you!"
+
+ para "You can have this"
+ line "from me!@@"
+
+_CeladonMartRoofText_4850a::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_CeladonMartRoofText_4850f::
+ text ""
+
+ para "@"
+ TX_RAM wcf4b
+ text " contains"
+ line "ROCK SLIDE!"
+
+ para "It can spook the"
+ line "target sometimes!@@"
+
+_CeladonMartRoofText_48515::
+ text "Yay!"
+
+ para "LEMONADE!"
+
+ para "Thank you!"
+
+ para "You can have this"
+ line "from me!@@"
+
+_ReceivedTM49Text::
+ text "<PLAYER> received"
+ line "TM49!@@"
+
+_CeladonMartRoofText_48520::
+ text ""
+
+ para "TM49 contains"
+ line "TRI ATTACK!@@"
+
+_CeladonMartRoofText_48526::
+ text "You don't have"
+ line "space for this!@@"
+
+_CeladonMartRoofText_4852c::
+ text "No thank you!"
+ line "I'm not thirsty"
+ cont "after all!@@"
+
+_CeladonMartRoofText1::
+ text "My sister is a"
+ line "trainer, believe"
+ cont "it or not."
+
+ para "But, she's so"
+ line "immature, she"
+ cont "drives me nuts!"
+ done
+
+_CeladonMartRoofText_48598::
+ text "I'm thirsty!"
+ line "I want something"
+ cont "to drink!"
+ done
+
+_CeladonMartRoofText4::
+ text "I'm thirsty!"
+ line "I want something"
+ cont "to drink!"
+
+ para "Give her a drink?"
+ done
+
+_CeladonMartRoofText6::
+ text "ROOFTOP SQUARE:"
+ line "VENDING MACHINES"
+ done
+
+_VendingMachineText1::
+ text "A vending machine!"
+ line "Here's the menu!"
+ prompt
+
+_VendingMachineText4::
+ text "Oops, not enough"
+ line "money!"
+ done
+
+_VendingMachineText5::
+ TX_RAM wcf4b
+ text ""
+ line "popped out!"
+ done
+
+_VendingMachineText6::
+ text "There's no more"
+ line "room for stuff!"
+ done
+
+_VendingMachineText7::
+ text "Not thirsty!"
+ done
--- /dev/null
+++ b/text/CeladonPokecenter.asm
@@ -1,0 +1,12 @@
+_CeladonPokecenterText2::
+ text "# FLUTE awakens"
+ line "#MON with a"
+ cont "sound that only"
+ cont "they can hear!"
+ done
+
+_CeladonPokecenterText3::
+ text "I rode uphill on"
+ line "CYCLING ROAD from"
+ cont "FUCHSIA!"
+ done
--- /dev/null
+++ b/text/CeruleanBadgeHouse.asm
@@ -1,0 +1,97 @@
+_CeruleanHouse2Text_74e77::
+ text "#MON BADGEs"
+ line "are owned only by"
+ cont "skilled trainers."
+
+ para "I see you have"
+ line "at least one."
+
+ para "Those BADGEs have"
+ line "amazing secrets!"
+ prompt
+
+_CeruleanHouse2Text_74e7c::
+ text "Now then..."
+
+ para "Which of the 8"
+ line "BADGEs should I"
+ cont "describe?"
+ done
+
+_CeruleanHouse2Text_74e81::
+ text "Come visit me any"
+ line "time you wish."
+ done
+
+_CeruleanHouse2Text_74e96::
+ text "The ATTACK of all"
+ line "#MON increases"
+ cont "a little bit."
+
+ para "It also lets you"
+ line "use FLASH any"
+ cont "time you desire."
+ prompt
+
+_CeruleanHouse2Text_74e9b::
+ text "#MON up to L30"
+ line "will obey you."
+
+ para "Any higher, they"
+ line "become unruly!"
+
+ para "It also lets you"
+ line "use CUT outside"
+ cont "of battle."
+ prompt
+
+_CeruleanHouse2Text_74ea0::
+ text "The SPEED of all"
+ line "#MON increases"
+ cont "a little bit."
+
+ para "It also lets you"
+ line "use FLY outside"
+ cont "of battle."
+ prompt
+
+_CeruleanHouse2Text_74ea5::
+ text "#MON up to L50"
+ line "will obey you."
+
+ para "Any higher, they"
+ line "become unruly!"
+
+ para "It also lets you"
+ line "use STRENGTH out-"
+ cont "side of battle."
+ prompt
+
+_CeruleanHouse2Text_74eaa::
+ text "The DEFENSE of all"
+ line "#MON increases"
+ cont "a little bit."
+
+ para "It also lets you"
+ line "use SURF outside"
+ cont "of battle."
+ prompt
+
+_CeruleanHouse2Text_74eaf::
+ text "#MON up to L70"
+ line "will obey you."
+
+ para "Any higher, they"
+ line "become unruly!"
+ prompt
+
+_CeruleanHouse2Text_74eb4::
+ text "Your #MON's"
+ line "SPECIAL abilities"
+ cont "increase a bit."
+ prompt
+
+_CeruleanHouse2Text_74eb9::
+ text "All #MON will"
+ line "obey you!"
+ prompt
--- /dev/null
+++ b/text/CeruleanCaveB1F.asm
@@ -1,0 +1,2 @@
+_MewtwoBattleText::
+ text "Mew!@@"
--- /dev/null
+++ b/text/CeruleanCity.asm
@@ -1,0 +1,233 @@
+_CeruleanCityText_19668::
+ text "<RIVAL>: Yo!"
+ line "<PLAYER>!"
+
+ para "You're still"
+ line "struggling along"
+ cont "back here?"
+
+ para "I'm doing great!"
+ line "I caught a bunch"
+ cont "of strong and"
+ cont "smart #MON!"
+
+ para "Here, let me see"
+ line "what you caught,"
+ cont "<PLAYER>!"
+ done
+
+_CeruleanCityText_1966d::
+ text "Hey!"
+ line "Take it easy!"
+ cont "You won already!"
+ prompt
+
+_CeruleanCityText_19672::
+ text "Heh!"
+ line "You're no match"
+ cont "for my genius!"
+ prompt
+
+_CeruleanCityText_19677::
+ text "<RIVAL>: Hey,"
+ line "guess what?"
+
+ para "I went to BILL's"
+ line "and got him to"
+ cont "show me his rare"
+ cont "#MON!"
+
+ para "That added a lot"
+ line "of pages to my"
+ cont "#DEX!"
+
+ para "After all, BILL's"
+ line "world famous as a"
+ cont "#MANIAC!"
+
+ para "He invented the"
+ line "#MON Storage"
+ cont "System on PC!"
+
+ para "Since you're using"
+ line "his system, go"
+ cont "thank him!"
+
+ para "Well, I better"
+ line "get rolling!"
+ cont "Smell ya later!"
+ done
+
+_CeruleanCityText_196d9::
+ text "Hey! Stay out!"
+ line "It's not your"
+ cont "yard! Huh? Me?"
+
+ para "I'm an innocent"
+ line "bystander! Don't"
+ cont "you believe me?"
+ done
+
+_ReceivedTM28Text::
+ text "<PLAYER> recovered"
+ line "TM28!@@"
+
+_ReceivedTM28Text2::
+ text ""
+
+ para "I better get"
+ line "moving! Bye!@@"
+
+_TM28NoRoomText::
+ text "Make room for"
+ line "this!"
+
+ para "I can't run until"
+ line "I give it to you!"
+ done
+
+_CeruleanCityText_196ee::
+ text "Stop!"
+ line "I give up! I'll"
+ cont "leave quietly!"
+ prompt
+
+_CeruleanCityText_196f3::
+ text "OK! I'll return"
+ line "the TM I stole!"
+ prompt
+
+_CeruleanCityText3::
+ text "You're a trainer"
+ line "too? Collecting,"
+ cont "fighting, it's a"
+ cont "tough life."
+ done
+
+_CeruleanCityText4::
+ text "That bush in"
+ line "front of the shop"
+ cont "is in the way."
+
+ para "There might be a"
+ line "way around."
+ done
+
+_CeruleanCityText5::
+ text "You're making an"
+ line "encyclopedia on"
+ cont "#MON? That"
+ cont "sounds amusing."
+ done
+
+_CeruleanCityText6::
+ text "The people here"
+ line "were robbed."
+
+ para "It's obvious that"
+ line "TEAM ROCKET is"
+ cont "behind this most"
+ cont "heinous crime!"
+
+ para "Even our POLICE"
+ line "force has trouble"
+ cont "with the ROCKETs!"
+ done
+
+_CeruleanCityText_19730::
+ text "OK! SLOWBRO!"
+ line "Use SONICBOOM!"
+ cont "Come on, SLOWBRO"
+ cont "pay attention!"
+ done
+
+_CeruleanCityText_19735::
+ text "SLOWBRO punch!"
+ line "No! You blew it"
+ cont "again!"
+ done
+
+_CeruleanCityText_1973a::
+ text "SLOWBRO, WITHDRAW!"
+ line "No! That's wrong!"
+
+ para "It's so hard to"
+ line "control #MON!"
+
+ para "Your #MON's"
+ line "obedience depends"
+ cont "on your abilities"
+ cont "as a trainer!"
+ done
+
+_CeruleanCityText_1976f::
+ text "SLOWBRO took a"
+ line "snooze..."
+ done
+
+_CeruleanCityText_19774::
+ text "SLOWBRO is"
+ line "loafing around..."
+ done
+
+_CeruleanCityText_19779::
+ text "SLOWBRO turned"
+ line "away..."
+ done
+
+_CeruleanCityText_1977e::
+ text "SLOWBRO"
+ line "ignored orders..."
+ done
+
+_CeruleanCityText9::
+ text "I want a bright"
+ line "red BICYCLE!"
+
+ para "I'll keep it at"
+ line "home, so it won't"
+ cont "get dirty!"
+ done
+
+_CeruleanCityText10::
+ text "This is CERULEAN"
+ line "CAVE! Horribly"
+ cont "strong #MON"
+ cont "live in there!"
+
+ para "The #MON LEAGUE"
+ line "champion is the"
+ cont "only person who"
+ cont "is allowed in!"
+ done
+
+_CeruleanCityText12::
+ text "CERULEAN CITY"
+ line "A Mysterious,"
+ cont "Blue Aura"
+ cont "Surrounds It"
+ done
+
+_CeruleanCityText13::
+ text "TRAINER TIPS"
+
+ para "Pressing B Button"
+ line "during evolution"
+ cont "cancels the whole"
+ cont "process."
+ done
+
+_CeruleanCityText16::
+ text "Grass and caves"
+ line "handled easily!"
+ cont "BIKE SHOP"
+ done
+
+_CeruleanCityText17::
+ text "CERULEAN CITY"
+ line "#MON GYM"
+ cont "LEADER: MISTY"
+
+ para "The Tomboyish"
+ line "Mermaid!"
+ done
--- /dev/null
+++ b/text/CeruleanGym.asm
@@ -1,0 +1,131 @@
+_CeruleanGymText_5c7be::
+ text "Hi, you're a new"
+ line "face!"
+
+ para "Trainers who want"
+ line "to turn pro have"
+ cont "to have a policy"
+ cont "about #MON!"
+
+ para "What is your"
+ line "approach when you"
+ cont "catch #MON?"
+
+ para "My policy is an"
+ line "all-out offensive"
+ cont "with water-type"
+ cont "#MON!"
+ done
+
+_CeruleanGymText_5c7c3::
+ text "TM11 teaches"
+ line "BUBBLEBEAM!"
+
+ para "Use it on an"
+ line "aquatic #MON!"
+ done
+
+_CeruleanGymText_5c7c8::
+ text "The CASCADEBADGE"
+ line "makes all #MON"
+ cont "up to L30 obey!"
+
+ para "That includes"
+ line "even outsiders!"
+
+ para "There's more, you"
+ line "can now use CUT"
+ cont "any time!"
+
+ para "You can CUT down"
+ line "small bushes to"
+ cont "open new paths!"
+
+ para "You can also have"
+ line "my favorite TM!"
+ done
+
+_ReceivedTM11Text::
+ text "<PLAYER> received"
+ line "TM11!@@"
+
+_CeruleanGymText_5c7d3::
+ text "You better make"
+ line "room for this!"
+ done
+
+_CeruleanGymText_5c7d8::
+ text "Wow!"
+ line "You're too much!"
+
+ para "All right!"
+
+ para "You can have the"
+ line "CASCADEBADGE to"
+ cont "show you beat me!@@"
+
+_CeruleanGymBattleText1::
+ text "I'm more than good"
+ line "enough for you!"
+
+ para "MISTY can wait!"
+ done
+
+_CeruleanGymEndBattleText1::
+ text "You"
+ line "overwhelmed me!"
+ prompt
+
+_CeruleanGymAfterBattleText1::
+ text "You have to face"
+ line "other trainers to"
+ cont "find out how good"
+ cont "you really are."
+ done
+
+_CeruleanGymBattleText2::
+ text "Splash!"
+
+ para "I'm first up!"
+ line "Let's do it!"
+ done
+
+_CeruleanGymEndBattleText2::
+ text "That"
+ line "can't be!"
+ prompt
+
+_CeruleanGymAfterBattleText2::
+ text "MISTY is going to"
+ line "keep improving!"
+
+ para "She won't lose to"
+ line "someone like you!"
+ done
+
+_CeruleanGymText_5c82a::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "Here's my advice!"
+
+ para "The LEADER, MISTY,"
+ line "is a pro who uses"
+ cont "water #MON!"
+
+ para "You can drain all"
+ line "their water with"
+ cont "plant #MON!"
+
+ para "Or, zap them with"
+ line "electricity!"
+ done
+
+_CeruleanGymText_5c82f::
+ text "You beat MISTY!"
+ line "What'd I tell ya?"
+
+ para "You and me kid,"
+ line "we make a pretty"
+ cont "darn good team!"
+ done
--- /dev/null
+++ b/text/CeruleanMart.asm
@@ -1,0 +1,19 @@
+_CeruleanMartText2::
+ text "Use REPEL to keep"
+ line "bugs and weak"
+ cont "#MON away."
+
+ para "Put your strongest"
+ line "#MON at the"
+ cont "top of the list"
+ cont "for best results!"
+ done
+
+_CeruleanMartText3::
+ text "Have you seen any"
+ line "RARE CANDY?"
+
+ para "It's supposed to"
+ line "make #MON go"
+ cont "up one level!"
+ done
--- /dev/null
+++ b/text/CeruleanPokecenter.asm
@@ -1,0 +1,24 @@
+_CeruleanPokecenterText2::
+ text "That BILL!"
+
+ para "I heard that"
+ line "he'll do whatever"
+ cont "it takes to get"
+ cont "rare #MON!"
+ done
+
+_CeruleanPokecenterText3::
+ text "Have you heard"
+ line "about BILL?"
+
+ para "Everyone calls"
+ line "him a #MANIAC!"
+
+ para "I think people"
+ line "are just jealous"
+ cont "of BILL, though."
+
+ para "Who wouldn't want"
+ line "to boast about"
+ cont "their #MON?"
+ done
--- /dev/null
+++ b/text/CeruleanTradeHouse.asm
@@ -1,0 +1,9 @@
+_CeruleanHouse1Text1::
+ text "My husband likes"
+ line "trading #MON."
+
+ para "If you are a"
+ line "collector, would"
+ cont "you please trade"
+ cont "with him?"
+ done
--- /dev/null
+++ b/text/CeruleanTrashedHouse.asm
@@ -1,0 +1,36 @@
+_CeruleanTrashedText_1d6ab::
+ text "Those miserable"
+ line "ROCKETs!"
+
+ para "Look what they"
+ line "did here!"
+
+ para "They stole a TM"
+ line "for teaching"
+ cont "#MON how to"
+ cont "DIG holes!"
+
+ para "That cost me a"
+ line "bundle, it did!"
+ done
+
+_CeruleanTrashedText_1d6b0::
+ text "I figure what's"
+ line "lost is lost!"
+
+ para "I decided to teach"
+ line "DIGLETT how to"
+ cont "DIG without a TM!"
+ done
+
+_CeruleanHouseTrashedText2::
+ text "TEAM ROCKET must"
+ line "be trying to DIG"
+ cont "their way into no"
+ cont "good!"
+ done
+
+_CeruleanHouseTrashedText3::
+ text "TEAM ROCKET left"
+ line "a way out!"
+ done
--- /dev/null
+++ b/text/ChampionsRoom.asm
@@ -1,0 +1,146 @@
+_GaryChampionIntroText::
+ text "<RIVAL>: Hey!"
+
+ para "I was looking"
+ line "forward to seeing"
+ cont "you, <PLAYER>!"
+
+ para "My rival should"
+ line "be strong to keep"
+ cont "me sharp!"
+
+ para "While working on"
+ line "#DEX, I looked"
+ cont "all over for"
+ cont "powerful #MON!"
+
+ para "Not only that, I"
+ line "assembled teams"
+ cont "that would beat"
+ cont "any #MON type!"
+
+ para "And now!"
+
+ para "I'm the #MON"
+ line "LEAGUE champion!"
+
+ para "<PLAYER>! Do you"
+ line "know what that"
+ cont "means?"
+
+ para "I'll tell you!"
+
+ para "I am the most"
+ line "powerful trainer"
+ cont "in the world!"
+ done
+
+_GaryDefeatedText::
+ text "NO!"
+ line "That can't be!"
+ cont "You beat my best!"
+
+ para "After all that"
+ line "work to become"
+ cont "LEAGUE champ?"
+
+ para "My reign is over"
+ line "already?"
+ cont "It's not fair!"
+ prompt
+
+_GaryVictoryText::
+ text "Hahaha!"
+ line "I won, I won!"
+
+ para "I'm too good for"
+ line "you, <PLAYER>!"
+
+ para "You did well to"
+ line "even reach me,"
+ cont "<RIVAL>, the"
+ cont "#MON genius!"
+
+ para "Nice try, loser!"
+ line "Hahaha!"
+ prompt
+
+_GaryText_76103::
+ text "Why?"
+ line "Why did I lose?"
+
+ para "I never made any"
+ line "mistakes raising"
+ cont "my #MON..."
+
+ para "Darn it! You're"
+ line "the new #MON"
+ cont "LEAGUE champion!"
+
+ para "Although I don't"
+ line "like to admit it."
+ done
+
+_GaryText2::
+ text "OAK: <PLAYER>!"
+ done
+
+_GaryText_76120::
+ text "OAK: So, you won!"
+ line "Congratulations!"
+ cont "You're the new"
+ cont "#MON LEAGUE"
+ cont "champion!"
+
+ para "You've grown up so"
+ line "much since you"
+ cont "first left with"
+ cont "@"
+ TX_RAM wcd6d
+ text "!"
+
+ para "<PLAYER>, you have"
+ line "come of age!"
+ done
+
+_GaryText_76125::
+ text "OAK: <RIVAL>! I'm"
+ line "disappointed!"
+
+ para "I came when I"
+ line "heard you beat"
+ cont "the ELITE FOUR!"
+
+ para "But, when I got"
+ line "here, you had"
+ cont "already lost!"
+
+ para "<RIVAL>! Do you"
+ line "understand why"
+ cont "you lost?"
+
+ para "You have forgotten"
+ line "to treat your"
+ cont "#MON with"
+ cont "trust and love!"
+
+ para "Without them, you"
+ line "will never become"
+ cont "a champ again!"
+ done
+
+_GaryText_7612a::
+ text "OAK: <PLAYER>!"
+
+ para "You understand"
+ line "that your victory"
+ cont "was not just your"
+ cont "own doing!"
+
+ para "The bond you share"
+ line "with your #MON"
+ cont "is marvelous!"
+
+ para "<PLAYER>!"
+ line "Come with me!"
+ done
--- /dev/null
+++ b/text/CinnabarGym.asm
@@ -1,0 +1,210 @@
+_BlaineBattleText::
+ text "Hah!"
+
+ para "I am BLAINE! I"
+ line "am the LEADER of"
+ cont "CINNABAR GYM!"
+
+ para "My fiery #MON"
+ line "will incinerate"
+ cont "all challengers!"
+
+ para "Hah! You better"
+ line "have BURN HEAL!"
+ done
+
+_BlaineEndBattleText::
+ text "I have"
+ line "burnt out!"
+
+ para "You have earned"
+ line "the VOLCANOBADGE!@@"
+
+_BlaineFireBlastText::
+ text "FIRE BLAST is the"
+ line "ultimate fire"
+ cont "technique!"
+
+ para "Don't waste it on"
+ line "water #MON!"
+ done
+
+_BlaineBadgeText::
+ text "Hah!"
+
+ para "The VOLCANOBADGE"
+ line "heightens the"
+ cont "SPECIAL abilities"
+ cont "of your #MON!"
+
+ para "Here, you can"
+ line "have this too!"
+ done
+
+_ReceivedTM38Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM38ExplanationText::
+ text ""
+
+ para "TM38 contains"
+ line "FIRE BLAST!"
+
+ para "Teach it to fire-"
+ line "type #MON!"
+
+ para "CHARMELEON or"
+ line "PONYTA would be"
+ cont "good bets!"
+ done
+
+_TM38NoRoomText::
+ text "Make room for my"
+ line "gift!"
+ done
+
+_CinnabarGymText_7595f::
+ text "Do you know how"
+ line "hot #MON fire"
+ cont "breath can get?"
+ done
+
+_CinnabarGymText_75964::
+ text "Yow!"
+ line "Hot, hot, hot!"
+ prompt
+
+_CinnabarGymText_75969::
+ text "Fire, or to be"
+ line "more precise,"
+ cont "combustion..."
+
+ para "Blah, blah, blah,"
+ line "blah..."
+ done
+
+_CinnabarGymText_75994::
+ text "I was a thief, but"
+ line "I became straight"
+ cont "as a trainer!"
+ done
+
+_CinnabarGymText_75999::
+ text "I"
+ line "surrender!"
+ prompt
+
+_CinnabarGymText_7599e::
+ text "I can't help"
+ line "stealing other"
+ cont "people's #MON!"
+ done
+
+_CinnabarGymText_759c9::
+ text "You can't win!"
+ line "I have studied"
+ cont "#MON totally!"
+ done
+
+_CinnabarGymText_759ce::
+ text "Waah!"
+ line "My studies!"
+ prompt
+
+_CinnabarGymText_759d3::
+ text "My theories are"
+ line "too complicated"
+ cont "for you!"
+ done
+
+_CinnabarGymText_759fe::
+ text "I just like using"
+ line "fire #MON!"
+ done
+
+_CinnabarGymText_75a03::
+ text "Too hot"
+ line "to handle!"
+ prompt
+
+_CinnabarGymText_75a08::
+ text "I wish there was"
+ line "a thief #MON!"
+ cont "I'd use that!"
+ done
+
+_CinnabarGymText_75a33::
+ text "I know why BLAINE"
+ line "became a trainer!"
+ done
+
+_CinnabarGymText_75a38::
+ text "Ow!"
+ prompt
+
+_CinnabarGymText_75a3d::
+ text "BLAINE was lost"
+ line "in the mountains"
+ cont "when a fiery bird"
+ cont "#MON appeared."
+
+ para "Its light enabled"
+ line "BLAINE to find"
+ cont "his way down!"
+ done
+
+_CinnabarGymText_75a68::
+ text "I've been to many"
+ line "GYMs, but this is"
+ cont "my favorite!"
+ done
+
+_CinnabarGymText_75a6d::
+ text "Yowza!"
+ line "Too hot!"
+ prompt
+
+_CinnabarGymText_75a72::
+ text "Us fire #MON"
+ line "fans like PONYTA"
+ cont "and NINETALES!"
+ done
+
+_CinnabarGymText_75a9d::
+ text "Fire is weak"
+ line "against H2O!"
+ done
+
+_CinnabarGymText_75aa2::
+ text "Oh!"
+ line "Snuffed out!"
+ prompt
+
+_CinnabarGymText_75aa7::
+ text "Water beats fire!"
+ line "But, fire melts"
+ cont "ice #MON!"
+ done
+
+_CinnabarGymText_75ac2::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "The hot-headed"
+ line "BLAINE is a fire"
+ cont "#MON pro!"
+
+ para "Douse his spirits"
+ line "with water!"
+
+ para "You better take"
+ line "some BURN HEALs!"
+ done
+
+_CinnabarGymText_75ac7::
+ text "<PLAYER>! You beat"
+ line "that fire brand!"
+ done
--- /dev/null
+++ b/text/CinnabarIsland.asm
@@ -1,0 +1,37 @@
+_CinnabarIslandText8::
+ text "The door is"
+ line "locked..."
+ done
+
+_CinnabarIslandText1::
+ text "CINNABAR GYM's"
+ line "BLAINE is an odd"
+ cont "man who has lived"
+ cont "here for decades."
+ done
+
+_CinnabarIslandText2::
+ text "Scientists conduct"
+ line "experiments in"
+ cont "the burned out"
+ cont "building."
+ done
+
+_CinnabarIslandText3::
+ text "CINNABAR ISLAND"
+ line "The Fiery Town of"
+ cont "Burning Desire"
+ done
+
+_CinnabarIslandText6::
+ text "#MON LAB"
+ done
+
+_CinnabarIslandText7::
+ text "CINNABAR ISLAND"
+ line "#MON GYM"
+ cont "LEADER: BLAINE"
+
+ para "The Hot-Headed"
+ line "Quiz Master!"
+ done
--- /dev/null
+++ b/text/CinnabarLab.asm
@@ -1,0 +1,29 @@
+_Lab1Text1::
+ text "We study #MON"
+ line "extensively here."
+
+ para "People often bring"
+ line "us rare #MON"
+ cont "for examination."
+ done
+
+_Lab1Text2::
+ text "A photo of the"
+ line "LAB's founder,"
+ cont "DR.FUJI!"
+ done
+
+_Lab1Text3::
+ text "#MON LAB"
+ line "Meeting Room"
+ done
+
+_Lab1Text4::
+ text "#MON LAB"
+ line "R-and-D Room"
+ done
+
+_Lab1Text5::
+ text "#MON LAB"
+ line "Testing Room"
+ done
--- /dev/null
+++ b/text/CinnabarLabFossilRoom.asm
@@ -1,0 +1,78 @@
+_Lab4Text_75dc6::
+ text "Hiya!"
+
+ para "I am important"
+ line "doctor!"
+
+ para "I study here rare"
+ line "#MON fossils!"
+
+ para "You! Have you a"
+ line "fossil for me?"
+ prompt
+
+_Lab4Text_75dcb::
+ text "No! Is too bad!"
+ done
+
+_Lab4Text_75dd0::
+ text "I take a little"
+ line "time!"
+
+ para "You go for walk a"
+ line "little while!"
+ done
+
+_Lab4Text_75dd5::
+ text "Where were you?"
+
+ para "Your fossil is"
+ line "back to life!"
+
+ para "It was @"
+ TX_RAM wcf4b
+ text ""
+ line "like I think!"
+ prompt
+
+_Lab4Text_610ae::
+ text "Oh! That is"
+ line "@"
+ TX_RAM wcd6d
+ text "!"
+
+ para "It is fossil of"
+ line "@"
+ TX_RAM wcf4b
+ text ", a"
+ cont "#MON that is"
+ cont "already extinct!"
+
+ para "My Resurrection"
+ line "Machine will make"
+ cont "that #MON live"
+ cont "again!"
+ done
+
+_Lab4Text_610b3::
+ text "So! You hurry and"
+ line "give me that!"
+
+ para "<PLAYER> handed"
+ line "over @"
+ TX_RAM wcd6d
+ text "!"
+ prompt
+
+_Lab4Text_610b8::
+ text "I take a little"
+ line "time!"
+
+ para "You go for walk a"
+ line "little while!"
+ done
+
+_Lab4Text_610bd::
+ text "Aiyah! You come"
+ line "again!"
+ done
--- /dev/null
+++ b/text/CinnabarLabMetronomeRoom.asm
@@ -1,0 +1,63 @@
+_TM35PreReceiveText::
+ text "Tch-tch-tch!"
+ line "I made a cool TM!"
+
+ para "It can cause all"
+ line "kinds of fun!"
+ prompt
+
+_ReceivedTM35Text::
+ text "<PLAYER> received "
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM35ExplanationText::
+ text "Tch-tch-tch!"
+ line "That's the sound"
+ cont "of a METRONOME!"
+
+ para "It tweaks your"
+ line "#MON's brain"
+ cont "into using moves"
+ cont "it doesn't know!"
+ done
+
+_TM35NoRoomText::
+ text "Your pack is"
+ line "crammed full!"
+ done
+
+_Lab3Text2::
+ text "EEVEE can evolve"
+ line "into 1 of 3 kinds"
+ cont "of #MON."
+ done
+
+_Lab3Text3::
+ text "There's an e-mail"
+ line "message!"
+
+ para "..."
+
+ para "The 3 legendary"
+ line "bird #MON are"
+ cont "ARTICUNO, ZAPDOS"
+ cont "and MOLTRES."
+
+ para "Their whereabouts"
+ line "are unknown."
+
+ para "We plan to explore"
+ line "the cavern close"
+ cont "to CERULEAN."
+
+ para "From: #MON"
+ line "RESEARCH TEAM"
+
+ para "..."
+ done
+
+_Lab3Text5::
+ text "An amber pipe!"
+ done
--- /dev/null
+++ b/text/CinnabarLabTradeRoom.asm
@@ -1,0 +1,9 @@
+_Lab2Text1::
+ text "I found this very"
+ line "strange fossil in"
+ cont "MT.MOON!"
+
+ para "I think it's a"
+ line "rare, prehistoric"
+ cont "#MON!"
+ done
--- /dev/null
+++ b/text/CinnabarMart.asm
@@ -1,0 +1,10 @@
+_CinnabarMartText2::
+ text "Don't they have X"
+ line "ATTACK? It's good"
+ cont "for battles!"
+ done
+
+_CinnabarMartText3::
+ text "It never hurts to"
+ line "have extra items!"
+ done
--- /dev/null
+++ b/text/CinnabarPokecenter.asm
@@ -1,0 +1,21 @@
+_CinnabarPokecenterText2::
+ text "You can cancel"
+ line "evolution."
+
+ para "When a #MON is"
+ line "evolving, you can"
+ cont "stop it and leave"
+ cont "it the way it is."
+ done
+
+_CinnabarPokecenterText3::
+ text "Do you have any"
+ line "friends?"
+
+ para "#MON you get"
+ line "in trades grow"
+ cont "very quickly."
+
+ para "I think it's"
+ line "worth a try!"
+ done
--- /dev/null
+++ b/text/CopycatsHouse1F.asm
@@ -1,0 +1,20 @@
+_CopycatsHouse1FText1::
+ text "My daughter is so"
+ line "self-centered."
+ cont "She only has a"
+ cont "few friends."
+ done
+
+_CopycatsHouse1FText2::
+ text "My daughter likes"
+ line "to mimic people."
+
+ para "Her mimicry has"
+ line "earned her the"
+ cont "nickname COPYCAT"
+ cont "around here!"
+ done
+
+_CopycatsHouse1FText3::
+ text "CHANSEY: Chaan!"
+ line "Sii!@@"
--- /dev/null
+++ b/text/CopycatsHouse2F.asm
@@ -1,0 +1,97 @@
+_CopycatsHouse2FText_5ccd4::
+ text "<PLAYER>: Hi! Do"
+ line "you like #MON?"
+
+ para "<PLAYER>: Uh no, I"
+ line "just asked you."
+
+ para "<PLAYER>: Huh?"
+ line "You're strange!"
+
+ para "COPYCAT: Hmm?"
+ line "Quit mimicking?"
+
+ para "But, that's my"
+ line "favorite hobby!"
+ prompt
+
+_TM31PreReceiveText::
+ text "Oh wow!"
+ line "A # DOLL!"
+
+ para "For me?"
+ line "Thank you!"
+
+ para "You can have"
+ line "this, then!"
+ prompt
+
+_ReceivedTM31Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM31ExplanationText1::
+ text ""
+
+ para "TM31 contains my"
+ line "favorite, MIMIC!"
+
+ para "Use it on a good"
+ line "#MON!@@"
+
+_TM31ExplanationText2::
+ text "<PLAYER>: Hi!"
+ line "Thanks for TM31!"
+
+ para "<PLAYER>: Pardon?"
+
+ para "<PLAYER>: Is it"
+ line "that fun to mimic"
+ cont "my every move?"
+
+ para "COPYCAT: You bet!"
+ line "It's a scream!"
+ done
+
+_TM31NoRoomText::
+ text "Don't you want"
+ line "this?@@"
+
+_CopycatsHouse2FText2::
+ text "DODUO: Giiih!"
+
+ para "MIRROR MIRROR ON"
+ line "THE WALL, WHO IS"
+ cont "THE FAIREST ONE"
+ cont "OF ALL?"
+ done
+
+_CopycatsHouse2FText3::
+ text "This is a rare"
+ line "#MON! Huh?"
+ cont "It's only a doll!"
+ done
+
+_CopycatsHouse2FText6::
+ text "A game with MARIO"
+ line "wearing a bucket"
+ cont "on his head!"
+ done
+
+_CopycatsHouse2FText_5cd17::
+ text "..."
+
+ para "My Secrets!"
+
+ para "Skill: Mimicry!"
+ line "Hobby: Collecting"
+ cont "dolls!"
+ cont "Favorite #MON:"
+ cont "CLEFAIRY!"
+ done
+
+_CopycatsHouse2FText_5cd1c::
+ text "Huh? Can't see!"
+ done
--- /dev/null
+++ b/text/Daycare.asm
@@ -1,0 +1,62 @@
+_DayCareIntroText::
+ text "I run a DAYCARE."
+ line "Would you like me"
+ cont "to raise one of"
+ cont "your #MON?"
+ done
+
+_DayCareWhichMonText::
+ text "Which #MON"
+ line "should I raise?"
+ prompt
+
+_DayCareWillLookAfterMonText::
+ text "Fine, I'll look"
+ line "after @"
+ TX_RAM wcd6d
+ text ""
+ cont "for a while."
+ prompt
+
+_DayCareComeSeeMeInAWhileText::
+ text "Come see me in"
+ line "a while."
+ done
+
+_DayCareMonHasGrownText::
+ text "Your @"
+ TX_RAM wcd6d
+ text ""
+ line "has grown a lot!"
+
+ para "By level, it's"
+ line "grown by @"
+ TX_NUM wDayCareNumLevelsGrown,$1,$3
+ text "!"
+
+ para "Aren't I great?"
+ prompt
+
+_DayCareOweMoneyText::
+ text "You owe me ¥@"
+ TX_BCD wDayCareTotalCost, $c2
+ text ""
+ line "for the return"
+ cont "of this #MON."
+ done
+
+_DayCareGotMonBackText::
+ text "<PLAYER> got"
+ line "@"
+ TX_RAM wDayCareMonName
+ text " back!"
+ done
+
+_DayCareMonNeedsMoreTimeText::
+ text "Back already?"
+ line "Your @"
+ TX_RAM wcd6d
+ text ""
+ cont "needs some more"
+ cont "time with me."
+ prompt
--- /dev/null
+++ b/text/Daycare_2.asm
@@ -1,0 +1,33 @@
+_DayCareAllRightThenText::
+ text "All right then,"
+ line "@@"
+
+_DayCareComeAgainText::
+ text "come again."
+ done
+
+_DayCareNoRoomForMonText::
+ text "You have no room"
+ line "for this #MON!"
+ done
+
+_DayCareOnlyHaveOneMonText::
+ text "You only have one"
+ line "#MON with you."
+ done
+
+_DayCareCantAcceptMonWithHMText::
+ text "I can't accept a"
+ line "#MON that"
+ cont "knows an HM move."
+ done
+
+_DayCareHeresYourMonText::
+ text "Thank you! Here's"
+ line "your #MON!"
+ prompt
+
+_DayCareNotEnoughMoneyText::
+ text "Hey, you don't"
+ line "have enough ¥!"
+ done
--- /dev/null
+++ b/text/DiglettsCaveRoute11.asm
@@ -1,0 +1,8 @@
+_DiglettsCaveEntRoute11Text1::
+ text "What a surprise!"
+ line "DIGLETTs dug this"
+ cont "long tunnel!"
+
+ para "It goes right to"
+ line "VIRIDIAN CITY!"
+ done
--- /dev/null
+++ b/text/DiglettsCaveRoute2.asm
@@ -1,0 +1,9 @@
+_DiglettsCaveRoute2Text1::
+ text "I went to ROCK"
+ line "TUNNEL, but it's"
+ cont "dark and scary."
+
+ para "If a #MON's"
+ line "FLASH could light"
+ cont "it up..."
+ done
--- /dev/null
+++ b/text/FightingDojo.asm
@@ -1,0 +1,130 @@
+_FightingDojoText_5ce8e::
+ text "Grunt!"
+
+ para "I am the KARATE"
+ line "MASTER! I am the"
+ cont "LEADER here!"
+
+ para "You wish to"
+ line "challenge us?"
+ cont "Expect no mercy!"
+
+ para "Fwaaa!"
+ done
+
+_FightingDojoText_5ce93::
+ text "Hwa!"
+ line "Arrgh! Beaten!"
+ prompt
+
+_FightingDojoText_5ce98::
+ text "Indeed, I have"
+ line "lost!"
+
+ para "But, I beseech"
+ line "you, do not take"
+ cont "our emblem as"
+ cont "your trophy!"
+
+ para "In return, I will"
+ line "give you a prized"
+ cont "fighting #MON!"
+
+ para "Choose whichever"
+ line "one you like!"
+ done
+
+_FightingDojoText_5ce9d::
+ text "Ho!"
+
+ para "Stay and train at"
+ line "Karate with us!"
+ done
+
+_FightingDojoBattleText1::
+ text "Hoargh! Take your"
+ line "shoes off!"
+ done
+
+_FightingDojoEndBattleText1::
+ text "I give"
+ line "up!"
+ prompt
+
+_FightingDojoAfterBattleText1::
+ text "You wait 'til you"
+ line "see our Master!"
+
+ para "I'm a small fry"
+ line "compared to him!"
+ done
+
+_FightingDojoBattleText2::
+ text "I hear you're"
+ line "good! Show me!"
+ done
+
+_FightingDojoEndBattleText2::
+ text "Judge!"
+ line "1 point!"
+ prompt
+
+_FightingDojoAfterBattleText2::
+ text "Our Master is a"
+ line "pro fighter!"
+ done
+
+_FightingDojoBattleText3::
+ text "Nothing tough"
+ line "frightens me!"
+
+ para "I break boulders"
+ line "for training!"
+ done
+
+_FightingDojoEndBattleText3::
+ text "Yow!"
+ line "Stubbed fingers!"
+ prompt
+
+_FightingDojoAfterBattleText3::
+ text "The only thing"
+ line "that frightens us"
+ cont "is psychic power!"
+ done
+
+_FightingDojoBattleText4::
+ text "Hoohah!"
+
+ para "You're trespassing"
+ line "in our FIGHTING"
+ cont "DOJO!"
+ done
+
+_FightingDojoEndBattleText4::
+ text "Oof!"
+ line "I give up!"
+ prompt
+
+_FightingDojoAfterBattleText4::
+ text "The prime fighters"
+ line "across the land"
+ cont "train here."
+ done
+
+_WantHitmonleeText::
+ text "You want the"
+ line "hard kicking"
+ cont "HITMONLEE?"
+ done
+
+_WantHitmonchanText::
+ text "You want the"
+ line "piston punching"
+ cont "HITMONCHAN?"
+ done
+
+_OtherHitmonText::
+ text "Better not get"
+ line "greedy..."
+ done
--- /dev/null
+++ b/text/FuchsiaBillsGrandpasHouse.asm
@@ -1,0 +1,27 @@
+_FuchsiaHouse1Text1::
+ text "SAFARI ZONE's"
+ line "WARDEN is old,"
+ cont "but still active!"
+
+ para "All his teeth are"
+ line "false, though."
+ done
+
+_FuchsiaHouse1Text2::
+ text "Hmm? You've met"
+ line "BILL?"
+
+ para "He's my grandson!"
+
+ para "He always liked"
+ line "collecting things"
+ cont "even as a child!"
+ done
+
+_FuchsiaHouse1Text3::
+ text "BILL files his"
+ line "own #MON data"
+ cont "on his PC!"
+
+ para "Did he show you?"
+ done
--- /dev/null
+++ b/text/FuchsiaCity.asm
@@ -1,0 +1,119 @@
+_FuchsiaCityText1::
+ text "Did you try the"
+ line "SAFARI GAME? Some"
+ cont "#MON can only"
+ cont "be caught there."
+ done
+
+_FuchsiaCityText2::
+ text "SAFARI ZONE has a"
+ line "zoo in front of"
+ cont "the entrance."
+
+ para "Out back is the"
+ line "SAFARI GAME for"
+ cont "catching #MON."
+ done
+
+_FuchsiaCityText3::
+ text "ERIK: Where's"
+ line "SARA? I said I'd"
+ cont "meet her here."
+ done
+
+_FuchsiaCityText4::
+ text "That item ball in"
+ line "there is really a"
+ cont "#MON."
+ done
+
+_FuchsiaCityText5::
+ text "!"
+ done
+
+_FuchsiaCityText11::
+ text "FUCHSIA CITY"
+ line "Behold! It's"
+ cont "Passion Pink!"
+ done
+
+_FuchsiaCityText13::
+ text "SAFARI GAME"
+ line "#MON-U-CATCH!"
+ done
+
+_FuchsiaCityText16::
+ text "SAFARI ZONE"
+ line "WARDEN's HOME"
+ done
+
+_FuchsiaCityText17::
+ text "#MON PARADISE"
+ line "SAFARI ZONE"
+ done
+
+_FuchsiaCityText18::
+ text "FUCHSIA CITY"
+ line "#MON GYM"
+ cont "LEADER: KOGA"
+
+ para "The Poisonous"
+ line "Ninja Master"
+ done
+
+_FuchsiaCityChanseyText::
+ text "Name: CHANSEY"
+
+ para "Catching one is"
+ line "all up to chance."
+ prompt
+
+_FuchsiaCityVoltorbText::
+ text "Name: VOLTORB"
+
+ para "The very image of"
+ line "a # BALL."
+ prompt
+
+_FuchsiaCityKangaskhanText::
+ text "Name: KANGASKHAN"
+
+ para "A maternal #MON"
+ line "that raises its"
+ cont "young in a pouch"
+ cont "on its belly."
+ prompt
+
+_FuchsiaCitySlowpokeText::
+ text "Name: SLOWPOKE"
+
+ para "Friendly and very"
+ line "slow moving."
+ prompt
+
+_FuchsiaCityLaprasText::
+ text "Name: LAPRAS"
+
+ para "A.K.A. the king"
+ line "of the seas."
+ prompt
+
+_FuchsiaCityOmanyteText::
+ text "Name: OMANYTE"
+
+ para "A #MON that"
+ line "was resurrected"
+ cont "from a fossil."
+ prompt
+
+_FuchsiaCityKabutoText::
+ text "Name: KABUTO"
+
+ para "A #MON that"
+ line "was resurrected"
+ cont "from a fossil."
+ prompt
+
+_FuchsiaCityText_19b2a::
+ text "..."
+ done
--- /dev/null
+++ b/text/FuchsiaGoodRodHouse.asm
@@ -1,0 +1,43 @@
+_FuchsiaHouse3Text_561bd::
+ text "I'm the FISHING"
+ line "GURU's older"
+ cont "brother!"
+
+ para "I simply Looove"
+ line "fishing!"
+
+ para "Do you like to"
+ line "fish?"
+ done
+
+_FuchsiaHouse3Text_561c2::
+ text "Grand! I like"
+ line "your style!"
+
+ para "Take this and"
+ line "fish, young one!"
+
+ para "<PLAYER> received"
+ line "a @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_FuchsiaHouse3Text_56212::
+ text "Oh... That's so"
+ line "disappointing..."
+ done
+
+_FuchsiaHouse3Text_56217::
+ text "Hello there,"
+ line "<PLAYER>!"
+
+ para "How are the fish"
+ line "biting?"
+ done
+
+_FuchsiaHouse3Text_5621c::
+ text "Oh no!"
+
+ para "You have no room"
+ line "for my gift!"
+ done
--- /dev/null
+++ b/text/FuchsiaGym.asm
@@ -1,0 +1,26 @@
+_KogaBeforeBattleText::
+ text "KOGA: Fwahahaha!"
+
+ para "A mere child like"
+ line "you dares to"
+ cont "challenge me?"
+
+ para "Very well, I"
+ line "shall show you"
+ cont "true terror as a"
+ cont "ninja master!"
+
+ para "You shall feel"
+ line "the despair of"
+ cont "poison and sleep"
+ cont "techniques!"
+ done
+
+_KogaAfterBattleText::
+ text "Humph!"
+ line "You have proven"
+ cont "your worth!"
+
+ para "Here! Take the"
+ line "SOULBADGE!"
+ prompt
--- /dev/null
+++ b/text/FuchsiaGym_2.asm
@@ -1,0 +1,193 @@
+_KogaExplainToxicText::
+ text "When afflicted by"
+ line "TOXIC, #MON"
+ cont "suffer more and"
+ cont "more as battle"
+ cont "progresses!"
+
+ para "It will surely"
+ line "terrorize foes!"
+ done
+
+_FuchsiaGymText9::
+ text "Now that you have"
+ line "the SOULBADGE,"
+ cont "the DEFENSE of"
+ cont "your #MON"
+ cont "increases!"
+
+ para "It also lets you"
+ line "SURF outside of"
+ cont "battle!"
+
+ para "Ah! Take this"
+ line "too!"
+ done
+
+_ReceivedTM06Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM06ExplanationText::
+ text ""
+ para "TM06 contains"
+ line "TOXIC!"
+
+ para "It is a secret"
+ line "technique over"
+ cont "400 years old!"
+ done
+
+_TM06NoRoomText::
+ text "Make space for"
+ line "this, child!"
+ done
+
+_FuchsiaGymBattleText1::
+ text "Strength isn't"
+ line "the key for"
+ cont "#MON!"
+
+ para "It's strategy!"
+
+ para "I'll show you how"
+ line "strategy can beat"
+ cont "brute strength!"
+ done
+
+_FuchsiaGymEndBattleText1::
+ text "What?"
+ line "Extraordinary!"
+ prompt
+
+_FuchsiaGymAfterBattleText1::
+ text "So, you mix brawn"
+ line "with brains?"
+ cont "Good strategy!"
+ done
+
+_FuchsiaGymBattleText2::
+ text "I wanted to become"
+ line "a ninja, so I"
+ cont "joined this GYM!"
+ done
+
+_FuchsiaGymEndBattleText2::
+ text "I'm done"
+ line "for!"
+ prompt
+
+_FuchsiaGymAfterBattleText2::
+ text "I will keep on"
+ line "training under"
+ cont "KOGA, my ninja"
+ cont "master!"
+ done
+
+_FuchsiaGymBattleText3::
+ text "Let's see you"
+ line "beat my special"
+ cont "techniques!"
+ done
+
+_FuchsiaGymEndBattleText3::
+ text "You"
+ line "had me fooled!"
+ prompt
+
+_FuchsiaGymAfterBattleText3::
+ text "I like poison and"
+ line "sleep techniques,"
+ cont "as they linger"
+ cont "after battle!"
+ done
+
+_FuchsiaGymBattleText4::
+ text "Stop right there!"
+
+ para "Our invisible"
+ line "walls have you"
+ cont "frustrated?"
+ done
+
+_FuchsiaGymEndBattleText4::
+ text "Whoa!"
+ line "He's got it!"
+ prompt
+
+_FuchsiaGymAfterBattleText4::
+ text "You impressed me!"
+ line "Here's a hint!"
+
+ para "Look very closely"
+ line "for gaps in the"
+ cont "invisible walls!"
+ done
+
+_FuchsiaGymBattleText5::
+ text "I also study the"
+ line "way of the ninja"
+ cont "with master KOGA!"
+
+ para "Ninja have a long"
+ line "history of using"
+ cont "animals!"
+ done
+
+_FuchsiaGymEndBattleText5::
+ text "Awoo!"
+ prompt
+
+_FuchsiaGymAfterBattleText5::
+ text "I still have much"
+ line "to learn!"
+ done
+
+_FuchsiaGymBattleText6::
+ text "Master KOGA comes"
+ line "from a long line"
+ cont "of ninjas!"
+
+ para "What did you"
+ line "descend from?"
+ done
+
+_FuchsiaGymEndBattleText6::
+ text "Dropped"
+ line "my balls!"
+ prompt
+
+_FuchsiaGymAfterBattleText6::
+ text "Where there is"
+ line "light, there is"
+ cont "shadow!"
+
+ para "Light and shadow!"
+ line "Which do you"
+ cont "choose?"
+ done
+
+_FuchsiaGymText_7564e::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "FUCHSIA GYM is"
+ line "riddled with"
+ cont "invisible walls!"
+
+ para "KOGA might appear"
+ line "close, but he's"
+ cont "blocked off!"
+
+ para "You have to find"
+ line "gaps in the walls"
+ cont "to reach him!"
+ done
+
+_FuchsiaGymText_75653::
+ text "It's amazing how"
+ line "ninja can terrify"
+ cont "even now!"
+ done
--- /dev/null
+++ b/text/FuchsiaMart.asm
@@ -1,0 +1,14 @@
+_FuchsiaMartText2::
+ text "Do you have a"
+ line "SAFARI ZONE flag?"
+
+ para "What about cards"
+ line "or calendars?"
+ done
+
+_FuchsiaMartText3::
+ text "Did you try X"
+ line "SPEED? It speeds"
+ cont "up a #MON in"
+ cont "battle!"
+ done
--- /dev/null
+++ b/text/FuchsiaMeetingRoom.asm
@@ -1,0 +1,26 @@
+_FuchsiaMeetingRoomText1::
+ text "We nicknamed the"
+ line "WARDEN SLOWPOKE."
+
+ para "He and SLOWPOKE"
+ line "both look vacant!"
+ done
+
+_FuchsiaMeetingRoomText2::
+ text "SLOWPOKE is very"
+ line "knowledgeable"
+ cont "about #MON!"
+
+ para "He even has some"
+ line "fossils of rare,"
+ cont "extinct #MON!"
+ done
+
+_FuchsiaMeetingRoomText3::
+ text "SLOWPOKE came in,"
+ line "but I couldn't"
+ cont "understand him."
+
+ para "I think he's got"
+ line "a speech problem!"
+ done
--- /dev/null
+++ b/text/FuchsiaPokecenter.asm
@@ -1,0 +1,20 @@
+_FuchsiaPokecenterText1::
+ text "You can't win"
+ line "with just one"
+ cont "strong #MON."
+
+ para "It's tough, but"
+ line "you have to raise"
+ cont "them evenly."
+ done
+
+_FuchsiaPokecenterText3::
+ text "There's a narrow"
+ line "trail west of"
+ cont "VIRIDIAN CITY."
+
+ para "It goes to #MON"
+ line "LEAGUE HQ."
+ cont "The HQ governs"
+ cont "all trainers."
+ done
--- /dev/null
+++ b/text/GameCorner.asm
@@ -1,0 +1,186 @@
+_CeladonGameCornerText1::
+ text "Welcome!"
+
+ para "You can exchange"
+ line "your coins for"
+ cont "fabulous prizes"
+ cont "next door."
+ done
+
+_CeladonGameCornerText_48d22::
+ text "Welcome to ROCKET"
+ line "GAME CORNER!"
+
+ para "Do you need some"
+ line "game coins?"
+
+ para "It's ¥1000 for 50"
+ line "coins. Would you"
+ cont "like some?"
+ done
+
+_CeladonGameCornerText_48d27::
+ text "Thanks! Here are"
+ line "your 50 coins!"
+ done
+
+_CeladonGameCornerText_48d2c::
+ text "No? Please come"
+ line "play sometime!"
+ done
+
+_CeladonGameCornerText_48d31::
+ text "You can't afford"
+ line "the coins!"
+ done
+
+_CeladonGameCornerText_48d36::
+ text "Oops! Your COIN"
+ line "CASE is full."
+ done
+
+_CeladonGameCornerText_48d3b::
+ text "You don't have a"
+ line "COIN CASE!"
+ done
+
+_CeladonGameCornerText3::
+ text "Keep this quiet."
+
+ para "It's rumored that"
+ line "this place is run"
+ cont "by TEAM ROCKET."
+ done
+
+_CeladonGameCornerText4::
+ text "I think these"
+ line "machines have"
+ cont "different odds."
+ done
+
+_CeladonGameCornerText_48d9c::
+ text "Kid, do you want"
+ line "to play?"
+ prompt
+
+_Received10CoinsText::
+ text "<PLAYER> received"
+ line "10 coins!@@"
+
+_CeladonGameCornerText_48da7::
+ text "You don't need my"
+ line "coins!"
+ done
+
+_CeladonGameCornerText_48dac::
+ text "Wins seem to come"
+ line "and go."
+ done
+
+_CeladonGameCornerText6::
+ text "I'm having a"
+ line "wonderful time!"
+ done
+
+_CeladonGameCornerText_48dca::
+ text "Hey!"
+
+ para "You have better"
+ line "things to do,"
+ cont "champ in making!"
+
+ para "CELADON GYM's"
+ line "LEADER is ERIKA!"
+ cont "She uses grass-"
+ cont "type #MON!"
+
+ para "She might appear"
+ line "docile, but don't"
+ cont "be fooled!"
+ done
+
+_CeladonGameCornerText_48dcf::
+ text "They offer rare"
+ line "#MON that can"
+ cont "be exchanged for"
+ cont "your coins."
+
+ para "But, I just can't"
+ line "seem to win!"
+ done
+
+_CeladonGameCornerText8::
+ text "Games are scary!"
+ line "It's so easy to"
+ cont "get hooked!"
+ done
+
+_CeladonGameCornerText_48e26::
+ text "What's up? Want"
+ line "some coins?"
+ prompt
+
+_Received20CoinsText::
+ text "<PLAYER> received"
+ line "20 coins!@@"
+
+_CeladonGameCornerText_48e31::
+ text "You have lots of"
+ line "coins!"
+ done
+
+_CeladonGameCornerText_48e36::
+ text "Darn! I need more"
+ line "coins for the"
+ cont "#MON I want!"
+ done
+
+_CeladonGameCornerText_48e88::
+ text "Hey, what? You're"
+ line "throwing me off!"
+ cont "Here are some"
+ cont "coins, shoo!"
+ prompt
+
+_CeladonGameCornerText_48e8d::
+ text "<PLAYER> received"
+ line "20 coins!@@"
+
+_CeladonGameCornerText_48e93::
+ text "You've got your"
+ line "own coins!"
+ done
+
+_CeladonGameCornerText_48e98::
+ text "The trick is to"
+ line "watch the reels"
+ cont "closely!"
+ done
+
+_CeladonGameCornerText_48ece::
+ text "I'm guarding this"
+ line "poster!"
+ cont "Go away, or else!"
+ done
+
+_CeladonGameCornerText_48ed3::
+ text "Dang!"
+ prompt
+
+_CeladonGameCornerText_48ed8::
+ text "Our hideout might"
+ line "be discovered! I"
+ cont "better tell BOSS!"
+ done
+
+_CeladonGameCornerText_48f09::
+ text "Hey!"
+
+ para "A switch behind"
+ line "the poster!?"
+ cont "Let's push it!@@"
+
+_CeladonGameCornerText_48f19::
+ text "Oops! Forgot the"
+ line "COIN CASE!"
+ done
--- /dev/null
+++ b/text/GameCornerPrizeRoom.asm
@@ -1,0 +1,12 @@
+_CeladonPrizeRoomText1::
+ text "I sure do fancy"
+ line "that PORYGON!"
+
+ para "But, it's hard to"
+ line "win at slots!"
+ done
+
+_CeladonPrizeRoomText2::
+ text "I had a major"
+ line "haul today!"
+ done
--- /dev/null
+++ b/text/HallOfFame.asm
@@ -1,0 +1,28 @@
+_HallofFameRoomText1::
+ text "OAK: Er-hem!"
+ line "Congratulations"
+ cont "<PLAYER>!"
+
+ para "This floor is the"
+ line "#MON HALL OF"
+ cont "FAME!"
+
+ para "#MON LEAGUE"
+ line "champions are"
+ cont "honored for their"
+ cont "exploits here!"
+
+ para "Their #MON are"
+ line "also recorded in"
+ cont "the HALL OF FAME!"
+
+ para "<PLAYER>! You have"
+ line "endeavored hard"
+ cont "to become the new"
+ cont "LEAGUE champion!"
+
+ para "Congratulations,"
+ line "<PLAYER>, you and"
+ cont "your #MON are"
+ cont "HALL OF FAMERs!"
+ done
--- /dev/null
+++ b/text/IndigoPlateauLobby.asm
@@ -1,0 +1,25 @@
+_IndigoPlateauLobbyText2::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "At #MON LEAGUE,"
+ line "you have to face"
+ cont "the ELITE FOUR in"
+ cont "succession."
+
+ para "If you lose, you"
+ line "have to start all"
+ cont "over again! This"
+ cont "is it! Go for it!"
+ done
+
+_IndigoPlateauLobbyText3::
+ text "From here on, you"
+ line "face the ELITE"
+ cont "FOUR one by one!"
+
+ para "If you win, a"
+ line "door opens to the"
+ cont "next trainer!"
+ cont "Good luck!"
+ done
--- /dev/null
+++ b/text/LancesRoom.asm
@@ -1,0 +1,63 @@
+_LanceBeforeBattleText::
+ text "Ah! I heard about"
+ line "you <PLAYER>!"
+
+ para "I lead the ELITE"
+ line "FOUR! You can"
+ cont "call me LANCE the"
+ cont "dragon trainer!"
+
+ para "You know that"
+ line "dragons are"
+ cont "mythical #MON!"
+
+ para "They're hard to"
+ line "catch and raise,"
+ cont "but their powers"
+ cont "are superior!"
+
+ para "They're virtually"
+ line "indestructible!"
+
+ para "Well, are you"
+ line "ready to lose?"
+
+ para "Your LEAGUE"
+ line "challenge ends"
+ cont "with me, <PLAYER>!"
+ done
+
+_LanceEndBattleText::
+ text "That's it!"
+
+ para "I hate to admit"
+ line "it, but you are a"
+ cont "#MON master!"
+ prompt
+
+_LanceAfterBattleText::
+ text "I still can't"
+ line "believe my"
+ cont "dragons lost to"
+ cont "you, <PLAYER>!"
+
+ para "You are now the"
+ line "#MON LEAGUE"
+ cont "champion!"
+
+ para "...Or, you would"
+ line "have been, but"
+ cont "you have one more"
+ cont "challenge ahead."
+
+ para "You have to face"
+ line "another trainer!"
+ cont "His name is..."
+
+ para "<RIVAL>!"
+ line "He beat the ELITE"
+ cont "FOUR before you!"
+
+ para "He is the real"
+ line "#MON LEAGUE"
+ cont "champion!@@"
--- /dev/null
+++ b/text/LavenderCuboneHouse.asm
@@ -1,0 +1,24 @@
+_LavenderHouse2Text1::
+ text "CUBONE: Kyarugoo!@@"
+
+_LavenderHouse2Text_1d9dc::
+ text "I hate those"
+ line "horrible ROCKETs!"
+
+ para "That poor CUBONE's"
+ line "mother..."
+
+ para "It was killed"
+ line "trying to escape"
+ cont "from TEAM ROCKET!"
+ done
+
+_LavenderHouse2Text_1d9e1::
+ text "The GHOST of"
+ line "#MON TOWER is"
+ cont "gone!"
+
+ para "Someone must have"
+ line "soothed its"
+ cont "restless soul!"
+ done
--- /dev/null
+++ b/text/LavenderMart.asm
@@ -1,0 +1,30 @@
+_LavenderMartText2::
+ text "I'm searching for"
+ line "items that raise"
+ cont "the abilities of"
+ cont "#MON during a"
+ cont "single battle."
+
+ para "X ATTACK, X"
+ line "DEFEND, X SPEED"
+ cont "and X SPECIAL are"
+ cont "what I'm after."
+
+ para "Do you know where"
+ line "I can get them?"
+ done
+
+_LavenderMartReviveText::
+ text "You know REVIVE?"
+ line "It revives any"
+ cont "fainted #MON!"
+ done
+
+_LavenderMartNuggetText::
+ text "I found a NUGGET"
+ line "in the mountains."
+
+ para "I thought it was"
+ line "useless, but it"
+ cont "sold for ¥5000!"
+ done
--- /dev/null
+++ b/text/LavenderPokecenter.asm
@@ -1,0 +1,12 @@
+_LavenderPokecenterText2::
+ text "TEAM ROCKET will"
+ line "do anything for"
+ cont "the sake of gold!"
+ done
+
+_LavenderPokecenterText3::
+ text "I saw CUBONE's"
+ line "mother die trying"
+ cont "to escape from"
+ cont "TEAM ROCKET!"
+ done
--- /dev/null
+++ b/text/LavenderTown.asm
@@ -1,0 +1,64 @@
+_LavenderTownText_4413c::
+ text "Do you believe in"
+ line "GHOSTs?"
+ done
+
+_LavenderTownText_44141::
+ text "Really? So there"
+ line "are believers..."
+ done
+
+_LavenderTownText_44146::
+ text "Hahaha, I guess"
+ line "not."
+
+ para "That white hand"
+ line "on your shoulder,"
+ cont "it's not real."
+ done
+
+_LavenderTownText2::
+ text "This town is known"
+ line "as the grave site"
+ cont "of #MON."
+
+ para "Memorial services"
+ line "are held in"
+ cont "#MON TOWER."
+ done
+
+_LavenderTownText3::
+ text "GHOSTs appeared"
+ line "in #MON TOWER."
+
+ para "I think they're"
+ line "the spirits of"
+ cont "#MON that the"
+ cont "ROCKETs killed."
+ done
+
+_LavenderTownText4::
+ text "LAVENDER TOWN"
+ line "The Noble Purple"
+ cont "Town"
+ done
+
+_LavenderTownText5::
+ text "New SILPH SCOPE!"
+
+ para "Make the Invisible"
+ line "Plain to See!"
+
+ para "SILPH CO."
+ done
+
+_LavenderTownText8::
+ text "LAVENDER VOLUNTEER"
+ line "#MON HOUSE"
+ done
+
+_LavenderTownText9::
+ text "May the Souls of"
+ line "#MON Rest Easy"
+ cont "#MON TOWER"
+ done
--- /dev/null
+++ b/text/LoreleisRoom.asm
@@ -1,0 +1,42 @@
+_LoreleiBeforeBattleText::
+ text "Welcome to"
+ line "#MON LEAGUE!"
+
+ para "I am LORELEI of"
+ line "the ELITE FOUR!"
+
+ para "No one can best"
+ line "me when it comes"
+ cont "to icy #MON!"
+
+ para "Freezing moves"
+ line "are powerful!"
+
+ para "Your #MON will"
+ line "be at my mercy"
+ cont "when they are"
+ cont "frozen solid!"
+
+ para "Hahaha!"
+ line "Are you ready?"
+ done
+
+_LoreleiEndBattleText::
+ text "How"
+ line "dare you!"
+ prompt
+
+_LoreleiAfterBattleText::
+ text "You're better"
+ line "than I thought!"
+ cont "Go on ahead!"
+
+ para "You only got a"
+ line "taste of #MON"
+ cont "LEAGUE power!"
+ done
+
+_LoreleiDontRunAwayText::
+ text "Someone's voice:"
+ line "Don't run away!"
+ done
--- /dev/null
+++ b/text/MrFujisHouse.asm
@@ -1,0 +1,86 @@
+_LavenderHouse1Text_1d8d1::
+ text "That's odd, MR.FUJI"
+ line "isn't here."
+ cont "Where'd he go?"
+ done
+
+_LavenderHouse1Text_1d8d6::
+ text "MR.FUJI had been"
+ line "praying alone for"
+ cont "CUBONE's mother."
+ done
+
+_LavenderHouse1Text_1d8f4::
+ text "This is really"
+ line "MR.FUJI's house."
+
+ para "He's really kind!"
+
+ para "He looks after"
+ line "abandoned and"
+ cont "orphaned #MON!"
+ done
+
+_LavenderHouse1Text_1d8f9::
+ text "It's so warm!"
+ line "#MON are so"
+ cont "nice to hug!"
+ done
+
+_LavenderHouse1Text3::
+ text "PSYDUCK: Gwappa!@@"
+
+_LavenderHouse1Text4::
+ text "NIDORINO: Gaoo!@@"
+
+_LavenderHouse1Text_1d94c::
+ text "MR.FUJI: <PLAYER>."
+
+ para "Your #DEX quest"
+ line "may fail without"
+ cont "love for your"
+ cont "#MON."
+
+ para "I think this may"
+ line "help your quest."
+ prompt
+
+_ReceivedFluteText::
+ text "<PLAYER> received"
+ line "a @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_FluteExplanationText::
+ text ""
+
+ para "Upon hearing #"
+ line "FLUTE, sleeping"
+ cont "#MON will"
+ cont "spring awake."
+
+ para "It works on all"
+ line "sleeping #MON."
+ done
+
+_FluteNoRoomText::
+ text "You must make"
+ line "room for this!"
+ done
+
+_MrFujiAfterFluteText::
+ text "MR.FUJI: Has my"
+ line "FLUTE helped you?"
+ done
+
+_LavenderHouse1Text6::
+ text "#MON Monthly"
+ line "Grand Prize"
+ cont "Drawing!"
+
+ para "The application"
+ line "form is..."
+
+ para "Gone! It's been"
+ line "clipped out!"
+ done
--- /dev/null
+++ b/text/MrPsychicsHouse.asm
@@ -1,0 +1,25 @@
+_TM29PreReceiveText::
+ text "...Wait! Don't"
+ line "say a word!"
+
+ para "You wanted this!"
+ prompt
+
+_ReceivedTM29Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM29ExplanationText::
+ text "TM29 is PSYCHIC!"
+
+ para "It can lower the"
+ line "target's SPECIAL"
+ cont "abilities."
+ done
+
+_TM29NoRoomText::
+ text "Where do you plan"
+ line "to put this?"
+ done
--- /dev/null
+++ b/text/MtMoon1F.asm
@@ -1,0 +1,119 @@
+_MtMoon1BattleText2::
+ text "WHOA! You shocked"
+ line "me! Oh, you're"
+ cont "just a kid!"
+ done
+
+_MtMoon1EndBattleText2::
+ text "Wow!"
+ line "Shocked again!"
+ prompt
+
+_MtMoon1AfterBattleText2::
+ text "Kids like you"
+ line "shouldn't be"
+ cont "here!"
+ done
+
+_MtMoon1BattleText3::
+ text "Did you come to"
+ line "explore too?"
+ done
+
+_MtMoon1EndBattleText3::
+ text "Losing"
+ line "stinks!"
+ prompt
+
+_MtMoon1AfterBattleText3::
+ text "I came down here"
+ line "to show off to"
+ cont "girls."
+ done
+
+_MtMoon1BattleText4::
+ text "Wow! It's way"
+ line "bigger in here"
+ cont "than I thought!"
+ done
+
+_MtMoon1EndBattleText4::
+ text "Oh!"
+ line "I lost it!"
+ prompt
+
+_MtMoon1AfterBattleText4::
+ text "How do you get"
+ line "out of here?"
+ done
+
+_MtMoon1BattleText5::
+ text "What! Don't sneak"
+ line "up on me!"
+ done
+
+_MtMoon1EndBattleText5::
+ text "My"
+ line "#MON won't do!"
+ prompt
+
+_MtMoon1AfterBattleText5::
+ text "I have to find"
+ line "stronger #MON."
+ done
+
+_MtMoon1BattleText6::
+ text "What? I'm waiting"
+ line "for my friends to"
+ cont "find me here."
+ done
+
+_MtMoon1EndBattleText6::
+ text "I lost?"
+ prompt
+
+_MtMoon1AfterBattleText6::
+ text "I heard there are"
+ line "some very rare"
+ cont "fossils here."
+ done
+
+_MtMoon1BattleText7::
+ text "Suspicious men"
+ line "are in the cave."
+ cont "What about you?"
+ done
+
+_MtMoon1EndBattleText7::
+ text "You"
+ line "got me!"
+ prompt
+
+_MtMoon1AfterBattleText7::
+ text "I saw them! I'm"
+ line "sure they're from"
+ cont "TEAM ROCKET!"
+ done
+
+_MtMoon1BattleText8::
+ text "Go through this"
+ line "cave to get to"
+ cont "CERULEAN CITY!"
+ done
+
+_MtMoon1EndBattleText8::
+ text "I"
+ line "lost."
+ prompt
+
+_MtMoon1AfterBattleText8::
+ text "ZUBAT is tough!"
+ line "But, it can be"
+ cont "useful if you"
+ cont "catch one."
+ done
+
+_MtMoon1Text14::
+ text "Beware! ZUBAT is"
+ line "a blood sucker!"
+ done
--- /dev/null
+++ b/text/MtMoonB1F.asm
@@ -1,0 +1,3 @@
+_MtMoonText1::
+ text ""
+ done
--- /dev/null
+++ b/text/MtMoonB2F.asm
@@ -1,0 +1,122 @@
+_MtMoon3Text_49f24::
+ text "You want the"
+ line "DOME FOSSIL?"
+ done
+
+_MtMoon3Text_49f64::
+ text "You want the"
+ line "HELIX FOSSIL?"
+ done
+
+_MtMoon3Text_49f6f::
+ text "<PLAYER> got the"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_MtMoon3Text_49f7f::
+ text "Look, you've got"
+ line "no room for this.@@"
+
+_MtMoon3Text_49f85::
+ text "Hey, stop!"
+
+ para "I found these"
+ line "fossils! They're"
+ cont "both mine!"
+ done
+
+_MtMoon3Text_49f8a::
+ text "OK!"
+ line "I'll share!"
+ prompt
+
+_MtMoon3Text_49f8f::
+ text "We'll each take"
+ line "one!"
+ cont "No being greedy!"
+ done
+
+_MtMoon3Text_49f94::
+ text "Far away, on"
+ line "CINNABAR ISLAND,"
+ cont "there's a #MON"
+ cont "LAB."
+
+ para "They do research"
+ line "on regenerating"
+ cont "fossils."
+ done
+
+_MtMoon3Text_49f99::
+ text "All right. Then"
+ line "this is mine!@@"
+
+_MtMoon3BattleText2::
+ text "TEAM ROCKET will"
+ line "find the fossils,"
+ cont "revive and sell"
+ cont "them for cash!"
+ done
+
+_MtMoon3EndBattleText2::
+ text "Urgh!"
+ line "Now I'm mad!"
+ prompt
+
+_MtMoon3AfterBattleText2::
+ text "You made me mad!"
+ line "TEAM ROCKET will"
+ cont "blacklist you!"
+ done
+
+_MtMoon3BattleText3::
+ text "We, TEAM ROCKET,"
+ line "are #MON"
+ cont "gangsters!"
+ done
+
+_MtMoon3EndBattleText3::
+ text "I blew"
+ line "it!"
+ prompt
+
+_MtMoon3AfterBattleText3::
+ text "Darn it all! My"
+ line "associates won't"
+ cont "stand for this!"
+ done
+
+_MtMoon3BattleText4::
+ text "We're pulling a"
+ line "big job here!"
+ cont "Get lost, kid!"
+ done
+
+_MtMoon3EndBattleText4::
+ text "So, you"
+ line "are good."
+ prompt
+
+_MtMoon3AfterBattleText4::
+ text "If you find a"
+ line "fossil, give it"
+ cont "to me and scram!"
+ done
+
+_MtMoon3BattleText5::
+ text "Little kids"
+ line "should leave"
+ cont "grown-ups alone!"
+ done
+
+_MtMoon3EndBattleText5::
+ text "I'm"
+ line "steamed!"
+ prompt
+
+_MtMoon3AfterBattleText5::
+ text "#MON lived"
+ line "here long before"
+ cont "people came."
+ done
--- /dev/null
+++ b/text/MtMoonPokecenter.asm
@@ -1,0 +1,48 @@
+_MtMoonPokecenterText1::
+ text "I've 6 # BALLs"
+ line "set in my belt."
+
+ para "At most, you can"
+ line "carry 6 #MON."
+ done
+
+_MtMoonPokecenterText3::
+ text "TEAM ROCKET"
+ line "attacks CERULEAN"
+ cont "citizens..."
+
+ para "TEAM ROCKET is"
+ line "always in the"
+ cont "news!"
+ done
+
+_MagikarpSalesmanText1::
+ text "MAN: Hello, there!"
+ line "Have I got a deal"
+ cont "just for you!"
+
+ para "I'll let you have"
+ line "a swell MAGIKARP"
+ cont "for just ¥500!"
+ cont "What do you say?"
+ done
+
+_MagikarpSalesmanNoText::
+ text "No? I'm only"
+ line "doing this as a"
+ cont "favor to you!"
+ done
+
+_MagikarpSalesmanNoMoneyText::
+ text "You'll need more"
+ line "money than that!"
+ done
+
+_MagikarpSalesmanText2::
+ text "MAN: Well, I don't"
+ line "give refunds!"
+ done
+
+_MtMoonPokecenterText5::
+ text ""
+ done
--- /dev/null
+++ b/text/Museum1F.asm
@@ -1,0 +1,107 @@
+_Museum1FText_5c21a::
+ text "Come again!"
+ done
+
+_Museum1FText_5c21f::
+ text "It's ¥50 for a"
+ line "child's ticket."
+
+ para "Would you like to"
+ line "come in?"
+ done
+
+_Museum1FText_5c224::
+ text "Right, ¥50!"
+ line "Thank you!"
+ done
+
+_Museum1FText_5c229::
+ text "You don't have"
+ line "enough money."
+ prompt
+
+_Museum1FText_5c22e::
+ text "You can't sneak"
+ line "in the back way!"
+
+ para "Oh, whatever!"
+ line "Do you know what"
+ cont "AMBER is?"
+ done
+
+_Museum1FText_5c233::
+ text "There's a lab"
+ line "somewhere trying"
+ cont "to resurrect"
+ cont "ancient #MON"
+ cont "from AMBER."
+ done
+
+_Museum1FText_5c238::
+ text "AMBER is fossil-"
+ line "ized tree sap."
+ done
+
+_Museum1FText_5c23d::
+ text "Please go to the"
+ line "other side!"
+ done
+
+_Museum1FText_5c242::
+ text "Take plenty of"
+ line "time to look!"
+ done
+
+_Museum1FText_5c251::
+ text "That is one"
+ line "magnificent"
+ cont "fossil!"
+ done
+
+_Museum1FText_5c28e::
+ text "Ssh! I think that"
+ line "this chunk of"
+ cont "AMBER contains"
+ cont "#MON DNA!"
+
+ para "It would be great"
+ line "if #MON could"
+ cont "be resurrected"
+ cont "from it!"
+
+ para "But, my colleagues"
+ line "just ignore me!"
+
+ para "So I have a favor"
+ line "to ask!"
+
+ para "Take this to a"
+ line "#MON LAB and"
+ cont "get it examined!"
+ prompt
+
+_ReceivedOldAmberText::
+ text "<PLAYER> received"
+ line "OLD AMBER!@@"
+
+_Museum1FText_5c299::
+ text "Ssh! Get the OLD"
+ line "AMBER checked!"
+ done
+
+_Museum1FText_5c29e::
+ text "You don't have"
+ line "space for this!"
+ done
+
+_Museum1FText_5c2ad::
+ text "We are proud of 2"
+ line "fossils of very"
+ cont "rare, prehistoric"
+ cont "#MON!"
+ done
+
+_Museum1FText_5c2bc::
+ text "The AMBER is"
+ line "clear and gold!"
+ done
--- /dev/null
+++ b/text/Museum2F.asm
@@ -1,0 +1,45 @@
+_Museum2FText1::
+ text "MOON STONE?"
+
+ para "What's so special"
+ line "about it?"
+ done
+
+_Museum2FText2::
+ text "July 20, 1969!"
+
+ para "The 1st lunar"
+ line "landing!"
+
+ para "I bought a color"
+ line "TV to watch it!"
+ done
+
+_Museum2FText3::
+ text "We have a space"
+ line "exhibit now."
+ done
+
+_Museum2FText4::
+ text "I want a PIKACHU!"
+ line "It's so cute!"
+
+ para "I asked my Daddy"
+ line "to catch me one!"
+ done
+
+_Museum2FText5::
+ text "Yeah, a PIKACHU"
+ line "soon, I promise!"
+ done
+
+_Museum2FText6::
+ text "SPACE SHUTTLE"
+ line "COLUMBIA"
+ done
+
+_Museum2FText7::
+ text "Meteorite that"
+ line "fell on MT.MOON."
+ cont "(MOON STONE?)"
+ done
--- /dev/null
+++ b/text/NameRatersHouse.asm
@@ -1,0 +1,60 @@
+_NameRaterText_1dab3::
+ text "Hello, hello!"
+ line "I am the official"
+ cont "NAME RATER!"
+
+ para "Want me to rate"
+ line "the nicknames of"
+ cont "your #MON?"
+ done
+
+_NameRaterText_1dab8::
+ text "Which #MON"
+ line "should I look at?"
+ prompt
+
+_NameRaterText_1dabd::
+ TX_RAM wcd6d
+ text ", is it?"
+ line "That is a decent"
+ cont "nickname!"
+
+ para "But, would you"
+ line "like me to give"
+ cont "it a nicer name?"
+
+ para "How about it?"
+ done
+
+_NameRaterText_1dac2::
+ text "Fine! What should"
+ line "we name it?"
+ prompt
+
+_NameRaterText_1dac7::
+ text "OK! This #MON"
+ line "has been renamed"
+ cont "@"
+ TX_RAM wBuffer
+ text "!"
+
+ para "That's a better"
+ line "name than before!"
+ done
+
+_NameRaterText_1dacc::
+ text "Fine! Come any"
+ line "time you like!"
+ done
+
+_NameRaterText_1dad1::
+ TX_RAM wcd6d
+ text ", is it?"
+ line "That is a truly"
+ cont "impeccable name!"
+
+ para "Take good care of"
+ line "@"
+ TX_RAM wcd6d
+ text "!"
+ done
--- /dev/null
+++ b/text/OaksLab.asm
@@ -1,0 +1,477 @@
+_OaksLabGaryText1::
+ text "<RIVAL>: Yo"
+ line "<PLAYER>! Gramps"
+ cont "isn't around!"
+ done
+
+_OaksLabText40::
+ text "<RIVAL>: Heh, I"
+ line "don't need to be"
+ cont "greedy like you!"
+
+ para "Go ahead and"
+ line "choose, <PLAYER>!"
+ done
+
+_OaksLabText41::
+ text "<RIVAL>: My"
+ line "#MON looks a"
+ cont "lot stronger."
+ done
+
+_OaksLabText39::
+ text "Those are #"
+ line "BALLs. They"
+ cont "contain #MON!"
+ done
+
+_OaksLabCharmanderText::
+ text "So! You want the"
+ line "fire #MON,"
+ cont "CHARMANDER?"
+ done
+
+_OaksLabSquirtleText::
+ text "So! You want the"
+ line "water #MON,"
+ cont "SQUIRTLE?"
+ done
+
+_OaksLabBulbasaurText::
+ text "So! You want the"
+ line "plant #MON,"
+ cont "BULBASAUR?"
+ done
+
+_OaksLabMonEnergeticText::
+ text "This #MON is"
+ line "really energetic!"
+ prompt
+
+_OaksLabReceivedMonText::
+ text "<PLAYER> received"
+ line "a @"
+ TX_RAM wcd6d
+ text "!@@"
+
+_OaksLabLastMonText::
+ text "That's PROF.OAK's"
+ line "last #MON!"
+ done
+
+_OaksLabText_1d2f0::
+ text "OAK: Now, <PLAYER>,"
+ line "which #MON do"
+ cont "you want?"
+ done
+
+_OaksLabText_1d2f5::
+ text "OAK: If a wild"
+ line "#MON appears,"
+ cont "your #MON can"
+ cont "fight against it!"
+ done
+
+_OaksLabText_1d2fa::
+ text "OAK: <PLAYER>,"
+ line "raise your young"
+ cont "#MON by making"
+ cont "it fight!"
+ done
+
+_OaksLabDeliverParcelText1::
+ text "OAK: Oh, <PLAYER>!"
+
+ para "How is my old"
+ line "#MON?"
+
+ para "Well, it seems to"
+ line "like you a lot."
+
+ para "You must be"
+ line "talented as a"
+ cont "#MON trainer!"
+
+ para "What? You have"
+ line "something for me?"
+
+ para "<PLAYER> delivered"
+ line "OAK's PARCEL.@@"
+
+_OaksLabDeliverParcelText2::
+ text ""
+ para "Ah! This is the"
+ line "custom # BALL"
+ cont "I ordered!"
+ cont "Thank you!"
+ done
+
+_OaksLabAroundWorldText::
+ text "#MON around the"
+ line "world wait for"
+ cont "you, <PLAYER>!"
+ done
+
+_OaksLabGivePokeballsText1::
+ text "OAK: You can't get"
+ line "detailed data on"
+ cont "#MON by just"
+ cont "seeing them."
+
+ para "You must catch"
+ line "them! Use these"
+ cont "to capture wild"
+ cont "#MON."
+
+ para "<PLAYER> got 5"
+ line "# BALLs!@@"
+
+_OaksLabGivePokeballsText2::
+ text ""
+ para "When a wild"
+ line "#MON appears,"
+ cont "it's fair game."
+
+ para "Just throw a #"
+ line "BALL at it and try"
+ line "to catch it!"
+
+ para "This won't always"
+ line "work, though."
+
+ para "A healthy #MON"
+ line "could escape. You"
+ cont "have to be lucky!"
+ done
+
+_OaksLabPleaseVisitText::
+ text "OAK: Come see me"
+ line "sometimes."
+
+ para "I want to know how"
+ line "your #DEX is"
+ cont "coming along."
+ done
+
+_OaksLabText_1d31d::
+ text "OAK: Good to see "
+ line "you! How is your "
+ cont "#DEX coming? "
+ cont "Here, let me take"
+ cont "a look!"
+ prompt
+
+_OaksLabText_1d32c::
+ text "It's encyclopedia-"
+ line "like, but the"
+ cont "pages are blank!"
+ done
+
+_OaksLabText8::
+ text "?"
+ done
+
+_OaksLabText_1d340::
+ text "PROF.OAK is the"
+ line "authority on"
+ cont "#MON!"
+
+ para "Many #MON"
+ line "trainers hold him"
+ cont "in high regard!"
+ done
+
+_OaksLabRivalWaitingText::
+ text "<RIVAL>: Gramps!"
+ line "I'm fed up with"
+ cont "waiting!"
+ done
+
+_OaksLabChooseMonText::
+ text "OAK: <RIVAL>?"
+ line "Let me think..."
+
+ para "Oh, that's right,"
+ line "I told you to"
+ cont "come! Just wait!"
+
+ para "Here, <PLAYER>!"
+
+ para "There are 3"
+ line "#MON here!"
+
+ para "Haha!"
+
+ para "They are inside"
+ line "the # BALLs."
+
+ para "When I was young,"
+ line "I was a serious"
+ cont "#MON trainer!"
+
+ para "In my old age, I"
+ line "have only 3 left,"
+ cont "but you can have"
+ cont "one! Choose!"
+ done
+
+_OaksLabRivalInterjectionText::
+ text "<RIVAL>: Hey!"
+ line "Gramps! What"
+ cont "about me?"
+ done
+
+_OaksLabBePatientText::
+ text "OAK: Be patient!"
+ line "<RIVAL>, you can"
+ cont "have one too!"
+ done
+
+_OaksLabLeavingText::
+ text "OAK: Hey! Don't go"
+ line "away yet!"
+ done
+
+_OaksLabRivalPickingMonText::
+ text "<RIVAL>: I'll take"
+ line "this one, then!"
+ done
+
+_OaksLabRivalReceivedMonText::
+ text "<RIVAL> received"
+ line "a @"
+ TX_RAM wcd6d
+ text "!@@"
+
+_OaksLabRivalChallengeText::
+ text "<RIVAL>: Wait"
+ line "<PLAYER>!"
+ cont "Let's check out"
+ cont "our #MON!"
+
+ para "Come on, I'll take"
+ line "you on!"
+ done
+
+_OaksLabText_1d3be::
+ text "WHAT?"
+ line "Unbelievable!"
+ cont "I picked the"
+ cont "wrong #MON!"
+ prompt
+
+_OaksLabText_1d3c3::
+ text "<RIVAL>: Yeah! Am"
+ line "I great or what?"
+ prompt
+
+_OaksLabRivalToughenUpText::
+ text "<RIVAL>: Okay!"
+ line "I'll make my"
+ cont "#MON fight to"
+ cont "toughen it up!"
+
+ para "<PLAYER>! Gramps!"
+ line "Smell you later!"
+ done
+
+_OaksLabText21::
+ text "<RIVAL>: Gramps!"
+ done
+
+_OaksLabText22::
+ text "<RIVAL>: What did"
+ line "you call me for?"
+ done
+
+_OaksLabText23::
+ text "OAK: Oh right! I"
+ line "have a request"
+ cont "of you two."
+ done
+
+_OaksLabText24::
+ text "On the desk there"
+ line "is my invention,"
+ cont "#DEX!"
+
+ para "It automatically"
+ line "records data on"
+ cont "#MON you've"
+ cont "seen or caught!"
+
+ para "It's a hi-tech"
+ line "encyclopedia!"
+ done
+
+_OaksLabText25::
+ text "OAK: <PLAYER> and"
+ line "<RIVAL>! Take"
+ cont "these with you!"
+
+ para "<PLAYER> got"
+ line "#DEX from OAK!@@"
+
+_OaksLabText26::
+ text "To make a complete"
+ line "guide on all the"
+ cont "#MON in the"
+ cont "world..."
+
+ para "That was my dream!"
+
+ para "But, I'm too old!"
+ line "I can't do it!"
+
+ para "So, I want you two"
+ line "to fulfill my"
+ cont "dream for me!"
+
+ para "Get moving, you"
+ line "two!"
+
+ para "This is a great"
+ line "undertaking in"
+ cont "#MON history!"
+ done
+
+_OaksLabText27::
+ text "<RIVAL>: Alright"
+ line "Gramps! Leave it"
+ cont "all to me!"
+
+ para "<PLAYER>, I hate to"
+ line "say it, but I"
+ cont "don't need you!"
+
+ para "I know! I'll"
+ line "borrow a TOWN MAP"
+ cont "from my sis!"
+
+ para "I'll tell her not"
+ line "to lend you one,"
+ cont "<PLAYER>! Hahaha!"
+ done
+
+_OaksLabText_1d405::
+ text "I study #MON as"
+ line "PROF.OAK's AIDE."
+ done
+
+_OaksLabText_441cc::
+ text "#DEX comp-"
+ line "letion is:"
+
+ para "@"
+ TX_NUM hDexRatingNumMonsSeen, 1, 3
+ text " #MON seen"
+ line "@"
+ TX_NUM hDexRatingNumMonsOwned, 1, 3
+ text " #MON owned"
+
+ para "PROF.OAK's"
+ line "Rating:"
+ prompt
+
+_OaksLabText_44201::
+ text "You still have"
+ line "lots to do."
+ cont "Look for #MON"
+ cont "in grassy areas!"
+ done
+
+_OaksLabText_44206::
+ text "You're on the"
+ line "right track! "
+ cont "Get a FLASH HM"
+ cont "from my AIDE!"
+ done
+
+_OaksLabText_4420b::
+ text "You still need"
+ line "more #MON!"
+ cont "Try to catch"
+ cont "other species!"
+ done
+
+_OaksLabText_44210::
+ text "Good, you're"
+ line "trying hard!"
+ cont "Get an ITEMFINDER"
+ cont "from my AIDE!"
+ done
+
+_OaksLabText_44215::
+ text "Looking good!"
+ line "Go find my AIDE"
+ cont "when you get 50!"
+ done
+
+_OaksLabText_4421a::
+ text "You finally got at"
+ line "least 50 species!"
+ cont "Be sure to get"
+ cont "EXP.ALL from my"
+ cont "AIDE!"
+ done
+
+_OaksLabText_4421f::
+ text "Ho! This is geting"
+ line "even better!"
+ done
+
+_OaksLabText_44224::
+ text "Very good!"
+ line "Go fish for some"
+ cont "marine #MON!"
+ done
+
+_OaksLabText_44229::
+ text "Wonderful!"
+ line "Do you like to"
+ cont "collect things?"
+ done
+
+_OaksLabText_4422e::
+ text "I'm impressed!"
+ line "It must have been"
+ cont "difficult to do!"
+ done
+
+_OaksLabText_44233::
+ text "You finally got at"
+ line "least 100 species!"
+ cont "I can't believe"
+ cont "how good you are!"
+ done
+
+_OaksLabText_44238::
+ text "You even have the"
+ line "evolved forms of"
+ cont "#MON! Super!"
+ done
+
+_OaksLabText_4423d::
+ text "Excellent! Trade"
+ line "with friends to"
+ cont "get some more!"
+ done
+
+_OaksLabText_44242::
+ text "Outstanding!"
+ line "You've become a"
+ cont "real pro at this!"
+ done
+
+_OaksLabText_44247::
+ text "I have nothing"
+ line "left to say!"
+ cont "You're the"
+ cont "authority now!"
+ done
+
+_OaksLabText_4424c::
+ text "Your #DEX is"
+ line "entirely complete!"
+ cont "Congratulations!"
+ done
--- /dev/null
+++ b/text/PalletTown.asm
@@ -1,0 +1,55 @@
+_OakAppearsText::
+ text "OAK: Hey! Wait!"
+ line "Don't go out!@@"
+
+_OakWalksUpText::
+ text "OAK: It's unsafe!"
+ line "Wild #MON live"
+ cont "in tall grass!"
+
+ para "You need your own"
+ line "#MON for your"
+ cont "protection."
+ cont "I know!"
+
+ para "Here, come with"
+ line "me!"
+ done
+
+_PalletTownText2::
+ text "I'm raising"
+ line "#MON too!"
+
+ para "When they get"
+ line "strong, they can"
+ cont "protect me!"
+ done
+
+_PalletTownText3::
+ text "Technology is"
+ line "incredible!"
+
+ para "You can now store"
+ line "and recall items"
+ cont "and #MON as"
+ cont "data via PC!"
+ done
+
+_PalletTownText4::
+ text "OAK #MON"
+ line "RESEARCH LAB"
+ done
+
+_PalletTownText5::
+ text "PALLET TOWN"
+ line "Shades of your"
+ cont "journey await!"
+ done
+
+_PalletTownText6::
+ text "<PLAYER>'s house "
+ done
+
+_PalletTownText7::
+ text "<RIVAL>'s house "
+ done
--- /dev/null
+++ b/text/PewterCity.asm
@@ -1,0 +1,117 @@
+_PewterCityText1::
+ text "It's rumored that"
+ line "CLEFAIRYs came"
+ cont "from the moon!"
+
+ para "They appeared "
+ line "after MOON STONE"
+ cont "fell on MT.MOON."
+ done
+
+_PewterCityText2::
+ text "There aren't many"
+ line "serious #MON"
+ cont "trainers here!"
+
+ para "They're all like"
+ line "BUG CATCHERs,"
+ cont "but PEWTER GYM's"
+ cont "BROCK is totally"
+ cont "into it!"
+ done
+
+_PewterCityText_193f1::
+ text "Did you check out"
+ line "the MUSEUM?"
+ done
+
+_PewterCityText_193f6::
+ text "Weren't those"
+ line "fossils from MT."
+ cont "MOON amazing?"
+ done
+
+_PewterCityText_193fb::
+ text "Really?"
+ line "You absolutely"
+ cont "have to go!"
+ done
+
+_PewterCityText13::
+ text "It's right here!"
+ line "You have to pay"
+ cont "to get in, but"
+ cont "it's worth it!"
+ cont "See you around!"
+ done
+
+_PewterCityText_19427::
+ text "Psssst!"
+ line "Do you know what"
+ cont "I'm doing?"
+ done
+
+_PewterCityText_1942c::
+ text "That's right!"
+ line "It's hard work!"
+ done
+
+_PewterCityText_19431::
+ text "I'm spraying REPEL"
+ line "to keep #MON"
+ cont "out of my garden!"
+ done
+
+_PewterCityText_1945d::
+ text "You're a trainer"
+ line "right? BROCK's"
+ cont "looking for new"
+ cont "challengers!"
+ cont "Follow me!"
+ done
+
+_PewterCityText14::
+ text "If you have the"
+ line "right stuff, go"
+ cont "take on BROCK!"
+ done
+
+_PewterCityText6::
+ text "TRAINER TIPS"
+
+ para "Any #MON that"
+ line "takes part in"
+ cont "battle, however"
+ cont "short, earns EXP!"
+ done
+
+_PewterCityText7::
+ text "NOTICE!"
+
+ para "Thieves have been"
+ line "stealing #MON"
+ cont "fossils at MT."
+ cont "MOON! Please call"
+ cont "PEWTER POLICE"
+ cont "with any info!"
+ done
+
+_PewterCityText10::
+ text "PEWTER MUSEUM"
+ line "OF SCIENCE"
+ done
+
+_PewterCityText11::
+ text "PEWTER CITY"
+ line "#MON GYM"
+ cont "LEADER: BROCK"
+
+ para "The Rock Solid"
+ line "#MON Trainer!"
+ done
+
+_PewterCityText12::
+ text "PEWTER CITY"
+ line "A Stone Gray"
+ cont "City"
+ done
--- /dev/null
+++ b/text/PewterGym.asm
@@ -1,0 +1,18 @@
+_PewterGymText_5c49e::
+ text "I'm BROCK!"
+ line "I'm PEWTER's GYM"
+ cont "LEADER!"
+
+ para "I believe in rock"
+ line "hard defense and"
+ cont "determination!"
+
+ para "That's why my"
+ line "#MON are all"
+ cont "the rock-type!"
+
+ para "Do you still want"
+ line "to challenge me?"
+ cont "Fine then! Show"
+ cont "me your best!"
+ done
--- /dev/null
+++ b/text/PewterGym_2.asm
@@ -1,0 +1,144 @@
+_PewterGymText_5c4a3::
+ text "There are all"
+ line "kinds of trainers"
+ cont "in the world!"
+
+ para "You appear to be"
+ line "very gifted as a"
+ cont "#MON trainer!"
+
+ para "Go to the GYM in"
+ line "CERULEAN and test"
+ cont "your abilities!"
+ done
+
+_TM34PreReceiveText::
+ text "Wait! Take this"
+ line "with you!"
+ done
+
+_ReceivedTM34Text::
+ text "<PLAYER> received"
+ line "TM34!@@"
+
+_TM34ExplanationText::
+ text ""
+
+ para "A TM contains a"
+ line "technique that"
+ cont "can be taught to"
+ cont "#MON!"
+
+ para "A TM is good only"
+ line "once! So when you"
+ cont "use one to teach"
+ cont "a new technique,"
+ cont "pick the #MON"
+ cont "carefully!"
+
+ para "TM34 contains"
+ line "BIDE!"
+
+ para "Your #MON will"
+ line "absorb damage in"
+ cont "battle then pay"
+ cont "it back double!"
+ done
+
+_TM34NoRoomText::
+ text "You don't have"
+ line "room for this!"
+ done
+
+_PewterGymText_5c4bc::
+ text "I took"
+ line "you for granted."
+
+ para "As proof of your"
+ line "victory, here's"
+ cont "the BOULDERBADGE!"
+
+ para "<PLAYER> received"
+ line "the BOULDERBADGE!@@"
+
+_PewterGymText_5c4c1::
+ text ""
+
+ para "That's an official"
+ line "#MON LEAGUE"
+ cont "BADGE!"
+
+ para "Its bearer's"
+ line "#MON become"
+ cont "more powerful!"
+
+ para "The technique"
+ line "FLASH can now be"
+ cont "used any time!"
+ prompt
+
+_PewterGymBattleText1::
+ text "Stop right there,"
+ line "kid!"
+
+ para "You're still light"
+ line "years from facing"
+ cont "BROCK!"
+ done
+
+_PewterGymEndBattleText1::
+ text "Darn!"
+
+ para "Light years isn't"
+ line "time! It measures"
+ cont "distance!"
+ prompt
+
+_PewterGymAfterBattleText1::
+ text "You're pretty hot,"
+ line "but not as hot"
+ cont "as BROCK!"
+ done
+
+_PewterGymText_5c515::
+ text "Hiya! I can tell"
+ line "you have what it"
+ cont "takes to become a"
+ cont "#MON champ!"
+
+ para "I'm no trainer,"
+ line "but I can tell"
+ cont "you how to win!"
+
+ para "Let me take you"
+ line "to the top!"
+ done
+
+_PewterGymText_5c51a::
+ text "All right! Let's"
+ line "get happening!"
+ prompt
+
+_PewterGymText_5c51f::
+ text "The 1st #MON"
+ line "out in a match is"
+ cont "at the top of the"
+ cont "#MON LIST!"
+
+ para "By changing the"
+ line "order of #MON,"
+ cont "matches could be"
+ cont "made easier!"
+ done
+
+_PewterGymText_5c524::
+ text "It's a free"
+ line "service! Let's"
+ cont "get happening!"
+ prompt
+
+_PewterGymText_5c529::
+ text "Just as I thought!"
+ line "You're #MON"
+ cont "champ material!"
+ done
--- /dev/null
+++ b/text/PewterMart.asm
@@ -1,0 +1,17 @@
+_PewterMartText2::
+ text "A shady, old man"
+ line "got me to buy"
+ cont "this really weird"
+ cont "fish #MON!"
+
+ para "It's totally weak"
+ line "and it cost ¥500!"
+ done
+
+_PewterMartText3::
+ text "Good things can"
+ line "happen if you"
+ cont "raise #MON"
+ cont "diligently, even"
+ cont "the weak ones!"
+ done
--- /dev/null
+++ b/text/PewterNidoranHouse.asm
@@ -1,0 +1,24 @@
+_PewterHouse1Text1::
+ text "NIDORAN: Bowbow!@@"
+
+_PewterHouse1Text2::
+ text "NIDORAN sit!"
+ done
+
+_PewterHouse1Text3::
+ text "Our #MON's an"
+ line "outsider, so it's"
+ cont "hard to handle."
+
+ para "An outsider is a"
+ line "#MON that you"
+ cont "get in a trade."
+
+ para "It grows fast, but"
+ line "it may ignore an"
+ cont "unskilled trainer"
+ cont "in battle!"
+
+ para "If only we had"
+ line "some BADGEs..."
+ done
--- /dev/null
+++ b/text/PewterPokecenter.asm
@@ -1,0 +1,14 @@
+_PewterPokecenterText2::
+ text "What!?"
+
+ para "TEAM ROCKET is"
+ line "at MT.MOON? Huh?"
+ cont "I'm on the phone!"
+
+ para "Scram!"
+ done
+
+_PewterJigglypuffText::
+ text "JIGGLYPUFF: Puu"
+ line "pupuu!"
+ done
--- /dev/null
+++ b/text/PewterSpeechHouse.asm
@@ -1,0 +1,19 @@
+_PewterHouse2Text1::
+ text "#MON learn new"
+ line "techniques as"
+ cont "they grow!"
+
+ para "But, some moves"
+ line "must be taught by"
+ cont "the trainer!"
+ done
+
+_PewterHouse2Text2::
+ text "#MON become"
+ line "easier to catch"
+ cont "when they are"
+ cont "hurt or asleep!"
+
+ para "But, it's not a"
+ line "sure thing!"
+ done
--- /dev/null
+++ b/text/PokemonFanClub.asm
@@ -1,0 +1,143 @@
+PikachuFanText::
+ text "Won't you admire"
+ line "my PIKACHU's"
+ cont "adorable tail?"
+ done
+
+PikachuFanBetterText::
+ text "Humph! My PIKACHU"
+ line "is twice as cute"
+ cont "as that one!"
+ done
+
+SeelFanText::
+ text "I just love my"
+ line "SEEL!"
+
+ para "It squeals when I"
+ line "hug it!"
+ done
+
+SeelFanBetterText::
+ text "Oh dear!"
+
+ para "My SEEL is far"
+ line "more attractive!"
+ done
+
+FanClubPikachuText::
+ text "PIKACHU: Chu!"
+ line "Pikachu!"
+ done
+
+FanClubSeelText::
+ text "SEEL: Kyuoo!"
+ done
+
+FanClubMeetChairText::
+ text "I chair the"
+ line "#MON Fan Club!"
+
+ para "I have collected"
+ line "over 100 #MON!"
+
+ para "I'm very fussy"
+ line "when it comes to"
+ cont "#MON!"
+
+ para "So..."
+
+ para "Did you come"
+ line "visit to hear"
+ cont "about my #MON?"
+ done
+
+FanClubChairStoryText::
+ text "Good!"
+ line "Then listen up!"
+
+ para "My favorite"
+ line "RAPIDASH..."
+
+ para "It...cute..."
+ line "lovely...smart..."
+ cont "plus...amazing..."
+ cont "you think so?..."
+ cont "oh yes...it..."
+ cont "stunning..."
+ cont "kindly..."
+ cont "love it!"
+
+ para "Hug it...when..."
+ cont "sleeping...warm"
+ cont "and cuddly..."
+ cont "spectacular..."
+ cont "ravishing..."
+ cont "...Oops! Look at"
+ cont "the time! I kept"
+ cont "you too long!"
+
+ para "Thanks for hearing"
+ line "me out! I want"
+ cont "you to have this!"
+ prompt
+
+ReceivedBikeVoucherText::
+ text "<PLAYER> received"
+ line "a @"
+ TX_RAM wcf4b
+ text "!@@"
+
+ExplainBikeVoucherText::
+ text ""
+ para "Exchange that for"
+ line "a BICYCLE!"
+
+ para "Don't worry, my"
+ line "FEAROW will FLY"
+ cont "me anywhere!"
+
+ para "So, I don't need a"
+ line "BICYCLE!"
+
+ para "I hope you like"
+ line "cycling!"
+ done
+
+FanClubNoStoryText::
+ text "Oh. Come back"
+ line "when you want to"
+ cont "hear my story!"
+ done
+
+FanClubChairFinalText::
+ text "Hello, <PLAYER>!"
+
+ para "Did you come see"
+ line "me about my"
+ cont "#MON again?"
+
+ para "No? Too bad!"
+ done
+
+FanClubBagFullText::
+ text "Make room for"
+ line "this!"
+ done
+
+_FanClubText6::
+ text "Our Chairman is"
+ line "very vocal about"
+ cont "#MON."
+ done
+
+_FanClubText7::
+ text "Let's all listen"
+ line "politely to other"
+ cont "trainers!"
+ done
+
+_FanClubText8::
+ text "If someone brags,"
+ line "brag right back!"
+ done
--- /dev/null
+++ b/text/PokemonMansion1F.asm
@@ -1,0 +1,29 @@
+_Mansion1BattleText2::
+ text "Who are you? There"
+ line "shouldn't be"
+ cont "anyone here."
+ done
+
+_Mansion1EndBattleText2::
+ text "Ouch!"
+ prompt
+
+_Mansion1AfterBattleText2::
+ text "A key? I don't"
+ line "know what you're"
+ cont "talking about."
+ done
+
+_MansionSwitchText::
+ text "A secret switch!"
+
+ para "Press it?"
+ done
+
+_MansionSwitchPressedText::
+ text "Who wouldn't?"
+ prompt
+
+_MansionSwitchNotPressedText::
+ text "Not quite yet!"
+ done
--- /dev/null
+++ b/text/PokemonMansion2F.asm
@@ -1,0 +1,47 @@
+_Mansion2BattleText1::
+ text "I can't get out!"
+ line "This old place is"
+ cont "one big puzzle!"
+ done
+
+_Mansion2EndBattleText1::
+ text "Oh no!"
+ line "My bag of loot!"
+ prompt
+
+_Mansion2AfterBattleText1::
+ text "Switches open and"
+ line "close alternating"
+ cont "sets of doors!"
+ done
+
+_Mansion2Text3::
+ text "Diary: July 5"
+ line "Guyana,"
+ cont "South America"
+
+ para "A new #MON was"
+ line "discovered deep"
+ cont "in the jungle."
+ done
+
+_Mansion2Text4::
+ text "Diary: July 10"
+ line "We christened the"
+ cont "newly discovered"
+ cont "#MON, MEW."
+ done
+
+_Mansion2Text_520c2::
+ text "A secret switch!"
+
+ para "Press it?"
+ done
+
+_Mansion2Text_520c7::
+ text "Who wouldn't?"
+ prompt
+
+_Mansion2Text_520cc::
+ text "Not quite yet!"
+ done
--- /dev/null
+++ b/text/PokemonMansion3F.asm
@@ -1,0 +1,37 @@
+_Mansion3BattleText1::
+ text "This place is"
+ line "like, huge!"
+ done
+
+_Mansion3EndBattleText1::
+ text "Ayah!"
+ prompt
+
+_Mansion3AfterBattleText1::
+ text "I wonder where"
+ line "my partner went."
+ done
+
+_Mansion3BattleText2::
+ text "My mentor once"
+ line "lived here."
+ done
+
+_Mansion3EndBattleText2::
+ text "Whew!"
+ line "Overwhelming!"
+ prompt
+
+_Mansion3AfterBattleText2::
+ text "So, you're stuck?"
+ line "Try jumping off"
+ cont "over there!"
+ done
+
+_Mansion3Text5::
+ text "Diary: Feb. 6"
+ line "MEW gave birth."
+
+ para "We named the"
+ line "newborn MEWTWO."
+ done
--- /dev/null
+++ b/text/PokemonMansionB1F.asm
@@ -1,0 +1,39 @@
+_Mansion4BattleText1::
+ text "Uh-oh. Where am"
+ line "I now?"
+ done
+
+_Mansion4EndBattleText1::
+ text "Awooh!"
+ prompt
+
+_Mansion4AfterBattleText1::
+ text "You can find stuff"
+ line "lying around."
+ done
+
+_Mansion4BattleText2::
+ text "This place is"
+ line "ideal for a lab."
+ done
+
+_Mansion4EndBattleText2::
+ text "What"
+ line "was that for?"
+ prompt
+
+_Mansion4AfterBattleText2::
+ text "I like it here!"
+ line "It's conducive to"
+ cont "my studies!"
+ done
+
+_Mansion4Text7::
+ text "Diary; Sept. 1"
+ line "MEWTWO is far too"
+ cont "powerful."
+
+ para "We have failed to"
+ line "curb its vicious"
+ cont "tendencies..."
+ done
--- /dev/null
+++ b/text/PokemonTower1F.asm
@@ -1,0 +1,31 @@
+_PokemonTower1Text1::
+ text "#MON TOWER was"
+ line "erected in the"
+ cont "memory of #MON"
+ cont "that had died."
+ done
+
+_PokemonTower1Text2::
+ text "Did you come to"
+ line "pay respects?"
+ cont "Bless you!"
+ done
+
+_PokemonTower1Text3::
+ text "I came to pray"
+ line "for my CLEFAIRY."
+
+ para "Sniff! I can't"
+ line "stop crying..."
+ done
+
+_PokemonTower1Text4::
+ text "My GROWLITHE..."
+ line "Why did you die?"
+ done
+
+_PokemonTower1Text5::
+ text "I am a CHANNELER!"
+ line "There are spirits"
+ cont "up to mischief!"
+ done
--- /dev/null
+++ b/text/PokemonTower2F.asm
@@ -1,0 +1,57 @@
+_PokemonTower2Text_6062d::
+ text "<RIVAL>: Hey,"
+ line "<PLAYER>! What"
+ cont "brings you here?"
+ cont "Your #MON"
+ cont "don't look dead!"
+
+ para "I can at least"
+ line "make them faint!"
+ cont "Let's go, pal!"
+ done
+
+_PokemonTower2Text_60632::
+ text "What?"
+ line "You stinker!"
+
+ para "I took it easy on"
+ line "you too!"
+ prompt
+
+_PokemonTower2Text_60637::
+ text "<RIVAL>: Well,"
+ line "look at all your"
+ cont "wimpy #MON!"
+
+ para "Toughen them up a"
+ line "bit more!"
+ prompt
+
+_PokemonTower2Text_6063c::
+ text "How's your #DEX"
+ line "coming, pal?"
+ cont "I just caught a"
+ cont "CUBONE!"
+
+ para "I can't find the"
+ line "grown-up MAROWAK"
+ cont "yet!"
+
+ para "I doubt there are"
+ line "any left! Well, I"
+ cont "better get going!"
+ cont "I've got a lot to"
+ cont "accomplish, pal!"
+
+ para "Smell ya later!"
+ done
+
+_PokemonTower2Text2::
+ text "Even we could not"
+ line "identify the"
+ cont "wayward GHOSTs!"
+
+ para "A SILPH SCOPE"
+ line "might be able to"
+ cont "unmask them."
+ done
--- /dev/null
+++ b/text/PokemonTower3F.asm
@@ -1,0 +1,45 @@
+_PokemonTower3BattleText1::
+ text "Urrg...Awaa..."
+ line "Huhu...graa.."
+ done
+
+_PokemonTower3EndBattleText1::
+ text "Hwa!"
+ line "I'm saved!"
+ prompt
+
+_PokemonTower3AfterBattleText1::
+ text "The GHOSTs can be"
+ line "identified by the"
+ cont "SILPH SCOPE."
+ done
+
+_PokemonTower3BattleText2::
+ text "Kekeke...."
+ line "Kwaaah!"
+ done
+
+_PokemonTower3EndBattleText2::
+ text "Hmm?"
+ line "What am I doing?"
+ prompt
+
+_PokemonTower3AfterBattleText2::
+ text "Sorry! I was"
+ line "possessed!"
+ done
+
+_PokemonTower3BattleText3::
+ text "Be gone!"
+ line "Evil spirit!"
+ done
+
+_PokemonTower3EndBattleText3::
+ text "Whew!"
+ line "The spirit left!"
+ prompt
+
+_PokemonTower3AfterBattleText3::
+ text "My friends were"
+ line "possessed too!"
+ done
--- /dev/null
+++ b/text/PokemonTower4F.asm
@@ -1,0 +1,45 @@
+_PokemonTower4BattleText1::
+ text "GHOST! No!"
+ line "Kwaaah!"
+ done
+
+_PokemonTower4EndBattleText1::
+ text "Where"
+ line "is the GHOST?"
+ prompt
+
+_PokemonTower4AfterBattleText1::
+ text "I must have been"
+ line "dreaming..."
+ done
+
+_PokemonTower4BattleText2::
+ text "Be cursed with"
+ line "me! Kwaaah!"
+ done
+
+_PokemonTower4EndBattleText2::
+ text "What!"
+ prompt
+
+_PokemonTower4AfterBattleText2::
+ text "We can't crack"
+ line "the identity of"
+ cont "the GHOSTs."
+ done
+
+_PokemonTower4BattleText3::
+ text "Huhuhu..."
+ line "Beat me not!"
+ done
+
+_PokemonTower4EndBattleText3::
+ text "Huh?"
+ line "Who? What?"
+ prompt
+
+_PokemonTower4AfterBattleText3::
+ text "May the departed"
+ line "souls of #MON"
+ cont "rest in peace..."
+ done
--- /dev/null
+++ b/text/PokemonTower5F.asm
@@ -1,0 +1,71 @@
+_PokemonTower5Text1::
+ text "Come, child! I"
+ line "sealed this space"
+ cont "with white magic!"
+
+ para "You can rest here!"
+ done
+
+_PokemonTower5BattleText1::
+ text "Give...me..."
+ line "your...soul..."
+ done
+
+_PokemonTower5EndBattleText1::
+ text "Gasp!"
+ prompt
+
+_PokemonTower5AfterBattleText1::
+ text "I was under"
+ line "possession!"
+ done
+
+_PokemonTower5BattleText2::
+ text "You...shall..."
+ line "join...us..."
+ done
+
+_PokemonTower5EndBattleText2::
+ text "What"
+ line "a nightmare!"
+ prompt
+
+_PokemonTower5AfterBattleText2::
+ text "I was possessed!"
+ done
+
+_PokemonTower5BattleText3::
+ text "Zombies!"
+ done
+
+_PokemonTower5EndBattleText3::
+ text "Ha?"
+ prompt
+
+_PokemonTower5AfterBattleText3::
+ text "I regained my"
+ line "senses!"
+ done
+
+_PokemonTower5BattleText4::
+ text "Urgah..."
+ line "Urff...."
+ done
+
+_PokemonTower5EndBattleText4::
+ text "Whoo!"
+ prompt
+
+_PokemonTower5AfterBattleText4::
+ text "I fell to evil"
+ line "spirits despite"
+ cont "my training!"
+ done
+
+_PokemonTower5Text7::
+ text "Entered purified,"
+ line "protected zone!"
+
+ para "<PLAYER>'s #MON"
+ line "are fully healed!"
+ done
--- /dev/null
+++ b/text/PokemonTower6F.asm
@@ -1,0 +1,61 @@
+_PokemonTower2Text_60c1f::
+ text "The GHOST was the"
+ line "restless soul of"
+ cont "CUBONE's mother!"
+ done
+
+_PokemonTower2Text_60c24::
+ text "The mother's soul"
+ line "was calmed."
+
+ para "It departed to"
+ line "the afterlife!"
+ done
+
+_PokemonTower6BattleText1::
+ text "Give...me..."
+ line "blood..."
+ done
+
+_PokemonTower6EndBattleText1::
+ text "Groan!"
+ prompt
+
+_PokemonTower6AfterBattleText1::
+ text "I feel anemic and"
+ line "weak..."
+ done
+
+_PokemonTower6BattleText2::
+ text "Urff... Kwaah!"
+ done
+
+_PokemonTower6EndBattleText2::
+ text "Some-"
+ line "thing fell out!"
+ prompt
+
+_PokemonTower6AfterBattleText2::
+ text "Hair didn't fall"
+ line "out! It was an"
+ cont "evil spirit!"
+ done
+
+_PokemonTower6BattleText3::
+ text "Ke..ke...ke..."
+ line "ke..ke...ke!!"
+ done
+
+_PokemonTower6EndBattleText3::
+ text "Keee!"
+ prompt
+
+_PokemonTower6AfterBattleText3::
+ text "What's going on"
+ line "here?"
+ done
+
+_PokemonTower6Text6::
+ text "Be gone..."
+ line "Intruders..."
+ done
--- /dev/null
+++ b/text/PokemonTower7F.asm
@@ -1,0 +1,78 @@
+_TowerRescueFujiText::
+ text "MR.FUJI: Heh? You"
+ line "came to save me?"
+
+ para "Thank you. But, I"
+ line "came here of my"
+ cont "own free will."
+
+ para "I came to calm"
+ line "the soul of"
+ cont "CUBONE's mother."
+
+ para "I think MAROWAK's"
+ line "spirit has gone"
+ cont "to the afterlife."
+
+ para "I must thank you"
+ line "for your kind"
+ cont "concern!"
+
+ para "Follow me to my"
+ line "home, #MON"
+ cont "HOUSE at the foot"
+ cont "of this tower."
+ done
+
+_PokemonTower7BattleText1::
+ text "What do you want?"
+ line "Why are you here?"
+ done
+
+_PokemonTower7EndBattleText1::
+ text "I give up!"
+ prompt
+
+_PokemonTower7AfterBattleText1::
+ text "I'm not going to"
+ line "forget this!"
+ done
+
+_PokemonTower7BattleText2::
+ text "This old guy came"
+ line "and complained"
+ cont "about us harming"
+ cont "useless #MON!"
+
+ para "We're talking it"
+ line "over as adults!"
+ done
+
+_PokemonTower7EndBattleText2::
+ text "Please!"
+ line "No more!"
+ prompt
+
+_PokemonTower7AfterBattleText2::
+ text "#MON are only"
+ line "good for making"
+ cont "money!"
+
+ para "Stay out of our"
+ line "business!"
+ done
+
+_PokemonTower7BattleText3::
+ text "You're not saving"
+ line "anyone, kid!"
+ done
+
+_PokemonTower7EndBattleText3::
+ text "Don't"
+ line "fight us ROCKETs!"
+ prompt
+
+_PokemonTower7AfterBattleText3::
+ text "You're not getting"
+ line "away with this!"
+ done
--- /dev/null
+++ b/text/PowerPlant.asm
@@ -1,0 +1,6 @@
+_VoltorbBattleText::
+ text "Bzzzt!"
+ done
+
+_ZapdosBattleText::
+ text "Gyaoo!@@"
--- /dev/null
+++ b/text/RedsHouse1F.asm
@@ -1,0 +1,37 @@
+_MomWakeUpText::
+ text "MOM: Right."
+ line "All boys leave"
+ cont "home some day."
+ cont "It said so on TV."
+
+ para "PROF.OAK, next"
+ line "door, is looking"
+ cont "for you."
+ done
+
+_MomHealText1::
+ text "MOM: <PLAYER>!"
+ line "You should take a"
+ cont "quick rest."
+ prompt
+
+_MomHealText2::
+ text "MOM: Oh good!"
+ line "You and your"
+ cont "#MON are"
+ cont "looking great!"
+ cont "Take care now!"
+ done
+
+_StandByMeText::
+ text "There's a movie"
+ line "on TV. Four boys"
+ cont "are walking on"
+ cont "railroad tracks."
+
+ para "I better go too."
+ done
+
+_TVWrongSideText::
+ text "Oops, wrong side."
+ done
--- /dev/null
+++ b/text/RockTunnel1F.asm
@@ -1,0 +1,115 @@
+_RockTunnel1BattleText1::
+ text "This tunnel goes"
+ line "a long way, kid!"
+ done
+
+_RockTunnel1EndBattleText1::
+ text "Doh!"
+ line "You win!"
+ prompt
+
+_RockTunnel1AfterBattleText1::
+ text "Watch for ONIX!"
+ line "It can put the"
+ cont "squeeze on you!"
+ done
+
+_RockTunnel1BattleText2::
+ text "Hmm. Maybe I'm"
+ line "lost in here..."
+ done
+
+_RockTunnel1EndBattleText2::
+ text "Ease up!"
+ line "What am I doing?"
+ cont "Which way is out?"
+ prompt
+
+_RockTunnel1AfterBattleText2::
+ text "That sleeping"
+ line "#MON on ROUTE"
+ cont "12 forced me to"
+ cont "take this detour."
+ done
+
+_RockTunnel1BattleText3::
+ text "Outsiders like"
+ line "you need to show"
+ cont "me some respect!"
+ done
+
+_RockTunnel1EndBattleText3::
+ text "I give!"
+ prompt
+
+_RockTunnel1AfterBattleText3::
+ text "You're talented"
+ line "enough to hike!"
+ done
+
+_RockTunnel1BattleText4::
+ text "#MON fight!"
+ line "Ready, go!"
+ done
+
+_RockTunnel1EndBattleText4::
+ text "Game"
+ line "over!"
+ prompt
+
+_RockTunnel1AfterBattleText4::
+ text "Oh well, I'll get"
+ line "a ZUBAT as I go!"
+ done
+
+_RockTunnel1BattleText5::
+ text "Eek! Don't try"
+ line "anything funny in"
+ cont "the dark!"
+ done
+
+_RockTunnel1EndBattleText5::
+ text "It"
+ line "was too dark!"
+ prompt
+
+_RockTunnel1AfterBattleText5::
+ text "I saw a MACHOP"
+ line "in this tunnel!"
+ done
+
+_RockTunnel1BattleText6::
+ text "I came this far"
+ line "for #MON!"
+ done
+
+_RockTunnel1EndBattleText6::
+ text "I'm"
+ line "out of #MON!"
+ prompt
+
+_RockTunnel1AfterBattleText6::
+ text "You looked cute"
+ line "and harmless!"
+ done
+
+_RockTunnel1BattleText7::
+ text "You have #MON!"
+ line "Let's start!"
+ done
+
+_RockTunnel1EndBattleText7::
+ text "You"
+ line "play hard!"
+ prompt
+
+_RockTunnel1AfterBattleText7::
+ text "Whew! I'm all"
+ line "sweaty now!"
+ done
+
+_RockTunnel1Text8::
+ text "ROCK TUNNEL"
+ line "CERULEAN CITY -"
+ cont "LAVENDER TOWN"
+ done
--- /dev/null
+++ b/text/RockTunnelB1F.asm
@@ -1,0 +1,108 @@
+_RockTunnel2BattleText2::
+ text "Hikers leave twigs"
+ line "as trail markers."
+ done
+
+_RockTunnel2EndBattleText2::
+ text "Ohhh!"
+ line "I did my best!"
+ prompt
+
+_RockTunnel2AfterBattleText2::
+ text "I want to go "
+ line "home!"
+ done
+
+_RockTunnel2BattleText3::
+ text "Hahaha! Can you"
+ line "beat my power?"
+ done
+
+_RockTunnel2EndBattleText3::
+ text "Oops!"
+ line "Out-muscled!"
+ prompt
+
+_RockTunnel2AfterBattleText3::
+ text "I go for power"
+ line "because I hate"
+ cont "thinking!"
+ done
+
+_RockTunnel2BattleText4::
+ text "You have a"
+ line "#DEX?"
+ cont "I want one too!"
+ done
+
+_RockTunnel2EndBattleText4::
+ text "Shoot!"
+ line "I'm so jealous!"
+ prompt
+
+_RockTunnel2AfterBattleText4::
+ text "When you finish"
+ line "your #DEX, can"
+ cont "I have it?"
+ done
+
+_RockTunnel2BattleText5::
+ text "Do you know about"
+ line "costume players?"
+ done
+
+_RockTunnel2EndBattleText5::
+ text "Well,"
+ line "that's that."
+ prompt
+
+_RockTunnel2AfterBattleText5::
+ text "Costume players"
+ line "dress up as"
+ cont "#MON for fun."
+ done
+
+_RockTunnel2BattleText6::
+ text "My #MON"
+ line "techniques will"
+ cont "leave you crying!"
+ done
+
+_RockTunnel2EndBattleText6::
+ text "I give!"
+ line "You're a better"
+ cont "technician!"
+ prompt
+
+_RockTunnel2AfterBattleText6::
+ text "In mountains,"
+ line "you'll often find"
+ cont "rock-type #MON."
+ done
+
+_RockTunnel2BattleText7::
+ text "I don't often"
+ line "come here, but I"
+ cont "will fight you."
+ done
+
+_RockTunnel2EndBattleText7::
+ text "Oh!"
+ line "I lost!"
+ prompt
+
+_RockTunnel2AfterBattleText7::
+ text "I like tiny"
+ line "#MON, big ones"
+ cont "are too scary!"
+ done
+
+_RockTunnel2BattleText8::
+ text "Hit me with your"
+ line "best shot!"
+ done
+
+_RockTunnel2EndBattleText8::
+ text "Fired"
+ line "away!"
+ prompt
--- /dev/null
+++ b/text/RockTunnelB1F_2.asm
@@ -1,0 +1,20 @@
+_RockTunnel2AfterBattleText8::
+ text "I'll raise my"
+ line "#MON to beat"
+ cont "yours, kid!"
+ done
+
+_RockTunnel2BattleText9::
+ text "I draw #MON"
+ line "when I'm home."
+ done
+
+_RockTunnel2EndBattleText9::
+ text "Whew!"
+ line "I'm exhausted!"
+ prompt
+
+_RockTunnel2AfterBattleText9::
+ text "I'm an artist,"
+ line "not a fighter."
+ done
--- /dev/null
+++ b/text/RockTunnelPokecenter.asm
@@ -1,0 +1,13 @@
+_RockTunnelPokecenterText2::
+ text "The element types"
+ line "of #MON make"
+ cont "them stronger"
+ cont "than some types"
+ cont "and weaker than"
+ cont "others!"
+ done
+
+_RockTunnelPokecenterText3::
+ text "I sold a useless"
+ line "NUGGET for ¥5000!"
+ done
--- /dev/null
+++ b/text/RocketHideoutB1F.asm
@@ -1,0 +1,73 @@
+_RocketHideout1EndBattleText6::
+ text "Why...?@@"
+
+_RocketHideout1BattleText2::
+ text "Who are you? How"
+ line "did you get here?"
+ done
+
+_RocketHideout1EndBattleText2::
+ text "Oww!"
+ line "Beaten!"
+ prompt
+
+_RocketHideout1AfterBattleTxt2::
+ text "Are you dissing"
+ line "TEAM ROCKET?"
+ done
+
+_RocketHideout1BattleText3::
+ text "You broke into"
+ line "our operation?"
+ done
+
+_RocketHideout1EndBattleText3::
+ text "Burnt!"
+ prompt
+
+_RocketHideout1AfterBattleTxt3::
+ text "You're not going"
+ line "to get away with"
+ cont "this, brat!"
+ done
+
+_RocketHideout1BattleText4::
+ text "Intruder alert!"
+ done
+
+_RocketHideout1EndBattleText4::
+ text "I"
+ line "can't do it!"
+ prompt
+
+_RocketHideout1AfterBattleTxt4::
+ text "SILPH SCOPE?"
+ line "I don't know"
+ cont "where it is!"
+ done
+
+_RocketHideout1BattleText5::
+ text "Why did you come"
+ line "here?"
+ done
+
+_RocketHideout1EndBattleText5::
+ text "This"
+ line "won't do!"
+ prompt
+
+_RocketHideout1AfterBattleTxt5::
+ text "OK, I'll talk!"
+ line "Take the elevator"
+ cont "to see my BOSS!"
+ done
+
+_RocketHideout1BattleText6::
+ text "Are you lost, you"
+ line "little rat?"
+ done
+
+_RocketHideout1AfterBattleTxt6::
+ text "Uh-oh, that fight"
+ line "opened the door!"
+ done
--- /dev/null
+++ b/text/RocketHideoutB2F.asm
@@ -1,0 +1,17 @@
+_RocketHideout2BattleText2::
+ text "BOSS said you can"
+ line "see GHOSTs with"
+ cont "the SILPH SCOPE!"
+ done
+
+_RocketHideout2EndBattleText2::
+ text "I"
+ line "surrender!"
+ prompt
+
+_RocketHideout2AfterBattleTxt2::
+ text "The TEAM ROCKET"
+ line "HQ has 4 basement"
+ cont "floors. Can you"
+ cont "reach the BOSS?"
+ done
--- /dev/null
+++ b/text/RocketHideoutB3F.asm
@@ -1,0 +1,35 @@
+_RocketHideout3BattleText2::
+ text "Stop meddling in"
+ line "TEAM ROCKET's"
+ cont "affairs!"
+ done
+
+_RocketHideout3EndBattleText2::
+ text "Oof!"
+ line "Taken down!"
+ prompt
+
+_RocketHideout3AfterBattleTxt2::
+ text "SILPH SCOPE?"
+ line "The machine the"
+ cont "BOSS stole. It's"
+ cont "here somewhere."
+ done
+
+_RocketHideout3BattleTxt::
+ text "We got word from"
+ line "upstairs that you"
+ cont "were coming!"
+ done
+
+_RocketHideout3EndBattleText3::
+ text "What?"
+ line "I lost? No!"
+ prompt
+
+_RocketHide3AfterBattleText3::
+ text "Go ahead and go!"
+ line "But, you need the"
+ cont "LIFT KEY to run"
+ cont "the elevator!"
+ done
--- /dev/null
+++ b/text/RocketHideoutB4F.asm
@@ -1,0 +1,74 @@
+_RocketHideout4Text_4557a::
+ text "So! I must say, I"
+ line "am impressed you"
+ cont "got here!"
+ done
+
+_RocketHideout4Text_4557f::
+ text "WHAT!"
+ line "This cannot be!"
+ prompt
+
+_RocketHideout4Text_45584::
+ text "I see that you"
+ line "raise #MON"
+ cont "with utmost care."
+
+ para "A child like you"
+ line "would never"
+ cont "understand what I"
+ cont "hope to achieve."
+
+ para "I shall step"
+ line "aside this time!"
+
+ para "I hope we meet"
+ line "again..."
+ done
+
+_RocketHideout4BattleText2::
+ text "I know you! You"
+ line "ruined our plans"
+ cont "at MT.MOON!"
+ done
+
+_RocketHideout4EndBattleText2::
+ text "Burned"
+ line "again!"
+ prompt
+
+_RocketHide4AfterBattleText2::
+ text "Do you have"
+ line "something against"
+ cont "TEAM ROCKET?"
+ done
+
+_RocketHideout4BattleText3::
+ text "How can you not"
+ line "see the beauty of"
+ cont "our evil?"
+ done
+
+_RocketHideout4EndBattleText3::
+ text "Ayaya!"
+ prompt
+
+_RocketHide4AfterBattleText3::
+ text "BOSS! I'm sorry I"
+ line "failed you!"
+ done
+
+_RocketHideout4BattleText4::
+ text "The elevator"
+ line "doesn't work? Who"
+ cont "has the LIFT KEY?"
+ done
+
+_RocketHideout4EndBattleText4::
+ text "No!"
+ prompt
+
+_RocketHideout4Text_455ec::
+ text "Oh no! I dropped"
+ line "the LIFT KEY!"
+ done
--- /dev/null
+++ b/text/RocketHideoutElevator.asm
@@ -1,0 +1,3 @@
+_RocketElevatorText_4578b::
+ text "It appears to"
+ line "need a key.@@"
--- /dev/null
+++ b/text/Route1.asm
@@ -1,0 +1,49 @@
+_Route1ViridianMartSampleText::
+ text "Hi! I work at a"
+ line "#MON MART."
+
+ para "It's a convenient"
+ line "shop, so please"
+ cont "visit us in"
+ cont "VIRIDIAN CITY."
+
+ para "I know, I'll give"
+ line "you a sample!"
+ cont "Here you go!"
+ prompt
+
+_Route1Text_1cae8::
+ text "<PLAYER> got"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_Route1Text_1caee::
+ text "We also carry"
+ line "# BALLs for"
+ cont "catching #MON!"
+ done
+
+_Route1Text_1caf3::
+ text "You have too much"
+ line "stuff with you!"
+ done
+
+_Route1Text2::
+ text "See those ledges"
+ line "along the road?"
+
+ para "It's a bit scary,"
+ line "but you can jump"
+ cont "from them."
+
+ para "You can get back"
+ line "to PALLET TOWN"
+ cont "quicker that way."
+ done
+
+_Route1Text3::
+ text "ROUTE 1"
+ line "PALLET TOWN -"
+ cont "VIRIDIAN CITY"
+ done
--- /dev/null
+++ b/text/Route10.asm
@@ -1,0 +1,109 @@
+_Route10BattleText1::
+ text "Wow, are you a"
+ line "#MANIAC too?"
+ cont "Want to see my"
+ cont "collection?"
+ done
+
+_Route10EndBattleText1::
+ text "Humph."
+ line "I'm not angry!"
+ prompt
+
+_Route10AfterBattleText1::
+ text "I have more rare"
+ line "#MON at home!"
+ done
+
+_Route10BattleText2::
+ text "Ha-hahah-ah-ha!"
+ done
+
+_Route10EndBattleText2::
+ text "Ha-haha!"
+ line "Not laughing!"
+ cont "Ha-hay fever!"
+ cont "Haha-ha-choo!"
+ prompt
+
+_Route10AfterBattleText2::
+ text "Haha-ha-choo!"
+ line "Ha-choo!"
+ cont "Snort! Snivel!"
+ done
+
+_Route10BattleText3::
+ text "Hi kid, want to"
+ line "see my #MON?"
+ done
+
+_Route10EndBattleText3::
+ text "Oh no!"
+ line "My #MON!"
+ prompt
+
+_Route10AfterBattleText3::
+ text "I don't like you"
+ line "for beating me!"
+ done
+
+_Route10BattleText4::
+ text "I've been to a"
+ line "#MON GYM a few"
+ cont "times. But, I"
+ cont "lost each time."
+ done
+
+_Route10EndBattleText4::
+ text "Ohh!"
+ line "Blew it again!"
+ prompt
+
+_Route10AfterBattleText4::
+ text "I noticed some"
+ line "#MANIACs"
+ cont "prowling around."
+ done
+
+_Route10BattleText5::
+ text "Ah! This mountain"
+ line "air is delicious!"
+ done
+
+_Route10EndBattleText5::
+ text "That"
+ line "cleared my head!"
+ prompt
+
+_Route10AfterBattleText5::
+ text "I feel bloated on"
+ line "mountain air!"
+ done
+
+_Route10BattleText6::
+ text "I'm feeling a bit"
+ line "faint from this"
+ cont "tough hike."
+ done
+
+_Route10EndBattleText6::
+ text "I'm"
+ line "not up to it!"
+ prompt
+
+_Route10AfterBattleText6::
+ text "The #MON here"
+ line "are so chunky!"
+ cont "There should be a"
+ cont "pink one with a"
+ cont "floral pattern!"
+ done
+
+_Route10Text9::
+_Route10Text7::
+ text "ROCK TUNNEL"
+ done
+
+_Route10Text10::
+ text "POWER PLANT"
+ done
--- /dev/null
+++ b/text/Route11.asm
@@ -1,0 +1,133 @@
+_Route11BattleText1::
+ text "Win, lose or draw!"
+ done
+
+_Route11EndBattleText1::
+ text "Atcha!"
+ line "Didn't go my way!"
+ prompt
+
+_Route11AfterBattleText1::
+ text "#MON is life!"
+ line "And to live is to"
+ cont "gamble!"
+ done
+
+_Route11BattleText2::
+ text "Competition! I"
+ line "can't get enough!"
+ done
+
+_Route11EndBattleText2::
+ text "I had"
+ line "a chance!"
+ prompt
+
+_Route11AfterBattleText2::
+ text "You can't be a"
+ line "coward in the"
+ cont "world of #MON!"
+ done
+
+_Route11BattleText3::
+ text "Let's go, but"
+ line "don't cheat!"
+ done
+
+_Route11EndBattleText3::
+ text "Huh?"
+ line "That's not right!"
+ prompt
+
+_Route11AfterBattleText3::
+ text "I did my best! I"
+ line "have no regrets!"
+ done
+
+_Route11BattleText4::
+ text "Careful!"
+ line "I'm laying down"
+ cont "some cables!"
+ done
+
+_Route11EndBattleText4::
+ text "That"
+ line "was electric!"
+ prompt
+
+_Route11AfterBattleText4::
+ text "Spread the word"
+ line "to save energy!"
+ done
+
+_Route11BattleText5::
+ text "I just became a"
+ line "trainer! But, I"
+ cont "think I can win!"
+ done
+
+_Route11EndBattleText5::
+ text "My"
+ line "#MON couldn't!"
+ prompt
+
+_Route11AfterBattleText5::
+ text "What do you want?"
+ line "Leave me alone!"
+ done
+
+_Route11BattleText6::
+ text "Fwahaha! I have"
+ line "never lost!"
+ done
+
+_Route11EndBattleText6::
+ text "My"
+ line "first loss!"
+ prompt
+
+_Route11AfterBattleText6::
+ text "Luck of the draw!"
+ line "Just luck!"
+ done
+
+_Route11BattleText7::
+ text "I have never won"
+ line "before..."
+ done
+
+_Route11EndBattleText7::
+ text "I saw"
+ line "this coming..."
+ prompt
+
+_Route11AfterBattleText7::
+ text "It's just luck."
+ line "Luck of the draw."
+ done
+
+_Route11BattleText8::
+ text "I'm the best in"
+ line "my class!"
+ done
+
+_Route11EndBattleText8::
+ text "Darn!"
+ line "I need to make my"
+ cont "#MON stronger!"
+ prompt
+
+_Route11AfterBattleText8::
+ text "There's a fat"
+ line "#MON that"
+ cont "comes down from"
+ cont "the mountains."
+
+ para "It's strong if"
+ line "you can get it."
+ done
+
+_Route11BattleText9::
+ text "Watch out for"
+ line "live wires!"
+ done
--- /dev/null
+++ b/text/Route11Gate1F.asm
@@ -1,0 +1,14 @@
+_Route11GateText1::
+ text "When you catch"
+ line "lots of #MON,"
+ cont "isn't it hard to"
+ cont "think up names?"
+
+ para "In LAVENDER TOWN,"
+ line "there's a man who"
+ cont "rates #MON"
+ cont "nicknames."
+
+ para "He'll help you"
+ line "rename them too!"
+ done
--- /dev/null
+++ b/text/Route11Gate2F.asm
@@ -1,0 +1,40 @@
+_Route11GateUpstairsText_494a3::
+ text "There are items on"
+ line "the ground that"
+ cont "can't be seen."
+
+ para "ITEMFINDER will"
+ line "detect an item"
+ cont "close to you."
+
+ para "It can't pinpoint"
+ line "it, so you have"
+ cont "to look yourself!"
+ done
+
+_BinocularsSnorlaxText::
+ text "Looked into the"
+ line "binoculars."
+
+ para "A big #MON is"
+ line "asleep on a road!"
+ done
+
+_BinocularsNoSnorlaxText::
+ text "Looked into the"
+ line "binoculars."
+
+ para "It's a beautiful"
+ line "view!"
+ done
+
+_Route11GateUpstairsText_494d5::
+ text "Looked into the"
+ line "binoculars."
+
+ para "The only way to"
+ line "get from CERULEAN"
+ cont "CITY to LAVENDER"
+ cont "is by way of the"
+ cont "ROCK TUNNEL."
+ done
--- /dev/null
+++ b/text/Route11_2.asm
@@ -1,0 +1,28 @@
+_Route11EndBattleText9::
+ text "Whoa!"
+ line "You spark plug!"
+ prompt
+
+_Route11AfterBattleText9::
+ text "Well, better get"
+ line "back to work."
+ done
+
+_Route11BattleText10::
+ text "My #MON should"
+ line "be ready by now!"
+ done
+
+_Route11EndBattleText10::
+ text "Too"
+ line "much, too young!"
+ prompt
+
+_Route11AfterBattleText10::
+ text "I better go find"
+ line "stronger ones!"
+ done
+
+_Route11Text11::
+ text "DIGLETT's CAVE"
+ done
--- /dev/null
+++ b/text/Route12.asm
@@ -1,0 +1,139 @@
+_Route12Text1::
+ text "A sleeping #MON"
+ line "blocks the way!"
+ done
+
+_Route12Text13::
+ text "SNORLAX woke up!"
+
+ para "It attacked in a"
+ line "grumpy rage!"
+ done
+
+_Route12Text14::
+ text "SNORLAX calmed"
+ line "down! With a big"
+ cont "yawn, it returned"
+ cont "to the mountains!"
+ done
+
+_Route12BattleText1::
+ text "Yeah! I got a"
+ line "bite, here!"
+ done
+
+_Route12EndBattleText1::
+ text "Tch!"
+ line "Just a small fry!"
+ prompt
+
+_Route12AfterBattleText1::
+ text "Hang on! My line's"
+ line "snagged!"
+ done
+
+_Route12BattleText2::
+ text "Be patient!"
+ line "Fishing is a"
+ cont "waiting game!"
+ done
+
+_Route12EndBattleText2::
+ text "That"
+ line "one got away!"
+ prompt
+
+_Route12AfterBattleText2::
+ text "With a better ROD,"
+ line "I could catch"
+ cont "better #MON!"
+ done
+
+_Route12BattleText3::
+ text "Have you found a"
+ line "MOON STONE?"
+ done
+
+_Route12EndBattleText3::
+ text "Oww!"
+ prompt
+
+_Route12AfterBattleText3::
+ text "I could have made"
+ line "my #MON evolve"
+ cont "with MOON STONE!"
+ done
+
+_Route12BattleText4::
+ text "Electricity is my"
+ line "specialty!"
+ done
+
+_Route12EndBattleText4::
+ text "Unplugged!"
+ prompt
+
+_Route12AfterBattleText4::
+ text "Water conducts"
+ line "electricity, so"
+ cont "you should zap"
+ cont "sea #MON!"
+ done
+
+_Route12BattleText5::
+ text "The FISHING FOOL"
+ line "vs. #MON KID!"
+ done
+
+_Route12EndBattleText5::
+ text "Too"
+ line "much!"
+ prompt
+
+_Route12AfterBattleText5::
+ text "You beat me at"
+ line "#MON, but I'm"
+ cont "good at fishing!"
+ done
+
+_Route12BattleText6::
+ text "I'd rather be"
+ line "working!"
+ done
+
+_Route12EndBattleText6::
+ text "It's"
+ line "not easy..."
+ prompt
+
+_Route12AfterBattleText6::
+ text "It's all right."
+ line "Losing doesn't"
+ cont "bug me any more."
+ done
+
+_Route12BattleText7::
+ text "You never know"
+ line "what you could"
+ cont "catch!"
+ done
+
+_Route12EndBattleText7::
+ text "Lost"
+ line "it!"
+ prompt
+
+_Route12AfterBattleText7::
+ text "I catch MAGIKARP"
+ line "all the time, but"
+ cont "they're so weak!"
+ done
+
+_Route12Text11::
+ text "ROUTE 12 "
+ line "North to LAVENDER"
+ done
+
+_Route12Text12::
+ text "SPORT FISHING AREA"
+ done
--- /dev/null
+++ b/text/Route12Gate1F.asm
@@ -1,0 +1,4 @@
+_Route12GateText1::
+ text "There's a lookout"
+ line "spot upstairs."
+ done
--- /dev/null
+++ b/text/Route12Gate2F.asm
@@ -1,0 +1,42 @@
+_TM39PreReceiveText::
+ text "My #MON's"
+ line "ashes are stored"
+ cont "in #MON TOWER."
+
+ para "You can have this"
+ line "TM. I don't need"
+ cont "it any more..."
+ prompt
+
+_ReceivedTM39Text::
+ text "<PLAYER> received"
+ line "TM39!@@"
+
+_TM39ExplanationText::
+ text "TM39 is a move"
+ line "called SWIFT."
+
+ para "It's very accurate,"
+ line "so use it during"
+ cont "battles you can't"
+ cont "afford to lose."
+ done
+
+_TM39NoRoomText::
+ text "You don't have"
+ line "room for this."
+ done
+
+_Route12GateUpstairsText_495b8::
+ text "Looked into the"
+ line "binoculars."
+
+ para "A man fishing!"
+ done
+
+_Route12GateUpstairsText_495c4::
+ text "Looked into the"
+ line "binoculars."
+
+ para "It's #MON TOWER!"
+ done
--- /dev/null
+++ b/text/Route12SuperRodHouse.asm
@@ -1,0 +1,61 @@
+_Route12HouseText_564c0::
+ text "I'm the FISHING"
+ line "GURU's brother!"
+
+ para "I simply Looove"
+ line "fishing!"
+
+ para "Do you like to"
+ line "fish?"
+ done
+
+_Route12HouseText_564c5::
+ text "Grand! I like"
+ line "your style!"
+
+ para "Take this and"
+ line "fish, young one!"
+
+ para "<PLAYER> received"
+ line "a @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_Route12HouseText_564ca::
+ text ""
+
+ para "Fishing is a way"
+ line "of life!"
+
+ para "From the seas to"
+ line "rivers, go out"
+ cont "and land the big"
+ cont "one!"
+ done
+
+_Route12HouseText_564cf::
+ text "Oh... That's so"
+ line "disappointing..."
+ done
+
+_Route12HouseText_564d4::
+ text "Hello there,"
+ line "<PLAYER>!"
+
+ para "Use the SUPER ROD"
+ line "in any water!"
+ cont "You can catch"
+ cont "different kinds"
+ cont "of #MON."
+
+ para "Try fishing"
+ line "wherever you can!"
+ done
+
+_Route12HouseText_564d9::
+ text "Oh no!"
+
+ para "I had a gift for"
+ line "you, but you have"
+ cont "no room for it!"
+ done
--- /dev/null
+++ b/text/Route13.asm
@@ -1,0 +1,179 @@
+_Route13BattleText2::
+ text "My bird #MON"
+ line "want to scrap!"
+ done
+
+_Route13EndBattleText2::
+ text "My"
+ line "bird combo lost?"
+ prompt
+
+_Route13AfterBattleText2::
+ text "My #MON look"
+ line "happy even though"
+ cont "they lost."
+ done
+
+_Route13BattleText3::
+ text "I'm told I'm good"
+ line "for a kid!"
+ done
+
+_Route13EndBattleText3::
+ text "Ohh!"
+ line "I lost!"
+ prompt
+
+_Route13AfterBattleText3::
+ text "I want to become"
+ line "a good trainer."
+ cont "I'll train hard."
+ done
+
+_Route13BattleText4::
+ text "Wow! Your BADGEs"
+ line "are too cool!"
+ done
+
+_Route13EndBattleText4::
+ text "Not"
+ line "enough!"
+ prompt
+
+_Route13AfterBattleText4::
+ text "You got those"
+ line "BADGEs from GYM"
+ cont "LEADERs. I know!"
+ done
+
+_Route13BattleText5::
+ text "My cute #MON"
+ line "wish to make your"
+ cont "acquaintance."
+ done
+
+_Route13EndBattleText5::
+ text "Wow!"
+ line "You totally won!"
+ prompt
+
+_Route13AfterBattleText5::
+ text "You have to make"
+ line "#MON fight to"
+ cont "toughen them up!"
+ done
+
+_Route13BattleText6::
+ text "I found CARBOS in"
+ line "a cave once."
+ done
+
+_Route13EndBattleText6::
+ text "Just"
+ line "messed up!"
+ prompt
+
+_Route13AfterBattleText6::
+ text "CARBOS boosted"
+ line "the SPEED of my"
+ cont "#MON."
+ done
+
+_Route13BattleText7::
+ text "The wind's blowing"
+ line "my way!"
+ done
+
+_Route13EndBattleText7::
+ text "The"
+ line "wind turned!"
+ prompt
+
+_Route13AfterBattleText7::
+ text "I'm beat. I guess"
+ line "I'll FLY home."
+ done
+
+_Route13BattleText8::
+ text "Sure, I'll play"
+ line "with you!"
+ done
+
+_Route13EndBattleText8::
+ text "Oh!"
+ line "You little brute!"
+ prompt
+
+_Route13AfterBattleText8::
+ text "I wonder which is"
+ line "stronger, male or"
+ cont "female #MON?"
+ done
+
+_Route13BattleText9::
+ text "Do you want to"
+ line "#MON with me?"
+ done
+
+_Route13EndBattleText9::
+ text "It's over"
+ line "already?"
+ prompt
+
+_Route13AfterBattleText9::
+ text "I don't know"
+ line "anything about"
+ cont "#MON. I just"
+ cont "like cool ones!"
+ done
+
+_Route13BattleText10::
+ text "What're you"
+ line "lookin' at?"
+ done
+
+_Route13EndBattleText10::
+ text "Dang!"
+ line "Stripped gears!"
+ prompt
+
+_Route13AfterBattleText10::
+ text "Get lost!"
+ done
+
+_Route13BattleText11::
+ text "I always go with"
+ line "bird #MON!"
+ done
+
+_Route13EndBattleText11::
+ text "Out"
+ line "of power!"
+ prompt
+
+_Route13AfterBattleText11::
+ text "I wish I could"
+ line "fly like PIDGEY"
+ cont "and PIDGEOTTO..."
+ done
+
+_Route13Text11::
+ text "TRAINER TIPS"
+
+ para "Look to the left"
+ line "of that post!"
+ done
+
+_Route13Text12::
+ text "TRAINER TIPS"
+
+ para "Use SELECT to"
+ line "switch items in"
+ cont "the ITEM window!"
+ done
+
+_Route13Text13::
+ text "ROUTE 13"
+ line "North to SILENCE"
+ cont "BRIDGE"
+ done
--- /dev/null
+++ b/text/Route14.asm
@@ -1,0 +1,173 @@
+_Route14BattleText1::
+ text "You need to use"
+ line "TMs to teach good"
+ cont "moves to #MON!"
+ done
+
+_Route14EndBattleText1::
+ text "Not"
+ line "good enough!"
+ prompt
+
+_Route14AfterBattleText1::
+ text "You have some HMs"
+ line "right? #MON"
+ cont "can't ever forget"
+ cont "those moves."
+ done
+
+_Route14BattleText2::
+ text "My bird #MON"
+ line "should be ready"
+ cont "for battle."
+ done
+
+_Route14EndBattleText2::
+ text "Not"
+ line "ready yet!"
+ prompt
+
+_Route14AfterBattleText2::
+ text "They need to learn"
+ line "better moves."
+ done
+
+_Route14BattleText3::
+ text "TMs are on sale"
+ line "in CELADON!"
+ cont "But, only a few"
+ cont "people have HMs!"
+ done
+
+_Route14EndBattleText3::
+ text "Aww,"
+ line "bummer!"
+ prompt
+
+_Route14AfterBattleText3::
+ text "Teach #MON"
+ line "moves of the same"
+ cont "element type for"
+ cont "more power."
+ done
+
+_Route14BattleText4::
+ text "Have you taught"
+ line "your bird #MON"
+ cont "how to FLY?"
+ done
+
+_Route14EndBattleText4::
+ text "Shot"
+ line "down in flames!"
+ prompt
+
+_Route14AfterBattleText4::
+ text "Bird #MON are"
+ line "my true love!"
+ done
+
+_Route14BattleText5::
+ text "Have you heard of"
+ line "the legendary"
+ cont "#MON?"
+ done
+
+_Route14EndBattleText5::
+ text "Why?"
+ line "Why'd I lose?"
+ prompt
+
+_Route14AfterBattleText5::
+ text "The 3 legendary"
+ line "#MON are all"
+ cont "birds of prey."
+ done
+
+_Route14BattleText6::
+ text "I'm not into it,"
+ line "but OK! Let's go!"
+ done
+
+_Route14EndBattleText6::
+ text "I"
+ line "knew it!"
+ prompt
+
+_Route14AfterBattleText6::
+ text "Winning, losing,"
+ line "it doesn't matter"
+ cont "in the long run!"
+ done
+
+_Route14BattleText7::
+ text "C'mon, c'mon."
+ line "Let's go, let's"
+ cont "go, let's go!"
+ done
+
+_Route14EndBattleText7::
+ text "Arrg!"
+ line "Lost! Get lost!"
+ prompt
+
+_Route14AfterBattleText7::
+ text "What, what, what?"
+ line "What do you want?"
+ done
+
+_Route14BattleText8::
+ text "Perfect! I need to"
+ line "burn some time!"
+ done
+
+_Route14EndBattleText8::
+ text "What?"
+ line "You!?"
+ prompt
+
+_Route14AfterBattleText8::
+ text "Raising #MON"
+ line "is a drag, man."
+ done
+
+_Route14BattleText9::
+ text "We ride out here"
+ line "because there's"
+ cont "more room!"
+ done
+
+_Route14EndBattleText9::
+ text "Wipe out!"
+ prompt
+
+_Route14AfterBattleText9::
+ text "It's cool you"
+ line "made your #MON"
+ cont "so strong!"
+
+ para "Might is right!"
+ line "And you know it!"
+ done
+
+_Route14BattleText10::
+ text "#MON fight?"
+ line "Cool! Rumble!"
+ done
+
+_Route14EndBattleText10::
+ text "Blown"
+ line "away!"
+ prompt
+
+_Route14AfterBattleText10::
+ text "You know who'd"
+ line "win, you and me"
+ cont "one on one!"
+ done
+
+_Route14Text11::
+ text "ROUTE 14"
+ line "West to FUCHSIA"
+ cont "CITY"
+ done
--- /dev/null
+++ b/text/Route15.asm
@@ -1,0 +1,171 @@
+_Route15BattleText1::
+ text "Let me try out the"
+ line "#MON I just"
+ cont "got in a trade!"
+ done
+
+_Route15EndBattleText1::
+ text "Not"
+ line "good enough!"
+ prompt
+
+_Route15AfterBattleText1::
+ text "You can't change"
+ line "the nickname of"
+ cont "any #MON you"
+ cont "get in a trade."
+
+ para "Only the Original"
+ line "Trainer can."
+ done
+
+_Route15BattleText2::
+ text "You look gentle,"
+ line "so I think I can"
+ cont "beat you!"
+ done
+
+_Route15EndBattleText2::
+ text "No,"
+ line "wrong!"
+ prompt
+
+_Route15AfterBattleText2::
+ text "I'm afraid of"
+ line "BIKERs, they look"
+ cont "so ugly and mean!"
+ done
+
+_Route15BattleText3::
+ text "When I whistle, I"
+ line "can summon bird"
+ cont "#MON!"
+ done
+
+_Route15EndBattleText3::
+ text "Ow!"
+ line "That's tragic!"
+ prompt
+
+_Route15AfterBattleText3::
+ text "Maybe I'm not cut"
+ line "out for battles."
+ done
+
+_Route15BattleText4::
+ text "Hmm? My birds are"
+ line "shivering! You're"
+ cont "good, aren't you?"
+ done
+
+_Route15EndBattleText4::
+ text "Just"
+ line "as I thought!"
+ prompt
+
+_Route15AfterBattleText4::
+ text "Did you know moves"
+ line "like EARTHQUAKE"
+ cont "don't have any"
+ cont "effect on birds?"
+ done
+
+_Route15BattleText5::
+ text "Oh, you're a"
+ line "little cutie!"
+ done
+
+_Route15EndBattleText5::
+ text "You looked"
+ line "so cute too!"
+ prompt
+
+_Route15AfterBattleText5::
+ text "I forgive you!"
+ line "I can take it!"
+ done
+
+_Route15BattleText6::
+ text "I raise #MON"
+ line "because I live"
+ cont "alone!"
+ done
+
+_Route15EndBattleText6::
+ text "I didn't"
+ line "ask for this!"
+ prompt
+
+_Route15AfterBattleText6::
+ text "I just like going"
+ line "home to be with"
+ cont "my #MON!"
+ done
+
+_Route15BattleText7::
+ text "Hey kid! C'mon!"
+ line "I just got these!"
+ done
+
+_Route15EndBattleText7::
+ text "Why"
+ line "not?"
+ prompt
+
+_Route15AfterBattleText7::
+ text "You only live"
+ line "once, so I live"
+ cont "as an outlaw!"
+ cont "TEAM ROCKET RULES!"
+ done
+
+_Route15BattleText8::
+ text "Fork over all your"
+ line "cash when you"
+ cont "lose to me, kid!"
+ done
+
+_Route15EndBattleText8::
+ text "That"
+ line "can't be true!"
+ prompt
+
+_Route15AfterBattleText8::
+ text "I was just joking"
+ line "about the money!"
+ done
+
+_Route15BattleText9::
+ text "What's cool?"
+ line "Trading #MON!"
+ done
+
+_Route15EndBattleText9::
+ text "I"
+ line "said trade!"
+ prompt
+
+_Route15AfterBattleText9::
+ text "I trade #MON"
+ line "with my friends!"
+ done
+
+_Route15BattleText10::
+ text "Want to play with"
+ line "my #MON?"
+ done
+
+_Route15EndBattleText10::
+ text "I was"
+ line "too impatient!"
+ prompt
+
+_Route15AfterBattleText10::
+ text "I'll go train with"
+ line "weaker people.@@"
+
+_Route15Text12::
+ text "ROUTE 15"
+ line "West to FUCHSIA"
+ cont "CITY"
+ done
--- /dev/null
+++ b/text/Route15Gate1F.asm
@@ -1,0 +1,7 @@
+_Route15GateText1::
+ text "Are you working"
+ line "on a #DEX?"
+
+ para "PROF.OAK's AIDE"
+ line "came by here."
+ done
--- /dev/null
+++ b/text/Route15Gate2F.asm
@@ -1,0 +1,24 @@
+_Route15GateUpstairsText_4968c::
+ text "EXP.ALL gives"
+ line "EXP points to all"
+ cont "the #MON with"
+ cont "you, even if they"
+ cont "don't fight."
+
+ para "It does, however,"
+ line "reduce the amount"
+ cont "of EXP for each"
+ cont "#MON."
+
+ para "If you don't need"
+ line "it, you should "
+ cont "store it via PC."
+ done
+
+_Route15GateUpstairsText_49698::
+ text "Looked into the"
+ line "binoculars."
+
+ para "It looks like a"
+ line "small island!"
+ done
--- /dev/null
+++ b/text/Route16.asm
@@ -1,0 +1,120 @@
+_Route16BattleText1::
+ text "What do you want?"
+ done
+
+_Route16EndBattleText1::
+ text "Don't you"
+ line "dare laugh!"
+ prompt
+
+_Route16AfterBattleText1::
+ text "We like just"
+ line "hanging here,"
+ cont "what's it to you?"
+ done
+
+_Route16BattleText2::
+ text "Nice BIKE!"
+ line "Hand it over!"
+ done
+
+_Route16EndBattleText2::
+ text "Knock"
+ line "out!"
+ prompt
+
+_Route16AfterBattleText2::
+ text "Forget it, who"
+ line "needs your BIKE!"
+ done
+
+_Route16BattleText3::
+ text "Come out and play,"
+ line "little mouse!"
+ done
+
+_Route16EndBattleText3::
+ text "You"
+ line "little rat!"
+ prompt
+
+_Route16AfterBattleText3::
+ text "I hate losing!"
+ line "Get away from me!"
+ done
+
+_Route16BattleText4::
+ text "Hey, you just"
+ line "bumped me!"
+ done
+
+_Route16EndBattleText4::
+ text "Kaboom!"
+ prompt
+
+_Route16AfterBattleText4::
+ text "You can also get"
+ line "to FUCHSIA from"
+ cont "VERMILION using a"
+ cont "coastal road."
+ done
+
+_Route16BattleText5::
+ text "I'm feeling"
+ line "hungry and mean!"
+ done
+
+_Route16EndBattleText5::
+ text "Bad,"
+ line "bad, bad!"
+ prompt
+
+_Route16AfterBattleText5::
+ text "I like my #MON"
+ line "ferocious! They"
+ cont "tear up enemies!"
+ done
+
+_Route16BattleText6::
+ text "Sure, I'll go!"
+ done
+
+_Route16EndBattleText6::
+ text "Don't make"
+ line "me mad!"
+ prompt
+
+_Route16AfterBattleText6::
+ text "I like harassing"
+ line "people with my"
+ cont "vicious #MON!"
+ done
+
+_Route16Text7::
+ text "A sleeping #MON"
+ line "blocks the way!"
+ done
+
+_Route16Text10::
+ text "SNORLAX woke up!"
+
+ para "It attacked in a"
+ line "grumpy rage!"
+ done
+
+_Route16Text11::
+ text "With a big yawn,"
+ line "SNORLAX returned"
+ cont "to the mountains!"
+ done
+
+_Route16Text8::
+ text "Enjoy the slope!"
+ line "CYCLING ROAD"
+ done
+
+_Route16Text9::
+ text "ROUTE 16"
+ line "CELADON CITY -"
+ cont "FUCHSIA CITY"
+ done
--- /dev/null
+++ b/text/Route16FlyHouse.asm
@@ -1,0 +1,31 @@
+_Route16HouseText3::
+ text "Oh, you found my"
+ line "secret retreat!"
+
+ para "Please don't tell"
+ line "anyone I'm here."
+ cont "I'll make it up"
+ cont "to you with this!"
+ prompt
+
+_ReceivedHM02Text::
+ text "<PLAYER> received"
+ line "HM02!@@"
+
+_HM02ExplanationText::
+ text "HM02 is FLY."
+ line "It will take you"
+ cont "back to any town."
+
+ para "Put it to good"
+ line "use!"
+ done
+
+_HM02NoRoomText::
+ text "You don't have any"
+ line "room for this."
+ done
+
+_Route16HouseText_1e652::
+ text "FEAROW: Kyueen!"
+ done
--- /dev/null
+++ b/text/Route16Gate1F.asm
@@ -1,0 +1,22 @@
+_Route16GateText_49777::
+ text "No pedestrians"
+ line "are allowed on"
+ cont "CYCLING ROAD!"
+ done
+
+_Route16GateText_4977c::
+ text "CYCLING ROAD is a"
+ line "downhill course"
+ cont "by the sea. It's"
+ cont "a great ride."
+ done
+
+_Route16GateText_49781::
+ text "Excuse me! Wait"
+ line "up please!"
+ done
+
+_Route16GateText2::
+ text "How'd you get in?"
+ line "Good effort!"
+ done
--- /dev/null
+++ b/text/Route16Gate2F.asm
@@ -1,0 +1,26 @@
+_Route16GateUpstairsText_49820::
+ text "I'm going for a"
+ line "ride with my girl"
+ cont "friend!"
+ done
+
+_Route16GateUpstairsText_4982f::
+ text "We're going"
+ line "riding together!"
+ done
+
+_Route16GateUpstairsText_4983b::
+ text "Looked into the"
+ line "binoculars."
+
+ para "It's CELADON DEPT."
+ line "STORE!"
+ done
+
+_Route16GateUpstairsText_49847::
+ text "Looked into the"
+ line "binoculars."
+
+ para "There's a long"
+ line "path over water!"
+ done
--- /dev/null
+++ b/text/Route17.asm
@@ -1,0 +1,195 @@
+_Route17BattleText1::
+ text "There's no money"
+ line "in fighting kids!"
+ done
+
+_Route17EndBattleText1::
+ text "Burned"
+ line "out!"
+ prompt
+
+_Route17AfterBattleText1::
+ text "Good stuff is"
+ line "lying around on"
+ cont "CYCLING ROAD!"
+ done
+
+_Route17BattleText2::
+ text "What do you want,"
+ line "kiddo?"
+ done
+
+_Route17EndBattleText2::
+ text "Whoo!"
+ prompt
+
+_Route17AfterBattleText2::
+ text "I could belly-"
+ line "bump you outta"
+ cont "here!"
+ done
+
+_Route17BattleText3::
+ text "You heading to"
+ line "FUCHSIA?"
+ done
+
+_Route17EndBattleText3::
+ text "Crash and"
+ line "burn!"
+ prompt
+
+_Route17AfterBattleText3::
+ text "I love racing"
+ line "downhill!"
+ done
+
+_Route17BattleText4::
+ text "We're BIKERs!"
+ line "Highway stars!"
+ done
+
+_Route17EndBattleText4::
+ text "Smoked!"
+ prompt
+
+_Route17AfterBattleText4::
+ text "Are you looking"
+ line "for adventure?"
+ done
+
+_Route17BattleText5::
+ text "Let VOLTORB"
+ line "electrify you!"
+ done
+
+_Route17EndBattleText5::
+ text "Grounded"
+ line "out!"
+ prompt
+
+_Route17AfterBattleText5::
+ text "I got my VOLTORB"
+ line "at the abandoned"
+ cont "POWER PLANT."
+ done
+
+_Route17BattleText6::
+ text "My #MON won't"
+ line "evolve! Why?"
+ done
+
+_Route17EndBattleText6::
+ text "Why,"
+ line "you!"
+ prompt
+
+_Route17AfterBattleText6::
+ text "Maybe some #MON"
+ line "need element"
+ cont "STONEs to evolve."
+ done
+
+_Route17BattleText7::
+ text "I need a little"
+ line "exercise!"
+ done
+
+_Route17EndBattleText7::
+ text "Whew!"
+ line "Good workout!"
+ prompt
+
+_Route17AfterBattleText7::
+ text "I'm sure I lost"
+ line "weight there!"
+ done
+
+_Route17BattleText8::
+ text "Be a rebel!"
+ done
+
+_Route17EndBattleText8::
+ text "Aaaargh!"
+ prompt
+
+_Route17AfterBattleText8::
+ text "Be ready to fight"
+ line "for your beliefs!"
+ done
+
+_Route17BattleText9::
+ text "Nice BIKE!"
+ line "How's it handle?"
+ done
+
+_Route17EndBattleText9::
+ text "Shoot!"
+ prompt
+
+_Route17AfterBattleText9::
+ text "The slope makes"
+ line "it hard to steer!"
+ done
+
+_Route17BattleText10::
+ text "Get lost kid!"
+ line "I'm bushed!"
+ done
+
+_Route17EndBattleText10::
+ text "Are you"
+ line "satisfied?"
+ prompt
+
+_Route17AfterBattleText10::
+ text "I need to catch"
+ line "a few Zs!"
+ done
+
+_Route17Text11::
+ text "It's a notice!"
+
+ para "Watch out for"
+ line "discarded items!"
+ done
+
+_Route17Text12::
+ text "TRAINER TIPS"
+
+ para "All #MON are"
+ line "unique."
+
+ para "Even #MON of"
+ line "the same type and"
+ cont "level grow at"
+ cont "different rates."
+ done
+
+_Route17Text13::
+ text "TRAINER TIPS"
+
+ para "Press the A or B"
+ line "Button to stay in"
+ cont "place while on a"
+ cont "slope."
+ done
+
+_Route17Text14::
+ text "ROUTE 17"
+ line "CELADON CITY -"
+ cont "FUCHSIA CITY"
+ done
+
+_Route17Text15::
+ text "It's a notice!"
+
+ para "Don't throw the"
+ line "game, throw #"
+ cont "BALLs instead!"
+ done
+
+_Route17Text16::
+ text "CYCLING ROAD"
+ line "Slope ends here!"
+ done
--- /dev/null
+++ b/text/Route18.asm
@@ -1,0 +1,58 @@
+_Route18BattleText1::
+ text "I always check"
+ line "every grassy area"
+ cont "for new #MON."
+ done
+
+_Route18EndBattleText1::
+ text "Tch!"
+ prompt
+
+_Route18AfterBattleText1::
+ text "I wish I had a"
+ line "BIKE!"
+ done
+
+_Route18BattleText2::
+ text "Kurukkoo!"
+ line "How do you like"
+ cont "my bird call?"
+ done
+
+_Route18EndBattleText2::
+ text "I"
+ line "had to bug you!"
+ prompt
+
+_Route18AfterBattleText2::
+ text "I also collect sea"
+ line "#MON on"
+ cont "weekends!"
+ done
+
+_Route18BattleText3::
+ text "This is my turf!"
+ line "Get out of here!"
+ done
+
+_Route18EndBattleText3::
+ text "Darn!"
+ prompt
+
+_Route18AfterBattleText3::
+ text "This is my fave"
+ line "#MON hunting"
+ cont "area!"
+ done
+
+_Route18Text4::
+ text "ROUTE 18"
+ line "CELADON CITY -"
+ cont "FUCHSIA CITY"
+ done
+
+_Route18Text5::
+ text "CYCLING ROAD"
+ line "No pedestrians"
+ cont "permitted!"
+ done
--- /dev/null
+++ b/text/Route18Gate1F.asm
@@ -1,0 +1,14 @@
+_Route18GateText_49928::
+ text "You need a BICYCLE"
+ line "for CYCLING ROAD!"
+ done
+
+_Route18GateText_4992d::
+ text "CYCLING ROAD is"
+ line "all uphill from"
+ cont "here."
+ done
+
+_Route18GateText_49932::
+ text "Excuse me!"
+ done
--- /dev/null
+++ b/text/Route18Gate2F.asm
@@ -1,0 +1,15 @@
+_Route18GateUpstairsText_49993::
+ text "Looked into the"
+ line "binoculars."
+
+ para "PALLET TOWN is in"
+ line "the west!"
+ done
+
+_Route18GateUpstairsText_4999f::
+ text "Looked into the"
+ line "binoculars."
+
+ para "There are people"
+ line "swimming!"
+ done
--- /dev/null
+++ b/text/Route19.asm
@@ -1,0 +1,157 @@
+_Route19BattleText1::
+ text "Have to warm up"
+ line "before my swim!"
+ done
+
+_Route19EndBattleText1::
+ text "All"
+ line "warmed up!"
+ prompt
+
+_Route19AfterBattleText1::
+ text "Thanks, kid! I'm"
+ line "ready for a swim!"
+ done
+
+_Route19BattleText2::
+ text "Wait! You'll have"
+ line "a heart attack!"
+ done
+
+_Route19EndBattleText2::
+ text "Ooh!"
+ line "That's chilly!"
+ prompt
+
+_Route19AfterBattleText2::
+ text "Watch out for"
+ line "TENTACOOL!"
+ done
+
+_Route19BattleText3::
+ text "I love swimming!"
+ line "What about you?"
+ done
+
+_Route19EndBattleText3::
+ text "Belly"
+ line "flop!"
+ prompt
+
+_Route19AfterBattleText3::
+ text "I can beat #MON"
+ line "at swimming!"
+ done
+
+_Route19BattleText4::
+ text "What's beyond the"
+ line "horizon?"
+ done
+
+_Route19EndBattleText4::
+ text "Glub!"
+ prompt
+
+_Route19AfterBattleText4::
+ text "I see a couple of"
+ line "islands!"
+ done
+
+_Route19BattleText5::
+ text "I tried diving"
+ line "for #MON, but"
+ cont "it was a no go!"
+ done
+
+_Route19EndBattleText5::
+ text "Help!"
+ prompt
+
+_Route19AfterBattleText5::
+ text "You have to fish"
+ line "for sea #MON!"
+ done
+
+_Route19BattleText6::
+ text "I look at the"
+ line "sea to forget!"
+ done
+
+_Route19EndBattleText6::
+ text "Ooh!"
+ line "Traumatic!"
+ prompt
+
+_Route19AfterBattleText6::
+ text "I'm looking at the"
+ line "sea to forget!"
+ done
+
+_Route19BattleText7::
+ text "Oh, I just love"
+ line "your ride! Can I"
+ cont "have it if I win?"
+ done
+
+_Route19EndBattleText7::
+ text "Oh!"
+ line "I lost!"
+ prompt
+
+_Route19AfterBattleText7::
+ text "It's still a long"
+ line "way to go to"
+ cont "SEAFOAM ISLANDS."
+ done
+
+_Route19BattleText8::
+ text "Swimming's great!"
+ line "Sunburns aren't!"
+ done
+
+_Route19EndBattleText8::
+ text "Shocker!"
+ prompt
+
+_Route19AfterBattleText8::
+ text "My boy friend"
+ line "wanted to swim to"
+ cont "SEAFOAM ISLANDS."
+ done
+
+_Route19BattleText9::
+ text "These waters are"
+ line "treacherous!"
+ done
+
+_Route19EndBattleText9::
+ text "Ooh!"
+ line "Dangerous!"
+ prompt
+
+_Route19AfterBattleText9::
+ text "I got a cramp!"
+ line "Glub, glub..."
+ done
+
+_Route19BattleText10::
+ text "I swam here, but"
+ line "I'm tired."
+ done
+
+_Route19EndBattleText10::
+ text "I'm"
+ line "exhausted..."
+ prompt
+
+_Route19AfterBattleText10::
+ text "LAPRAS is so big,"
+ line "it must keep you"
+ cont "dry on water."
+ done
+
+_Route19Text11::
+ text "SEA ROUTE 19"
+ line "FUCHSIA CITY -"
+ cont "SEAFOAM ISLANDS"
+ done
--- /dev/null
+++ b/text/Route2.asm
@@ -1,0 +1,9 @@
+_Route2Text3::
+ text "ROUTE 2"
+ line "VIRIDIAN CITY -"
+ cont "PEWTER CITY"
+ done
+
+_Route2Text4::
+ text "DIGLETT's CAVE"
+ done
--- /dev/null
+++ b/text/Route20.asm
@@ -1,0 +1,156 @@
+_Route20BattleText1::
+ text "The water is"
+ line "shallow here."
+ done
+
+_Route20EndBattleText1::
+ text "Splash!"
+ prompt
+
+_Route20AfterBattleText1::
+ text "I wish I could"
+ line "ride my #MON."
+ done
+
+_Route20BattleText2::
+ text "SEAFOAM is a"
+ line "quiet getaway!"
+ done
+
+_Route20EndBattleText2::
+ text "Quit it!"
+ prompt
+
+_Route20AfterBattleText2::
+ text "There's a huge"
+ line "cavern underneath"
+ cont "this island."
+ done
+
+_Route20BattleText3::
+ text "I love floating"
+ line "with the fishes!"
+ done
+
+_Route20EndBattleText3::
+ text "Yowch!"
+ prompt
+
+_Route20AfterBattleText3::
+ text "Want to float"
+ line "with me?"
+ done
+
+_Route20BattleText4::
+ text "Are you on"
+ line "vacation too?"
+ done
+
+_Route20EndBattleText4::
+ text "No"
+ line "mercy at all!"
+ prompt
+
+_Route20AfterBattleText4::
+ text "SEAFOAM used to"
+ line "be one island!"
+ done
+
+_Route20BattleText5::
+ text "Check out my buff"
+ line "physique!"
+ done
+
+_Route20EndBattleText5::
+ text "Wimpy!"
+ prompt
+
+_Route20AfterBattleText5::
+ text "I should've been"
+ line "buffing up my"
+ cont "#MON, not me!"
+ done
+
+_Route20BattleText6::
+ text "Why are you"
+ line "riding a #MON?"
+ cont "Can't you swim?"
+ done
+
+_Route20EndBattleText6::
+ text "Ouch!"
+ line "Torpedoed!"
+ prompt
+
+_Route20AfterBattleText6::
+ text "Riding a #MON"
+ line "sure looks fun!"
+ done
+
+_Route20BattleText7::
+ text "I rode my bird"
+ line "#MON here!"
+ done
+
+_Route20EndBattleText7::
+ text "Oh"
+ line "no!"
+ prompt
+
+_Route20AfterBattleText7::
+ text "My birds can't"
+ line "FLY me back!"
+ done
+
+_Route20BattleText8::
+ text "My boy friend gave"
+ line "me big pearls!"
+ done
+
+_Route20EndBattleText8::
+ text "Don't"
+ line "touch my pearls!"
+ prompt
+
+_Route20AfterBattleText8::
+ text "Will my pearls"
+ line "grow bigger"
+ cont "inside CLOYSTER?"
+ done
+
+_Route20BattleText9::
+ text "I swam here from"
+ line "CINNABAR ISLAND!"
+ done
+
+_Route20EndBattleText9::
+ text "I'm"
+ line "so disappointed!"
+ prompt
+
+_Route20AfterBattleText9::
+ text "#MON have"
+ line "taken over an"
+ cont "abandoned mansion"
+ cont "on CINNABAR!"
+ done
+
+_Route20BattleText10::
+ text "CINNABAR, in the"
+ line "west, has a LAB"
+ cont "for #MON."
+ done
+
+_Route20EndBattleText10::
+ text "Wait!"
+ prompt
+
+_Route20AfterBattleText10::
+ text "CINNABAR is a "
+ line "volcanic island!"
+ done
+
+_Route20Text12::
+_Route20Text11::
+ text "SEAFOAM ISLANDS"
+ done
--- /dev/null
+++ b/text/Route21.asm
@@ -1,0 +1,137 @@
+_Route21BattleText1::
+ text "You want to know"
+ line "if the fish are"
+ cont "biting?"
+ done
+
+_Route21EndBattleText1::
+ text "Dang!"
+ prompt
+
+_Route21AfterBattleText1::
+ text "I can't catch"
+ line "anything good!"
+ done
+
+_Route21BattleText2::
+ text "I got a big haul!"
+ line "Wanna go for it?"
+ done
+
+_Route21EndBattleText2::
+ text "Darn"
+ line "MAGIKARP!"
+ prompt
+
+_Route21AfterBattleText2::
+ text "I seem to only"
+ line "catch MAGIKARP!"
+ done
+
+_Route21BattleText3::
+ text "The sea cleanses"
+ line "my body and soul!"
+ done
+
+_Route21EndBattleText3::
+ text "Ayah!"
+ prompt
+
+_Route21AfterBattleText3::
+ text "I like the"
+ line "mountains too!"
+ done
+
+_Route21BattleText4::
+ text "What's wrong with"
+ line "me swimming?"
+ done
+
+_Route21EndBattleText4::
+ text "Cheap"
+ line "shot!"
+ prompt
+
+_Route21AfterBattleText4::
+ text "I look like what?"
+ line "A studded inner"
+ cont "tube? Get lost!"
+ done
+
+_Route21BattleText5::
+ text "I caught all my"
+ line "#MON at sea!"
+ done
+
+_Route21EndBattleText5::
+ text "Diver!!"
+ line "Down!!"
+ prompt
+
+_Route21AfterBattleText5::
+ text "Where'd you catch"
+ line "your #MON?"
+ done
+
+_Route21BattleText6::
+ text "Right now, I'm in"
+ line "a triathlon meet!"
+ done
+
+_Route21EndBattleText6::
+ text "Pant..."
+ line "pant...pant..."
+ prompt
+
+_Route21AfterBattleText6::
+ text "I'm beat!"
+ line "But, I still have"
+ cont "the bike race and"
+ cont "marathon left!"
+ done
+
+_Route21BattleText7::
+ text "Ahh! Feel the sun"
+ line "and the wind!"
+ done
+
+_Route21EndBattleText7::
+ text "Yow!"
+ line "I lost!"
+ prompt
+
+_Route21AfterBattleText7::
+ text "I'm sunburnt to a"
+ line "crisp!"
+ done
+
+_Route21BattleText8::
+ text "Hey, don't scare"
+ line "away the fish!"
+ done
+
+_Route21EndBattleText8::
+ text "Sorry!"
+ line "I didn't mean it!"
+ prompt
+
+_Route21AfterBattleText8::
+ text "I was just angry"
+ line "that I couldn't"
+ cont "catch anything."
+ done
+
+_Route21BattleText9::
+ text "Keep me company"
+ line "'til I get a hit!"
+ done
+
+_Route21EndBattleText9::
+ text "That"
+ line "burned some time."
+ prompt
+
+_Route21AfterBattleText9::
+ text "Oh wait! I got a"
+ line "bite! Yeah!"
+ done
--- /dev/null
+++ b/text/Route22.asm
@@ -1,0 +1,104 @@
+_Route22RivalBeforeBattleText1::
+ text "<RIVAL>: Hey!"
+ line "<PLAYER>!"
+
+ para "You're going to"
+ line "#MON LEAGUE?"
+
+ para "Forget it! You"
+ line "probably don't"
+ cont "have any BADGEs!"
+
+ para "The guard won't"
+ line "let you through!"
+
+ para "By the way, did"
+ line "your #MON"
+ cont "get any stronger?"
+ done
+
+_Route22RivalAfterBattleText1::
+ text "I heard #MON"
+ line "LEAGUE has many"
+ cont "tough trainers!"
+
+ para "I have to figure"
+ line "out how to get"
+ cont "past them!"
+
+ para "You should quit"
+ line "dawdling and get"
+ cont "a move on!"
+ done
+
+_Route22RivalDefeatedText1::
+ text "Awww!"
+ line "You just lucked"
+ cont "out!"
+ prompt
+
+_Route22Text_511bc::
+ text "<RIVAL>: What?"
+ line "Why do I have 2"
+ cont "#MON?"
+
+ para "You should catch"
+ cont "some more too!"
+ prompt
+
+_Route22RivalBeforeBattleText2::
+ text "<RIVAL>: What?"
+ line "<PLAYER>! What a"
+ cont "surprise to see"
+ cont "you here!"
+
+ para "So you're going to"
+ line "#MON LEAGUE?"
+
+ para "You collected all"
+ line "the BADGEs too?"
+ cont "That's cool!"
+
+ para "Then I'll whip you"
+ line "<PLAYER> as a"
+ cont "warm up for"
+ cont "#MON LEAGUE!"
+
+ para "Come on!"
+ done
+
+_Route22RivalAfterBattleText2::
+ text "That loosened me"
+ line "up! I'm ready for"
+ cont "#MON LEAGUE!"
+
+ para "<PLAYER>, you need"
+ line "more practice!"
+
+ para "But hey, you know"
+ line "that! I'm out of"
+ cont "here. Smell ya!"
+ done
+
+_Route22RivalDefeatedText2::
+ text "What!?"
+
+ para "I was just"
+ line "careless!"
+ prompt
+
+_Route22Text_511d0::
+ text "<RIVAL>: Hahaha!"
+ line "<PLAYER>! That's"
+ cont "your best? You're"
+ cont "nowhere near as"
+ cont "good as me, pal!"
+
+ para "Go train some"
+ line "more! You loser!"
+ prompt
+
+_Route22FrontGateText::
+ text "#MON LEAGUE"
+ line "Front Gate"
+ done
--- /dev/null
+++ b/text/Route22Gate.asm
@@ -1,0 +1,20 @@
+_Route22GateText_1e704::
+ text "Only truly skilled"
+ line "trainers are"
+ cont "allowed through."
+
+ para "You don't have the"
+ line "BOULDERBADGE yet!@@"
+
+_Route22GateText_1e715::
+ text ""
+
+ para "The rules are"
+ line "rules. I can't"
+ cont "let you pass."
+ done
+
+_Route22GateText_1e71a::
+ text "Oh! That is the"
+ line "BOULDERBADGE!"
+ cont "Go right ahead!@@"
--- /dev/null
+++ b/text/Route23.asm
@@ -1,0 +1,39 @@
+_VictoryRoadGuardText1::
+ text "You can pass here"
+ line "only if you have"
+ cont "the @"
+ TX_RAM wcd6d
+ text "!"
+
+ para "You don't have the"
+ line "@"
+ TX_RAM wcd6d
+ text " yet!"
+
+ para "You have to have"
+ line "it to get to"
+ cont "#MON LEAGUE!@@"
+
+_VictoryRoadGuardText2::
+ text "You can pass here"
+ line "only if you have"
+ cont "the @"
+ TX_RAM wcd6d
+ text "!"
+
+ para "Oh! That is the"
+ line "@"
+ TX_RAM wcd6d
+ text "!@@"
+
+_VictoryRoadGuardText_513a3::
+ text ""
+
+ para "OK then! Please,"
+ line "go right ahead!"
+ done
+
+_Route23Text8::
+ text "VICTORY ROAD GATE"
+ line "- #MON LEAGUE"
+ done
--- /dev/null
+++ b/text/Route24.asm
@@ -1,0 +1,65 @@
+_Route24Text_51510::
+ text "Congratulations!"
+ line "You beat our 5"
+ cont "contest trainers!@@"
+
+_Route24Text_51515::
+ text ""
+
+ para "You just earned a"
+ line "fabulous prize!"
+ prompt
+
+_Route24Text_5151a::
+ text "<PLAYER> received"
+ line "a @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_Route24Text_51521::
+ text "You don't have"
+ line "any room!"
+ done
+
+_Route24Text_51526::
+ text "By the way, would"
+ line "you like to join"
+ cont "TEAM ROCKET?"
+
+ para "We're a group"
+ line "dedicated to evil"
+ cont "using #MON!"
+
+ para "Want to join?"
+
+ para "Are you sure?"
+
+ para "Come on, join us!"
+
+ para "I'm telling you"
+ line "to join!"
+
+ para "OK, you need"
+ line "convincing!"
+
+ para "I'll make you an"
+ line "offer you can't"
+ cont "refuse!"
+ done
+
+_Route24Text_5152b::
+ text "Arrgh!"
+ line "You are good!"
+ prompt
+
+_Route24Text_51530::
+ text "With your ability,"
+ line "you could become"
+ cont "a top leader in"
+ cont "TEAM ROCKET!"
+ done
+
+_Route24BattleText1::
+ text "I saw your feat"
+ line "from the grass!"
+ done
--- /dev/null
+++ b/text/Route24_2.asm
@@ -1,0 +1,90 @@
+_Route24EndBattleText1::
+ text "I"
+ line "thought not!"
+ prompt
+
+_Route24AfterBattleText1::
+ text "I hid because the"
+ line "people on the"
+ cont "bridge scared me!"
+ done
+
+_Route24BattleText2::
+ text "OK! I'm No. 5!"
+ line "I'll stomp you!"
+ done
+
+_Route24EndBattleText2::
+ text "Whoa!"
+ line "Too much!"
+ prompt
+
+_Route24AfterBattleText2::
+ text "I did my best, I"
+ line "have no regrets!"
+ done
+
+_Route24BattleText3::
+ text "I'm No. 4!"
+ line "Getting tired?"
+ done
+
+_Route24EndBattleText3::
+ text "I lost"
+ line "too!"
+ prompt
+
+_Route24AfterBattleText3::
+ text "I did my best, so"
+ line "I've no regrets!"
+ done
+
+_Route24BattleText4::
+ text "Here's No. 3!"
+ line "I won't be easy!"
+ done
+
+_Route24EndBattleText4::
+ text "Ow!"
+ line "Stomped flat!"
+ prompt
+
+_Route24AfterBattleText4::
+ text "I did my best, I"
+ line "have no regrets!"
+ done
+
+_Route24BattleText5::
+ text "I'm second!"
+ line "Now it's serious!"
+ done
+
+_Route24EndBattleText5::
+ text "How could I"
+ line "lose?"
+ prompt
+
+_Route24AfterBattleText5::
+ text "I did my best, I"
+ line "have no regrets!"
+ done
+
+_Route24BattleText6::
+ text "This is NUGGET"
+ line "BRIDGE! Beat us 5"
+ cont "trainers and win"
+ cont "a fabulous prize!"
+
+ para "Think you got"
+ line "what it takes?"
+ done
+
+_Route24EndBattleText6::
+ text "Whoo!"
+ line "Good stuff!"
+ prompt
+
+_Route24AfterBattleText6::
+ text "I did my best, I"
+ line "have no regrets!"
+ done
--- /dev/null
+++ b/text/Route25.asm
@@ -1,0 +1,156 @@
+_Route25BattleText1::
+ text "Local trainers"
+ line "come here to"
+ cont "practice!"
+ done
+
+_Route25EndBattleText1::
+ text "You're"
+ line "decent."
+ prompt
+
+_Route25AfterBattleText1::
+ text "All #MON have"
+ line "weaknesses. It's"
+ cont "best to raise"
+ cont "different kinds."
+ done
+
+_Route25BattleText2::
+ text "Dad took me to a"
+ line "great party on"
+ cont "S.S.ANNE at"
+ cont "VERMILION CITY!"
+ done
+
+_Route25EndBattleText2::
+ text "I'm"
+ line "not mad!"
+ prompt
+
+_Route25AfterBattleText2::
+ text "On S.S.ANNE, I"
+ line "saw trainers from"
+ cont "around the world."
+ done
+
+_Route25BattleText3::
+ text "I'm a cool guy."
+ line "I've got a girl"
+ cont "friend!"
+ done
+
+_Route25EndBattleText3::
+ text "Aww,"
+ line "darn..."
+ prompt
+
+_Route25AfterBattleText3::
+ text "Oh well. My girl"
+ line "will cheer me up."
+ done
+
+_Route25BattleText4::
+ text "Hi! My boy"
+ line "friend is cool!"
+ done
+
+_Route25EndBattleText4::
+ text "I was in"
+ line "bad condition!"
+ prompt
+
+_Route25AfterBattleText4::
+ text "I wish my guy was"
+ line "as good as you!"
+ done
+
+_Route25BattleText5::
+ text "I knew I had to"
+ line "fight you!"
+ done
+
+_Route25EndBattleText5::
+ text "I knew"
+ line "I'd lose too!"
+ prompt
+
+_Route25AfterBattleText5::
+ text "If your #MON"
+ line "gets confused or"
+ cont "falls asleep,"
+ cont "switch it!"
+ done
+
+_Route25BattleText6::
+ text "My friend has a"
+ line "cute #MON."
+ cont "I'm so jealous!"
+ done
+
+_Route25EndBattleText6::
+ text "I'm"
+ line "not so jealous!"
+ prompt
+
+_Route25AfterBattleText6::
+ text "You came from MT."
+ line "MOON? May I have"
+ cont "a CLEFAIRY?"
+ done
+
+_Route25BattleText7::
+ text "I just got down"
+ line "from MT.MOON,"
+ cont "but I'm ready!"
+ done
+
+_Route25EndBattleText7::
+ text "You"
+ line "worked hard!"
+ prompt
+
+_Route25AfterBattleText7::
+ text "Drat!"
+ line "A ZUBAT bit me"
+ cont "back in there."
+ done
+
+_Route25BattleText8::
+ text "I'm off to see a"
+ line "#MON collector"
+ cont "at the cape!"
+ done
+
+_Route25EndBattleText8::
+ text "You"
+ line "got me."
+ prompt
+
+_Route25AfterBattleText8::
+ text "The collector has"
+ line "many rare kinds"
+ cont "of #MON."
+ done
+
+_Route25BattleText9::
+ text "You're going to"
+ line "see BILL? First,"
+ cont "let's fight!"
+ done
+
+_Route25EndBattleText9::
+ text "You're"
+ line "something."
+ prompt
+
+_Route25AfterBattleText9::
+ text "The trail below"
+ line "is a shortcut to"
+ cont "CERULEAN CITY."
+ done
+
+_Route25Text11::
+ text "SEA COTTAGE"
+ line "BILL lives here!"
+ done
--- /dev/null
+++ b/text/Route2Gate.asm
@@ -1,0 +1,12 @@
+_Route2GateText_5d616::
+ text "The HM FLASH"
+ line "lights even the"
+ cont "darkest dungeons."
+ done
+
+_Route2GateText2::
+ text "Once a #MON"
+ line "learns FLASH, you"
+ cont "can get through"
+ cont "ROCK TUNNEL."
+ done
--- /dev/null
+++ b/text/Route2TradeHouse.asm
@@ -1,0 +1,6 @@
+_Route2HouseText1::
+ text "A fainted #MON"
+ line "can't fight. But, "
+ cont "it can still use "
+ cont "moves like CUT!"
+ done
--- /dev/null
+++ b/text/Route3.asm
@@ -1,0 +1,145 @@
+_Route3Text1::
+ text "Whew... I better"
+ line "take a rest..."
+ cont "Groan..."
+
+ para "That tunnel from"
+ line "CERULEAN takes a"
+ cont "lot out of you!"
+ done
+
+_Route3BattleText1::
+ text "Hey! I met you in"
+ line "VIRIDIAN FOREST!"
+ done
+
+_Route3EndBattleText1::
+ text "You"
+ line "beat me again!"
+ prompt
+
+_Route3AfterBattleText1::
+ text "There are other"
+ line "kinds of #MON"
+ cont "than those found"
+ cont "in the forest!"
+ done
+
+_Route3BattleText2::
+ text "Hi! I like shorts!"
+ line "They're comfy and"
+ cont "easy to wear!"
+ done
+
+_Route3EndBattleText2::
+ text "I don't"
+ line "believe it!"
+ prompt
+
+_Route3AfterBattleText2::
+ text "Are you storing"
+ line "your #MON on"
+ cont "PC? Each BOX can"
+ cont "hold 20 #MON!"
+ done
+
+_Route3BattleText3::
+ text "You looked at me,"
+ line "didn't you?"
+ done
+
+_Route3EndBattleText3::
+ text "You're"
+ line "mean!"
+ prompt
+
+_Route3AfterBattleText3::
+ text "Quit staring if"
+ line "you don't want to"
+ cont "fight!"
+ done
+
+_Route3BattleText4::
+ text "Are you a trainer?"
+ line "Let's fight!"
+ done
+
+_Route3EndBattleText4::
+ text "If I"
+ line "had new #MON I"
+ cont "would've won!"
+ prompt
+
+_Route3AfterBattleText4::
+ text "If a #MON BOX"
+ line "on the PC gets"
+ cont "full, just switch"
+ cont "to another BOX!"
+ done
+
+_Route3BattleText5::
+ text "That look you"
+ line "gave me, it's so"
+ cont "intriguing!"
+ done
+
+_Route3EndBattleText5::
+ text "Be nice!"
+ prompt
+
+_Route3AfterBattleText5::
+ text "Avoid fights by"
+ line "not letting"
+ cont "people see you!"
+ done
+
+_Route3BattleText6::
+ text "Hey! You're not"
+ line "wearing shorts!"
+ done
+
+_Route3EndBattleText6::
+ text "Lost!"
+ line "Lost! Lost!"
+ prompt
+
+_Route3AfterBattleText6::
+ text "I always wear"
+ line "shorts, even in"
+ cont "winter!"
+ done
+
+_Route3BattleText7::
+ text "You can fight my"
+ line "new #MON!"
+ done
+
+_Route3EndBattleText7::
+ text "Done"
+ line "like dinner!"
+ prompt
+
+_Route3AfterBattleText7::
+ text "Trained #MON"
+ line "are stronger than"
+ cont "the wild ones!"
+ done
+
+_Route3BattleText8::
+ text "Eek! Did you"
+ line "touch me?"
+ done
+
+_Route3EndBattleText8::
+ text "That's it?"
+ prompt
+
+_Route3AfterBattleText8::
+ text "ROUTE 4 is at the"
+ line "foot of MT.MOON."
+ done
+
+_Route3Text10::
+ text "ROUTE 3"
+ line "MT.MOON AHEAD"
+ done
--- /dev/null
+++ b/text/Route4.asm
@@ -1,0 +1,35 @@
+_Route4Text1::
+ text "Ouch! I tripped"
+ line "over a rocky"
+ cont "#MON, GEODUDE!"
+ done
+
+_Route4BattleText1::
+ text "I came to get my"
+ line "mushroom #MON!"
+ done
+
+_Route4EndBattleText1::
+ text "Oh! My cute"
+ line "mushroom #MON!"
+ prompt
+
+_Route4AfterBattleText1::
+ text "There might not"
+ line "be any more"
+ cont "mushrooms here."
+
+ para "I think I got"
+ line "them all."
+ done
+
+_Route4Text5::
+ text "MT.MOON"
+ line "Tunnel Entrance"
+ done
+
+_Route4Text6::
+ text "ROUTE 4"
+ line "MT.MOON -"
+ cont "CERULEAN CITY"
+ done
--- /dev/null
+++ b/text/Route5.asm
@@ -1,0 +1,5 @@
+_Route5Text1::
+ text "UNDERGROUND PATH"
+ line "CERULEAN CITY -"
+ cont "VERMILION CITY"
+ done
--- /dev/null
+++ b/text/Route6.asm
@@ -1,0 +1,97 @@
+_Route6BattleText1::
+ text "Who's there?"
+ line "Quit listening in"
+ cont "on us!"
+ done
+
+_Route6EndBattleText1::
+ text "I"
+ line "just can't win!"
+ prompt
+
+_Route6AfterBattleText1::
+ text "Whisper..."
+ line "whisper..."
+ done
+
+_Route6BattleText2::
+ text "Excuse me! This"
+ line "is a private"
+ cont "conversation!"
+ done
+
+_Route6EndBattleText2::
+ text "Ugh!"
+ line "I hate losing!"
+ prompt
+
+_Route6BattleText3::
+ text "There aren't many"
+ line "bugs out here."
+ done
+
+_Route6EndBattleText3::
+ text "No!"
+ line "You're kidding!"
+ prompt
+
+_Route6AfterBattleText3::
+ text "I like bugs, so"
+ line "I'm going back to"
+ cont "VIRIDIAN FOREST."
+ done
+
+_Route6BattleText4::
+ text "Huh? You want"
+ line "to talk to me?"
+ done
+
+_Route6EndBattleText4::
+ text "I"
+ line "didn't start it!"
+ prompt
+
+_Route6AfterBattleText4::
+ text "I should carry"
+ line "more #MON with"
+ cont "me for safety."
+ done
+
+_Route6BattleText5::
+ text "Me? Well, OK."
+ line "I'll play!"
+ done
+
+_Route6EndBattleText5::
+ text "Just"
+ line "didn't work!"
+ prompt
+
+_Route6AfterBattleText5::
+ text "I want to get"
+ line "stronger! What's"
+ cont "your secret?"
+ done
+
+_Route6BattleText6::
+ text "I've never seen"
+ line "you around!"
+ cont "Are you good?"
+ done
+
+_Route6EndBattleText6::
+ text "You"
+ line "are too good!"
+ prompt
+
+_Route6AfterBattleText6::
+ text "Are my #MON"
+ line "weak? Or, am I"
+ cont "just bad?"
+ done
+
+_Route6Text7::
+ text "UNDERGROUND PATH"
+ line "CERULEAN CITY -"
+ cont "VERMILION CITY"
+ done
--- /dev/null
+++ b/text/Route7.asm
@@ -1,0 +1,5 @@
+_Route7Text1::
+ text "UNDERGROUND PATH"
+ line "CELADON CITY -"
+ cont "LAVENDER TOWN"
+ done
--- /dev/null
+++ b/text/Route8.asm
@@ -1,0 +1,154 @@
+_Route8BattleText1::
+ text "You look good at"
+ line "#MON, but"
+ cont "how's your chem?"
+ done
+
+_Route8EndBattleText1::
+ text "Ow!"
+ line "Meltdown!"
+ prompt
+
+_Route8AfterBattleText1::
+ text "I am better at"
+ line "school than this!"
+ done
+
+_Route8BattleText2::
+ text "All right! Let's"
+ line "roll the dice!"
+ done
+
+_Route8EndBattleText2::
+ text "Drat!"
+ line "Came up short!"
+ prompt
+
+_Route8AfterBattleText2::
+ text "Lady Luck's not"
+ line "with me today!"
+ done
+
+_Route8BattleText3::
+ text "You need strategy"
+ line "to win at this!"
+ done
+
+_Route8EndBattleText3::
+ text "It's"
+ line "not logical!"
+ prompt
+
+_Route8AfterBattleText3::
+ text "Go with GRIMER"
+ line "first...and..."
+ cont "...and...then..."
+ done
+
+_Route8BattleText4::
+ text "I like NIDORAN, so"
+ line "I collect them!"
+ done
+
+_Route8EndBattleText4::
+ text "Why? Why??"
+ prompt
+
+_Route8AfterBattleText4::
+ text "When #MON grow"
+ line "up they get ugly!"
+ cont "They shouldn't"
+ cont "evolve!"
+ done
+
+_Route8BattleText5::
+ text "School is fun, but"
+ line "so are #MON."
+ done
+
+_Route8EndBattleText5::
+ text "I'll"
+ line "stay with school."
+ prompt
+
+_Route8AfterBattleText5::
+ text "We're stuck here"
+ line "because of the"
+ cont "gates at SAFFRON."
+ done
+
+_Route8BattleText6::
+ text "MEOWTH is so cute,"
+ line "meow, meow, meow!"
+ done
+
+_Route8EndBattleText6::
+ text "Meow!"
+ prompt
+
+_Route8AfterBattleText6::
+ text "I think PIDGEY"
+ line "and RATTATA"
+ cont "are cute too!"
+ done
+
+_Route8BattleText7::
+ text "We must look"
+ line "silly standing"
+ cont "here like this!"
+ done
+
+_Route8EndBattleText7::
+ text "Look what"
+ line "you did!"
+ prompt
+
+_Route8AfterBattleText7::
+ text "SAFFRON's gate"
+ line "keeper won't let"
+ cont "us through."
+ cont "He's so mean!"
+ done
+
+_Route8BattleText8::
+ text "I'm a rambling,"
+ line "gambling dude!"
+ done
+
+_Route8EndBattleText8::
+ text "Missed"
+ line "the big score!"
+ prompt
+
+_Route8AfterBattleText8::
+ text "Gambling and"
+ line "#MON are like"
+ cont "eating peanuts!"
+ cont "Just can't stop!"
+ done
+
+_Route8BattleText9::
+ text "What's a cute,"
+ line "round and fluffy"
+ cont "#MON?"
+ done
+
+_Route8EndBattleText9::
+ text "Stop!"
+
+ para "Don't be so mean"
+ line "to my CLEFAIRY!"
+ prompt
+
+_Route8AfterBattleText9::
+ text "I heard that"
+ line "CLEFAIRY evolves"
+ cont "when it's exposed"
+ cont "to a MOON STONE."
+ done
+
+_Route8Text10::
+ text "UNDERGROUND PATH"
+ line "CELADON CITY -"
+ cont "LAVENDER TOWN"
+ done
--- /dev/null
+++ b/text/Route9.asm
@@ -1,0 +1,157 @@
+_Route9BattleText1::
+ text "You have #MON"
+ line "with you!"
+ cont "You're mine!"
+ done
+
+_Route9EndBattleText1::
+ text "You"
+ line "deceived me!"
+ prompt
+
+_Route9AfterBattleText1::
+ text "You need light to"
+ line "get through that"
+ cont "dark tunnel ahead."
+ done
+
+_Route9BattleText2::
+ text "Who's that walking"
+ line "with those good"
+ cont "looking #MON?"
+ done
+
+_Route9EndBattleText2::
+ text "Out"
+ line "like a light!"
+ prompt
+
+_Route9AfterBattleText2::
+ text "Keep walking!"
+ done
+
+_Route9BattleText3::
+ text "I'm taking ROCK"
+ line "TUNNEL to go to"
+ cont "LAVENDER..."
+ done
+
+_Route9EndBattleText3::
+ text "Can't"
+ line "measure up!"
+ prompt
+
+_Route9AfterBattleText3::
+ text "Are you off to"
+ line "ROCK TUNNEL too?"
+ done
+
+_Route9BattleText4::
+ text "Don't you dare"
+ line "condescend me!"
+ done
+
+_Route9EndBattleText4::
+ text "No!"
+ line "You're too much!"
+ prompt
+
+_Route9AfterBattleText4::
+ text "You're obviously"
+ line "talented! Good"
+ cont "luck to you!"
+ done
+
+_Route9BattleText5::
+ text "Bwahaha!"
+ line "Great! I was"
+ cont "bored, eh!"
+ done
+
+_Route9EndBattleText5::
+ text "Keep it"
+ line "coming, eh!"
+
+ para "Oh wait. I'm out"
+ line "of #MON!"
+ prompt
+
+_Route9AfterBattleText5::
+ text "You sure had guts"
+ line "standing up to me"
+ cont "there, eh?"
+ done
+
+_Route9BattleText6::
+ text "Hahaha!"
+ line "Aren't you a"
+ cont "little toughie!"
+ done
+
+_Route9EndBattleText6::
+ text "What's"
+ line "that?"
+ prompt
+
+_Route9AfterBattleText6::
+ text "Hahaha! Kids"
+ line "should be tough!"
+ done
+
+_Route9BattleText7::
+ text "I got up early"
+ line "every day to"
+ cont "raise my #MON"
+ cont "from cocoons!"
+ done
+
+_Route9EndBattleText7::
+ text "WHAT?"
+
+ para "What a total"
+ line "waste of time!"
+ prompt
+
+_Route9AfterBattleText7::
+ text "I have to collect"
+ line "more than bugs to"
+ cont "get stronger..."
+ done
+
+_Route9BattleText8::
+ text "Hahahaha!"
+ line "Come on, dude!"
+ done
+
+_Route9EndBattleText8::
+ text "Hahahaha!"
+ line "You beat me fair!"
+ prompt
+
+_Route9AfterBattleText8::
+ text "Hahahaha!"
+ line "Us hearty guys"
+ cont "always laugh!"
+ done
+
+_Route9BattleText9::
+ text "Go, my super bug"
+ line "#MON!"
+ done
+
+_Route9EndBattleText9::
+ text "My"
+ line "bugs..."
+ prompt
+
+_Route9AfterBattleText9::
+ text "If you don't like"
+ line "bug #MON, you"
+ cont "bug me!"
+ done
+
+_Route9Text11::
+ text "ROUTE 9"
+ line "CERULEAN CITY-"
+ cont "ROCK TUNNEL"
+ done
--- /dev/null
+++ b/text/SSAnne1F.asm
@@ -1,0 +1,21 @@
+_SSAnne1Text1::
+ text "Bonjour!"
+ line "I am le waiter on"
+ cont "this ship!"
+
+ para "I will be happy"
+ line "to serve you any-"
+ cont "thing you please!"
+
+ para "Ah! Le strong"
+ line "silent type!"
+ done
+
+_SSAnne1Text2::
+ text "The passengers"
+ line "are restless!"
+
+ para "You might be"
+ line "challenged by the"
+ cont "more bored ones!"
+ done
--- /dev/null
+++ b/text/SSAnne1FRooms.asm
@@ -1,0 +1,104 @@
+_SSAnne8Text8::
+ text "WIGGLYTUFF: Puup"
+ line "pupuu!@@"
+
+_SSAnne8BattleText1::
+ text "I travel alone"
+ line "on my journeys!"
+
+ para "My #MON are my"
+ line "only friends!"
+ done
+
+_SSAnne8EndBattleText1::
+ text "My, my"
+ line "friends..."
+ prompt
+
+_SSAnne8AfterBattleText1::
+ text "You should be"
+ line "nice to friends!"
+ done
+
+_SSAnne8BattleText2::
+ text "You pup! How dare"
+ line "you barge in!"
+ done
+
+_SSAnne8EndBattleText2::
+ text "Humph!"
+ line "You rude child!"
+ prompt
+
+_SSAnne8AfterBattleText2::
+ text "I wish to be left"
+ line "alone! Get out!"
+ done
+
+_SSAnne8BattleText3::
+ text "I love #MON!"
+ line "Do you?"
+ done
+
+_SSAnne8EndBattleText3::
+ text "Wow! "
+ line "You're great!"
+ prompt
+
+_SSAnne8AfterBattleText3::
+ text "Let me be your"
+ line "friend, OK?"
+
+ para "Then we can trade"
+ line "#MON!"
+ done
+
+_SSAnne8BattleText4::
+ text "I collected these"
+ line "#MON from all"
+ cont "around the world!"
+ done
+
+_SSAnne8EndBattleText4::
+ text "Oh no!"
+ line "I went around the"
+ cont "world for these!"
+ prompt
+
+_SSAnne8AfterBattleText4::
+ text "You hurt my poor"
+ line "worldly #MON!"
+
+ para "I demand that you"
+ line "heal them at a"
+ cont "#MON CENTER!"
+ done
+
+_SSAnne8Text5::
+ text "Waiter, I would"
+ line "like a cherry pie"
+ cont "please!"
+ done
+
+_SSAnne8Text6::
+ text "A cruise is so"
+ line "elegant yet cozy!"
+ done
+
+_SSAnne8Text7::
+ text "I always travel"
+ line "with WIGGLYTUFF!"
+ done
+
+_SSAnne8Text9::
+ text "We are cruising"
+ line "around the world."
+ done
+
+_SSAnne8Text11::
+ text "Ssh! I'm a GLOBAL"
+ line "POLICE agent!"
+
+ para "I'm on the trail"
+ line "of TEAM ROCKET!"
+ done
--- /dev/null
+++ b/text/SSAnne2F.asm
@@ -1,0 +1,63 @@
+_SSAnne2Text1::
+ text "This ship, she is"
+ line "a luxury liner"
+ cont "for trainers!"
+
+ para "At every port, we"
+ line "hold parties with"
+ cont "invited trainers!"
+ done
+
+_SSAnneRivalBeforeBattleText::
+ text "<RIVAL>: Bonjour!"
+ line "<PLAYER>!"
+
+ para "Imagine seeing"
+ line "you here!"
+
+ para "<PLAYER>, were you"
+ line "really invited?"
+
+ para "So how's your"
+ line "#DEX coming?"
+
+ para "I already caught"
+ line "40 kinds, pal!"
+
+ para "Different kinds"
+ line "are everywhere!"
+
+ para "Crawl around in"
+ line "grassy areas!"
+ done
+
+_SSAnneRivalDefeatedText::
+ text "Humph!"
+
+ para "At least you're"
+ line "raising your"
+ cont "#MON!"
+ prompt
+
+_SSAnneRivalWonText::
+ text "<PLAYER>! What are"
+ line "you, seasick?"
+
+ para "You should shape"
+ line "up, pal!"
+ prompt
+
+_SSAnneRivalCaptainText::
+ text "<RIVAL>: I heard"
+ line "there was a CUT"
+ cont "master on board."
+
+ para "But, he was just a"
+ line "seasick, old man!"
+
+ para "But, CUT itself is"
+ line "really useful!"
+
+ para "You should go see"
+ line "him! Smell ya!"
+ done
--- /dev/null
+++ b/text/SSAnne2FRooms.asm
@@ -1,0 +1,113 @@
+_SSAnne9Text_61bf2::
+ text "In all my travels"
+ line "I've never seen"
+ cont "any #MON sleep"
+ cont "like this one!"
+
+ para "It was something"
+ line "like this!"
+ prompt
+
+_SSAnne9Text_61c01::
+ text "Ah yes, I have"
+ line "seen some #MON"
+ cont "ferry people"
+ cont "across the water!"
+ done
+
+_SSAnne9Text_61c10::
+ text "#MON can CUT"
+ line "down small bushes."
+ done
+
+_SSAnne9Text_61c1f::
+ text "Have you gone to"
+ line "the SAFARI ZONE"
+ cont "in FUCHSIA CITY?"
+
+ para "It had many rare"
+ line "kinds of #MON!!"
+ done
+
+_SSAnne9Text_61c2e::
+ text "Me and my Daddy"
+ line "think the SAFARI"
+ cont "ZONE is awesome!"
+ done
+
+_SSAnne9Text_61c3d::
+ text "The CAPTAIN looked"
+ line "really sick and"
+ cont "pale!"
+ done
+
+_SSAnne9Text_61c4c::
+ text "I hear many people"
+ line "get seasick!"
+ done
+
+_SSAnne9BattleText1::
+ text "Competing against"
+ line "the young keeps"
+ cont "me youthful."
+ done
+
+_SSAnne9EndBattleText1::
+ text "Good"
+ line "fight! Ah, I feel"
+ cont "young again!"
+ prompt
+
+_SSAnne9AfterBattleText1::
+ text "15 years ago, I"
+ line "would have won!"
+ done
+
+_SSAnne9BattleText2::
+ text "Check out what I"
+ line "fished up!"
+ done
+
+_SSAnne9EndBattleText2::
+ text "I'm"
+ line "all out!"
+ prompt
+
+_SSAnne9AfterBattleText2::
+ text "Party?"
+
+ para "The cruise ship's"
+ line "party should be"
+ cont "over by now."
+ done
+
+_SSAnne9BattleText3::
+ text "Which do you like,"
+ line "a strong or a"
+ cont "rare #MON?"
+ done
+
+_SSAnne9EndBattleText3::
+ text "I must"
+ line "salute you!"
+ prompt
+
+_SSAnne9AfterBattleText3::
+ text "I prefer strong"
+ line "and rare #MON."
+ done
+
+_SSAnne9BattleText4::
+ text "I never saw you"
+ line "at the party."
+ done
+
+_SSAnne9EndBattleText4::
+ text "Take"
+ line "it easy!"
+ prompt
+
+_SSAnne9AfterBattleText4::
+ text "Oh, I adore your"
+ line "strong #MON!"
+ done
--- /dev/null
+++ b/text/SSAnne3F.asm
@@ -1,0 +1,7 @@
+_SSAnne3Text1::
+ text "Our CAPTAIN is a"
+ line "sword master!"
+
+ para "He even teaches"
+ line "CUT to #MON!"
+ done
--- /dev/null
+++ b/text/SSAnneB1FRooms.asm
@@ -1,0 +1,112 @@
+_SSAnne10Text8::
+ text "MACHOKE: Gwoh!"
+ line "Goggoh!@@"
+
+_SSAnne10BattleText1::
+ text "You know what they"
+ line "say about sailors"
+ cont "and fighting!"
+ done
+
+_SSAnne10EndBattleText1::
+ text "Right!"
+ line "Good fight, mate!"
+ prompt
+
+_SSAnne10AfterBattleText1::
+ text "Haha! Want to be"
+ line "a sailor, mate?"
+ done
+
+_SSAnne10BattleText2::
+ text "My sailor's pride"
+ line "is at stake!"
+ done
+
+_SSAnne10EndBattleText2::
+ text "Your"
+ line "spirit sank me!"
+ prompt
+
+_SSAnne10AfterBattleText2::
+ text "Did you see the"
+ line "FISHING GURU in"
+ cont "VERMILION CITY?"
+ done
+
+_SSAnne10BattleText3::
+ text "Us sailors have"
+ line "#MON too!"
+ done
+
+_SSAnne10EndBattleText3::
+ text "OK, "
+ line "you're not bad."
+ prompt
+
+_SSAnne10AfterBattleText3::
+ text "We caught all our"
+ line "#MON while"
+ cont "out at sea!"
+ done
+
+_SSAnne10BattleText4::
+ text "I like feisty"
+ line "kids like you!@@"
+
+_SSAnne10EndBattleText4::
+ text "Argh!"
+ line "Lost it!"
+ prompt
+
+_SSAnne10AfterBattleText4::
+ text "Sea #MON live"
+ line "in deep water."
+ cont "You'll need a ROD!"
+ done
+
+_SSAnne10BattleText5::
+ text "Matey, you're"
+ line "walking the plank"
+ cont "if you lose!"
+ done
+
+_SSAnne10EndBattleText5::
+ text "Argh!"
+ line "Beaten by a kid!"
+ prompt
+
+_SSAnne10AfterBattleText5::
+ text "Jellyfish some-"
+ line "times drift into"
+ cont "the ship."
+ done
+
+_SSAnne10BattleText6::
+ text "Hello stranger!"
+ line "Stop and chat!"
+
+ para "All my #MON"
+ line "are from the sea!"
+ done
+
+_SSAnne10EndBattleText6::
+ text "Darn!"
+ line "I let that one"
+ cont "get away!"
+ prompt
+
+_SSAnne10AfterBattleText6::
+ text "I was going to"
+ line "make you my"
+ cont "assistant too!"
+ done
+
+_SSAnne10Text7::
+ text "My buddy, MACHOKE,"
+ line "is super strong!"
+
+ para "He has enough"
+ line "STRENGTH to move"
+ cont "big rocks!"
+ done
--- /dev/null
+++ b/text/SSAnneBow.asm
@@ -1,0 +1,52 @@
+_SSAnne5Text1::
+ text "The party's over."
+ line "The ship will be"
+ cont "departing soon."
+ done
+
+_SSAnne5Text2::
+ text "Scrubbing decks"
+ line "is hard work!"
+ done
+
+_SSAnne5Text3::
+ text "Urf. I feel ill."
+
+ para "I stepped out to"
+ line "get some air."
+ done
+
+_SSAnne5BattleText1::
+ text "Hey matey!"
+
+ para "Let's do a little"
+ line "jig!"
+ done
+
+_SSAnne5EndBattleText1::
+ text "You're"
+ line "impressive!"
+ prompt
+
+_SSAnne5AfterBattleText1::
+ text "How many kinds of"
+ line "#MON do you"
+ cont "think there are?"
+ done
+
+_SSAnne5BattleText2::
+ text "Ahoy there!"
+ line "Are you seasick?"
+ done
+
+_SSAnne5EndBattleText2::
+ text "I was"
+ line "just careless!"
+ prompt
+
+_SSAnne5AfterBattleText2::
+ text "My Pa said there"
+ line "are 100 kinds of"
+ cont "#MON. I think"
+ cont "there are more."
+ done
--- /dev/null
+++ b/text/SSAnneCaptainsRoom.asm
@@ -1,0 +1,62 @@
+_SSAnne7RubText::
+ text "CAPTAIN: Ooargh..."
+ line "I feel hideous..."
+ cont "Urrp! Seasick..."
+
+ para "<PLAYER> rubbed"
+ line "the CAPTAIN's"
+ cont "back!"
+
+ para "Rub-rub..."
+ line "Rub-rub...@@"
+
+_ReceivingHM01Text::
+ text "CAPTAIN: Whew!"
+ line "Thank you! I"
+ cont "feel much better!"
+
+ para "You want to see"
+ line "my CUT technique?"
+
+ para "I could show you"
+ line "if I wasn't ill..."
+
+ para "I know! You can"
+ line "have this!"
+
+ para "Teach it to your"
+ line "#MON and you"
+ cont "can see it CUT"
+ cont "any time!"
+ prompt
+
+_ReceivedHM01Text::
+ text "<PLAYER> got"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_SSAnne7Text_61932::
+ text "CAPTAIN: Whew!"
+
+ para "Now that I'm not"
+ line "sick any more, I"
+ cont "guess it's time."
+ done
+
+_HM01NoRoomText::
+ text "Oh no! You have"
+ line "no room for this!"
+ done
+
+_SSAnne7Text2::
+ text "Yuck! Shouldn't"
+ line "have looked!"
+ done
+
+_SSAnne7Text3::
+ text "How to Conquer"
+ line "Seasickness..."
+ cont "The CAPTAIN's"
+ cont "reading this!"
+ done
--- /dev/null
+++ b/text/SSAnneKitchen.asm
@@ -1,0 +1,69 @@
+_SSAnne6Text1::
+ text "You, mon petit!"
+ line "We're busy here!"
+ cont "Out of the way!"
+ done
+
+_SSAnne6Text2::
+ text "I saw an odd ball"
+ line "in the trash."
+ done
+
+_SSAnne6Text3::
+ text "I'm so busy I'm"
+ line "getting dizzy!"
+ done
+
+_SSAnne6Text4::
+ text "Hum-de-hum-de-"
+ line "ho..."
+
+ para "I peel spuds"
+ line "every day!"
+ cont "Hum-hum..."
+ done
+
+_SSAnne6Text5::
+ text "Did you hear about"
+ line "SNORLAX?"
+
+ para "All it does is"
+ line "eat and sleep!"
+ done
+
+_SSAnne6Text6::
+ text "Snivel...Sniff..."
+
+ para "I only get to"
+ line "peel onions..."
+ cont "Snivel..."
+ done
+
+_SSAnne6Text_61807::
+ text "Er-hem! Indeed I"
+ line "am le CHEF!"
+
+ para "Le main course is"
+ prompt
+
+_SSAnne6Text_6180c::
+ text "Salmon du Salad!"
+
+ para "Les guests may"
+ line "gripe it's fish"
+ cont "again, however!"
+ done
+
+_SSAnne6Text_61811::
+ text "Eels au Barbecue!"
+
+ para "Les guests will"
+ line "mutiny, I fear."
+ done
+
+_SSAnne6Text_61816::
+ text "Prime Beef Steak!"
+
+ para "But, have I enough"
+ line "fillets du beef?"
+ done
--- /dev/null
+++ b/text/SafariZoneCenter.asm
@@ -1,0 +1,11 @@
+_SafariZoneCenterText2::
+ text "REST HOUSE"
+ done
+
+_SafariZoneCenterText3::
+ text "TRAINER TIPS"
+
+ para "Press the START"
+ line "Button to check"
+ cont "remaining time!"
+ done
--- /dev/null
+++ b/text/SafariZoneCenterRestHouse.asm
@@ -1,0 +1,11 @@
+_SafariZoneRestHouse1Text1::
+ text "SARA: Where did"
+ line "my boy friend,"
+ cont "ERIK, go?"
+ done
+
+_SafariZoneRestHouse1Text2::
+ text "I'm catching"
+ line "#MON to take"
+ cont "home as gifts!"
+ done
--- /dev/null
+++ b/text/SafariZoneEast.asm
@@ -1,0 +1,16 @@
+_SafariZoneEastText5::
+ text "REST HOUSE"
+ done
+
+_SafariZoneEastText6::
+ text "TRAINER TIPS"
+
+ para "The remaining time"
+ line "declines only"
+ cont "while you walk!"
+ done
+
+_SafariZoneEastText7::
+ text "CENTER AREA"
+ line "NORTH: AREA 2"
+ done
--- /dev/null
+++ b/text/SafariZoneEastRestHouse.asm
@@ -1,0 +1,18 @@
+_SafariZoneRestHouse3Text1::
+ text "How many did you"
+ line "catch? I'm bushed"
+ cont "from the work!"
+ done
+
+_SafariZoneRestHouse3Text2::
+ text "I caught a"
+ line "CHANSEY!"
+
+ para "That makes this"
+ line "all worthwhile!"
+ done
+
+_SafariZoneRestHouse3Text3::
+ text "Whew! I'm tired"
+ line "from all the fun!"
+ done
--- /dev/null
+++ b/text/SafariZoneGate.asm
@@ -1,0 +1,94 @@
+_SafariZoneEntranceText1::
+ text "Welcome to the"
+ line "SAFARI ZONE!"
+ done
+
+SafariZoneEntranceText_9e6e4::
+ text "For just ¥500,"
+ line "you can catch all"
+ cont "the #MON you"
+ cont "want in the park!"
+
+ para "Would you like to"
+ line "join the hunt?@@"
+
+SafariZoneEntranceText_9e747::
+ text "That'll be ¥500"
+ line "please!"
+
+ para "We only use a"
+ line "special # BALL"
+ cont "here."
+
+ para "<PLAYER> received"
+ line "30 SAFARI BALLs!@@"
+
+_SafariZoneEntranceText_75360::
+ text ""
+
+ para "We'll call you on"
+ line "the PA when you"
+ cont "run out of time"
+ cont "or SAFARI BALLs!"
+ done
+
+_SafariZoneEntranceText_75365::
+ text "OK! Please come"
+ line "again!"
+ done
+
+_SafariZoneEntranceText_7536a::
+ text "Oops! Not enough"
+ line "money!"
+ done
+
+SafariZoneEntranceText_9e814::
+ text "Leaving early?@@"
+
+_SafariZoneEntranceText_753bb::
+ text "Please return any"
+ line "SAFARI BALLs you"
+ cont "have left."
+ done
+
+_SafariZoneEntranceText_753c0::
+ text "Good Luck!"
+ done
+
+_SafariZoneEntranceText_753c5::
+ text "Did you get a"
+ line "good haul?"
+ cont "Come again!"
+ done
+
+_SafariZoneEntranceText_753e6::
+ text "Hi! Is it your"
+ line "first time here?"
+ done
+
+_SafariZoneEntranceText_753eb::
+ text "SAFARI ZONE has 4"
+ line "zones in it."
+
+ para "Each zone has"
+ line "different kinds"
+ cont "of #MON. Use"
+ cont "SAFARI BALLs to"
+ cont "catch them!"
+
+ para "When you run out"
+ line "of time or SAFARI"
+ cont "BALLs, it's game"
+ cont "over for you!"
+
+ para "Before you go,"
+ line "open an unused"
+ cont "#MON BOX so"
+ cont "there's room for"
+ cont "new #MON!"
+ done
+
+_SafariZoneEntranceText_753f0::
+ text "Sorry, you're a"
+ line "regular here!"
+ done
--- /dev/null
+++ b/text/SafariZoneNorth.asm
@@ -1,0 +1,33 @@
+_SafariZoneNorthText3::
+ text "REST HOUSE"
+ done
+
+_SafariZoneNorthText4::
+ text "TRAINER TIPS"
+
+ para "The SECRET HOUSE"
+ line "is still ahead!"
+ done
+
+_SafariZoneNorthText5::
+ text "AREA 2"
+ done
+
+_SafariZoneNorthText6::
+ text "TRAINER TIPS"
+
+ para "#MON hide in"
+ line "tall grass!"
+
+ para "Zigzag through"
+ line "grassy areas to"
+ cont "flush them out."
+ done
+
+_SafariZoneNorthText7::
+ text "TRAINER TIPS"
+
+ para "Win a free HM for"
+ line "finding the"
+ cont "SECRET HOUSE!"
+ done
--- /dev/null
+++ b/text/SafariZoneNorthRestHouse.asm
@@ -1,0 +1,27 @@
+_SafariZoneRestHouse4Text1::
+ text "You can keep any"
+ line "item you find on"
+ cont "the ground here."
+
+ para "But, you'll run"
+ line "out of time if"
+ cont "you try for all"
+ cont "of them at once!"
+ done
+
+_SafariZoneRestHouse4Text2::
+ text "Go to the deepest"
+ line "part of the"
+ cont "SAFARI ZONE. You"
+ cont "will win a prize!"
+ done
+
+_SafariZoneRestHouse4Text3::
+ text "My EEVEE evolved"
+ line "into FLAREON!"
+
+ para "But, a friend's"
+ line "EEVEE turned into"
+ cont "a VAPOREON!"
+ cont "I wonder why?"
+ done
--- /dev/null
+++ b/text/SafariZoneSecretHouse.asm
@@ -1,0 +1,44 @@
+_SecretHouseText_4a350::
+ text "Ah! Finally!"
+
+ para "You're the first"
+ line "person to reach"
+ cont "the SECRET HOUSE!"
+
+ para "I was getting"
+ line "worried that no"
+ cont "one would win our"
+ cont "campaign prize."
+
+ para "Congratulations!"
+ line "You have won!"
+ prompt
+
+_ReceivedHM03Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_HM03ExplanationText::
+ text "HM03 is SURF!"
+
+ para "#MON will be"
+ line "able to ferry you"
+ cont "across water!"
+
+ para "And, this HM isn't"
+ line "disposable! You"
+ cont "can use it over"
+ cont "and over!"
+
+ para "You're super lucky"
+ line "for winning this"
+ cont "fabulous prize!"
+ done
+
+_HM03NoRoomText::
+ text "You don't have"
+ line "room for this"
+ cont "fabulous prize!"
+ done
--- /dev/null
+++ b/text/SafariZoneWest.asm
@@ -1,0 +1,31 @@
+_SafariZoneWestText5::
+ text "REST HOUSE"
+ done
+
+_SafariZoneWestText6::
+ text "REQUEST NOTICE"
+
+ para "Please find the"
+ line "SAFARI WARDEN's"
+ cont "lost GOLD TEETH."
+ cont "They're around"
+ cont "here somewhere."
+
+ para "Reward offered!"
+ line "Contact: WARDEN"
+ done
+
+_SafariZoneWestText7::
+ text "TRAINER TIPS"
+
+ para "Zone Exploration"
+ line "Campaign!"
+
+ para "The Search for"
+ line "the SECRET HOUSE!"
+ done
+
+_SafariZoneWestText8::
+ text "AREA 3"
+ line "EAST: CENTER AREA"
+ done
--- /dev/null
+++ b/text/SafariZoneWestRestHouse.asm
@@ -1,0 +1,19 @@
+_SafariZoneRestHouse2Text1::
+ text "Tossing ROCKs at"
+ line "#MON might"
+ cont "make them run,"
+ cont "but they'll be"
+ cont "easier to catch."
+ done
+
+_SafariZoneRestHouse2Text2::
+ text "Using BAIT will"
+ line "make #MON"
+ cont "easier to catch."
+ done
+
+_SafariZoneRestHouse2Text3::
+ text "I hiked a lot, but"
+ line "I didn't see any"
+ cont "#MON I wanted."
+ done
--- /dev/null
+++ b/text/SaffronCity.asm
@@ -1,0 +1,151 @@
+_SaffronCityText1::
+ text "What do you want?"
+ line "Get lost!"
+ done
+
+_SaffronCityText2::
+ text "BOSS said he'll"
+ line "take this town!"
+ done
+
+_SaffronCityText3::
+ text "Get out of the"
+ line "way!"
+ done
+
+_SaffronCityText4::
+ text "SAFFRON belongs"
+ line "to TEAM ROCKET!"
+ done
+
+_SaffronCityText5::
+ text "Being evil makes"
+ line "me feel so alive!"
+ done
+
+_SaffronCityText6::
+ text "Ow! Watch where"
+ line "you're walking!"
+ done
+
+_SaffronCityText7::
+ text "With SILPH under"
+ line "control, we can"
+ cont "exploit #MON"
+ cont "around the world!"
+ done
+
+_SaffronCityText8::
+ text "You beat TEAM"
+ line "ROCKET all alone?"
+ cont "That's amazing!"
+ done
+
+_SaffronCityText9::
+ text "Yeah! TEAM ROCKET"
+ line "is gone!"
+ cont "It's safe to go"
+ cont "out again!"
+ done
+
+_SaffronCityText10::
+ text "People should be"
+ line "flocking back to"
+ cont "SAFFRON now."
+ done
+
+_SaffronCityText11::
+ text "I flew here on my"
+ line "PIDGEOT when I"
+ cont "read about SILPH."
+
+ para "It's already over?"
+ line "I missed the"
+ cont "media action."
+ done
+
+_SaffronCityText12::
+ text "PIDGEOT: Bi bibii!@@"
+
+_SaffronCityText13::
+ text "I saw ROCKET"
+ line "BOSS escaping"
+ cont "SILPH's building."
+ done
+
+_SaffronCityText14::
+ text "I'm a security"
+ line "guard."
+
+ para "Suspicious kids I"
+ line "don't allow in!"
+ done
+
+_SaffronCityText15::
+ text "..."
+ line "Snore..."
+
+ para "Hah! He's taking"
+ line "a snooze!"
+ done
+
+_SaffronCityText16::
+ text "SAFFRON CITY"
+ line "Shining, Golden"
+ cont "Land of Commerce"
+ done
+
+_SaffronCityText17::
+ text "FIGHTING DOJO"
+ done
+
+_SaffronCityText18::
+ text "SAFFRON CITY"
+ line "#MON GYM"
+ cont "LEADER: SABRINA"
+
+ para "The Master of"
+ line "Psychic #MON!"
+ done
+
+_SaffronCityText20::
+ text "TRAINER TIPS"
+
+ para "FULL HEAL cures"
+ line "all ailments like"
+ cont "sleep and burns."
+
+ para "It costs a bit"
+ line "more, but it's"
+ cont "more convenient."
+ done
+
+_SaffronCityText21::
+ text "TRAINER TIPS"
+
+ para "New GREAT BALL"
+ line "offers improved"
+ cont "capture rates."
+
+ para "Try it on those"
+ line "hard-to-catch"
+ cont "#MON."
+ done
+
+_SaffronCityText22::
+ text "SILPH CO."
+ line "OFFICE BUILDING"
+ done
+
+_SaffronCityText24::
+ text "MR.PSYCHIC's"
+ line "HOUSE"
+ done
+
+_SaffronCityText25::
+ text "SILPH's latest"
+ line "product!"
+
+ para "Release to be"
+ line "determined..."
+ done
--- /dev/null
+++ b/text/SaffronGates.asm
@@ -1,0 +1,37 @@
+_SaffronGateText_1dfe7::
+ text "I'm on guard duty."
+ line "Gee, I'm thirsty,"
+ cont "though!"
+
+ para "Oh wait there,"
+ line "the road's closed."
+ done
+
+_SaffronGateText_8aaa9::
+ text "Whoa, boy!"
+ line "I'm parched!"
+ cont "..."
+ cont "Huh? I can have"
+ cont "this drink?"
+ cont "Gee, thanks!@@"
+
+_SaffronGateText_1dff1::
+ text ""
+
+ para "..."
+ line "Glug glug..."
+ cont "..."
+ cont "Gulp..."
+ cont "If you want to go"
+ cont "to SAFFRON CITY..."
+ cont "..."
+ cont "You can go on"
+ cont "through. I'll"
+ cont "share this with"
+ cont "the other guards!"
+ done
+
+_SaffronGateText_1dff6::
+ text "Hi, thanks for"
+ line "the cool drinks!"
+ done
--- /dev/null
+++ b/text/SaffronGym.asm
@@ -1,0 +1,237 @@
+_SaffronGymText_5d162::
+ text "I had a vision of"
+ line "your arrival!"
+
+ para "I have had psychic"
+ line "powers since I"
+ cont "was a child."
+
+ para "I first learned"
+ line "to bend spoons"
+ cont "with my mind."
+
+ para "I dislike fight-"
+ line "ing, but if you"
+ cont "wish, I will show"
+ cont "you my powers!"
+ done
+
+_SaffronGymText_5d167::
+ text "I'm"
+ line "shocked!"
+ cont "But, a loss is a"
+ cont "loss."
+
+ para "I admit I didn't"
+ line "work hard enough"
+ cont "to win!"
+
+ para "You earned the"
+ line "MARSHBADGE!@@"
+
+_SaffronGymText_5d16e::
+ text "Everyone has"
+ line "psychic power!"
+ cont "People just don't"
+ cont "realize it!"
+ done
+
+_SaffronGymText_5d173::
+ text "The MARSHBADGE"
+ line "makes #MON up"
+ cont "to L70 obey you!"
+
+ para "Stronger #MON"
+ line "will become wild,"
+ cont "ignoring your"
+ cont "orders in battle!"
+
+ para "Just don't raise"
+ line "your #MON too"
+ cont "much!"
+
+ para "Wait, please take"
+ line "this TM with you!"
+ done
+
+ReceivedTM46Text::
+ text "<PLAYER> received"
+ line "TM46!@@"
+
+_TM46ExplanationText::
+ text ""
+
+ para "TM46 is PSYWAVE!"
+ line "It uses powerful"
+ cont "psychic waves to"
+ cont "inflict damage!"
+ done
+
+_TM46NoRoomText::
+ text "Your pack is full"
+ line "of other items!"
+ done
+
+_SaffronGymText_5d1e6::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "SABRINA's #MON"
+ line "use psychic power"
+ cont "instead of force!"
+
+ para "Fighting #MON"
+ line "are weak against"
+ cont "psychic #MON!"
+
+ para "They get creamed"
+ line "before they can"
+ cont "even aim a punch!"
+ done
+
+_SaffronGymText_5d1eb::
+ text "Psychic power,"
+ line "huh?"
+
+ para "If I had that,"
+ line "I'd make a bundle"
+ cont "at the slots!"
+ done
+
+_SaffronGymBattleText1::
+ text "SABRINA is younger"
+ line "than I, but I"
+ cont "respect her!"
+ done
+
+_SaffronGymEndBattleText1::
+ text "Not"
+ line "good enough!"
+ prompt
+
+_SaffronGymAfterBattleText1::
+ text "In a battle of"
+ line "equals, the one"
+ cont "with the stronger"
+ cont "will wins!"
+
+ para "If you wish"
+ line "to beat SABRINA,"
+ cont "focus on winning!"
+ done
+
+_SaffronGymBattleText2::
+ text "Does our unseen"
+ line "power scare you?"
+ done
+
+_SaffronGymEndBattleText2::
+ text "I never"
+ line "foresaw this!"
+ prompt
+
+_SaffronGymAfterBattleText2::
+ text "Psychic #MON"
+ line "fear only ghosts"
+ cont "and bugs!"
+ done
+
+_SaffronGymBattleText3::
+ text "#MON take on"
+ line "the appearance of"
+ cont "their trainers."
+
+ para "Your #MON must"
+ line "be tough, then!"
+ done
+
+_SaffronGymEndBattleText3::
+ text "I knew"
+ line "it!"
+ prompt
+
+_SaffronGymAfterBattleText3::
+ text "I must teach"
+ line "better techniques"
+ cont "to my #MON!"
+ done
+
+_SaffronGymBattleText4::
+ text "You know that"
+ line "power alone isn't"
+ cont "enough!"
+ done
+
+_SaffronGymEndBattleText4::
+ text "I don't"
+ line "believe this!"
+ prompt
+
+_SaffronGymAfterBattleText4::
+ text "SABRINA just wiped"
+ line "out the KARATE"
+ cont "MASTER next door!"
+ done
+
+_SaffronGymBattleText5::
+ text "You and I, our"
+ line "#MON shall"
+ cont "fight!"
+ done
+
+_SaffronGymEndBattleText5::
+ text "I lost"
+ line "after all!"
+ prompt
+
+_SaffronGymAfterBattleText5::
+ text "I knew that this"
+ line "was going to take"
+ cont "place."
+ done
+
+_SaffronGymBattleText6::
+ text "SABRINA is young,"
+ line "but she's also"
+ cont "our LEADER!"
+
+ para "You won't reach"
+ line "her easily!"
+ done
+
+_SaffronGymEndBattleText6::
+ text "I lost"
+ line "my concentration!"
+ prompt
+
+_SaffronGymAfterBattleText6::
+ text "There used to be"
+ line "2 #MON GYMs in"
+ cont "SAFFRON."
+
+ para "The FIGHTING DOJO"
+ line "next door lost"
+ cont "its GYM status"
+ cont "when we went and"
+ cont "creamed them!"
+ done
+
+_SaffronGymBattleText7::
+ text "SAFFRON #MON"
+ line "GYM is famous for"
+ cont "its psychics!"
+
+ para "You want to see"
+ line "SABRINA!"
+ cont "I can tell!"
+ done
+
+_SaffronGymEndBattleText7::
+ text "Arrrgh!"
+ prompt
+
+_SaffronGymAfterBattleText7::
+ text "That's right! I"
+ line "used telepathy to"
+ cont "read your mind!"
+ done
--- /dev/null
+++ b/text/SaffronMart.asm
@@ -1,0 +1,13 @@
+_SaffronMartText2::
+ text "MAX REPEL lasts"
+ line "longer than SUPER"
+ cont "REPEL for keeping"
+ cont "weaker #MON"
+ cont "away!"
+ done
+
+_SaffronMartText3::
+ text "REVIVE is costly,"
+ line "but it revives"
+ cont "fainted #MON!"
+ done
--- /dev/null
+++ b/text/SaffronPidgeyHouse.asm
@@ -1,0 +1,26 @@
+_SaffronHouse1Text1::
+ text "Thank you for"
+ line "writing. I hope"
+ cont "to see you soon!"
+
+ para "Hey! Don't look"
+ line "at my letter!"
+ done
+
+_SaffronHouse1Text2::
+ text "PIDGEY: Kurukkoo!@@"
+
+_SaffronHouse1Text3::
+ text "The COPYCAT is"
+ line "cute! I'm getting"
+ cont "her a # DOLL!"
+ done
+
+_SaffronHouse1Text4::
+ text "I was given a PP"
+ line "UP as a gift."
+
+ para "It's used for"
+ line "increasing the PP"
+ cont "of techniques!"
+ done
--- /dev/null
+++ b/text/SaffronPokecenter.asm
@@ -1,0 +1,12 @@
+_SaffronPokecenterText2::
+ text "#MON growth"
+ line "rates differ from"
+ cont "specie to specie."
+ done
+
+_SaffronPokecenterText3::
+ text "SILPH CO. is very"
+ line "famous. That's"
+ cont "why it attracted"
+ cont "TEAM ROCKET!"
+ done
--- /dev/null
+++ b/text/SeafoamIslandsB4F.asm
@@ -1,0 +1,13 @@
+_ArticunoBattleText::
+ text "Gyaoo!@@"
+
+_SeafoamIslands5Text4::
+ text "Boulders might"
+ line "change the flow"
+ cont "of water!"
+ done
+
+_SeafoamIslands5Text5::
+ text "DANGER"
+ line "Fast current!"
+ done
--- /dev/null
+++ b/text/SilphCo10F.asm
@@ -1,0 +1,42 @@
+_SilphCo10Text_5a1d3::
+ text "Waaaaa!"
+ cont "I'm scared!"
+ done
+
+_SilphCo10Text_5a1d8::
+ text "Please keep quiet"
+ line "about my crying!"
+ done
+
+_SilphCo10BattleText1::
+ text "Welcome to the"
+ line "10F! So good of"
+ cont "you to join me!"
+ done
+
+_SilphCo10EndBattleText1::
+ text "I'm"
+ line "stunned!"
+ prompt
+
+_SilphCo10AfterBattleText1::
+ text "Nice try, but the"
+ line "boardroom is up"
+ cont "one more floor!"
+ done
+
+_SilphCo10BattleText2::
+ text "Enough of your"
+ line "silly games!"
+ done
+
+_SilphCo10EndBattleText2::
+ text "No"
+ line "continues left!"
+ prompt
+
+_SilphCo10AfterBattleText2::
+ text "Are you satisfied"
+ line "with beating me?"
+ cont "Then go on home!"
+ done
--- /dev/null
+++ b/text/SilphCo11F.asm
@@ -1,0 +1,134 @@
+_SilphCoPresidentText::
+ text "PRESIDENT: Thank"
+ line "you for saving"
+ cont "SILPH!"
+
+ para "I will never"
+ line "forget you saved"
+ cont "us in our moment"
+ cont "of peril!"
+
+ para "I have to thank"
+ line "you in some way!"
+
+ para "Because I am rich,"
+ line "I can give you"
+ cont "anything!"
+
+ para "Here, maybe this"
+ line "will do!"
+ prompt
+
+_ReceivedSilphCoMasterBallText::
+ text "<PLAYER> got a"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_SilphCo10Text_6231c::
+ text "PRESIDENT: You"
+ line "can't buy that"
+ cont "anywhere!"
+
+ para "It's our secret"
+ line "prototype MASTER"
+ cont "BALL!"
+
+ para "It will catch any"
+ line "#MON without"
+ cont "fail!"
+
+ para "You should be"
+ line "quiet about using"
+ cont "it, though."
+ done
+
+_SilphCoMasterBallNoRoomText::
+ text "You have no"
+ line "room for this."
+ done
+
+_SilphCo11Text2::
+ text "SECRETARY: Thank"
+ line "you for rescuing"
+ cont "all of us!"
+
+ para "We admire your"
+ line "courage."
+ done
+
+_SilphCo11Text3::
+ text "Ah <PLAYER>!"
+ line "So we meet again!"
+
+ para "The PRESIDENT and"
+ line "I are discussing"
+ cont "a vital business"
+ cont "proposition."
+
+ para "Keep your nose"
+ line "out of grown-up"
+ cont "matters..."
+
+ para "Or, experience a"
+ line "world of pain!"
+ done
+
+_SilphCo10Text_62330::
+ text "Arrgh!!"
+ line "I lost again!?"
+ prompt
+
+_SilphCo10Text_62335::
+ text "Blast it all!"
+ line "You ruined our"
+ cont "plans for SILPH!"
+
+ para "But, TEAM ROCKET"
+ line "will never fall!"
+
+ para "<PLAYER>! Never"
+ line "forget that all"
+ cont "#MON exist"
+ cont "for TEAM ROCKET!"
+
+ para "I must go, but I"
+ line "shall return!"
+ done
+
+_SilphCo11BattleText1::
+ text "Stop right there!"
+ line "Don't you move!"
+ done
+
+_SilphCo11EndBattleText1::
+ text "Don't..."
+ line "Please!"
+ prompt
+
+_SilphCo11AfterBattleText1::
+ text "So, you want to"
+ line "see my BOSS?"
+ done
+
+_SilphCo11BattleText2::
+ text "Halt! Do you have"
+ line "an appointment"
+ cont "with my BOSS?"
+ done
+
+_SilphCo11EndBattleText2::
+ text "Gaah!"
+ line "Demolished!"
+ prompt
+
+_SilphCo11AfterBattleText2::
+ text "Watch your step,"
+ line "my BOSS likes his"
+ cont "#MON tough!"
+ done
+
+_SilphCo10Text_6237b::
+ text "The monitor has"
+ line "#MON on it!"
+ done
--- /dev/null
+++ b/text/SilphCo1F.asm
@@ -1,0 +1,7 @@
+_SilphCo1Text1::
+ text "Welcome!"
+
+ para "The PRESIDENT is"
+ line "in the boardroom"
+ cont "on 11F!"
+ done
--- /dev/null
+++ b/text/SilphCo2F.asm
@@ -1,0 +1,96 @@
+_SilphCo2Text_59ded::
+ text "Eeek!"
+ line "No! Stop! Help!"
+
+ para "Oh, you're not"
+ line "with TEAM ROCKET."
+ cont "I thought..."
+ cont "I'm sorry. Here,"
+ cont "please take this!"
+ prompt
+
+_ReceivedTM36Text::
+ text "<PLAYER> got"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM36ExplanationText::
+ text "TM36 is"
+ line "SELFDESTRUCT!"
+
+ para "It's powerful, but"
+ line "the #MON that"
+ cont "uses it faints!"
+ cont "Be careful."
+ done
+
+_TM36NoRoomText::
+ text "You don't have any"
+ line "room for this."
+ done
+
+_SilphCo2BattleText1::
+ text "Help! I'm a SILPH"
+ line "employee."
+ done
+
+_SilphCo2EndBattleText1::
+ text "How"
+ line "did you know I"
+ cont "was a ROCKET?"
+ prompt
+
+_SilphCo2AfterBattleText1::
+ text "I work for both"
+ line "SILPH and TEAM"
+ cont "ROCKET!"
+ done
+
+_SilphCo2BattleText2::
+ text "It's off limits"
+ line "here! Go home!"
+ done
+
+_SilphCo2EndBattleText2::
+ text "You're"
+ line "good."
+ prompt
+
+_SilphCo2AfterBattleText2::
+ text "Can you solve the"
+ line "maze in here?"
+ done
+
+_SilphCo2BattleText3::
+ text "No kids are"
+ line "allowed in here!"
+ done
+
+_SilphCo2EndBattleText3::
+ text "Tough!"
+ prompt
+
+_SilphCo2AfterBattleText3::
+ text "Diamond shaped"
+ line "tiles are"
+ cont "teleport blocks!"
+
+ para "They're hi-tech"
+ line "transporters!"
+ done
+
+_SilphCo2BattleText4::
+ text "Hey kid! What are"
+ line "you doing here?"
+ done
+
+_SilphCo2EndBattleText4::
+ text "I goofed!"
+ prompt
+
+_SilphCo2AfterBattleText4::
+ text "SILPH CO. will"
+ line "be merged with"
+ cont "TEAM ROCKET!"
+ done
--- /dev/null
+++ b/text/SilphCo3F.asm
@@ -1,0 +1,46 @@
+_SilphCo3Text_59ff9::
+ text "I work for SILPH."
+ line "What should I do?"
+ done
+
+_SilphCo3Text_59ffe::
+ text "<PLAYER>! You and"
+ line "your #MON"
+ cont "saved us!"
+ done
+
+_SilphCo3BattleText1::
+ text "Quit messing with"
+ line "us, kid!"
+ done
+
+_SilphCo3EndBattleText1::
+ text "I give"
+ line "up!"
+ prompt
+
+_SilphCo3AfterBattleText1::
+ text "A hint? You can"
+ line "open doors with a"
+ cont "CARD KEY!"
+ done
+
+_SilphCo3BattleText2::
+ text "I support TEAM"
+ line "ROCKET more than"
+ cont "I support SILPH!"
+ done
+
+_SilphCo3EndBattleText2::
+ text "You"
+ line "really got me!"
+ prompt
+
+_SilphCo3AfterBattleText2::
+ text "Humph..."
+
+ para "TEAM ROCKET said"
+ line "that if I helped"
+ cont "them, they'd let"
+ cont "me study #MON!"
+ done
--- /dev/null
+++ b/text/SilphCo4F.asm
@@ -1,0 +1,56 @@
+_SilphCo4Text_19de0::
+ text "Sssh! Can't you"
+ line "see I'm hiding?"
+ done
+
+_SilphCo4Text_19de5::
+ text "Huh? TEAM ROCKET"
+ line "is gone?"
+ done
+
+_SilphCo4BattleText2::
+ text "TEAM ROCKET has"
+ line "taken command of"
+ cont "SILPH CO.!"
+ done
+
+_SilphCo4EndBattleText2::
+ text "Arrgh!"
+ prompt
+
+_SilphCo4AfterBattleText2::
+ text "Fwahahaha!"
+ line "My BOSS has been"
+ cont "after this place!"
+ done
+
+_SilphCo4BattleText3::
+ text "My #MON are my"
+ line "loyal soldiers!"
+ done
+
+_SilphCo4EndBattleText3::
+ text "Darn!"
+ line "You weak #MON!"
+ prompt
+
+_SilphCo4AfterBattleText3::
+ text "The doors are"
+ line "electronically"
+ cont "locked! A CARD"
+ cont "KEY opens them!"
+ done
+
+_SilphCo4BattleText4::
+ text "Intruder spotted!"
+ done
+
+_SilphCo4EndBattleText4::
+ text "Who"
+ line "are you?"
+ prompt
+
+_SilphCo4AfterBattleText4::
+ text "I better tell the"
+ line "BOSS on 11F!"
+ done
--- /dev/null
+++ b/text/SilphCo5F.asm
@@ -1,0 +1,51 @@
+_SilphCo5Text_1a010::
+ text "TEAM ROCKET is"
+ line "in an uproar over"
+ cont "some intruder."
+ cont "That's you right?"
+ done
+
+_SilphCo5Text_1a015::
+ text "TEAM ROCKET took"
+ line "off! You're our"
+ cont "hero! Thank you!"
+ done
+
+_SilphCo5BattleText2::
+ text "I heard a kid was"
+ line "wandering around."
+ done
+
+_SilphCo5EndBattleText2::
+ text "Boom!"
+ prompt
+
+_SilphCo5AfterBattleText2::
+ text "It's not smart"
+ line "to pick a fight"
+ cont "with TEAM ROCKET!"
+ done
+
+_SilphCo5BattleText3::
+ text "We study #"
+ line "BALL technology"
+ cont "on this floor!"
+ done
+
+_SilphCo5EndBattleText3::
+ text "Dang!"
+ line "Blast it!"
+ prompt
+
+_SilphCo5AfterBattleText3::
+ text "We worked on the"
+ line "ultimate #"
+ cont "BALL which would"
+ cont "catch anything!"
+ done
+
+_SilphCo5BattleText4::
+ text "Whaaat? There"
+ line "shouldn't be any"
+ cont "children here?"
+ done
--- /dev/null
+++ b/text/SilphCo5F_2.asm
@@ -1,0 +1,55 @@
+_SilphCo5EndBattleText4::
+ text "Oh"
+ line "goodness!"
+ prompt
+
+_SilphCo5AfterBattleText4::
+ text "You're only on 5F."
+ line "It's a long way"
+ cont "to my BOSS!"
+ done
+
+_SilphCo5BattleText5::
+ text "Show TEAM ROCKET"
+ line "a little respect!"
+ done
+
+_SilphCo5EndBattleText5::
+ text "Cough..."
+ line "Cough..."
+ prompt
+
+_SilphCo5AfterBattleText5::
+ text "Which reminds me."
+
+ para "KOFFING evolves"
+ line "into WEEZING!"
+ done
+
+_SilphCo5Text9::
+ text "It's a #MON"
+ line "REPORT!"
+
+ para "#MON LAB"
+ line "created PORYGON,"
+ cont "the first virtual"
+ cont "reality #MON."
+ done
+
+_SilphCo5Text10::
+ text "It's a #MON"
+ line "REPORT!"
+
+ para "Over 160 #MON"
+ line "techniques have"
+ cont "been confirmed."
+ done
+
+_SilphCo5Text11::
+ text "It's a #MON"
+ line "REPORT!"
+
+ para "4 #MON evolve"
+ line "only when traded"
+ cont "by link-cable."
+ done
--- /dev/null
+++ b/text/SilphCo6F.asm
@@ -1,0 +1,107 @@
+_SilphCo6Text_1a24a::
+ text "The ROCKETs came"
+ line "and took over the"
+ cont "building!"
+ done
+
+_SilphCo6Text_1a24f::
+ text "Well, better get"
+ line "back to work!"
+ done
+
+_SilphCo6Text_1a261::
+ text "Oh dear, oh dear."
+ line "Help me please!"
+ done
+
+_SilphCo6Text_1a266::
+ text "We got engaged!"
+ line "Heheh!"
+ done
+
+_SilphCo6Text_1a278::
+ text "Look at him! He's"
+ line "such a coward!"
+ done
+
+_SilphCo6Text_1a27d::
+ text "I feel so sorry"
+ line "for him, I have"
+ cont "to marry him!"
+ done
+
+_SilphCo6Text_1a28f::
+ text "TEAM ROCKET is"
+ line "trying to conquer"
+ cont "the world with"
+ cont "#MON!"
+ done
+
+_SilphCo6Text_1a294::
+ text "TEAM ROCKET ran"
+ line "because of you!"
+ done
+
+_SilphCo6Text_1a2a6::
+ text "They must have"
+ line "targeted SILPH"
+ cont "for our #MON"
+ cont "products."
+ done
+
+_SilphCo6Text_1a2ab::
+ text "Come work for"
+ line "SILPH when you"
+ cont "get older!"
+ done
+
+_SilphCo6BattleText2::
+ text "I am one of the 4"
+ line "ROCKET BROTHERS!"
+ done
+
+_SilphCo6EndBattleText2::
+ text "Flame"
+ line "out!"
+ prompt
+
+_SilphCo6AfterBattleText2::
+ text "No matter!"
+ line "My brothers will"
+ cont "avenge me!"
+ done
+
+_SilphCo6BattleText3::
+ text "That rotten"
+ line "PRESIDENT!"
+
+ para "He shouldn't have"
+ line "sent me to the"
+ cont "TIKSI BRANCH!"
+ done
+
+_SilphCo6EndBattleText3::
+ text "Shoot!"
+ prompt
+
+_SilphCo6AfterBattleText3::
+ text "TIKSI BRANCH?"
+ line "It's in Russian"
+ cont "no man's land!"
+ done
+
+_SilphCo6BattleText4::
+ text "You dare betray"
+ line "TEAM ROCKET?"
+ done
+
+_SilphCo6EndBattleText4::
+ text "You"
+ line "traitor!"
+ prompt
+
+_SilphCo6AfterBattleText4::
+ text "If you stand for"
+ line "justice, you"
+ cont "betray evil!"
+ done
--- /dev/null
+++ b/text/SilphCo7F.asm
@@ -1,0 +1,209 @@
+_MeetLaprasGuyText::
+ text "Oh! Hi! You're"
+ line "not a ROCKET! You"
+ cont "came to save us?"
+ cont "Why, thank you!"
+
+ para "I want you to"
+ line "have this #MON"
+ cont "for saving us."
+ prompt
+
+_HeresYourLaprasText::
+ text "It's LAPRAS. It's"
+ line "very intelligent."
+
+ para "We kept it in our"
+ line "lab, but it will"
+ cont "be much better"
+ cont "off with you!"
+
+ para "I think you will"
+ line "be a good trainer"
+ cont "for LAPRAS!"
+
+ para "It's a good"
+ line "swimmer. It'll"
+ cont "give you a lift!"
+ done
+
+_LaprasGuyText::
+ text "TEAM ROCKET's"
+ line "BOSS went to the"
+ cont "boardroom! Is our"
+ cont "PRESIDENT OK?"
+ done
+
+_LaprasGuySavedText::
+ text "Saved at last!"
+ line "Thank you!"
+ done
+
+_SilphCo7Text_51e00::
+ text "TEAM ROCKET was"
+ line "after the MASTER"
+ cont "BALL which will"
+ cont "catch any #MON!"
+ done
+
+_CanceledMasterBallText::
+ text "We canceled the"
+ line "MASTER BALL"
+ cont "project because"
+ cont "of TEAM ROCKET."
+ done
+
+_SilphCo7Text_51e23::
+ text "It would be bad"
+ line "if TEAM ROCKET"
+ cont "took over SILPH"
+ cont "or our #MON!"
+ done
+
+_SilphCo7Text_51e28::
+ text "Wow! You chased"
+ line "off TEAM ROCKET"
+ cont "all by yourself?"
+ done
+
+_SilphCo7Text_51e46::
+ text "You! It's really"
+ line "dangerous here!"
+ cont "You came to save"
+ cont "me? You can't!"
+ done
+
+_SilphCo7Text_51e4b::
+ text "Safe at last!"
+ line "Oh thank you!"
+ done
+
+_SilphCo7BattleText1::
+ text "Oh ho! I smell a"
+ line "little rat!"
+ done
+
+_SilphCo7EndBattleText1::
+ text "Lights"
+ line "out!"
+ prompt
+
+_SilphCo7AfterBattleText1::
+ text "You won't find my"
+ line "BOSS by just"
+ cont "scurrying around!"
+ done
+
+_SilphCo7BattleText2::
+ text "Heheh!"
+
+ para "You mistook me for"
+ line "a SILPH worker?"
+ done
+
+_SilphCo7EndBattleText2::
+ text "I'm"
+ line "done!"
+ prompt
+
+_SilphCo7AfterBattleText2::
+ text "Despite your age,"
+ line "you are a skilled"
+ cont "trainer!"
+ done
+
+_SilphCo7BattleText3::
+ text "I am one of the 4"
+ line "ROCKET BROTHERS!"
+ done
+
+_SilphCo7EndBattleText3::
+ text "Aack!"
+ line "Brothers, I lost!"
+ prompt
+
+_SilphCo7AfterBattleText3::
+ text "Doesn't matter."
+ line "My brothers will"
+ cont "repay the favor!"
+ done
+
+_SilphCo7BattleText4::
+ text "A child intruder?"
+ line "That must be you!"
+ done
+
+_SilphCo7EndBattleText4::
+ text "Fine!"
+ line "I lost!"
+ prompt
+
+_SilphCo7AfterBattleText4::
+ text "Go on home"
+ line "before my BOSS"
+ cont "gets ticked off!"
+ done
+
+_SilphCo7Text_51ebe::
+ text "<RIVAL>: What"
+ line "kept you <PLAYER>?"
+ done
+
+_SilphCo7Text_51ec3::
+ text "<RIVAL>: Hahaha!"
+ line "I thought you'd"
+ cont "turn up if I"
+ cont "waited here!"
+
+ para "I guess TEAM"
+ line "ROCKET slowed you"
+ cont "down! Not that I"
+ cont "care!"
+
+ para "I saw you in"
+ line "SAFFRON, so I"
+ cont "decided to see if"
+ cont "you got better!"
+ done
+
+_SilphCo7Text_51ec8::
+ text "Oh ho!"
+ line "So, you are ready"
+ cont "for BOSS ROCKET!"
+ prompt
+
+_SilphCo7Text_51ecd::
+ text "<RIVAL>: How can"
+ line "I put this?"
+
+ para "You're not good"
+ line "enough to play"
+ cont "with us big boys!"
+ prompt
+
+_SilphCo7Text_51ed2::
+ text "Well, <PLAYER>!"
+
+ para "I'm moving on up"
+ line "and ahead!"
+
+ para "By checking my"
+ line "#DEX, I'm"
+ cont "starting to see"
+ cont "what's strong and"
+ cont "how they evolve!"
+
+ para "I'm going to the"
+ line "#MON LEAGUE"
+ cont "to boot out the"
+ cont "ELITE FOUR!"
+
+ para "I'll become the"
+ line "world's most"
+ cont "powerful trainer!"
+
+ para "<PLAYER>, well"
+ line "good luck to you!"
+ cont "Don't sweat it!"
+ cont "Smell ya!"
+ done
--- /dev/null
+++ b/text/SilphCo8F.asm
@@ -1,0 +1,56 @@
+_SilphCo8Text_565be::
+ text "I wonder if SILPH"
+ line "is finished..."
+ done
+
+_SilphCo8Text_565c3::
+ text "Thanks for saving"
+ line "us!"
+ done
+
+_SilphCo8BattleText1::
+ text "That's as far as"
+ line "you'll go!"
+ done
+
+_SilphCo8EndBattleText1::
+ text "Not"
+ line "enough grit!"
+ prompt
+
+_SilphCo8AfterBattleText1::
+ text "If you don't turn"
+ line "back, I'll call"
+ cont "for backup!"
+ done
+
+_SilphCo8BattleText2::
+ text "You're causing us"
+ line "problems!"
+ done
+
+_SilphCo8EndBattleText2::
+ text "Huh?"
+ line "I lost?"
+ prompt
+
+_SilphCo8AfterBattleText2::
+ text "So, what do you"
+ line "think of SILPH"
+ cont "BUILDING's maze?"
+ done
+
+_SilphCo8BattleText3::
+ text "I am one of the 4"
+ line "ROCKET BROTHERS!"
+ done
+
+_SilphCo8EndBattleText3::
+ text "Whoo!"
+ line "Oh brothers!"
+ prompt
+
+_SilphCo8AfterBattleText3::
+ text "I'll leave you up"
+ line "to my brothers!"
+ done
--- /dev/null
+++ b/text/SilphCo9F.asm
@@ -1,0 +1,62 @@
+_SilphCo9Text_5d8e5::
+ text "You look tired!"
+ line "You should take a"
+ cont "quick nap!"
+ prompt
+
+_SilphCo9Text_5d8ea::
+ text "Don't give up!"
+ done
+
+_SilphCo9Text_5d8ef::
+ text "Thank you so"
+ line "much!"
+ done
+
+_SilphCo9BattleText1::
+ text "Your #MON seem"
+ line "to adore you, kid!"
+ done
+
+_SilphCo9EndBattleText1::
+ text "Ghaaah!"
+ prompt
+
+_SilphCo9AfterBattleText1::
+ text "If I had started"
+ line "as a trainer at"
+ cont "your age..."
+ done
+
+_SilphCo9BattleText2::
+ text "Your #MON have"
+ line "weak points! I"
+ cont "can nail them!"
+ done
+
+_SilphCo9EndBattleText2::
+ text "You"
+ line "hammered me!"
+ prompt
+
+_SilphCo9AfterBattleText2::
+ text "Exploiting weak"
+ line "spots does work!"
+ cont "Think about"
+ cont "element types!"
+ done
+
+_SilphCo9BattleText3::
+ text "I am one of the 4"
+ line "ROCKET BROTHERS!"
+ done
+
+_SilphCo9EndBattleText3::
+ text "Warg!"
+ line "Brothers, I lost!"
+ prompt
+
+_SilphCo9AfterBattleText3::
+ text "My brothers will"
+ line "avenge me!"
+ done
--- /dev/null
+++ b/text/UndergroundPathRoute6.asm
@@ -1,0 +1,5 @@
+_UndergrdTunnelEntRoute6Text1::
+ text "People often lose"
+ line "things in that"
+ cont "UNDERGROUND PATH."
+ done
--- /dev/null
+++ b/text/UndergroundPathRoute7.asm
@@ -1,0 +1,5 @@
+_UndergroundPathEntRoute7Text1::
+ text "I heard a sleepy"
+ line "#MON appeared"
+ cont "near CELADON CITY."
+ done
--- /dev/null
+++ b/text/UndergroundPathRoute7Copy.asm
@@ -1,0 +1,35 @@
+_UGPathRoute7EntranceUnusedText_5d773::
+ text "I want to shop at"
+ line "the dept. store"
+ cont "in CELADON but..."
+
+ para "There are so many"
+ line "rough looking"
+ cont "people there."
+ done
+
+_UGPathRoute7EntranceUnusedText_5d778::
+ text "TEAM ROCKET had a"
+ line "secret hideout in"
+ cont "CELADON CITY?"
+ done
+
+_UGPathRoute7EntranceUnusedText_5d77d::
+ text "You're here to"
+ line "shop in CELADON?"
+
+ para "Just step outside"
+ line "and head west!"
+ done
+
+_UGPathRoute7EntranceUnusedText_5d782::
+ text "The UNDERGROUND"
+ line "PATH goes beneath"
+ cont "SAFFRON and leads"
+ cont "to LAVENDER."
+
+ para "If you're heading"
+ line "to CERULEAN, go"
+ cont "to the building"
+ cont "across the road."
+ done
--- /dev/null
+++ b/text/UndergroundPathRoute8.asm
@@ -1,0 +1,5 @@
+_UndergroundPathEntRoute8Text1::
+ text "The dept. store"
+ line "in CELADON has a"
+ cont "great selection!"
+ done
--- /dev/null
+++ b/text/VermilionCity.asm
@@ -1,0 +1,126 @@
+_VermilionCityText1::
+ text "We're careful"
+ line "about pollution!"
+
+ para "We've heard GRIMER"
+ line "multiplies in"
+ cont "toxic sludge!"
+ done
+
+_VermilionCityTextDidYouSee::
+ text "Did you see S.S."
+ line "ANNE moored in"
+ cont "the harbor?"
+ done
+
+_VermilionCityTextSSAnneDeparted::
+ text "So, S.S.ANNE has"
+ line "departed!"
+
+ para "She'll be back in"
+ line "about a year."
+ done
+
+_SSAnneWelcomeText4::
+ text "Welcome to S.S."
+ line "ANNE!"
+ done
+
+_SSAnneWelcomeText9::
+ text "Welcome to S.S."
+ line "ANNE!"
+
+ para "Excuse me, do you"
+ line "have a ticket?"
+ prompt
+
+_SSAnneFlashedTicketText::
+ text "<PLAYER> flashed"
+ line "the S.S.TICKET!"
+
+ para "Great! Welcome to"
+ line "S.S.ANNE!"
+ done
+
+_SSAnneNoTicketText::
+ text "<PLAYER> doesn't"
+ line "have the needed"
+ cont "S.S.TICKET."
+
+ para "Sorry!"
+
+ para "You need a ticket"
+ line "to get aboard."
+ done
+
+_SSAnneNotHereText::
+ text "The ship set sail."
+ done
+
+_VermilionCityText4::
+ text "I'm putting up a"
+ line "building on this"
+ cont "plot of land."
+
+ para "My #MON is"
+ line "tamping the land."
+ done
+
+_VermilionCityText5::
+ text "MACHOP: Guoh!"
+ line "Gogogoh!@@"
+
+_VermilionCityText14::
+ text ""
+ para "A MACHOP is"
+ line "stomping the land"
+ cont "flat."
+ done
+
+_VermilionCityText6::
+ text "S.S.ANNE is a"
+ line "famous luxury"
+ cont "cruise ship."
+
+ para "We visit VERMILION"
+ line "once a year."
+ done
+
+_VermilionCityText7::
+ text "VERMILION CITY"
+ line "The Port of"
+ cont "Exquisite Sunsets"
+ done
+
+_VermilionCityText8::
+ text "NOTICE!"
+
+ para "ROUTE 12 may be"
+ line "blocked off by a"
+ cont "sleeping #MON."
+
+ para "Detour through"
+ line "ROCK TUNNEL to"
+ cont "LAVENDER TOWN."
+
+ para "VERMILION POLICE"
+ done
+
+_VermilionCityText11::
+ text "#MON FAN CLUB"
+ line "All #MON fans"
+ cont "welcome!"
+ done
+
+_VermilionCityText12::
+ text "VERMILION CITY"
+ line "#MON GYM"
+ cont "LEADER: LT.SURGE"
+
+ para "The Lightning "
+ line "American!"
+ done
+
+_VermilionCityText13::
+ text "VERMILION HARBOR"
+ done
--- /dev/null
+++ b/text/VermilionDock.asm
@@ -1,0 +1,3 @@
+_VermilionDockText1::
+ text ""
+ done
--- /dev/null
+++ b/text/VermilionGym.asm
@@ -1,0 +1,21 @@
+_LTSurgePreBattleText::
+ text "Hey, kid! What do"
+ line "you think you're"
+ cont "doing here?"
+
+ para "You won't live"
+ line "long in combat!"
+ cont "That's for sure!"
+
+ para "I tell you kid,"
+ line "electric #MON"
+ cont "saved me during"
+ cont "the war!"
+
+ para "They zapped my"
+ line "enemies into"
+ cont "paralysis!"
+
+ para "The same as I'll"
+ line "do to you!"
+ done
--- /dev/null
+++ b/text/VermilionGym_2.asm
@@ -1,0 +1,144 @@
+_LTSurgePostBattleAdviceText::
+ text "A little word of"
+ line "advice, kid!"
+
+ para "Electricity is"
+ line "sure powerful!"
+
+ para "But, it's useless"
+ line "against ground-"
+ cont "type #MON!"
+ done
+
+_LTSurgeThunderbadgeInfoText::
+ text "The THUNDERBADGE"
+ line "cranks up your"
+ cont "#MON's SPEED!"
+
+ para "It also lets your"
+ line "#MON FLY any"
+ cont "time, kid!"
+
+ para "You're special,"
+ line "kid! Take this!"
+ done
+
+_ReceivedTM24Text::
+ text "<PLAYER> received "
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_TM24ExplanationText::
+ text ""
+
+ para "TM24 contains"
+ line "THUNDERBOLT!"
+
+ para "Teach it to an"
+ line "electric #MON!"
+ done
+
+_TM24NoRoomText::
+ text "Yo kid, make room"
+ line "in your pack!"
+ done
+
+_ReceivedThunderbadgeText::
+ text "Whoa!"
+
+ para "You're the real"
+ line "deal, kid!"
+
+ para "Fine then, take"
+ line "the THUNDERBADGE!"
+ prompt
+
+_VermilionGymBattleText1::
+ text "When I was in the"
+ line "Army, LT.SURGE"
+ cont "was my strict CO!"
+ done
+
+_VermilionGymEndBattleText1::
+ text "Stop!"
+ line "You're very good!"
+ prompt
+
+_VermilionGymAfterBattleText1::
+ text "The door won't"
+ line "open?"
+
+ para "LT.SURGE always"
+ line "was cautious!"
+ done
+
+_VermilionGymBattleText2::
+ text "I'm a lightweight,"
+ line "but I'm good with"
+ cont "electricity!"
+ done
+
+_VermilionGymEndBattleText2::
+ text "Fried!"
+ prompt
+
+_VermilionGymAfterBattleText2::
+ text "OK, I'll talk!"
+
+ para "LT.SURGE said he"
+ line "hid door switches"
+ cont "inside something!"
+ done
+
+_VermilionGymBattleText3::
+ text "This is no place"
+ line "for kids!"
+ done
+
+_VermilionGymEndBattleText3::
+ text "Wow!"
+ line "Surprised me!"
+ prompt
+
+_VermilionGymAfterBattleText3::
+ text "LT.SURGE set up"
+ line "double locks!"
+ cont "Here's a hint!"
+
+ para "When you open the"
+ line "1st lock, the 2nd"
+ cont "lock is right"
+ cont "next to it!"
+ done
+
+_VermilionGymFanPreBattleText::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "LT.SURGE has a"
+ line "nickname. People"
+ cont "refer to him as"
+ cont "the Lightning"
+ cont "American!"
+
+ para "He's an expert on"
+ line "electric #MON!"
+
+ para "Birds and water"
+ line "#MON are at"
+ cont "risk! Beware of"
+ cont "paralysis too!"
+
+ para "LT.SURGE is very"
+ line "cautious!"
+
+ para "You'll have to"
+ line "break a code to"
+ cont "get to him!"
+ done
+
+_VermilionGymFanPostBattleText::
+ text "Whew! That match"
+ line "was electric!"
+ done
--- /dev/null
+++ b/text/VermilionMart.asm
@@ -1,0 +1,23 @@
+_VermilionMartText2::
+ text "There are evil"
+ line "people who will"
+ cont "use #MON for"
+ cont "criminal acts."
+
+ para "TEAM ROCKET"
+ line "traffics in rare"
+ cont "#MON."
+
+ para "They also abandon"
+ line "#MON that they"
+ cont "consider not to"
+ cont "be popular or"
+ cont "useful."
+ done
+
+_VermilionMartText3::
+ text "I think #MON"
+ line "can be good or"
+ cont "evil. It depends"
+ cont "on the trainer."
+ done
--- /dev/null
+++ b/text/VermilionOldRodHouse.asm
@@ -1,0 +1,54 @@
+_VermilionHouse2Text_560b1::
+ text "I'm the FISHING"
+ line "GURU!"
+
+ para "I simply Looove"
+ line "fishing!"
+
+ para "Do you like to"
+ line "fish?"
+ done
+
+_VermilionHouse2Text_560b6::
+ text "Grand! I like"
+ line "your style!"
+
+ para "Take this and"
+ line "fish, young one!"
+
+ para "<PLAYER> received"
+ line "an @"
+ TX_RAM wcf4b
+ text "!@@"
+
+_VermilionHouse2Text_560bb::
+ text ""
+
+ para "Fishing is a way"
+ line "of life!"
+
+ para "From the seas to"
+ line "rivers, go out"
+ cont "and land the big"
+ cont "one, young one!"
+ done
+
+_VermilionHouse2Text_560c0::
+ text "Oh... That's so"
+ line "disappointing..."
+ done
+
+_VermilionHouse2Text_560c5::
+ text "Hello there,"
+ line "<PLAYER>!"
+
+ para "How are the fish"
+ line "biting?"
+ done
+
+_VermilionHouse2Text_560ca::
+ text "Oh no!"
+
+ para "You have no room"
+ line "for my gift!"
+ done
--- /dev/null
+++ b/text/VermilionPidgeyHouse.asm
@@ -1,0 +1,21 @@
+_VermilionHouse1Text1::
+ text "I'm getting my"
+ line "PIDGEY to fly a"
+ cont "letter to SAFFRON"
+ cont "in the north!"
+ done
+
+_VermilionHouse1Text2::
+ text "PIDGEY: Kurukkoo!@@"
+
+_VermilionHouse1Text3::
+ text "Dear PIPPI, I hope"
+ line "to see you soon."
+
+ para "I heard SAFFRON"
+ line "has problems with"
+ cont "TEAM ROCKET."
+
+ para "VERMILION appears"
+ line "to be safe."
+ done
--- /dev/null
+++ b/text/VermilionPokecenter.asm
@@ -1,0 +1,19 @@
+_VermilionPokecenterText2::
+ text "Even if they are"
+ line "the same level,"
+ cont "#MON can have"
+ cont "very different"
+ cont "abilities."
+
+ para "A #MON raised"
+ line "by a trainer is"
+ cont "stronger than one"
+ cont "in the wild."
+ done
+
+_VermilionPokecenterText3::
+ text "My #MON was"
+ line "poisoned! It"
+ cont "fainted while we"
+ cont "were walking!"
+ done
--- /dev/null
+++ b/text/VictoryRoad1F.asm
@@ -1,0 +1,31 @@
+_VictoryRoad1BattleText1::
+ text "I wonder if you"
+ line "are good enough"
+ cont "for me!"
+ done
+
+_VictoryRoad1EndBattleText1::
+ text "I"
+ line "lost out!"
+ prompt
+
+_VictoryRoad1AfterBattleText1::
+ text "I never wanted to"
+ line "lose to anybody!"
+ done
+
+_VictoryRoad1BattleText2::
+ text "I can see you're"
+ line "good! Let me see"
+ cont "exactly how good!"
+ done
+
+_VictoryRoad1EndBattleText2::
+ text "I"
+ line "had a chance..."
+ prompt
+
+_VictoryRoad1AfterBattleText2::
+ text "I concede, you're"
+ line "better than me!"
+ done
--- /dev/null
+++ b/text/VictoryRoad2F.asm
@@ -1,0 +1,85 @@
+_MoltresBattleText::
+ text "Gyaoo!@@"
+
+_VictoryRoad2BattleText1::
+ text "VICTORY ROAD is"
+ line "the final test"
+ cont "for trainers!"
+ done
+
+_VictoryRoad2EndBattleText1::
+ text "Aiyah!"
+ prompt
+
+_VictoryRoad2AfterBattleText1::
+ text "If you get stuck,"
+ line "try moving some"
+ cont "boulders around!"
+ done
+
+_VictoryRoad2BattleText2::
+ text "Ah, so you wish"
+ line "to challenge the"
+ cont "ELITE FOUR?"
+ done
+
+_VictoryRoad2EndBattleText2::
+ text "You"
+ line "got me!"
+ prompt
+
+_VictoryRoad2AfterBattleText2::
+ text "<RIVAL> also came"
+ line "through here!"
+ done
+
+_VictoryRoad2BattleText3::
+ text "Come on!"
+ line "I'll whip you!"
+ done
+
+_VictoryRoad2EndBattleText3::
+ text "I got"
+ line "whipped!"
+ prompt
+
+_VictoryRoad2AfterBattleText3::
+ text "You earned the"
+ line "right to be on"
+ cont "VICTORY ROAD!"
+ done
+
+_VictoryRoad2BattleText4::
+ text "If you can get"
+ line "through here, you"
+ cont "can go meet the"
+ cont "ELITE FOUR!"
+ done
+
+_VictoryRoad2EndBattleText4::
+ text "No!"
+ line "Unbelievable!"
+ prompt
+
+_VictoryRoad2AfterBattleText4::
+ text "I can beat you"
+ line "when it comes to"
+ cont "knowledge about"
+ cont "#MON!"
+ done
+
+_VictoryRoad2BattleText5::
+ text "Is VICTORY ROAD"
+ line "too tough?"
+ done
+
+_VictoryRoad2EndBattleText5::
+ text "Well"
+ line "done!"
+ prompt
+
+_VictoryRoad2AfterBattleText5::
+ text "Many trainers give"
+ line "up the challenge"
+ cont "here."
+ done
--- /dev/null
+++ b/text/VictoryRoad3F.asm
@@ -1,0 +1,63 @@
+_VictoryRoad3BattleText2::
+ text "I heard rumors of"
+ line "a child prodigy!"
+ done
+
+_VictoryRoad3EndBattleText2::
+ text "The"
+ line "rumors were true!"
+ prompt
+
+_VictoryRoad3AfterBattleText2::
+ text "You beat GIOVANNI"
+ line "of TEAM ROCKET?"
+ done
+
+_VictoryRoad3BattleText3::
+ text "I'll show you just"
+ line "how good you are!"
+ done
+
+_VictoryRoad3EndBattleText3::
+ text "I'm"
+ line "furious!"
+ prompt
+
+_VictoryRoad3AfterBattleText3::
+ text "You showed me just"
+ line "how good I was!"
+ done
+
+_VictoryRoad3BattleText4::
+ text "Only the chosen"
+ line "can pass here!"
+ done
+
+_VictoryRoad3EndBattleText4::
+ text "I"
+ line "don't believe it!"
+ prompt
+
+_VictoryRoad3AfterBattleText4::
+ text "All trainers here"
+ line "are headed to the"
+ cont "#MON LEAGUE!"
+ cont "Be careful!"
+ done
+
+_VictoryRoad3BattleText5::
+ text "Trainers live to"
+ line "seek stronger"
+ cont "opponents!"
+ done
+
+_VictoryRoad3EndBattleText5::
+ text "Oh!"
+ line "So strong!"
+ prompt
+
+_VictoryRoad3AfterBattleText5::
+ text "By fighting tough"
+ line "battles, you get"
+ cont "stronger!"
+ done
--- /dev/null
+++ b/text/ViridianCity.asm
@@ -1,0 +1,180 @@
+_ViridianCityText1::
+ text "Those # BALLs"
+ line "at your waist!"
+ cont "You have #MON!"
+
+ para "It's great that"
+ line "you can carry and"
+ cont "use #MON any"
+ cont "time, anywhere!"
+ done
+
+_ViridianCityText_19122::
+ text "This #MON GYM"
+ line "is always closed."
+
+ para "I wonder who the"
+ line "LEADER is?"
+ done
+
+_ViridianCityText_19127::
+ text "VIRIDIAN GYM's"
+ line "LEADER returned!"
+ done
+
+_ViridianCityText_1914d::
+ text "You want to know"
+ line "about the 2 kinds"
+ cont "of caterpillar"
+ cont "#MON?"
+ done
+
+_ViridianCityText_19152::
+ text "Oh, OK then!"
+ done
+
+_ViridianCityText_19157::
+ text "CATERPIE has no"
+ line "poison, but"
+ cont "WEEDLE does."
+
+ para "Watch out for its"
+ line "POISON STING!"
+ done
+
+_ViridianCityText_19175::
+ text "Oh Grandpa! Don't"
+ line "be so mean!"
+ cont "He hasn't had his"
+ cont "coffee yet."
+ done
+
+_ViridianCityText_1917a::
+ text "When I go shop in"
+ line "PEWTER CITY, I"
+ cont "have to take the"
+ cont "winding trail in"
+ cont "VIRIDIAN FOREST."
+ done
+
+_ViridianCityText_19191::
+ text "You can't go"
+ line "through here!"
+
+ para "This is private"
+ line "property!"
+ done
+
+_ViridianCityText_191ca::
+ text "Yawn!"
+ line "I must have dozed"
+ cont "off in the sun."
+
+ para "I had this dream"
+ line "about a DROWZEE"
+ cont "eating my dream."
+ cont "What's this?"
+ cont "Where did this TM"
+ cont "come from?"
+
+ para "This is spooky!"
+ line "Here, you can"
+ cont "have this TM."
+ prompt
+
+_ReceivedTM42Text::
+ text "<PLAYER> received"
+ line "TM42!@@"
+
+_TM42Explanation::
+ text "TM42 contains"
+ line "DREAM EATER..."
+ cont "...Snore..."
+ done
+
+_TM42NoRoomText::
+ text "You have too much"
+ line "stuff already."
+ done
+
+_ViridianCityText_1920a::
+ text "Ahh, I've had my"
+ line "coffee now and I"
+ cont "feel great!"
+
+ para "Sure you can go"
+ line "through!"
+
+ para "Are you in a"
+ line "hurry?"
+ done
+
+_ViridianCityText_1920f::
+ text "I see you're using"
+ line "a #DEX."
+
+ para "When you catch a"
+ line "#MON, #DEX"
+ cont "is automatically"
+ cont "updated."
+
+ para "What? Don't you"
+ line "know how to catch"
+ cont "#MON?"
+
+ para "I'll show you"
+ line "how to then."
+ done
+
+_ViridianCityText_19214::
+ text "Time is money..."
+ line "Go along then."
+ done
+
+_ViridianCityText_19219::
+ text "First, you need"
+ line "to weaken the"
+ cont "target #MON."
+ done
+
+_ViridianCityText8::
+ text "VIRIDIAN CITY "
+ line "The Eternally"
+ cont "Green Paradise"
+ done
+
+_ViridianCityText9::
+ text "TRAINER TIPS"
+
+ para "Catch #MON"
+ line "and expand your"
+ cont "collection!"
+
+ para "The more you have,"
+ line "the easier it is"
+ cont "to fight!"
+ done
+
+_ViridianCityText10::
+ text "TRAINER TIPS"
+
+ para "The battle moves"
+ line "of #MON are"
+ cont "limited by their"
+ cont "POWER POINTs, PP."
+
+ para "To replenish PP,"
+ line "rest your tired"
+ cont "#MON at a"
+ cont "#MON CENTER!"
+ done
+
+_ViridianCityText13::
+ text "VIRIDIAN CITY"
+ line "#MON GYM"
+ done
+
+_ViridianCityText14::
+ text "The GYM's doors"
+ line "are locked..."
+ done
--- /dev/null
+++ b/text/ViridianForest.asm
@@ -1,0 +1,123 @@
+_ViridianForestText1::
+ text "I came here with"
+ line "some friends!"
+
+ para "They're out for"
+ line "#MON fights!"
+ done
+
+_ViridianForestBattleText1::
+ text "Hey! You have"
+ line "#MON! Come on!"
+ cont "Let's battle'em!"
+ done
+
+_ViridianForestEndBattleText1::
+ text "No!"
+ line "CATERPIE can't"
+ cont "cut it!"
+ prompt
+
+_ViridianFrstAfterBattleText1::
+ text "Ssh! You'll scare"
+ line "the bugs away!"
+ done
+
+_ViridianForestBattleText2::
+ text "Yo! You can't jam"
+ line "out if you're a"
+ cont "#MON trainer!"
+ done
+
+_ViridianForestEndBattleText2::
+ text "Huh?"
+ line "I ran out of"
+ cont "#MON!"
+ prompt
+
+_ViridianFrstAfterBattleText2::
+ text "Darn! I'm going"
+ line "to catch some"
+ cont "stronger ones!"
+ done
+
+_ViridianForestBattleText3::
+ text "Hey, wait up!"
+ line "What's the hurry?"
+ done
+
+_ViridianForestEndBattleText3::
+ text "I"
+ line "give! You're good"
+ cont "at this!"
+ prompt
+
+_ViridianFrstAfterBattleText3::
+ text "Sometimes, you"
+ line "can find stuff on"
+ cont "the ground!"
+
+ para "I'm looking for"
+ line "the stuff I"
+ cont "dropped!"
+ done
+
+_ViridianForestText8::
+ text "I ran out of #"
+ line "BALLs to catch"
+ cont "#MON with!"
+
+ para "You should carry"
+ line "extras!"
+ done
+
+_ViridianForestText9::
+ text "TRAINER TIPS"
+
+ para "If you want to"
+ line "avoid battles,"
+ cont "stay away from"
+ cont "grassy areas!"
+ done
+
+_ViridianForestText10::
+ text "For poison, use"
+ line "ANTIDOTE! Get it"
+ cont "at #MON MARTs!"
+ done
+
+_ViridianForestText11::
+ text "TRAINER TIPS"
+
+ para "Contact PROF.OAK"
+ line "via PC to get"
+ cont "your #DEX"
+ cont "evaluated!"
+ done
+
+_ViridianForestText12::
+ text "TRAINER TIPS"
+
+ para "No stealing of"
+ line "#MON from"
+ cont "other trainers!"
+ cont "Catch only wild"
+ cont "#MON!"
+ done
+
+_ViridianForestText13::
+ text "TRAINER TIPS"
+
+ para "Weaken #MON"
+ line "before attempting"
+ cont "capture!"
+
+ para "When healthy,"
+ line "they may escape!"
+ done
+
+_ViridianForestText14::
+ text "LEAVING"
+ line "VIRIDIAN FOREST"
+ cont "PEWTER CITY AHEAD"
+ done
--- /dev/null
+++ b/text/ViridianForestNorthGate.asm
@@ -1,0 +1,19 @@
+_ViridianForestExitText1::
+ text "Many #MON live"
+ line "only in forests "
+ cont "and caves."
+
+ para "You need to look"
+ line "everywhere to get"
+ cont "different kinds!"
+ done
+
+_ViridianForestExitText2::
+ text "Have you noticed"
+ line "the bushes on the"
+ cont "roadside?"
+
+ para "They can be cut"
+ line "down by a special"
+ cont "#MON move."
+ done
--- /dev/null
+++ b/text/ViridianForestSouthGate.asm
@@ -1,0 +1,13 @@
+_ViridianForestEntranceText1::
+ text "Are you going to"
+ line "VIRIDIAN FOREST?"
+ cont "Be careful, it's"
+ cont "a natural maze!"
+ done
+
+_ViridianForestEntranceText2::
+ text "RATTATA may be"
+ line "small, but its"
+ cont "bite is wicked!"
+ cont "Did you get one?"
+ done
--- /dev/null
+++ b/text/ViridianGym.asm
@@ -1,0 +1,237 @@
+_ViridianGymText_74ace::
+ text "Fwahahaha! This is"
+ line "my hideout!"
+
+ para "I planned to"
+ line "resurrect TEAM"
+ cont "ROCKET here!"
+
+ para "But, you have"
+ line "caught me again!"
+ cont "So be it! This"
+ cont "time, I'm not"
+ cont "holding back!"
+
+ para "Once more, you"
+ line "shall face"
+ cont "GIOVANNI, the"
+ cont "greatest trainer!"
+ done
+
+_ViridianGymText_74ad3::
+ text "Ha!"
+ line "That was a truly"
+ cont "intense fight!"
+ cont "You have won!"
+ cont "As proof, here is"
+ cont "the EARTHBADGE!@@"
+
+_ViridianGymText_74ad9::
+ text "Having lost, I"
+ line "cannot face my"
+ cont "underlings!"
+ cont "TEAM ROCKET is"
+ cont "finished forever!"
+
+ para "I will dedicate my"
+ line "life to the study"
+ cont "of #MON!"
+
+ para "Let us meet again"
+ line "some day!"
+ cont "Farewell!@@"
+
+_ViridianGymText12::
+ text "The EARTHBADGE"
+ line "makes #MON of"
+ cont "any level obey!"
+
+ para "It is evidence of"
+ line "your mastery as a"
+ cont "#MON trainer!"
+
+ para "With it, you can"
+ line "enter the #MON"
+ cont "LEAGUE!"
+
+ para "It is my gift for"
+ line "your #MON"
+ cont "LEAGUE challenge!"
+ done
+
+_ReceivedTM27Text::
+ text "<PLAYER> received"
+ line "TM27!@@"
+
+_TM27ExplanationText::
+ text ""
+
+ para "TM27 is FISSURE!"
+ line "It will take out"
+ cont "#MON with just"
+ cont "one hit!"
+
+ para "I made it when I"
+ line "ran the GYM here,"
+ cont "too long ago..."
+ done
+
+_TM27NoRoomText::
+ text "You do not have"
+ line "space for this!"
+ done
+
+_ViridianGymBattleText1::
+ text "Heh! You must be"
+ line "running out of"
+ cont "steam by now!"
+ done
+
+_ViridianGymEndBattleText1::
+ text "I"
+ line "ran out of gas!"
+ prompt
+
+_ViridianGymAfterBattleText1::
+ text "You need power to"
+ line "keep up with our"
+ cont "GYM LEADER!"
+ done
+
+_ViridianGymBattleText2::
+ text "Rrrroar! I'm"
+ line "working myself"
+ cont "into a rage!"
+ done
+
+_ViridianGymEndBattleText2::
+ text "Wargh!"
+ prompt
+
+_ViridianGymAfterBattleText2::
+ text "I'm still not"
+ line "worthy!"
+ done
+
+_ViridianGymBattleText3::
+ text "#MON and I, we"
+ line "make wonderful"
+ cont "music together!"
+ done
+
+_ViridianGymEndBattleText3::
+ text "You are in"
+ line "perfect harmony!"
+ prompt
+
+_ViridianGymAfterBattleText3::
+ text "Do you know the"
+ line "identity of our"
+ cont "GYM LEADER?"
+ done
+
+_ViridianGymBattleText4::
+ text "Karate is the"
+ line "ultimate form of"
+ cont "martial arts!"
+ done
+
+_ViridianGymEndBattleText4::
+ text "Atcho!"
+ prompt
+
+_ViridianGymAfterBattleText4::
+ text "If my #MON"
+ line "were as good at"
+ cont "Karate as I..."
+ done
+
+_ViridianGymBattleText5::
+ text "The truly talented"
+ line "win with style!"
+ done
+
+_ViridianGymEndBattleText5::
+ text "I"
+ line "lost my grip!"
+ prompt
+
+_ViridianGymAfterBattleText5::
+ text "The LEADER will"
+ line "scold me!"
+ done
+
+_ViridianGymBattleText6::
+ text "I'm the KARATE"
+ line "KING! Your fate"
+ cont "rests with me!"
+ done
+
+_ViridianGymEndBattleText6::
+ text "Ayah!"
+ prompt
+
+_ViridianGymAfterBattleText6::
+ text "#MON LEAGUE?"
+ line "You? Don't get"
+ cont "cocky!"
+ done
+
+_ViridianGymBattleText7::
+ text "Your #MON will"
+ line "cower at the"
+ cont "crack of my whip!"
+ done
+
+_ViridianGymEndBattleText7::
+ text "Yowch!"
+ line "Whiplash!"
+ prompt
+
+_ViridianGymAfterBattleText7::
+ text "Wait! I was just"
+ line "careless!"
+ done
+
+_ViridianGymBattleText8::
+ text "VIRIDIAN GYM was"
+ line "closed for a long"
+ cont "time, but now our"
+ cont "LEADER is back!"
+ done
+
+_ViridianGymEndBattleText8::
+ text "I"
+ line "was beaten?"
+ prompt
+
+_ViridianGymAfterBattleText8::
+ text "You can go onto"
+ line "#MON LEAGUE"
+ cont "only by defeating"
+ cont "our GYM LEADER!"
+ done
+
+_ViridianGymText_74bd4::
+ text "Yo! Champ in"
+ line "making!"
+
+ para "Even I don't know"
+ line "VIRIDIAN LEADER's"
+ cont "identity!"
+
+ para "This will be the"
+ line "toughest of all"
+ cont "the GYM LEADERs!"
+
+ para "I heard that the"
+ line "trainers here"
+ cont "like ground-type"
+ cont "#MON!"
+ done
+
+_ViridianGymText_74bd9::
+ text "Blow me away!"
+ line "GIOVANNI was the"
+ cont "GYM LEADER here?"
+ done
--- /dev/null
+++ b/text/ViridianMart.asm
@@ -1,0 +1,30 @@
+_ViridianMartText1::
+ text "Okay! Say hi to"
+ line "PROF.OAK for me!"
+ done
+
+_ViridianMartText4::
+ text "Hey! You came from"
+ line "PALLET TOWN?"
+ done
+
+ViridianMartParcelQuestText::
+ text "You know PROF."
+ line "OAK, right?"
+
+ para "His order came in."
+ line "Will you take it"
+ cont "to him?"
+
+ para "<PLAYER> got"
+ line "OAK's PARCEL!@@"
+
+_ViridianMartText2::
+ text "This shop sells"
+ line "many ANTIDOTEs."
+ done
+
+_ViridianMartText3::
+ text "No! POTIONs are"
+ line "all sold out."
+ done
--- /dev/null
+++ b/text/ViridianNicknameHouse.asm
@@ -1,0 +1,23 @@
+_ViridianHouseText1::
+ text "Coming up with"
+ line "nicknames is fun,"
+ cont "but hard."
+
+ para "Simple names are"
+ line "the easiest to"
+ cont "remember."
+ done
+
+_ViridianHouseText2::
+ text "My Daddy loves"
+ line "#MON too."
+ done
+
+_ViridianHouseText_1d5b1::
+ text "SPEARY: Tetweet!"
+ done
+
+_ViridianHouseText4::
+ text "SPEAROW"
+ line "Name: SPEARY"
+ done
--- /dev/null
+++ b/text/ViridianPokecenter.asm
@@ -1,0 +1,16 @@
+_ViridianPokeCenterText2::
+ text "You can use that"
+ line "PC in the corner."
+
+ para "The receptionist"
+ line "told me. So kind!"
+ done
+
+_ViridianPokeCenterText3::
+ text "There's a #MON"
+ line "CENTER in every"
+ cont "town ahead."
+
+ para "They don't charge"
+ line "any money either!"
+ done
--- /dev/null
+++ b/text/ViridianSchoolHouse.asm
@@ -1,0 +1,13 @@
+_SchoolText1::
+ text "Whew! I'm trying"
+ line "to memorize all"
+ cont "my notes."
+ done
+
+_SchoolText2::
+ text "Okay!"
+
+ para "Be sure to read"
+ line "the blackboard"
+ cont "carefully!"
+ done
--- /dev/null
+++ b/text/WardensHouse.asm
@@ -1,0 +1,84 @@
+_WardenGibberishText1::
+ text "WARDEN: Hif fuff"
+ line "hefifoo!"
+
+ para "Ha lof ha feef ee"
+ line "hafahi ho. Heff"
+ cont "hee fwee!"
+ done
+
+_WardenGibberishText2::
+ text "Ah howhee ho hoo!"
+ line "Eef ee hafahi ho!"
+ done
+
+_WardenGibberishText3::
+ text "Ha? He ohay heh"
+ line "ha hoo ee haheh!"
+ done
+
+_WardenTeethText1::
+ text "<PLAYER> gave the"
+ line "GOLD TEETH to the"
+ cont "WARDEN!@@"
+
+_WardenTeethText2::
+ text ""
+
+ para "The WARDEN popped"
+ line "in his teeth!"
+ prompt
+
+_WardenThankYouText::
+ text "WARDEN: Thanks,"
+ line "kid! No one could"
+ cont "understand a word"
+ cont "that I said."
+
+ para "I couldn't work"
+ line "that way."
+ cont "Let me give you"
+ cont "something for"
+ cont "your trouble."
+ prompt
+
+_ReceivedHM04Text::
+ text "<PLAYER> received"
+ line "@"
+ TX_RAM wcf4b
+ text "!@@"
+
+_HM04ExplanationText::
+ text "WARDEN: HM04"
+ line "teaches STRENGTH!"
+
+ para "It lets #MON"
+ line "move boulders"
+ cont "when you're out-"
+ cont "side of battle."
+
+ para "Oh yes, did you"
+ line "find SECRET HOUSE"
+ cont "in SAFARI ZONE?"
+
+ para "If you do, you"
+ line "win an HM!"
+
+ para "I hear it's the"
+ line "rare SURF HM."
+ done
+
+_HM04NoRoomText::
+ text "Your pack is"
+ line "stuffed full!"
+ done
+
+_FuchsiaHouse2Text_75176::
+ text "#MON photos"
+ line "and fossils."
+ done
+
+_FuchsiaHouse2Text_7517b::
+ text "Old #MON"
+ line "merchandise."
+ done
--- a/text/alphabets.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-LowerCaseAlphabet:
- db "abcdefghijklmnopqrstuvwxyz ×():;[]",$e1,$e2,"-?!♂♀/⠄,¥UPPER CASE@"
-
-UpperCaseAlphabet:
- db "ABCDEFGHIJKLMNOPQRSTUVWXYZ ×():;[]",$e1,$e2,"-?!♂♀/⠄,¥lower case@"
--- a/text/credits_text.asm
+++ /dev/null
@@ -1,199 +1,0 @@
-CreditsTextPointers:
- dw CredVersion
- dw CredTajiri
- dw CredTaOota
- dw CredMorimoto
- dw CredWatanabe
- dw CredMasuda
- dw CredNisino
- dw CredSugimori
- dw CredNishida
- dw CredMiyamoto
- dw CredKawaguchi
- dw CredIshihara
- dw CredYamauchi
- dw CredZinnai
- dw CredHishida
- dw CredSakai
- dw CredYamaguchi
- dw CredYamamoto
- dw CredTaniguchi
- dw CredNonomura
- dw CredFuziwara
- dw CredMatsusima
- dw CredTomisawa
- dw CredKawamoto
- dw CredKakei
- dw CredTsuchiya
- dw CredTaNakamura
- dw CredYuda
- dw CredMon
- dw CredDirector
- dw CredProgrammers
- dw CredCharDesign
- dw CredMusic
- dw CredSoundEffects
- dw CredGameDesign
- dw CredMonsterDesign
- dw CredGameScene
- dw CredParam
- dw CredMap
- dw CredTest
- dw CredSpecial
- dw CredProducers
- dw CredProducer
- dw CredExecutive
- dw CredTamada
- dw CredSaOota
- dw CredYoshikawa
- dw CredToOota
- dw CredUSStaff
- dw CredUSCoord
- dw CredTilden
- dw CredKawakami
- dw CredHiNakamura
- dw CredGiese
- dw CredOsborne
- dw CredTrans
- dw CredOgasawara
- dw CredIwata
- dw CredIzushi
- dw CredHarada
- dw CredMurakawa
- dw CredFukui
- dw CredClub
- dw CredPAAD
-
-CredVersion: ; this 1 byte difference makes all bank addresses offset by 1 in the blue version
-IF DEF(_RED)
- db -8, "RED VERSION STAFF@"
-ENDC
-IF DEF(_BLUE)
- db -8, "BLUE VERSION STAFF@"
-ENDC
-CredTajiri:
- db -6, "SATOSHI TAJIRI@"
-CredTaOota:
- db -6, "TAKENORI OOTA@"
-CredMorimoto:
- db -7, "SHIGEKI MORIMOTO@"
-CredWatanabe:
- db -7, "TETSUYA WATANABE@"
-CredMasuda:
- db -6, "JUNICHI MASUDA@"
-CredNisino:
- db -5, "KOHJI NISINO@"
-CredSugimori:
- db -5, "KEN SUGIMORI@"
-CredNishida:
- db -6, "ATSUKO NISHIDA@"
-CredMiyamoto:
- db -7, "SHIGERU MIYAMOTO@"
-CredKawaguchi:
- db -8, "TAKASHI KAWAGUCHI@"
-CredIshihara:
- db -8, "TSUNEKAZU ISHIHARA@"
-CredYamauchi:
- db -7, "HIROSHI YAMAUCHI@"
-CredZinnai:
- db -7, "HIROYUKI ZINNAI@"
-CredHishida:
- db -7, "TATSUYA HISHIDA@"
-CredSakai:
- db -6, "YASUHIRO SAKAI@"
-CredYamaguchi:
- db -7, "WATARU YAMAGUCHI@"
-CredYamamoto:
- db -8, "KAZUYUKI YAMAMOTO@"
-CredTaniguchi:
- db -8, "RYOHSUKE TANIGUCHI@"
-CredNonomura:
- db -8, "FUMIHIRO NONOMURA@"
-CredFuziwara:
- db -7, "MOTOFUMI FUZIWARA@"
-CredMatsusima:
- db -7, "KENJI MATSUSIMA@"
-CredTomisawa:
- db -7, "AKIHITO TOMISAWA@"
-CredKawamoto:
- db -7, "HIROSHI KAWAMOTO@"
-CredKakei:
- db -6, "AKIYOSHI KAKEI@"
-CredTsuchiya:
- db -7, "KAZUKI TSUCHIYA@"
-CredTaNakamura:
- db -6, "TAKEO NAKAMURA@"
-CredYuda:
- db -6, "MASAMITSU YUDA@"
-CredMon:
- db -3, "#MON@"
-CredDirector:
- db -3, "DIRECTOR@"
-CredProgrammers:
- db -5, "PROGRAMMERS@"
-CredCharDesign:
- db -7, "CHARACTER DESIGN@"
-CredMusic:
- db -2, "MUSIC@"
-CredSoundEffects:
- db -6, "SOUND EFFECTS@"
-CredGameDesign:
- db -5, "GAME DESIGN@"
-CredMonsterDesign:
- db -6, "MONSTER DESIGN@"
-CredGameScene:
- db -6, "GAME SCENARIO@"
-CredParam:
- db -8, "PARAMETRIC DESIGN@"
-CredMap:
- db -4, "MAP DESIGN@"
-CredTest:
- db -7, "PRODUCT TESTING@"
-CredSpecial:
- db -6, "SPECIAL THANKS@"
-CredProducers:
- db -4, "PRODUCERS@"
-CredProducer:
- db -4, "PRODUCER@"
-CredExecutive:
- db -8, "EXECUTIVE PRODUCER@"
-CredTamada:
- db -6, "SOUSUKE TAMADA@"
-CredSaOota:
- db -5, "SATOSHI OOTA@"
-CredYoshikawa:
- db -6, "RENA YOSHIKAWA@"
-CredToOota:
- db -6, "TOMOMICHI OOTA@"
-CredUSStaff:
- db -7, "US VERSION STAFF@"
-CredUSCoord:
- db -7, "US COORDINATION@"
-CredTilden:
- db -5, "GAIL TILDEN@"
-CredKawakami:
- db -6, "NAOKO KAWAKAMI@"
-CredHiNakamura:
- db -6, "HIRO NAKAMURA@"
-CredGiese:
- db -6, "WILLIAM GIESE@"
-CredOsborne:
- db -5, "SARA OSBORNE@"
-CredTrans:
- db -7, "TEXT TRANSLATION@"
-CredOgasawara:
- db -6, "NOB OGASAWARA@"
-CredIwata:
- db -5, "SATORU IWATA@"
-CredIzushi:
- db -7, "TAKEHIRO IZUSHI@"
-CredHarada:
- db -7, "TAKAHIRO HARADA@"
-CredMurakawa:
- db -7, "TERUKI MURAKAWA@"
-CredFukui:
- db -5, "KOHTA FUKUI@"
-CredClub:
- db -9, "NCL SUPER MARIO CLUB@"
-CredPAAD:
- db -5, "PAAD TESTING@"
--- a/text/dakutens.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-Dakutens:
- db "かが", "きぎ", "くぐ", "けげ", "こご"
- db "さざ", "しじ", "すず", "せぜ", "そぞ"
- db "ただ", "ちぢ", "つづ", "てで", "とど"
- db "はば", "ひび", "ふぶ", "へべ", "ほぼ"
- db "カガ", "キギ", "クグ", "ケゲ", "コゴ"
- db "サザ", "シジ", "スズ", "セゼ", "ソゾ"
- db "タダ", "チヂ", "ツヅ", "テデ", "トド"
- db "ハバ", "ヒビ", "フブ", "へべ", "ホボ"
- db $ff
-
-Handakutens:
- db "はぱ", "ひぴ", "ふぷ", "へぺ", "ほぽ"
- db "ハパ", "ヒピ", "フプ", "へぺ", "ホポ"
- db $ff
--- a/text/item_names.asm
+++ /dev/null
@@ -1,98 +1,0 @@
-ItemNames::
- db "MASTER BALL@"
- db "ULTRA BALL@"
- db "GREAT BALL@"
- db "POKé BALL@"
- db "TOWN MAP@"
- db "BICYCLE@"
- db "?????@"
- db "SAFARI BALL@"
- db "POKéDEX@"
- db "MOON STONE@"
- db "ANTIDOTE@"
- db "BURN HEAL@"
- db "ICE HEAL@"
- db "AWAKENING@"
- db "PARLYZ HEAL@"
- db "FULL RESTORE@"
- db "MAX POTION@"
- db "HYPER POTION@"
- db "SUPER POTION@"
- db "POTION@"
- db "BOULDERBADGE@"
- db "CASCADEBADGE@"
- db "THUNDERBADGE@"
- db "RAINBOWBADGE@"
- db "SOULBADGE@"
- db "MARSHBADGE@"
- db "VOLCANOBADGE@"
- db "EARTHBADGE@"
- db "ESCAPE ROPE@"
- db "REPEL@"
- db "OLD AMBER@"
- db "FIRE STONE@"
- db "THUNDERSTONE@"
- db "WATER STONE@"
- db "HP UP@"
- db "PROTEIN@"
- db "IRON@"
- db "CARBOS@"
- db "CALCIUM@"
- db "RARE CANDY@"
- db "DOME FOSSIL@"
- db "HELIX FOSSIL@"
- db "SECRET KEY@"
- db "?????@"
- db "BIKE VOUCHER@"
- db "X ACCURACY@"
- db "LEAF STONE@"
- db "CARD KEY@"
- db "NUGGET@"
- db "PP UP@"
- db "POKé DOLL@"
- db "FULL HEAL@"
- db "REVIVE@"
- db "MAX REVIVE@"
- db "GUARD SPEC.@"
- db "SUPER REPEL@"
- db "MAX REPEL@"
- db "DIRE HIT@"
- db "COIN@"
- db "FRESH WATER@"
- db "SODA POP@"
- db "LEMONADE@"
- db "S.S.TICKET@"
- db "GOLD TEETH@"
- db "X ATTACK@"
- db "X DEFEND@"
- db "X SPEED@"
- db "X SPECIAL@"
- db "COIN CASE@"
- db "OAK's PARCEL@"
- db "ITEMFINDER@"
- db "SILPH SCOPE@"
- db "POKé FLUTE@"
- db "LIFT KEY@"
- db "EXP.ALL@"
- db "OLD ROD@"
- db "GOOD ROD@"
- db "SUPER ROD@"
- db "PP UP@"
- db "ETHER@"
- db "MAX ETHER@"
- db "ELIXER@"
- db "MAX ELIXER@"
- db "B2F@"
- db "B1F@"
- db "1F@"
- db "2F@"
- db "3F@"
- db "4F@"
- db "5F@"
- db "6F@"
- db "7F@"
- db "8F@"
- db "9F@"
- db "10F@"
- db "11F@"
- db "B4F@"
--- a/text/map_names.asm
+++ /dev/null
@@ -1,107 +1,0 @@
-MapNames:
-PalletTownName:
- db "PALLET TOWN@"
-ViridianCityName:
- db "VIRIDIAN CITY@"
-PewterCityName:
- db "PEWTER CITY@"
-CeruleanCityName:
- db "CERULEAN CITY@"
-LavenderTownName:
- db "LAVENDER TOWN@"
-VermilionCityName:
- db "VERMILION CITY@"
-CeladonCityName:
- db "CELADON CITY@"
-FuchsiaCityName:
- db "FUCHSIA CITY@"
-CinnabarIslandName:
- db "CINNABAR ISLAND@"
-IndigoPlateauName:
- db "INDIGO PLATEAU@"
-SaffronCityName:
- db "SAFFRON CITY@"
-Route1Name:
- db "ROUTE 1@"
-Route2Name:
- db "ROUTE 2@"
-Route3Name:
- db "ROUTE 3@"
-Route4Name:
- db "ROUTE 4@"
-Route5Name:
- db "ROUTE 5@"
-Route6Name:
- db "ROUTE 6@"
-Route7Name:
- db "ROUTE 7@"
-Route8Name:
- db "ROUTE 8@"
-Route9Name:
- db "ROUTE 9@"
-Route10Name:
- db "ROUTE 10@"
-Route11Name:
- db "ROUTE 11@"
-Route12Name:
- db "ROUTE 12@"
-Route13Name:
- db "ROUTE 13@"
-Route14Name:
- db "ROUTE 14@"
-Route15Name:
- db "ROUTE 15@"
-Route16Name:
- db "ROUTE 16@"
-Route17Name:
- db "ROUTE 17@"
-Route18Name:
- db "ROUTE 18@"
-Route19Name:
- db "SEA ROUTE 19@"
-Route20Name:
- db "SEA ROUTE 20@"
-Route21Name:
- db "SEA ROUTE 21@"
-Route22Name:
- db "ROUTE 22@"
-Route23Name:
- db "ROUTE 23@"
-Route24Name:
- db "ROUTE 24@"
-Route25Name:
- db "ROUTE 25@"
-ViridianForestName:
- db "VIRIDIAN FOREST@"
-MountMoonName:
- db "MT.MOON@"
-RockTunnelName:
- db "ROCK TUNNEL@"
-SeaCottageName:
- db "SEA COTTAGE@"
-SSAnneName:
- db "S.S.ANNE@"
-PokemonLeagueName:
- db "#MON LEAGUE@"
-UndergroundPathName:
- db "UNDERGROUND PATH@"
-PokemonTowerName:
- db "#MON TOWER@"
-SeafoamIslandsName:
- db "SEAFOAM ISLANDS@"
-VictoryRoadName:
- db "VICTORY ROAD@"
-DiglettsCaveName:
- db "DIGLETT's CAVE@"
-RocketHQName:
- db "ROCKET HQ@"
-SilphCoName:
- db "SILPH CO.@"
-PokemonMansionName:
- db "<pkmn> MANSION@"
-SafariZoneName:
- db "SAFARI ZONE@"
-CeruleanCaveName:
- db "CERULEAN CAVE@"
-PowerPlantName:
- db "POWER PLANT@"
--- a/text/maps/AgathasRoom.asm
+++ /dev/null
@@ -1,44 +1,0 @@
-_AgathaBeforeBattleText::
- text "I am AGATHA of"
- line "the ELITE FOUR!"
-
- para "OAK's taken a lot"
- line "of interest in"
- cont "you, child!"
-
- para "That old duff was"
- line "once tough and"
- cont "handsome! That"
- cont "was decades ago!"
-
- para "Now he just wants"
- line "to fiddle with"
- cont "his #DEX! He's"
- cont "wrong! #MON"
- cont "are for fighting!"
-
- para "<PLAYER>! I'll show"
- line "you how a real"
- cont "trainer fights!"
- done
-
-_AgathaEndBattleText::
- text "Oh ho!"
- line "You're something"
- cont "special, child!"
- prompt
-
-_AgathaAfterBattleText::
- text "You win! I see"
- line "what the old duff"
- cont "sees in you now!"
-
- para "I have nothing"
- line "else to say! Run"
- cont "along now, child!"
- done
-
-_AgathaDontRunAwayText::
- text "Someone's voice:"
- line "Don't run away!"
- done
--- a/text/maps/BikeShop.asm
+++ /dev/null
@@ -1,70 +1,0 @@
-_BikeShopText_1d810::
- text "Hi! Welcome to"
- line "our BIKE SHOP."
-
- para "Have we got just"
- line "the BIKE for you!"
- prompt
-
-_BikeShopText_1d815::
- text "It's a cool BIKE!"
- line "Do you want it?"
- done
-
-_BikeShopCantAffordText::
- text "Sorry! You can't"
- line "afford it!"
- prompt
-
-_BikeShopText_1d81f::
- text "Oh, that's..."
-
- para "A BIKE VOUCHER!"
-
- para "OK! Here you go!"
- prompt
-
-_BikeShopText_1d824::
- text "<PLAYER> exchanged"
- line "the BIKE VOUCHER"
- cont "for a BICYCLE.@@"
-
-_BikeShopComeAgainText::
- text "Come back again"
- line "some time!"
- done
-
-_BikeShopText_1d82f::
- text "How do you like"
- line "your new BICYCLE?"
-
- para "You can take it"
- line "on CYCLING ROAD"
- cont "and in caves!"
- done
-
-_BikeShopText_1d834::
- text "You better make"
- line "room for this!"
- done
-
-_BikeShopText_1d843::
- text "A plain city BIKE"
- line "is good enough"
- cont "for me!"
-
- para "You can't put a"
- line "shopping basket"
- cont "on an MTB!"
- done
-
-_BikeShopText_1d85c::
- text "These BIKEs are"
- line "cool, but they're"
- cont "way expensive!"
- done
-
-_BikeShopText_1d861::
- text "Wow. Your BIKE is"
- line "really cool!"
- done
--- a/text/maps/BillsHouse.asm
+++ /dev/null
@@ -1,87 +1,0 @@
-_BillsHouseText_1e865::
- text "Hiya! I'm a"
- line "#MON..."
- cont "...No I'm not!"
-
- para "Call me BILL!"
- line "I'm a true blue"
- cont "#MANIAC! Hey!"
- cont "What's with that"
- cont "skeptical look?"
-
- para "I'm not joshing"
- line "you, I screwed up"
- cont "an experiment and"
- cont "got combined with"
- cont "a #MON!"
-
- para "So, how about it?"
- line "Help me out here!"
- done
-
-_BillsHouseText_1e86a::
- text "When I'm in the"
- line "TELEPORTER, go to"
- cont "my PC and run the"
- cont "Cell Separation"
- cont "System!"
- done
-
-_BillsHouseText_1e86f::
- text "No!? Come on, you"
- line "gotta help a guy"
- cont "in deep trouble!"
-
- para "What do you say,"
- line "chief? Please?"
- cont "OK? All right!"
- prompt
-
-_BillThankYouText::
- text "BILL: Yeehah!"
- line "Thanks, bud! I"
- cont "owe you one!"
-
- para "So, did you come"
- line "to see my #MON"
- cont "collection?"
- cont "You didn't?"
- cont "That's a bummer."
-
- para "I've got to thank"
- line "you... Oh here,"
- cont "maybe this'll do."
- prompt
-
-_SSTicketReceivedText::
- text "<PLAYER> received"
- line "an @"
- TX_RAM wcf4b
- text "!@@"
-
-_SSTicketNoRoomText::
- text "You've got too"
- line "much stuff, bud!"
- done
-
-_BillsHouseText_1e8cb::
- text "That cruise ship,"
- line "S.S.ANNE, is in"
- cont "VERMILION CITY."
- cont "Its passengers"
- cont "are all trainers!"
-
- para "They invited me"
- line "to their party,"
- cont "but I can't stand"
- cont "fancy do's. Why"
- cont "don't you go"
- cont "instead of me?"
- done
-
-_BillsHouseText_1e8da::
- text "BILL: Look, bud,"
- line "just check out"
- cont "some of my rare"
- cont "#MON on my PC!"
- done
--- a/text/maps/BluesHouse.asm
+++ /dev/null
@@ -1,41 +1,0 @@
-_DaisyInitialText::
- text "Hi <PLAYER>!"
- line "<RIVAL> is out at"
- cont "Grandpa's lab."
- done
-
-_DaisyOfferMapText::
- text "Grandpa asked you"
- line "to run an errand?"
- cont "Here, this will"
- cont "help you!"
- prompt
-
-_GotMapText::
- text "<PLAYER> got a"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_DaisyBagFullText::
- text "You have too much"
- line "stuff with you."
- done
-
-_DaisyUseMapText::
- text "Use the TOWN MAP"
- line "to find out where"
- cont "you are."
- done
-
-_BluesHouseText2::
- text "#MON are living"
- line "things! If they"
- cont "get tired, give"
- cont "them a rest!"
- done
-
-_BluesHouseText3::
- text "It's a big map!"
- line "This is useful!"
- done
--- a/text/maps/BrunosRoom.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-_BrunoBeforeBattleText::
- text "I am BRUNO of"
- line "the ELITE FOUR!"
-
- para "Through rigorous"
- line "training, people"
- cont "and #MON can"
- cont "become stronger!"
-
- para "I've weight"
- line "trained with"
- cont "my #MON!"
-
- para "<PLAYER>!"
-
- para "We will grind you"
- line "down with our"
- cont "superior power!"
-
- para "Hoo hah!"
- done
-
-_BrunoEndBattleText::
- text "Why?"
- line "How could I lose?"
- prompt
-
-_BrunoAfterBattleText::
- text "My job is done!"
- line "Go face your next"
- cont "challenge!"
- done
-
-_BrunoDontRunAwayText::
- text "Someone's voice:"
- line "Don't run away!"
- done
--- a/text/maps/CeladonChiefHouse.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-_CeladonHouseText1::
- text "Hehehe! The slots"
- line "just reel in the"
- cont "dough, big time!"
- done
-
-_CeladonHouseText2::
- text "CHIEF!"
-
- para "We just shipped"
- line "2000 #MON as"
- cont "slot prizes!"
- done
-
-_CeladonHouseText3::
- text "Don't touch the"
- line "poster at the"
- cont "GAME CORNER!"
-
- para "There's no secret"
- line "switch behind it!"
- done
--- a/text/maps/CeladonCity.asm
+++ /dev/null
@@ -1,152 +1,0 @@
-_CeladonCityText1::
- text "I got my KOFFING"
- line "in CINNABAR!"
-
- para "It's nice, but it"
- line "breathes poison"
- cont "when it's angry!"
- done
-
-_CeladonCityText2::
- text "Heheh! This GYM"
- line "is great! It's"
- cont "full of women!"
- done
-
-_CeladonCityText3::
- text "The GAME CORNER"
- line "is bad for our"
- cont "city's image!"
- done
-
-_CeladonCityText4::
- text "Moan! I blew it"
- line "all at the slots!"
-
- para "I knew I should"
- line "have cashed in my"
- cont "coins for prizes!"
- done
-
-_TM41PreText::
- text "Hello, there!"
-
- para "I've seen you,"
- line "but I never had a"
- cont "chance to talk!"
-
- para "Here's a gift for"
- line "dropping by!"
- prompt
-
-_ReceivedTM41Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM41ExplanationText::
- text "TM41 teaches"
- line "SOFTBOILED!"
-
- para "Only one #MON"
- line "can use it!"
-
- para "That #MON is"
- line "CHANSEY!"
- done
-
-_TM41NoRoomText::
- text "Oh, your pack is"
- line "full of items!"
- done
-
-_CeladonCityText6::
- text "This is my trusted"
- line "pal, POLIWRATH!"
-
- para "It evolved from"
- line "POLIWHIRL when I"
- cont "used WATER STONE!"
- done
-
-_CeladonCityText7::
- text "POLIWRATH: Ribi"
- line "ribit!@@"
-
-_CeladonCityText8::
- text "What are you"
- line "staring at?"
- done
-
-_CeladonCityText9::
- text "Keep out of TEAM"
- line "ROCKET's way!"
- done
-
-_CeladonCityText10::
- text "TRAINER TIPS"
-
- para "X ACCURACY boosts"
- line "the accuracy of"
- cont "techniques!"
-
- para "DIRE HIT jacks up"
- line "the likelihood of"
- cont "critical hits!"
-
- para "Get your items at"
- line "CELADON DEPT."
- cont "STORE!"
- done
-
-_CeladonCityText11::
- text "CELADON CITY"
- line "The City of"
- cont "Rainbow Dreams"
- done
-
-_CeladonCityText13::
- text "CELADON CITY"
- line "#MON GYM"
- cont "LEADER: ERIKA"
-
- para "The Nature Loving"
- line "Princess!"
- done
-
-_CeladonCityText14::
- text "CELADON MANSION"
- done
-
-_CeladonCityText15::
- text "Find what you"
- line "need at CELADON"
- cont "DEPT. STORE!"
- done
-
-_CeladonCityText16::
- text "TRAINER TIPS"
-
- para "GUARD SPEC."
- line "protects #MON"
- cont "against SPECIAL"
- cont "attacks such as"
- cont "fire and water!"
-
- para "Get your items at"
- line "CELADON DEPT."
- cont "STORE!"
- done
-
-_CeladonCityText17::
- text "Coins exchanged"
- line "for prizes!"
- cont "PRIZE EXCHANGE"
- done
-
-_CeladonCityText18::
- text "ROCKET GAME CORNER"
- line "The playground"
- cont "for grown-ups!"
- done
--- a/text/maps/CeladonDiner.asm
+++ /dev/null
@@ -1,59 +1,0 @@
-_CeladonDinerText1::
- text "Hi!"
-
- para "We're taking a"
- line "break now."
- done
-
-_CeladonDinerText2::
- text "My #MON are"
- line "weak, so I often"
- cont "have to go to the"
- cont "DRUG STORE."
- done
-
-_CeladonDinerText3::
- text "Psst! There's a"
- line "basement under"
- cont "the GAME CORNER."
- done
-
-_CeladonDinerText4::
- text "Munch..."
-
- para "The man at that"
- line "table lost it all"
- cont "at the slots."
- done
-
-_CeladonDinerText_491a7::
- text "Go ahead! Laugh!"
-
- para "I'm flat out"
- line "busted!"
-
- para "No more slots for"
- line "me! I'm going"
- cont "straight!"
-
- para "Here! I won't be"
- line "needing this any-"
- cont "more!"
- prompt
-
-_ReceivedCoinCaseText::
- text "<PLAYER> received"
- line "a @"
- TX_RAM wcf4b
- text "!@@"
-
-_CoinCaseNoRoomText::
- text "Make room for"
- line "this!"
- done
-
-_CeladonDinerText_491b7::
- text "I always thought"
- line "I was going to"
- cont "win it back..."
- done
--- a/text/maps/CeladonGym.asm
+++ /dev/null
@@ -1,219 +1,0 @@
-_CeladonGymText_48a5e::
- text "Hello. Lovely"
- line "weather isn't it?"
- cont "It's so pleasant."
-
- para "...Oh dear..."
- line "I must have dozed"
- cont "off. Welcome."
-
- para "My name is ERIKA."
- line "I am the LEADER"
- cont "of CELADON GYM."
-
- para "I teach the art of"
- line "flower arranging."
- cont "My #MON are of"
- cont "the grass-type."
-
- para "Oh, I'm sorry, I"
- line "had no idea that"
- cont "you wished to"
- cont "challenge me."
-
- para "Very well, but I"
- line "shall not lose."
- done
-
-_CeladonGymText_48a63::
- text "Oh!"
- line "I concede defeat."
-
- para "You are remarkably"
- line "strong."
-
- para "I must confer you"
- line "the RAINBOWBADGE."
- prompt
-
-_CeladonGymText_48a68::
- text "You are cataloging"
- line "#MON? I must"
- cont "say I'm impressed."
-
- para "I would never"
- line "collect #MON"
- cont "if they were"
- cont "unattractive."
- done
-
-_CeladonGymText9::
- text "The RAINBOWBADGE"
- line "will make #MON"
- cont "up to L50 obey."
-
- para "It also allows"
- line "#MON to use"
- cont "STRENGTH in and"
- cont "out of battle."
-
- para "Please also take"
- line "this with you."
- done
-
-_ReceivedTM21Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM21ExplanationText::
- text ""
-
- para "TM21 contains"
- line "MEGA DRAIN."
-
- para "Half the damage"
- line "it inflicts is"
- cont "drained to heal"
- cont "your #MON!"
- done
-
-_TM21NoRoomText::
- text "You should make"
- line "room for this."
- done
-
-_CeladonGymBattleText2::
- text "Hey!"
-
- para "You are not"
- line "allowed in here!"
- done
-
-_CeladonGymEndBattleText2::
- text "You're"
- line "too rough!"
- prompt
-
-_CeladonGymAfterBattleText2::
- text "Bleaah!"
- line "I hope ERIKA"
- cont "wipes you out!"
- done
-
-_CeladonGymBattleText3::
- text "I was getting"
- line "bored."
- done
-
-_CeladonGymEndBattleText3::
- text "My"
- line "makeup!"
- prompt
-
-_CeladonGymAfterBattleText3::
- text "Grass-type #MON"
- line "are tough against"
- cont "the water-type!"
-
- para "They also have an"
- line "edge on rock and"
- cont "ground #MON!"
- done
-
-_CeladonGymBattleText4::
- text "Aren't you the"
- line "peeping Tom?"
- done
-
-_CeladonGymEndBattleText4::
- text "I'm"
- line "in shock!"
- prompt
-
-_CeladonGymAfterBattleText4::
- text "Oh, you weren't"
- line "peeping? We get a"
- cont "lot of gawkers!"
- done
-
-_CeladonGymBattleText5::
- text "Look at my grass"
- line "#MON!"
-
- para "They're so easy"
- line "to raise!"
- done
-
-_CeladonGymEndBattleText5::
- text "No!"
- prompt
-
-_CeladonGymAfterBattleText5::
- text "We only use grass-"
- line "type #MON at"
- cont "our GYM!"
-
- para "We also use them"
- line "for making flower"
- cont "arrangements!"
- done
-
-_CeladonGymBattleText6::
- text "Don't bring any"
- line "bugs or fire"
- cont "#MON in here!"
- done
-
-_CeladonGymEndBattleText6::
- text "Oh!"
- line "You!"
- prompt
-
-_CeladonGymAfterBattleText6::
- text "Our LEADER, ERIKA,"
- line "might be quiet,"
- cont "but she's also"
- cont "very skilled!"
- done
-
-_CeladonGymBattleText7::
- text "Pleased to meet"
- line "you. My hobby is"
- cont "#MON training."
- done
-
-_CeladonGymEndBattleText7::
- text "Oh!"
- line "Splendid!"
- prompt
-
-_CeladonGymAfterBattleText7::
- text "I have a blind"
- line "date coming up."
- cont "I have to learn"
- cont "to be polite."
- done
-
-_CeladonGymBattleText8::
- text "Welcome to"
- line "CELADON GYM!"
-
- para "You better not"
- line "underestimate"
- cont "girl power!"
- done
-
-_CeladonGymEndBattleText8::
- text "Oh!"
- line "Beaten!"
- prompt
-
-_CeladonGymAfterBattleText8::
- text "I didn't bring my"
- line "best #MON!"
-
- para "Wait 'til next"
- line "time!"
- done
--- a/text/maps/CeladonHotel.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-_CeladonHotelText1::
- text "#MON? No, this"
- line "is a hotel for"
- cont "people."
-
- para "We're full up."
- done
-
-_CeladonHotelText2::
- text "I'm on vacation"
- line "with my brother"
- cont "and boy friend."
-
- para "CELADON is such a"
- line "pretty city!"
- done
-
-_CeladonHotelText3::
- text "Why did she bring"
- line "her brother?"
- done
--- a/text/maps/CeladonMansion1F.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-_CeladonMansion1Text1::
- text "MEOWTH: Meow!@@"
-
-_CeladonMansion1Text2::
- text "My dear #MON"
- line "keep me company."
-
- para "MEOWTH even brings"
- line "money home!"
- done
-
-_CeladonMansion1Text3::
- text "CLEFAIRY: Pi"
- line "pippippi!@@"
-
-_CeladonMansion1Text4::
- text "NIDORAN: Kya"
- line "kyaoo!@@"
-
-_CeladonMansion1Text5::
- text "CELADON MANSION"
- line "Manager's Suite"
- done
--- a/text/maps/CeladonMansion2F.asm
+++ /dev/null
@@ -1,4 +1,0 @@
-_CeladonMansion2Text1::
- text "GAME FREAK"
- line "Meeting Room"
- done
--- a/text/maps/CeladonMansion3F.asm
+++ /dev/null
@@ -1,66 +1,0 @@
-_ProgrammerText::
- text "Me? I'm the"
- line "programmer!"
- done
-
-_GraphicArtistText::
- text "I'm the graphic"
- line "artist!"
- cont "I drew you!"
- done
-
-_WriterText::
- text "I wrote the story!"
- line "Isn't ERIKA cute?"
-
- para "I like MISTY a"
- line "lot too!"
-
- para "Oh, and SABRINA,"
- line "I like her!"
- done
-
-_GameDesignerText::
- text "Is that right?"
-
- para "I'm the game"
- line "designer!"
-
- para "Filling up your"
- line "#DEX is tough,"
- cont "but don't quit!"
-
- para "When you finish,"
- line "come tell me!"
- done
-
-_CompletedDexText::
- text "Wow! Excellent!"
- line "You completed"
- cont "your #DEX!"
- cont "Congratulations!"
- cont "...@@"
-
-_CeladonMansion3Text5::
- text "It's the game"
- line "program! Messing"
- cont "with it could bug"
- cont "out the game!"
- done
-
-_CeladonMansion3Text6::
- text "Someone's playing"
- line "a game instead of"
- cont "working!"
- done
-
-_CeladonMansion3Text7::
- text "It's the script!"
- line "Better not look"
- cont "at the ending!"
- done
-
-_CeladonMansion3Text8::
- text "GAME FREAK"
- line "Development Room"
- done
--- a/text/maps/CeladonMansionRoof.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-_CeladonMansion4Text1::
- text "I KNOW EVERYTHING!"
- done
--- a/text/maps/CeladonMansionRoofHouse.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-_CeladonMansion5Text1::
- text "I know everything"
- line "about the world"
- cont "of #MON in"
- cont "your GAME BOY!"
-
- para "Get together with"
- line "your friends and"
- cont "trade #MON!"
- done
--- a/text/maps/CeladonMart1F.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-_CeladonMart1Text1::
- text "Hello! Welcome to"
- line "CELADON DEPT."
- cont "STORE."
-
- para "The board on the"
- line "right describes"
- cont "the store layout."
- done
-
-_CeladonMart1Text2::
- text "1F: SERVICE"
- line " COUNTER"
-
- para "2F: TRAINER'S"
- line " MARKET"
-
- para "3F: TV GAME SHOP"
-
- para "4F: WISEMAN GIFTS"
-
- para "5F: DRUG STORE"
-
- para "ROOFTOP SQUARE:"
- line "VENDING MACHINES"
- done
-
-_CeladonMart1Text3::
- text "1F: SERVICE"
- line " COUNTER"
- done
--- a/text/maps/CeladonMart2F.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-_CeladonMart2Text3::
- text "SUPER REPEL keeps"
- line "weak #MON at"
- cont "bay..."
-
- para "Hmm, it's a more"
- line "powerful REPEL!"
- done
-
-_CeladonMart2Text4::
- text "For long outings,"
- line "you should buy"
- cont "REVIVE."
- done
-
-_CeladonMart2Text5::
- text "Top Grade Items"
- line "for Trainers!"
-
- para "2F: TRAINER'S"
- line " MARKET"
- done
--- a/text/maps/CeladonMart3F.asm
+++ /dev/null
@@ -1,98 +1,0 @@
-_TM18PreReceiveText::
- text "Oh, hi! I finally"
- line "finished #MON!"
-
- para "Not done yet?"
- line "This might be"
- cont "useful!"
- prompt
-
-_ReceivedTM18Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM18ExplanationText::
- text "TM18 is COUNTER!"
- line "Not like the one"
- cont "I'm leaning on,"
- cont "mind you!"
- done
-
-_TM18NoRoomText::
- text "Your pack is full"
- line "of items!"
- done
-
-_CeladonMart3Text2::
- text "Captured #MON"
- line "are registered"
- cont "with an ID No."
- cont "and OT, the name"
- cont "of the Original"
- cont "Trainer that"
- cont "caught it!"
- done
-
-_CeladonMart3Text3::
- text "All right!"
-
- para "My buddy's going"
- line "to trade me his"
- cont "KANGASKHAN for my"
- cont "GRAVELER!"
- done
-
-_CeladonMart3Text4::
- text "Come on GRAVELER!"
-
- para "I love GRAVELER!"
- line "I collect them!"
-
- para "Huh?"
-
- para "GRAVELER turned"
- line "into a different"
- cont "#MON!"
- done
-
-_CeladonMart3Text5::
- text "You can identify"
- line "#MON you got"
- cont "in trades by"
- cont "their ID Numbers!"
- done
-
-_CeladonMart3Text6::
- text "It's an SNES!"
- done
-
-_CeladonMart3Text7::
- text "An RPG! There's"
- line "no time for that!"
- done
-
-_CeladonMart3Text9::
- text "A sports game!"
- line "Dad'll like that!"
- done
-
-_CeladonMart3Text11::
- text "A puzzle game!"
- line "Looks addictive!"
- done
-
-_CeladonMart3Text13::
- text "A fighting game!"
- line "Looks tough!"
- done
-
-_CeladonMart3Text14::
- text "3F: TV GAME SHOP"
- done
-
-_CeladonMart3Text15::
- text "Red and Blue!"
- line "Both are #MON!"
- done
--- a/text/maps/CeladonMart4F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-_CeladonMart4Text2::
- text "I'm getting a"
- line "# DOLL for my"
- cont "girl friend!"
- done
-
-_CeladonMart4Text3::
- text "I heard something"
- line "useful."
-
- para "You can run from"
- line "wild #MON by"
- cont "distracting them"
- cont "with a # DOLL!"
- done
-
-_CeladonMart4Text4::
- text "Express yourself"
- line "with gifts!"
-
- para "4F: WISEMAN GIFTS"
-
- para "Evolution Special!"
- line "Element STONEs on"
- cont "sale now!"
- done
--- a/text/maps/CeladonMart5F.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-_CeladonMart5Text1::
- text "#MON ability"
- line "enhancers can be"
- cont "bought only here."
-
- para "Use CALCIUM to"
- line "increase SPECIAL"
- cont "abilities."
-
- para "Use CARBOS to"
- line "increase SPEED."
- done
-
-_CeladonMart5Text2::
- text "I'm here for"
- line "#MON ability"
- cont "enhancers."
-
- para "PROTEIN increases"
- line "ATTACK power."
-
- para "IRON increases"
- line "DEFENSE!"
- done
-
-_CeladonMart5Text5::
- text "5F: DRUG STORE"
- done
--- a/text/maps/CeladonMartRoof.asm
+++ /dev/null
@@ -1,141 +1,0 @@
-_CeladonMartRoofText_484ee::
- text "Give her which"
- line "drink?"
- done
-
-_CeladonMartRoofText_484f3::
- text "Yay!"
-
- para "FRESH WATER!"
-
- para "Thank you!"
-
- para "You can have this"
- line "from me!@@"
-
-_CeladonMartRoofText_484f9::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_CeladonMartRoofText_484fe::
- text ""
-
- para "@"
- TX_RAM wcf4b
- text " contains"
- line "ICE BEAM!"
-
- para "It can freeze the"
- line "target sometimes!@@"
-
-_CeladonMartRoofText_48504::
- text "Yay!"
-
- para "SODA POP!"
-
- para "Thank you!"
-
- para "You can have this"
- line "from me!@@"
-
-_CeladonMartRoofText_4850a::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_CeladonMartRoofText_4850f::
- text ""
-
- para "@"
- TX_RAM wcf4b
- text " contains"
- line "ROCK SLIDE!"
-
- para "It can spook the"
- line "target sometimes!@@"
-
-_CeladonMartRoofText_48515::
- text "Yay!"
-
- para "LEMONADE!"
-
- para "Thank you!"
-
- para "You can have this"
- line "from me!@@"
-
-_ReceivedTM49Text::
- text "<PLAYER> received"
- line "TM49!@@"
-
-_CeladonMartRoofText_48520::
- text ""
-
- para "TM49 contains"
- line "TRI ATTACK!@@"
-
-_CeladonMartRoofText_48526::
- text "You don't have"
- line "space for this!@@"
-
-_CeladonMartRoofText_4852c::
- text "No thank you!"
- line "I'm not thirsty"
- cont "after all!@@"
-
-_CeladonMartRoofText1::
- text "My sister is a"
- line "trainer, believe"
- cont "it or not."
-
- para "But, she's so"
- line "immature, she"
- cont "drives me nuts!"
- done
-
-_CeladonMartRoofText_48598::
- text "I'm thirsty!"
- line "I want something"
- cont "to drink!"
- done
-
-_CeladonMartRoofText4::
- text "I'm thirsty!"
- line "I want something"
- cont "to drink!"
-
- para "Give her a drink?"
- done
-
-_CeladonMartRoofText6::
- text "ROOFTOP SQUARE:"
- line "VENDING MACHINES"
- done
-
-_VendingMachineText1::
- text "A vending machine!"
- line "Here's the menu!"
- prompt
-
-_VendingMachineText4::
- text "Oops, not enough"
- line "money!"
- done
-
-_VendingMachineText5::
- TX_RAM wcf4b
- text ""
- line "popped out!"
- done
-
-_VendingMachineText6::
- text "There's no more"
- line "room for stuff!"
- done
-
-_VendingMachineText7::
- text "Not thirsty!"
- done
--- a/text/maps/CeladonPokecenter.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-_CeladonPokecenterText2::
- text "# FLUTE awakens"
- line "#MON with a"
- cont "sound that only"
- cont "they can hear!"
- done
-
-_CeladonPokecenterText3::
- text "I rode uphill on"
- line "CYCLING ROAD from"
- cont "FUCHSIA!"
- done
--- a/text/maps/CeruleanBadgeHouse.asm
+++ /dev/null
@@ -1,97 +1,0 @@
-_CeruleanHouse2Text_74e77::
- text "#MON BADGEs"
- line "are owned only by"
- cont "skilled trainers."
-
- para "I see you have"
- line "at least one."
-
- para "Those BADGEs have"
- line "amazing secrets!"
- prompt
-
-_CeruleanHouse2Text_74e7c::
- text "Now then..."
-
- para "Which of the 8"
- line "BADGEs should I"
- cont "describe?"
- done
-
-_CeruleanHouse2Text_74e81::
- text "Come visit me any"
- line "time you wish."
- done
-
-_CeruleanHouse2Text_74e96::
- text "The ATTACK of all"
- line "#MON increases"
- cont "a little bit."
-
- para "It also lets you"
- line "use FLASH any"
- cont "time you desire."
- prompt
-
-_CeruleanHouse2Text_74e9b::
- text "#MON up to L30"
- line "will obey you."
-
- para "Any higher, they"
- line "become unruly!"
-
- para "It also lets you"
- line "use CUT outside"
- cont "of battle."
- prompt
-
-_CeruleanHouse2Text_74ea0::
- text "The SPEED of all"
- line "#MON increases"
- cont "a little bit."
-
- para "It also lets you"
- line "use FLY outside"
- cont "of battle."
- prompt
-
-_CeruleanHouse2Text_74ea5::
- text "#MON up to L50"
- line "will obey you."
-
- para "Any higher, they"
- line "become unruly!"
-
- para "It also lets you"
- line "use STRENGTH out-"
- cont "side of battle."
- prompt
-
-_CeruleanHouse2Text_74eaa::
- text "The DEFENSE of all"
- line "#MON increases"
- cont "a little bit."
-
- para "It also lets you"
- line "use SURF outside"
- cont "of battle."
- prompt
-
-_CeruleanHouse2Text_74eaf::
- text "#MON up to L70"
- line "will obey you."
-
- para "Any higher, they"
- line "become unruly!"
- prompt
-
-_CeruleanHouse2Text_74eb4::
- text "Your #MON's"
- line "SPECIAL abilities"
- cont "increase a bit."
- prompt
-
-_CeruleanHouse2Text_74eb9::
- text "All #MON will"
- line "obey you!"
- prompt
--- a/text/maps/CeruleanCaveB1F.asm
+++ /dev/null
@@ -1,2 +1,0 @@
-_MewtwoBattleText::
- text "Mew!@@"
--- a/text/maps/CeruleanCity.asm
+++ /dev/null
@@ -1,233 +1,0 @@
-_CeruleanCityText_19668::
- text "<RIVAL>: Yo!"
- line "<PLAYER>!"
-
- para "You're still"
- line "struggling along"
- cont "back here?"
-
- para "I'm doing great!"
- line "I caught a bunch"
- cont "of strong and"
- cont "smart #MON!"
-
- para "Here, let me see"
- line "what you caught,"
- cont "<PLAYER>!"
- done
-
-_CeruleanCityText_1966d::
- text "Hey!"
- line "Take it easy!"
- cont "You won already!"
- prompt
-
-_CeruleanCityText_19672::
- text "Heh!"
- line "You're no match"
- cont "for my genius!"
- prompt
-
-_CeruleanCityText_19677::
- text "<RIVAL>: Hey,"
- line "guess what?"
-
- para "I went to BILL's"
- line "and got him to"
- cont "show me his rare"
- cont "#MON!"
-
- para "That added a lot"
- line "of pages to my"
- cont "#DEX!"
-
- para "After all, BILL's"
- line "world famous as a"
- cont "#MANIAC!"
-
- para "He invented the"
- line "#MON Storage"
- cont "System on PC!"
-
- para "Since you're using"
- line "his system, go"
- cont "thank him!"
-
- para "Well, I better"
- line "get rolling!"
- cont "Smell ya later!"
- done
-
-_CeruleanCityText_196d9::
- text "Hey! Stay out!"
- line "It's not your"
- cont "yard! Huh? Me?"
-
- para "I'm an innocent"
- line "bystander! Don't"
- cont "you believe me?"
- done
-
-_ReceivedTM28Text::
- text "<PLAYER> recovered"
- line "TM28!@@"
-
-_ReceivedTM28Text2::
- text ""
-
- para "I better get"
- line "moving! Bye!@@"
-
-_TM28NoRoomText::
- text "Make room for"
- line "this!"
-
- para "I can't run until"
- line "I give it to you!"
- done
-
-_CeruleanCityText_196ee::
- text "Stop!"
- line "I give up! I'll"
- cont "leave quietly!"
- prompt
-
-_CeruleanCityText_196f3::
- text "OK! I'll return"
- line "the TM I stole!"
- prompt
-
-_CeruleanCityText3::
- text "You're a trainer"
- line "too? Collecting,"
- cont "fighting, it's a"
- cont "tough life."
- done
-
-_CeruleanCityText4::
- text "That bush in"
- line "front of the shop"
- cont "is in the way."
-
- para "There might be a"
- line "way around."
- done
-
-_CeruleanCityText5::
- text "You're making an"
- line "encyclopedia on"
- cont "#MON? That"
- cont "sounds amusing."
- done
-
-_CeruleanCityText6::
- text "The people here"
- line "were robbed."
-
- para "It's obvious that"
- line "TEAM ROCKET is"
- cont "behind this most"
- cont "heinous crime!"
-
- para "Even our POLICE"
- line "force has trouble"
- cont "with the ROCKETs!"
- done
-
-_CeruleanCityText_19730::
- text "OK! SLOWBRO!"
- line "Use SONICBOOM!"
- cont "Come on, SLOWBRO"
- cont "pay attention!"
- done
-
-_CeruleanCityText_19735::
- text "SLOWBRO punch!"
- line "No! You blew it"
- cont "again!"
- done
-
-_CeruleanCityText_1973a::
- text "SLOWBRO, WITHDRAW!"
- line "No! That's wrong!"
-
- para "It's so hard to"
- line "control #MON!"
-
- para "Your #MON's"
- line "obedience depends"
- cont "on your abilities"
- cont "as a trainer!"
- done
-
-_CeruleanCityText_1976f::
- text "SLOWBRO took a"
- line "snooze..."
- done
-
-_CeruleanCityText_19774::
- text "SLOWBRO is"
- line "loafing around..."
- done
-
-_CeruleanCityText_19779::
- text "SLOWBRO turned"
- line "away..."
- done
-
-_CeruleanCityText_1977e::
- text "SLOWBRO"
- line "ignored orders..."
- done
-
-_CeruleanCityText9::
- text "I want a bright"
- line "red BICYCLE!"
-
- para "I'll keep it at"
- line "home, so it won't"
- cont "get dirty!"
- done
-
-_CeruleanCityText10::
- text "This is CERULEAN"
- line "CAVE! Horribly"
- cont "strong #MON"
- cont "live in there!"
-
- para "The #MON LEAGUE"
- line "champion is the"
- cont "only person who"
- cont "is allowed in!"
- done
-
-_CeruleanCityText12::
- text "CERULEAN CITY"
- line "A Mysterious,"
- cont "Blue Aura"
- cont "Surrounds It"
- done
-
-_CeruleanCityText13::
- text "TRAINER TIPS"
-
- para "Pressing B Button"
- line "during evolution"
- cont "cancels the whole"
- cont "process."
- done
-
-_CeruleanCityText16::
- text "Grass and caves"
- line "handled easily!"
- cont "BIKE SHOP"
- done
-
-_CeruleanCityText17::
- text "CERULEAN CITY"
- line "#MON GYM"
- cont "LEADER: MISTY"
-
- para "The Tomboyish"
- line "Mermaid!"
- done
--- a/text/maps/CeruleanGym.asm
+++ /dev/null
@@ -1,131 +1,0 @@
-_CeruleanGymText_5c7be::
- text "Hi, you're a new"
- line "face!"
-
- para "Trainers who want"
- line "to turn pro have"
- cont "to have a policy"
- cont "about #MON!"
-
- para "What is your"
- line "approach when you"
- cont "catch #MON?"
-
- para "My policy is an"
- line "all-out offensive"
- cont "with water-type"
- cont "#MON!"
- done
-
-_CeruleanGymText_5c7c3::
- text "TM11 teaches"
- line "BUBBLEBEAM!"
-
- para "Use it on an"
- line "aquatic #MON!"
- done
-
-_CeruleanGymText_5c7c8::
- text "The CASCADEBADGE"
- line "makes all #MON"
- cont "up to L30 obey!"
-
- para "That includes"
- line "even outsiders!"
-
- para "There's more, you"
- line "can now use CUT"
- cont "any time!"
-
- para "You can CUT down"
- line "small bushes to"
- cont "open new paths!"
-
- para "You can also have"
- line "my favorite TM!"
- done
-
-_ReceivedTM11Text::
- text "<PLAYER> received"
- line "TM11!@@"
-
-_CeruleanGymText_5c7d3::
- text "You better make"
- line "room for this!"
- done
-
-_CeruleanGymText_5c7d8::
- text "Wow!"
- line "You're too much!"
-
- para "All right!"
-
- para "You can have the"
- line "CASCADEBADGE to"
- cont "show you beat me!@@"
-
-_CeruleanGymBattleText1::
- text "I'm more than good"
- line "enough for you!"
-
- para "MISTY can wait!"
- done
-
-_CeruleanGymEndBattleText1::
- text "You"
- line "overwhelmed me!"
- prompt
-
-_CeruleanGymAfterBattleText1::
- text "You have to face"
- line "other trainers to"
- cont "find out how good"
- cont "you really are."
- done
-
-_CeruleanGymBattleText2::
- text "Splash!"
-
- para "I'm first up!"
- line "Let's do it!"
- done
-
-_CeruleanGymEndBattleText2::
- text "That"
- line "can't be!"
- prompt
-
-_CeruleanGymAfterBattleText2::
- text "MISTY is going to"
- line "keep improving!"
-
- para "She won't lose to"
- line "someone like you!"
- done
-
-_CeruleanGymText_5c82a::
- text "Yo! Champ in"
- line "making!"
-
- para "Here's my advice!"
-
- para "The LEADER, MISTY,"
- line "is a pro who uses"
- cont "water #MON!"
-
- para "You can drain all"
- line "their water with"
- cont "plant #MON!"
-
- para "Or, zap them with"
- line "electricity!"
- done
-
-_CeruleanGymText_5c82f::
- text "You beat MISTY!"
- line "What'd I tell ya?"
-
- para "You and me kid,"
- line "we make a pretty"
- cont "darn good team!"
- done
--- a/text/maps/CeruleanMart.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-_CeruleanMartText2::
- text "Use REPEL to keep"
- line "bugs and weak"
- cont "#MON away."
-
- para "Put your strongest"
- line "#MON at the"
- cont "top of the list"
- cont "for best results!"
- done
-
-_CeruleanMartText3::
- text "Have you seen any"
- line "RARE CANDY?"
-
- para "It's supposed to"
- line "make #MON go"
- cont "up one level!"
- done
--- a/text/maps/CeruleanPokecenter.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-_CeruleanPokecenterText2::
- text "That BILL!"
-
- para "I heard that"
- line "he'll do whatever"
- cont "it takes to get"
- cont "rare #MON!"
- done
-
-_CeruleanPokecenterText3::
- text "Have you heard"
- line "about BILL?"
-
- para "Everyone calls"
- line "him a #MANIAC!"
-
- para "I think people"
- line "are just jealous"
- cont "of BILL, though."
-
- para "Who wouldn't want"
- line "to boast about"
- cont "their #MON?"
- done
--- a/text/maps/CeruleanTradeHouse.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-_CeruleanHouse1Text1::
- text "My husband likes"
- line "trading #MON."
-
- para "If you are a"
- line "collector, would"
- cont "you please trade"
- cont "with him?"
- done
--- a/text/maps/CeruleanTrashedHouse.asm
+++ /dev/null
@@ -1,36 +1,0 @@
-_CeruleanTrashedText_1d6ab::
- text "Those miserable"
- line "ROCKETs!"
-
- para "Look what they"
- line "did here!"
-
- para "They stole a TM"
- line "for teaching"
- cont "#MON how to"
- cont "DIG holes!"
-
- para "That cost me a"
- line "bundle, it did!"
- done
-
-_CeruleanTrashedText_1d6b0::
- text "I figure what's"
- line "lost is lost!"
-
- para "I decided to teach"
- line "DIGLETT how to"
- cont "DIG without a TM!"
- done
-
-_CeruleanHouseTrashedText2::
- text "TEAM ROCKET must"
- line "be trying to DIG"
- cont "their way into no"
- cont "good!"
- done
-
-_CeruleanHouseTrashedText3::
- text "TEAM ROCKET left"
- line "a way out!"
- done
--- a/text/maps/ChampionsRoom.asm
+++ /dev/null
@@ -1,146 +1,0 @@
-_GaryChampionIntroText::
- text "<RIVAL>: Hey!"
-
- para "I was looking"
- line "forward to seeing"
- cont "you, <PLAYER>!"
-
- para "My rival should"
- line "be strong to keep"
- cont "me sharp!"
-
- para "While working on"
- line "#DEX, I looked"
- cont "all over for"
- cont "powerful #MON!"
-
- para "Not only that, I"
- line "assembled teams"
- cont "that would beat"
- cont "any #MON type!"
-
- para "And now!"
-
- para "I'm the #MON"
- line "LEAGUE champion!"
-
- para "<PLAYER>! Do you"
- line "know what that"
- cont "means?"
-
- para "I'll tell you!"
-
- para "I am the most"
- line "powerful trainer"
- cont "in the world!"
- done
-
-_GaryDefeatedText::
- text "NO!"
- line "That can't be!"
- cont "You beat my best!"
-
- para "After all that"
- line "work to become"
- cont "LEAGUE champ?"
-
- para "My reign is over"
- line "already?"
- cont "It's not fair!"
- prompt
-
-_GaryVictoryText::
- text "Hahaha!"
- line "I won, I won!"
-
- para "I'm too good for"
- line "you, <PLAYER>!"
-
- para "You did well to"
- line "even reach me,"
- cont "<RIVAL>, the"
- cont "#MON genius!"
-
- para "Nice try, loser!"
- line "Hahaha!"
- prompt
-
-_GaryText_76103::
- text "Why?"
- line "Why did I lose?"
-
- para "I never made any"
- line "mistakes raising"
- cont "my #MON..."
-
- para "Darn it! You're"
- line "the new #MON"
- cont "LEAGUE champion!"
-
- para "Although I don't"
- line "like to admit it."
- done
-
-_GaryText2::
- text "OAK: <PLAYER>!"
- done
-
-_GaryText_76120::
- text "OAK: So, you won!"
- line "Congratulations!"
- cont "You're the new"
- cont "#MON LEAGUE"
- cont "champion!"
-
- para "You've grown up so"
- line "much since you"
- cont "first left with"
- cont "@"
- TX_RAM wcd6d
- text "!"
-
- para "<PLAYER>, you have"
- line "come of age!"
- done
-
-_GaryText_76125::
- text "OAK: <RIVAL>! I'm"
- line "disappointed!"
-
- para "I came when I"
- line "heard you beat"
- cont "the ELITE FOUR!"
-
- para "But, when I got"
- line "here, you had"
- cont "already lost!"
-
- para "<RIVAL>! Do you"
- line "understand why"
- cont "you lost?"
-
- para "You have forgotten"
- line "to treat your"
- cont "#MON with"
- cont "trust and love!"
-
- para "Without them, you"
- line "will never become"
- cont "a champ again!"
- done
-
-_GaryText_7612a::
- text "OAK: <PLAYER>!"
-
- para "You understand"
- line "that your victory"
- cont "was not just your"
- cont "own doing!"
-
- para "The bond you share"
- line "with your #MON"
- cont "is marvelous!"
-
- para "<PLAYER>!"
- line "Come with me!"
- done
--- a/text/maps/CinnabarGym.asm
+++ /dev/null
@@ -1,210 +1,0 @@
-_BlaineBattleText::
- text "Hah!"
-
- para "I am BLAINE! I"
- line "am the LEADER of"
- cont "CINNABAR GYM!"
-
- para "My fiery #MON"
- line "will incinerate"
- cont "all challengers!"
-
- para "Hah! You better"
- line "have BURN HEAL!"
- done
-
-_BlaineEndBattleText::
- text "I have"
- line "burnt out!"
-
- para "You have earned"
- line "the VOLCANOBADGE!@@"
-
-_BlaineFireBlastText::
- text "FIRE BLAST is the"
- line "ultimate fire"
- cont "technique!"
-
- para "Don't waste it on"
- line "water #MON!"
- done
-
-_BlaineBadgeText::
- text "Hah!"
-
- para "The VOLCANOBADGE"
- line "heightens the"
- cont "SPECIAL abilities"
- cont "of your #MON!"
-
- para "Here, you can"
- line "have this too!"
- done
-
-_ReceivedTM38Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM38ExplanationText::
- text ""
-
- para "TM38 contains"
- line "FIRE BLAST!"
-
- para "Teach it to fire-"
- line "type #MON!"
-
- para "CHARMELEON or"
- line "PONYTA would be"
- cont "good bets!"
- done
-
-_TM38NoRoomText::
- text "Make room for my"
- line "gift!"
- done
-
-_CinnabarGymText_7595f::
- text "Do you know how"
- line "hot #MON fire"
- cont "breath can get?"
- done
-
-_CinnabarGymText_75964::
- text "Yow!"
- line "Hot, hot, hot!"
- prompt
-
-_CinnabarGymText_75969::
- text "Fire, or to be"
- line "more precise,"
- cont "combustion..."
-
- para "Blah, blah, blah,"
- line "blah..."
- done
-
-_CinnabarGymText_75994::
- text "I was a thief, but"
- line "I became straight"
- cont "as a trainer!"
- done
-
-_CinnabarGymText_75999::
- text "I"
- line "surrender!"
- prompt
-
-_CinnabarGymText_7599e::
- text "I can't help"
- line "stealing other"
- cont "people's #MON!"
- done
-
-_CinnabarGymText_759c9::
- text "You can't win!"
- line "I have studied"
- cont "#MON totally!"
- done
-
-_CinnabarGymText_759ce::
- text "Waah!"
- line "My studies!"
- prompt
-
-_CinnabarGymText_759d3::
- text "My theories are"
- line "too complicated"
- cont "for you!"
- done
-
-_CinnabarGymText_759fe::
- text "I just like using"
- line "fire #MON!"
- done
-
-_CinnabarGymText_75a03::
- text "Too hot"
- line "to handle!"
- prompt
-
-_CinnabarGymText_75a08::
- text "I wish there was"
- line "a thief #MON!"
- cont "I'd use that!"
- done
-
-_CinnabarGymText_75a33::
- text "I know why BLAINE"
- line "became a trainer!"
- done
-
-_CinnabarGymText_75a38::
- text "Ow!"
- prompt
-
-_CinnabarGymText_75a3d::
- text "BLAINE was lost"
- line "in the mountains"
- cont "when a fiery bird"
- cont "#MON appeared."
-
- para "Its light enabled"
- line "BLAINE to find"
- cont "his way down!"
- done
-
-_CinnabarGymText_75a68::
- text "I've been to many"
- line "GYMs, but this is"
- cont "my favorite!"
- done
-
-_CinnabarGymText_75a6d::
- text "Yowza!"
- line "Too hot!"
- prompt
-
-_CinnabarGymText_75a72::
- text "Us fire #MON"
- line "fans like PONYTA"
- cont "and NINETALES!"
- done
-
-_CinnabarGymText_75a9d::
- text "Fire is weak"
- line "against H2O!"
- done
-
-_CinnabarGymText_75aa2::
- text "Oh!"
- line "Snuffed out!"
- prompt
-
-_CinnabarGymText_75aa7::
- text "Water beats fire!"
- line "But, fire melts"
- cont "ice #MON!"
- done
-
-_CinnabarGymText_75ac2::
- text "Yo! Champ in"
- line "making!"
-
- para "The hot-headed"
- line "BLAINE is a fire"
- cont "#MON pro!"
-
- para "Douse his spirits"
- line "with water!"
-
- para "You better take"
- line "some BURN HEALs!"
- done
-
-_CinnabarGymText_75ac7::
- text "<PLAYER>! You beat"
- line "that fire brand!"
- done
--- a/text/maps/CinnabarIsland.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-_CinnabarIslandText8::
- text "The door is"
- line "locked..."
- done
-
-_CinnabarIslandText1::
- text "CINNABAR GYM's"
- line "BLAINE is an odd"
- cont "man who has lived"
- cont "here for decades."
- done
-
-_CinnabarIslandText2::
- text "Scientists conduct"
- line "experiments in"
- cont "the burned out"
- cont "building."
- done
-
-_CinnabarIslandText3::
- text "CINNABAR ISLAND"
- line "The Fiery Town of"
- cont "Burning Desire"
- done
-
-_CinnabarIslandText6::
- text "#MON LAB"
- done
-
-_CinnabarIslandText7::
- text "CINNABAR ISLAND"
- line "#MON GYM"
- cont "LEADER: BLAINE"
-
- para "The Hot-Headed"
- line "Quiz Master!"
- done
--- a/text/maps/CinnabarLab.asm
+++ /dev/null
@@ -1,29 +1,0 @@
-_Lab1Text1::
- text "We study #MON"
- line "extensively here."
-
- para "People often bring"
- line "us rare #MON"
- cont "for examination."
- done
-
-_Lab1Text2::
- text "A photo of the"
- line "LAB's founder,"
- cont "DR.FUJI!"
- done
-
-_Lab1Text3::
- text "#MON LAB"
- line "Meeting Room"
- done
-
-_Lab1Text4::
- text "#MON LAB"
- line "R-and-D Room"
- done
-
-_Lab1Text5::
- text "#MON LAB"
- line "Testing Room"
- done
--- a/text/maps/CinnabarLabFossilRoom.asm
+++ /dev/null
@@ -1,78 +1,0 @@
-_Lab4Text_75dc6::
- text "Hiya!"
-
- para "I am important"
- line "doctor!"
-
- para "I study here rare"
- line "#MON fossils!"
-
- para "You! Have you a"
- line "fossil for me?"
- prompt
-
-_Lab4Text_75dcb::
- text "No! Is too bad!"
- done
-
-_Lab4Text_75dd0::
- text "I take a little"
- line "time!"
-
- para "You go for walk a"
- line "little while!"
- done
-
-_Lab4Text_75dd5::
- text "Where were you?"
-
- para "Your fossil is"
- line "back to life!"
-
- para "It was @"
- TX_RAM wcf4b
- text ""
- line "like I think!"
- prompt
-
-_Lab4Text_610ae::
- text "Oh! That is"
- line "@"
- TX_RAM wcd6d
- text "!"
-
- para "It is fossil of"
- line "@"
- TX_RAM wcf4b
- text ", a"
- cont "#MON that is"
- cont "already extinct!"
-
- para "My Resurrection"
- line "Machine will make"
- cont "that #MON live"
- cont "again!"
- done
-
-_Lab4Text_610b3::
- text "So! You hurry and"
- line "give me that!"
-
- para "<PLAYER> handed"
- line "over @"
- TX_RAM wcd6d
- text "!"
- prompt
-
-_Lab4Text_610b8::
- text "I take a little"
- line "time!"
-
- para "You go for walk a"
- line "little while!"
- done
-
-_Lab4Text_610bd::
- text "Aiyah! You come"
- line "again!"
- done
--- a/text/maps/CinnabarLabMetronomeRoom.asm
+++ /dev/null
@@ -1,63 +1,0 @@
-_TM35PreReceiveText::
- text "Tch-tch-tch!"
- line "I made a cool TM!"
-
- para "It can cause all"
- line "kinds of fun!"
- prompt
-
-_ReceivedTM35Text::
- text "<PLAYER> received "
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM35ExplanationText::
- text "Tch-tch-tch!"
- line "That's the sound"
- cont "of a METRONOME!"
-
- para "It tweaks your"
- line "#MON's brain"
- cont "into using moves"
- cont "it doesn't know!"
- done
-
-_TM35NoRoomText::
- text "Your pack is"
- line "crammed full!"
- done
-
-_Lab3Text2::
- text "EEVEE can evolve"
- line "into 1 of 3 kinds"
- cont "of #MON."
- done
-
-_Lab3Text3::
- text "There's an e-mail"
- line "message!"
-
- para "..."
-
- para "The 3 legendary"
- line "bird #MON are"
- cont "ARTICUNO, ZAPDOS"
- cont "and MOLTRES."
-
- para "Their whereabouts"
- line "are unknown."
-
- para "We plan to explore"
- line "the cavern close"
- cont "to CERULEAN."
-
- para "From: #MON"
- line "RESEARCH TEAM"
-
- para "..."
- done
-
-_Lab3Text5::
- text "An amber pipe!"
- done
--- a/text/maps/CinnabarLabTradeRoom.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-_Lab2Text1::
- text "I found this very"
- line "strange fossil in"
- cont "MT.MOON!"
-
- para "I think it's a"
- line "rare, prehistoric"
- cont "#MON!"
- done
--- a/text/maps/CinnabarMart.asm
+++ /dev/null
@@ -1,10 +1,0 @@
-_CinnabarMartText2::
- text "Don't they have X"
- line "ATTACK? It's good"
- cont "for battles!"
- done
-
-_CinnabarMartText3::
- text "It never hurts to"
- line "have extra items!"
- done
--- a/text/maps/CinnabarPokecenter.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-_CinnabarPokecenterText2::
- text "You can cancel"
- line "evolution."
-
- para "When a #MON is"
- line "evolving, you can"
- cont "stop it and leave"
- cont "it the way it is."
- done
-
-_CinnabarPokecenterText3::
- text "Do you have any"
- line "friends?"
-
- para "#MON you get"
- line "in trades grow"
- cont "very quickly."
-
- para "I think it's"
- line "worth a try!"
- done
--- a/text/maps/CopycatsHouse1F.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-_CopycatsHouse1FText1::
- text "My daughter is so"
- line "self-centered."
- cont "She only has a"
- cont "few friends."
- done
-
-_CopycatsHouse1FText2::
- text "My daughter likes"
- line "to mimic people."
-
- para "Her mimicry has"
- line "earned her the"
- cont "nickname COPYCAT"
- cont "around here!"
- done
-
-_CopycatsHouse1FText3::
- text "CHANSEY: Chaan!"
- line "Sii!@@"
--- a/text/maps/CopycatsHouse2F.asm
+++ /dev/null
@@ -1,97 +1,0 @@
-_CopycatsHouse2FText_5ccd4::
- text "<PLAYER>: Hi! Do"
- line "you like #MON?"
-
- para "<PLAYER>: Uh no, I"
- line "just asked you."
-
- para "<PLAYER>: Huh?"
- line "You're strange!"
-
- para "COPYCAT: Hmm?"
- line "Quit mimicking?"
-
- para "But, that's my"
- line "favorite hobby!"
- prompt
-
-_TM31PreReceiveText::
- text "Oh wow!"
- line "A # DOLL!"
-
- para "For me?"
- line "Thank you!"
-
- para "You can have"
- line "this, then!"
- prompt
-
-_ReceivedTM31Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM31ExplanationText1::
- text ""
-
- para "TM31 contains my"
- line "favorite, MIMIC!"
-
- para "Use it on a good"
- line "#MON!@@"
-
-_TM31ExplanationText2::
- text "<PLAYER>: Hi!"
- line "Thanks for TM31!"
-
- para "<PLAYER>: Pardon?"
-
- para "<PLAYER>: Is it"
- line "that fun to mimic"
- cont "my every move?"
-
- para "COPYCAT: You bet!"
- line "It's a scream!"
- done
-
-_TM31NoRoomText::
- text "Don't you want"
- line "this?@@"
-
-_CopycatsHouse2FText2::
- text "DODUO: Giiih!"
-
- para "MIRROR MIRROR ON"
- line "THE WALL, WHO IS"
- cont "THE FAIREST ONE"
- cont "OF ALL?"
- done
-
-_CopycatsHouse2FText3::
- text "This is a rare"
- line "#MON! Huh?"
- cont "It's only a doll!"
- done
-
-_CopycatsHouse2FText6::
- text "A game with MARIO"
- line "wearing a bucket"
- cont "on his head!"
- done
-
-_CopycatsHouse2FText_5cd17::
- text "..."
-
- para "My Secrets!"
-
- para "Skill: Mimicry!"
- line "Hobby: Collecting"
- cont "dolls!"
- cont "Favorite #MON:"
- cont "CLEFAIRY!"
- done
-
-_CopycatsHouse2FText_5cd1c::
- text "Huh? Can't see!"
- done
--- a/text/maps/Daycare.asm
+++ /dev/null
@@ -1,62 +1,0 @@
-_DayCareIntroText::
- text "I run a DAYCARE."
- line "Would you like me"
- cont "to raise one of"
- cont "your #MON?"
- done
-
-_DayCareWhichMonText::
- text "Which #MON"
- line "should I raise?"
- prompt
-
-_DayCareWillLookAfterMonText::
- text "Fine, I'll look"
- line "after @"
- TX_RAM wcd6d
- text ""
- cont "for a while."
- prompt
-
-_DayCareComeSeeMeInAWhileText::
- text "Come see me in"
- line "a while."
- done
-
-_DayCareMonHasGrownText::
- text "Your @"
- TX_RAM wcd6d
- text ""
- line "has grown a lot!"
-
- para "By level, it's"
- line "grown by @"
- TX_NUM wDayCareNumLevelsGrown,$1,$3
- text "!"
-
- para "Aren't I great?"
- prompt
-
-_DayCareOweMoneyText::
- text "You owe me ¥@"
- TX_BCD wDayCareTotalCost, $c2
- text ""
- line "for the return"
- cont "of this #MON."
- done
-
-_DayCareGotMonBackText::
- text "<PLAYER> got"
- line "@"
- TX_RAM wDayCareMonName
- text " back!"
- done
-
-_DayCareMonNeedsMoreTimeText::
- text "Back already?"
- line "Your @"
- TX_RAM wcd6d
- text ""
- cont "needs some more"
- cont "time with me."
- prompt
--- a/text/maps/Daycare_2.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-_DayCareAllRightThenText::
- text "All right then,"
- line "@@"
-
-_DayCareComeAgainText::
- text "come again."
- done
-
-_DayCareNoRoomForMonText::
- text "You have no room"
- line "for this #MON!"
- done
-
-_DayCareOnlyHaveOneMonText::
- text "You only have one"
- line "#MON with you."
- done
-
-_DayCareCantAcceptMonWithHMText::
- text "I can't accept a"
- line "#MON that"
- cont "knows an HM move."
- done
-
-_DayCareHeresYourMonText::
- text "Thank you! Here's"
- line "your #MON!"
- prompt
-
-_DayCareNotEnoughMoneyText::
- text "Hey, you don't"
- line "have enough ¥!"
- done
--- a/text/maps/DiglettsCaveRoute11.asm
+++ /dev/null
@@ -1,8 +1,0 @@
-_DiglettsCaveEntRoute11Text1::
- text "What a surprise!"
- line "DIGLETTs dug this"
- cont "long tunnel!"
-
- para "It goes right to"
- line "VIRIDIAN CITY!"
- done
--- a/text/maps/DiglettsCaveRoute2.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-_DiglettsCaveRoute2Text1::
- text "I went to ROCK"
- line "TUNNEL, but it's"
- cont "dark and scary."
-
- para "If a #MON's"
- line "FLASH could light"
- cont "it up..."
- done
--- a/text/maps/FightingDojo.asm
+++ /dev/null
@@ -1,130 +1,0 @@
-_FightingDojoText_5ce8e::
- text "Grunt!"
-
- para "I am the KARATE"
- line "MASTER! I am the"
- cont "LEADER here!"
-
- para "You wish to"
- line "challenge us?"
- cont "Expect no mercy!"
-
- para "Fwaaa!"
- done
-
-_FightingDojoText_5ce93::
- text "Hwa!"
- line "Arrgh! Beaten!"
- prompt
-
-_FightingDojoText_5ce98::
- text "Indeed, I have"
- line "lost!"
-
- para "But, I beseech"
- line "you, do not take"
- cont "our emblem as"
- cont "your trophy!"
-
- para "In return, I will"
- line "give you a prized"
- cont "fighting #MON!"
-
- para "Choose whichever"
- line "one you like!"
- done
-
-_FightingDojoText_5ce9d::
- text "Ho!"
-
- para "Stay and train at"
- line "Karate with us!"
- done
-
-_FightingDojoBattleText1::
- text "Hoargh! Take your"
- line "shoes off!"
- done
-
-_FightingDojoEndBattleText1::
- text "I give"
- line "up!"
- prompt
-
-_FightingDojoAfterBattleText1::
- text "You wait 'til you"
- line "see our Master!"
-
- para "I'm a small fry"
- line "compared to him!"
- done
-
-_FightingDojoBattleText2::
- text "I hear you're"
- line "good! Show me!"
- done
-
-_FightingDojoEndBattleText2::
- text "Judge!"
- line "1 point!"
- prompt
-
-_FightingDojoAfterBattleText2::
- text "Our Master is a"
- line "pro fighter!"
- done
-
-_FightingDojoBattleText3::
- text "Nothing tough"
- line "frightens me!"
-
- para "I break boulders"
- line "for training!"
- done
-
-_FightingDojoEndBattleText3::
- text "Yow!"
- line "Stubbed fingers!"
- prompt
-
-_FightingDojoAfterBattleText3::
- text "The only thing"
- line "that frightens us"
- cont "is psychic power!"
- done
-
-_FightingDojoBattleText4::
- text "Hoohah!"
-
- para "You're trespassing"
- line "in our FIGHTING"
- cont "DOJO!"
- done
-
-_FightingDojoEndBattleText4::
- text "Oof!"
- line "I give up!"
- prompt
-
-_FightingDojoAfterBattleText4::
- text "The prime fighters"
- line "across the land"
- cont "train here."
- done
-
-_WantHitmonleeText::
- text "You want the"
- line "hard kicking"
- cont "HITMONLEE?"
- done
-
-_WantHitmonchanText::
- text "You want the"
- line "piston punching"
- cont "HITMONCHAN?"
- done
-
-_OtherHitmonText::
- text "Better not get"
- line "greedy..."
- done
--- a/text/maps/FuchsiaBillsGrandpasHouse.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-_FuchsiaHouse1Text1::
- text "SAFARI ZONE's"
- line "WARDEN is old,"
- cont "but still active!"
-
- para "All his teeth are"
- line "false, though."
- done
-
-_FuchsiaHouse1Text2::
- text "Hmm? You've met"
- line "BILL?"
-
- para "He's my grandson!"
-
- para "He always liked"
- line "collecting things"
- cont "even as a child!"
- done
-
-_FuchsiaHouse1Text3::
- text "BILL files his"
- line "own #MON data"
- cont "on his PC!"
-
- para "Did he show you?"
- done
--- a/text/maps/FuchsiaCity.asm
+++ /dev/null
@@ -1,119 +1,0 @@
-_FuchsiaCityText1::
- text "Did you try the"
- line "SAFARI GAME? Some"
- cont "#MON can only"
- cont "be caught there."
- done
-
-_FuchsiaCityText2::
- text "SAFARI ZONE has a"
- line "zoo in front of"
- cont "the entrance."
-
- para "Out back is the"
- line "SAFARI GAME for"
- cont "catching #MON."
- done
-
-_FuchsiaCityText3::
- text "ERIK: Where's"
- line "SARA? I said I'd"
- cont "meet her here."
- done
-
-_FuchsiaCityText4::
- text "That item ball in"
- line "there is really a"
- cont "#MON."
- done
-
-_FuchsiaCityText5::
- text "!"
- done
-
-_FuchsiaCityText11::
- text "FUCHSIA CITY"
- line "Behold! It's"
- cont "Passion Pink!"
- done
-
-_FuchsiaCityText13::
- text "SAFARI GAME"
- line "#MON-U-CATCH!"
- done
-
-_FuchsiaCityText16::
- text "SAFARI ZONE"
- line "WARDEN's HOME"
- done
-
-_FuchsiaCityText17::
- text "#MON PARADISE"
- line "SAFARI ZONE"
- done
-
-_FuchsiaCityText18::
- text "FUCHSIA CITY"
- line "#MON GYM"
- cont "LEADER: KOGA"
-
- para "The Poisonous"
- line "Ninja Master"
- done
-
-_FuchsiaCityChanseyText::
- text "Name: CHANSEY"
-
- para "Catching one is"
- line "all up to chance."
- prompt
-
-_FuchsiaCityVoltorbText::
- text "Name: VOLTORB"
-
- para "The very image of"
- line "a # BALL."
- prompt
-
-_FuchsiaCityKangaskhanText::
- text "Name: KANGASKHAN"
-
- para "A maternal #MON"
- line "that raises its"
- cont "young in a pouch"
- cont "on its belly."
- prompt
-
-_FuchsiaCitySlowpokeText::
- text "Name: SLOWPOKE"
-
- para "Friendly and very"
- line "slow moving."
- prompt
-
-_FuchsiaCityLaprasText::
- text "Name: LAPRAS"
-
- para "A.K.A. the king"
- line "of the seas."
- prompt
-
-_FuchsiaCityOmanyteText::
- text "Name: OMANYTE"
-
- para "A #MON that"
- line "was resurrected"
- cont "from a fossil."
- prompt
-
-_FuchsiaCityKabutoText::
- text "Name: KABUTO"
-
- para "A #MON that"
- line "was resurrected"
- cont "from a fossil."
- prompt
-
-_FuchsiaCityText_19b2a::
- text "..."
- done
--- a/text/maps/FuchsiaGoodRodHouse.asm
+++ /dev/null
@@ -1,43 +1,0 @@
-_FuchsiaHouse3Text_561bd::
- text "I'm the FISHING"
- line "GURU's older"
- cont "brother!"
-
- para "I simply Looove"
- line "fishing!"
-
- para "Do you like to"
- line "fish?"
- done
-
-_FuchsiaHouse3Text_561c2::
- text "Grand! I like"
- line "your style!"
-
- para "Take this and"
- line "fish, young one!"
-
- para "<PLAYER> received"
- line "a @"
- TX_RAM wcf4b
- text "!@@"
-
-_FuchsiaHouse3Text_56212::
- text "Oh... That's so"
- line "disappointing..."
- done
-
-_FuchsiaHouse3Text_56217::
- text "Hello there,"
- line "<PLAYER>!"
-
- para "How are the fish"
- line "biting?"
- done
-
-_FuchsiaHouse3Text_5621c::
- text "Oh no!"
-
- para "You have no room"
- line "for my gift!"
- done
--- a/text/maps/FuchsiaGym.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-_KogaBeforeBattleText::
- text "KOGA: Fwahahaha!"
-
- para "A mere child like"
- line "you dares to"
- cont "challenge me?"
-
- para "Very well, I"
- line "shall show you"
- cont "true terror as a"
- cont "ninja master!"
-
- para "You shall feel"
- line "the despair of"
- cont "poison and sleep"
- cont "techniques!"
- done
-
-_KogaAfterBattleText::
- text "Humph!"
- line "You have proven"
- cont "your worth!"
-
- para "Here! Take the"
- line "SOULBADGE!"
- prompt
--- a/text/maps/FuchsiaGym_2.asm
+++ /dev/null
@@ -1,193 +1,0 @@
-_KogaExplainToxicText::
- text "When afflicted by"
- line "TOXIC, #MON"
- cont "suffer more and"
- cont "more as battle"
- cont "progresses!"
-
- para "It will surely"
- line "terrorize foes!"
- done
-
-_FuchsiaGymText9::
- text "Now that you have"
- line "the SOULBADGE,"
- cont "the DEFENSE of"
- cont "your #MON"
- cont "increases!"
-
- para "It also lets you"
- line "SURF outside of"
- cont "battle!"
-
- para "Ah! Take this"
- line "too!"
- done
-
-_ReceivedTM06Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM06ExplanationText::
- text ""
- para "TM06 contains"
- line "TOXIC!"
-
- para "It is a secret"
- line "technique over"
- cont "400 years old!"
- done
-
-_TM06NoRoomText::
- text "Make space for"
- line "this, child!"
- done
-
-_FuchsiaGymBattleText1::
- text "Strength isn't"
- line "the key for"
- cont "#MON!"
-
- para "It's strategy!"
-
- para "I'll show you how"
- line "strategy can beat"
- cont "brute strength!"
- done
-
-_FuchsiaGymEndBattleText1::
- text "What?"
- line "Extraordinary!"
- prompt
-
-_FuchsiaGymAfterBattleText1::
- text "So, you mix brawn"
- line "with brains?"
- cont "Good strategy!"
- done
-
-_FuchsiaGymBattleText2::
- text "I wanted to become"
- line "a ninja, so I"
- cont "joined this GYM!"
- done
-
-_FuchsiaGymEndBattleText2::
- text "I'm done"
- line "for!"
- prompt
-
-_FuchsiaGymAfterBattleText2::
- text "I will keep on"
- line "training under"
- cont "KOGA, my ninja"
- cont "master!"
- done
-
-_FuchsiaGymBattleText3::
- text "Let's see you"
- line "beat my special"
- cont "techniques!"
- done
-
-_FuchsiaGymEndBattleText3::
- text "You"
- line "had me fooled!"
- prompt
-
-_FuchsiaGymAfterBattleText3::
- text "I like poison and"
- line "sleep techniques,"
- cont "as they linger"
- cont "after battle!"
- done
-
-_FuchsiaGymBattleText4::
- text "Stop right there!"
-
- para "Our invisible"
- line "walls have you"
- cont "frustrated?"
- done
-
-_FuchsiaGymEndBattleText4::
- text "Whoa!"
- line "He's got it!"
- prompt
-
-_FuchsiaGymAfterBattleText4::
- text "You impressed me!"
- line "Here's a hint!"
-
- para "Look very closely"
- line "for gaps in the"
- cont "invisible walls!"
- done
-
-_FuchsiaGymBattleText5::
- text "I also study the"
- line "way of the ninja"
- cont "with master KOGA!"
-
- para "Ninja have a long"
- line "history of using"
- cont "animals!"
- done
-
-_FuchsiaGymEndBattleText5::
- text "Awoo!"
- prompt
-
-_FuchsiaGymAfterBattleText5::
- text "I still have much"
- line "to learn!"
- done
-
-_FuchsiaGymBattleText6::
- text "Master KOGA comes"
- line "from a long line"
- cont "of ninjas!"
-
- para "What did you"
- line "descend from?"
- done
-
-_FuchsiaGymEndBattleText6::
- text "Dropped"
- line "my balls!"
- prompt
-
-_FuchsiaGymAfterBattleText6::
- text "Where there is"
- line "light, there is"
- cont "shadow!"
-
- para "Light and shadow!"
- line "Which do you"
- cont "choose?"
- done
-
-_FuchsiaGymText_7564e::
- text "Yo! Champ in"
- line "making!"
-
- para "FUCHSIA GYM is"
- line "riddled with"
- cont "invisible walls!"
-
- para "KOGA might appear"
- line "close, but he's"
- cont "blocked off!"
-
- para "You have to find"
- line "gaps in the walls"
- cont "to reach him!"
- done
-
-_FuchsiaGymText_75653::
- text "It's amazing how"
- line "ninja can terrify"
- cont "even now!"
- done
--- a/text/maps/FuchsiaMart.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-_FuchsiaMartText2::
- text "Do you have a"
- line "SAFARI ZONE flag?"
-
- para "What about cards"
- line "or calendars?"
- done
-
-_FuchsiaMartText3::
- text "Did you try X"
- line "SPEED? It speeds"
- cont "up a #MON in"
- cont "battle!"
- done
--- a/text/maps/FuchsiaMeetingRoom.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-_FuchsiaMeetingRoomText1::
- text "We nicknamed the"
- line "WARDEN SLOWPOKE."
-
- para "He and SLOWPOKE"
- line "both look vacant!"
- done
-
-_FuchsiaMeetingRoomText2::
- text "SLOWPOKE is very"
- line "knowledgeable"
- cont "about #MON!"
-
- para "He even has some"
- line "fossils of rare,"
- cont "extinct #MON!"
- done
-
-_FuchsiaMeetingRoomText3::
- text "SLOWPOKE came in,"
- line "but I couldn't"
- cont "understand him."
-
- para "I think he's got"
- line "a speech problem!"
- done
--- a/text/maps/FuchsiaPokecenter.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-_FuchsiaPokecenterText1::
- text "You can't win"
- line "with just one"
- cont "strong #MON."
-
- para "It's tough, but"
- line "you have to raise"
- cont "them evenly."
- done
-
-_FuchsiaPokecenterText3::
- text "There's a narrow"
- line "trail west of"
- cont "VIRIDIAN CITY."
-
- para "It goes to #MON"
- line "LEAGUE HQ."
- cont "The HQ governs"
- cont "all trainers."
- done
--- a/text/maps/GameCorner.asm
+++ /dev/null
@@ -1,186 +1,0 @@
-_CeladonGameCornerText1::
- text "Welcome!"
-
- para "You can exchange"
- line "your coins for"
- cont "fabulous prizes"
- cont "next door."
- done
-
-_CeladonGameCornerText_48d22::
- text "Welcome to ROCKET"
- line "GAME CORNER!"
-
- para "Do you need some"
- line "game coins?"
-
- para "It's ¥1000 for 50"
- line "coins. Would you"
- cont "like some?"
- done
-
-_CeladonGameCornerText_48d27::
- text "Thanks! Here are"
- line "your 50 coins!"
- done
-
-_CeladonGameCornerText_48d2c::
- text "No? Please come"
- line "play sometime!"
- done
-
-_CeladonGameCornerText_48d31::
- text "You can't afford"
- line "the coins!"
- done
-
-_CeladonGameCornerText_48d36::
- text "Oops! Your COIN"
- line "CASE is full."
- done
-
-_CeladonGameCornerText_48d3b::
- text "You don't have a"
- line "COIN CASE!"
- done
-
-_CeladonGameCornerText3::
- text "Keep this quiet."
-
- para "It's rumored that"
- line "this place is run"
- cont "by TEAM ROCKET."
- done
-
-_CeladonGameCornerText4::
- text "I think these"
- line "machines have"
- cont "different odds."
- done
-
-_CeladonGameCornerText_48d9c::
- text "Kid, do you want"
- line "to play?"
- prompt
-
-_Received10CoinsText::
- text "<PLAYER> received"
- line "10 coins!@@"
-
-_CeladonGameCornerText_48da7::
- text "You don't need my"
- line "coins!"
- done
-
-_CeladonGameCornerText_48dac::
- text "Wins seem to come"
- line "and go."
- done
-
-_CeladonGameCornerText6::
- text "I'm having a"
- line "wonderful time!"
- done
-
-_CeladonGameCornerText_48dca::
- text "Hey!"
-
- para "You have better"
- line "things to do,"
- cont "champ in making!"
-
- para "CELADON GYM's"
- line "LEADER is ERIKA!"
- cont "She uses grass-"
- cont "type #MON!"
-
- para "She might appear"
- line "docile, but don't"
- cont "be fooled!"
- done
-
-_CeladonGameCornerText_48dcf::
- text "They offer rare"
- line "#MON that can"
- cont "be exchanged for"
- cont "your coins."
-
- para "But, I just can't"
- line "seem to win!"
- done
-
-_CeladonGameCornerText8::
- text "Games are scary!"
- line "It's so easy to"
- cont "get hooked!"
- done
-
-_CeladonGameCornerText_48e26::
- text "What's up? Want"
- line "some coins?"
- prompt
-
-_Received20CoinsText::
- text "<PLAYER> received"
- line "20 coins!@@"
-
-_CeladonGameCornerText_48e31::
- text "You have lots of"
- line "coins!"
- done
-
-_CeladonGameCornerText_48e36::
- text "Darn! I need more"
- line "coins for the"
- cont "#MON I want!"
- done
-
-_CeladonGameCornerText_48e88::
- text "Hey, what? You're"
- line "throwing me off!"
- cont "Here are some"
- cont "coins, shoo!"
- prompt
-
-_CeladonGameCornerText_48e8d::
- text "<PLAYER> received"
- line "20 coins!@@"
-
-_CeladonGameCornerText_48e93::
- text "You've got your"
- line "own coins!"
- done
-
-_CeladonGameCornerText_48e98::
- text "The trick is to"
- line "watch the reels"
- cont "closely!"
- done
-
-_CeladonGameCornerText_48ece::
- text "I'm guarding this"
- line "poster!"
- cont "Go away, or else!"
- done
-
-_CeladonGameCornerText_48ed3::
- text "Dang!"
- prompt
-
-_CeladonGameCornerText_48ed8::
- text "Our hideout might"
- line "be discovered! I"
- cont "better tell BOSS!"
- done
-
-_CeladonGameCornerText_48f09::
- text "Hey!"
-
- para "A switch behind"
- line "the poster!?"
- cont "Let's push it!@@"
-
-_CeladonGameCornerText_48f19::
- text "Oops! Forgot the"
- line "COIN CASE!"
- done
--- a/text/maps/GameCornerPrizeRoom.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-_CeladonPrizeRoomText1::
- text "I sure do fancy"
- line "that PORYGON!"
-
- para "But, it's hard to"
- line "win at slots!"
- done
-
-_CeladonPrizeRoomText2::
- text "I had a major"
- line "haul today!"
- done
--- a/text/maps/HallOfFame.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-_HallofFameRoomText1::
- text "OAK: Er-hem!"
- line "Congratulations"
- cont "<PLAYER>!"
-
- para "This floor is the"
- line "#MON HALL OF"
- cont "FAME!"
-
- para "#MON LEAGUE"
- line "champions are"
- cont "honored for their"
- cont "exploits here!"
-
- para "Their #MON are"
- line "also recorded in"
- cont "the HALL OF FAME!"
-
- para "<PLAYER>! You have"
- line "endeavored hard"
- cont "to become the new"
- cont "LEAGUE champion!"
-
- para "Congratulations,"
- line "<PLAYER>, you and"
- cont "your #MON are"
- cont "HALL OF FAMERs!"
- done
--- a/text/maps/IndigoPlateauLobby.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-_IndigoPlateauLobbyText2::
- text "Yo! Champ in"
- line "making!"
-
- para "At #MON LEAGUE,"
- line "you have to face"
- cont "the ELITE FOUR in"
- cont "succession."
-
- para "If you lose, you"
- line "have to start all"
- cont "over again! This"
- cont "is it! Go for it!"
- done
-
-_IndigoPlateauLobbyText3::
- text "From here on, you"
- line "face the ELITE"
- cont "FOUR one by one!"
-
- para "If you win, a"
- line "door opens to the"
- cont "next trainer!"
- cont "Good luck!"
- done
--- a/text/maps/LancesRoom.asm
+++ /dev/null
@@ -1,63 +1,0 @@
-_LanceBeforeBattleText::
- text "Ah! I heard about"
- line "you <PLAYER>!"
-
- para "I lead the ELITE"
- line "FOUR! You can"
- cont "call me LANCE the"
- cont "dragon trainer!"
-
- para "You know that"
- line "dragons are"
- cont "mythical #MON!"
-
- para "They're hard to"
- line "catch and raise,"
- cont "but their powers"
- cont "are superior!"
-
- para "They're virtually"
- line "indestructible!"
-
- para "Well, are you"
- line "ready to lose?"
-
- para "Your LEAGUE"
- line "challenge ends"
- cont "with me, <PLAYER>!"
- done
-
-_LanceEndBattleText::
- text "That's it!"
-
- para "I hate to admit"
- line "it, but you are a"
- cont "#MON master!"
- prompt
-
-_LanceAfterBattleText::
- text "I still can't"
- line "believe my"
- cont "dragons lost to"
- cont "you, <PLAYER>!"
-
- para "You are now the"
- line "#MON LEAGUE"
- cont "champion!"
-
- para "...Or, you would"
- line "have been, but"
- cont "you have one more"
- cont "challenge ahead."
-
- para "You have to face"
- line "another trainer!"
- cont "His name is..."
-
- para "<RIVAL>!"
- line "He beat the ELITE"
- cont "FOUR before you!"
-
- para "He is the real"
- line "#MON LEAGUE"
- cont "champion!@@"
--- a/text/maps/LavenderCuboneHouse.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-_LavenderHouse2Text1::
- text "CUBONE: Kyarugoo!@@"
-
-_LavenderHouse2Text_1d9dc::
- text "I hate those"
- line "horrible ROCKETs!"
-
- para "That poor CUBONE's"
- line "mother..."
-
- para "It was killed"
- line "trying to escape"
- cont "from TEAM ROCKET!"
- done
-
-_LavenderHouse2Text_1d9e1::
- text "The GHOST of"
- line "#MON TOWER is"
- cont "gone!"
-
- para "Someone must have"
- line "soothed its"
- cont "restless soul!"
- done
--- a/text/maps/LavenderMart.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-_LavenderMartText2::
- text "I'm searching for"
- line "items that raise"
- cont "the abilities of"
- cont "#MON during a"
- cont "single battle."
-
- para "X ATTACK, X"
- line "DEFEND, X SPEED"
- cont "and X SPECIAL are"
- cont "what I'm after."
-
- para "Do you know where"
- line "I can get them?"
- done
-
-_LavenderMartReviveText::
- text "You know REVIVE?"
- line "It revives any"
- cont "fainted #MON!"
- done
-
-_LavenderMartNuggetText::
- text "I found a NUGGET"
- line "in the mountains."
-
- para "I thought it was"
- line "useless, but it"
- cont "sold for ¥5000!"
- done
--- a/text/maps/LavenderPokecenter.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-_LavenderPokecenterText2::
- text "TEAM ROCKET will"
- line "do anything for"
- cont "the sake of gold!"
- done
-
-_LavenderPokecenterText3::
- text "I saw CUBONE's"
- line "mother die trying"
- cont "to escape from"
- cont "TEAM ROCKET!"
- done
--- a/text/maps/LavenderTown.asm
+++ /dev/null
@@ -1,64 +1,0 @@
-_LavenderTownText_4413c::
- text "Do you believe in"
- line "GHOSTs?"
- done
-
-_LavenderTownText_44141::
- text "Really? So there"
- line "are believers..."
- done
-
-_LavenderTownText_44146::
- text "Hahaha, I guess"
- line "not."
-
- para "That white hand"
- line "on your shoulder,"
- cont "it's not real."
- done
-
-_LavenderTownText2::
- text "This town is known"
- line "as the grave site"
- cont "of #MON."
-
- para "Memorial services"
- line "are held in"
- cont "#MON TOWER."
- done
-
-_LavenderTownText3::
- text "GHOSTs appeared"
- line "in #MON TOWER."
-
- para "I think they're"
- line "the spirits of"
- cont "#MON that the"
- cont "ROCKETs killed."
- done
-
-_LavenderTownText4::
- text "LAVENDER TOWN"
- line "The Noble Purple"
- cont "Town"
- done
-
-_LavenderTownText5::
- text "New SILPH SCOPE!"
-
- para "Make the Invisible"
- line "Plain to See!"
-
- para "SILPH CO."
- done
-
-_LavenderTownText8::
- text "LAVENDER VOLUNTEER"
- line "#MON HOUSE"
- done
-
-_LavenderTownText9::
- text "May the Souls of"
- line "#MON Rest Easy"
- cont "#MON TOWER"
- done
--- a/text/maps/LoreleisRoom.asm
+++ /dev/null
@@ -1,42 +1,0 @@
-_LoreleiBeforeBattleText::
- text "Welcome to"
- line "#MON LEAGUE!"
-
- para "I am LORELEI of"
- line "the ELITE FOUR!"
-
- para "No one can best"
- line "me when it comes"
- cont "to icy #MON!"
-
- para "Freezing moves"
- line "are powerful!"
-
- para "Your #MON will"
- line "be at my mercy"
- cont "when they are"
- cont "frozen solid!"
-
- para "Hahaha!"
- line "Are you ready?"
- done
-
-_LoreleiEndBattleText::
- text "How"
- line "dare you!"
- prompt
-
-_LoreleiAfterBattleText::
- text "You're better"
- line "than I thought!"
- cont "Go on ahead!"
-
- para "You only got a"
- line "taste of #MON"
- cont "LEAGUE power!"
- done
-
-_LoreleiDontRunAwayText::
- text "Someone's voice:"
- line "Don't run away!"
- done
--- a/text/maps/MrFujisHouse.asm
+++ /dev/null
@@ -1,86 +1,0 @@
-_LavenderHouse1Text_1d8d1::
- text "That's odd, MR.FUJI"
- line "isn't here."
- cont "Where'd he go?"
- done
-
-_LavenderHouse1Text_1d8d6::
- text "MR.FUJI had been"
- line "praying alone for"
- cont "CUBONE's mother."
- done
-
-_LavenderHouse1Text_1d8f4::
- text "This is really"
- line "MR.FUJI's house."
-
- para "He's really kind!"
-
- para "He looks after"
- line "abandoned and"
- cont "orphaned #MON!"
- done
-
-_LavenderHouse1Text_1d8f9::
- text "It's so warm!"
- line "#MON are so"
- cont "nice to hug!"
- done
-
-_LavenderHouse1Text3::
- text "PSYDUCK: Gwappa!@@"
-
-_LavenderHouse1Text4::
- text "NIDORINO: Gaoo!@@"
-
-_LavenderHouse1Text_1d94c::
- text "MR.FUJI: <PLAYER>."
-
- para "Your #DEX quest"
- line "may fail without"
- cont "love for your"
- cont "#MON."
-
- para "I think this may"
- line "help your quest."
- prompt
-
-_ReceivedFluteText::
- text "<PLAYER> received"
- line "a @"
- TX_RAM wcf4b
- text "!@@"
-
-_FluteExplanationText::
- text ""
-
- para "Upon hearing #"
- line "FLUTE, sleeping"
- cont "#MON will"
- cont "spring awake."
-
- para "It works on all"
- line "sleeping #MON."
- done
-
-_FluteNoRoomText::
- text "You must make"
- line "room for this!"
- done
-
-_MrFujiAfterFluteText::
- text "MR.FUJI: Has my"
- line "FLUTE helped you?"
- done
-
-_LavenderHouse1Text6::
- text "#MON Monthly"
- line "Grand Prize"
- cont "Drawing!"
-
- para "The application"
- line "form is..."
-
- para "Gone! It's been"
- line "clipped out!"
- done
--- a/text/maps/MrPsychicsHouse.asm
+++ /dev/null
@@ -1,25 +1,0 @@
-_TM29PreReceiveText::
- text "...Wait! Don't"
- line "say a word!"
-
- para "You wanted this!"
- prompt
-
-_ReceivedTM29Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM29ExplanationText::
- text "TM29 is PSYCHIC!"
-
- para "It can lower the"
- line "target's SPECIAL"
- cont "abilities."
- done
-
-_TM29NoRoomText::
- text "Where do you plan"
- line "to put this?"
- done
--- a/text/maps/MtMoon1F.asm
+++ /dev/null
@@ -1,119 +1,0 @@
-_MtMoon1BattleText2::
- text "WHOA! You shocked"
- line "me! Oh, you're"
- cont "just a kid!"
- done
-
-_MtMoon1EndBattleText2::
- text "Wow!"
- line "Shocked again!"
- prompt
-
-_MtMoon1AfterBattleText2::
- text "Kids like you"
- line "shouldn't be"
- cont "here!"
- done
-
-_MtMoon1BattleText3::
- text "Did you come to"
- line "explore too?"
- done
-
-_MtMoon1EndBattleText3::
- text "Losing"
- line "stinks!"
- prompt
-
-_MtMoon1AfterBattleText3::
- text "I came down here"
- line "to show off to"
- cont "girls."
- done
-
-_MtMoon1BattleText4::
- text "Wow! It's way"
- line "bigger in here"
- cont "than I thought!"
- done
-
-_MtMoon1EndBattleText4::
- text "Oh!"
- line "I lost it!"
- prompt
-
-_MtMoon1AfterBattleText4::
- text "How do you get"
- line "out of here?"
- done
-
-_MtMoon1BattleText5::
- text "What! Don't sneak"
- line "up on me!"
- done
-
-_MtMoon1EndBattleText5::
- text "My"
- line "#MON won't do!"
- prompt
-
-_MtMoon1AfterBattleText5::
- text "I have to find"
- line "stronger #MON."
- done
-
-_MtMoon1BattleText6::
- text "What? I'm waiting"
- line "for my friends to"
- cont "find me here."
- done
-
-_MtMoon1EndBattleText6::
- text "I lost?"
- prompt
-
-_MtMoon1AfterBattleText6::
- text "I heard there are"
- line "some very rare"
- cont "fossils here."
- done
-
-_MtMoon1BattleText7::
- text "Suspicious men"
- line "are in the cave."
- cont "What about you?"
- done
-
-_MtMoon1EndBattleText7::
- text "You"
- line "got me!"
- prompt
-
-_MtMoon1AfterBattleText7::
- text "I saw them! I'm"
- line "sure they're from"
- cont "TEAM ROCKET!"
- done
-
-_MtMoon1BattleText8::
- text "Go through this"
- line "cave to get to"
- cont "CERULEAN CITY!"
- done
-
-_MtMoon1EndBattleText8::
- text "I"
- line "lost."
- prompt
-
-_MtMoon1AfterBattleText8::
- text "ZUBAT is tough!"
- line "But, it can be"
- cont "useful if you"
- cont "catch one."
- done
-
-_MtMoon1Text14::
- text "Beware! ZUBAT is"
- line "a blood sucker!"
- done
--- a/text/maps/MtMoonB1F.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-_MtMoonText1::
- text ""
- done
--- a/text/maps/MtMoonB2F.asm
+++ /dev/null
@@ -1,122 +1,0 @@
-_MtMoon3Text_49f24::
- text "You want the"
- line "DOME FOSSIL?"
- done
-
-_MtMoon3Text_49f64::
- text "You want the"
- line "HELIX FOSSIL?"
- done
-
-_MtMoon3Text_49f6f::
- text "<PLAYER> got the"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_MtMoon3Text_49f7f::
- text "Look, you've got"
- line "no room for this.@@"
-
-_MtMoon3Text_49f85::
- text "Hey, stop!"
-
- para "I found these"
- line "fossils! They're"
- cont "both mine!"
- done
-
-_MtMoon3Text_49f8a::
- text "OK!"
- line "I'll share!"
- prompt
-
-_MtMoon3Text_49f8f::
- text "We'll each take"
- line "one!"
- cont "No being greedy!"
- done
-
-_MtMoon3Text_49f94::
- text "Far away, on"
- line "CINNABAR ISLAND,"
- cont "there's a #MON"
- cont "LAB."
-
- para "They do research"
- line "on regenerating"
- cont "fossils."
- done
-
-_MtMoon3Text_49f99::
- text "All right. Then"
- line "this is mine!@@"
-
-_MtMoon3BattleText2::
- text "TEAM ROCKET will"
- line "find the fossils,"
- cont "revive and sell"
- cont "them for cash!"
- done
-
-_MtMoon3EndBattleText2::
- text "Urgh!"
- line "Now I'm mad!"
- prompt
-
-_MtMoon3AfterBattleText2::
- text "You made me mad!"
- line "TEAM ROCKET will"
- cont "blacklist you!"
- done
-
-_MtMoon3BattleText3::
- text "We, TEAM ROCKET,"
- line "are #MON"
- cont "gangsters!"
- done
-
-_MtMoon3EndBattleText3::
- text "I blew"
- line "it!"
- prompt
-
-_MtMoon3AfterBattleText3::
- text "Darn it all! My"
- line "associates won't"
- cont "stand for this!"
- done
-
-_MtMoon3BattleText4::
- text "We're pulling a"
- line "big job here!"
- cont "Get lost, kid!"
- done
-
-_MtMoon3EndBattleText4::
- text "So, you"
- line "are good."
- prompt
-
-_MtMoon3AfterBattleText4::
- text "If you find a"
- line "fossil, give it"
- cont "to me and scram!"
- done
-
-_MtMoon3BattleText5::
- text "Little kids"
- line "should leave"
- cont "grown-ups alone!"
- done
-
-_MtMoon3EndBattleText5::
- text "I'm"
- line "steamed!"
- prompt
-
-_MtMoon3AfterBattleText5::
- text "#MON lived"
- line "here long before"
- cont "people came."
- done
--- a/text/maps/MtMoonPokecenter.asm
+++ /dev/null
@@ -1,48 +1,0 @@
-_MtMoonPokecenterText1::
- text "I've 6 # BALLs"
- line "set in my belt."
-
- para "At most, you can"
- line "carry 6 #MON."
- done
-
-_MtMoonPokecenterText3::
- text "TEAM ROCKET"
- line "attacks CERULEAN"
- cont "citizens..."
-
- para "TEAM ROCKET is"
- line "always in the"
- cont "news!"
- done
-
-_MagikarpSalesmanText1::
- text "MAN: Hello, there!"
- line "Have I got a deal"
- cont "just for you!"
-
- para "I'll let you have"
- line "a swell MAGIKARP"
- cont "for just ¥500!"
- cont "What do you say?"
- done
-
-_MagikarpSalesmanNoText::
- text "No? I'm only"
- line "doing this as a"
- cont "favor to you!"
- done
-
-_MagikarpSalesmanNoMoneyText::
- text "You'll need more"
- line "money than that!"
- done
-
-_MagikarpSalesmanText2::
- text "MAN: Well, I don't"
- line "give refunds!"
- done
-
-_MtMoonPokecenterText5::
- text ""
- done
--- a/text/maps/Museum1F.asm
+++ /dev/null
@@ -1,107 +1,0 @@
-_Museum1FText_5c21a::
- text "Come again!"
- done
-
-_Museum1FText_5c21f::
- text "It's ¥50 for a"
- line "child's ticket."
-
- para "Would you like to"
- line "come in?"
- done
-
-_Museum1FText_5c224::
- text "Right, ¥50!"
- line "Thank you!"
- done
-
-_Museum1FText_5c229::
- text "You don't have"
- line "enough money."
- prompt
-
-_Museum1FText_5c22e::
- text "You can't sneak"
- line "in the back way!"
-
- para "Oh, whatever!"
- line "Do you know what"
- cont "AMBER is?"
- done
-
-_Museum1FText_5c233::
- text "There's a lab"
- line "somewhere trying"
- cont "to resurrect"
- cont "ancient #MON"
- cont "from AMBER."
- done
-
-_Museum1FText_5c238::
- text "AMBER is fossil-"
- line "ized tree sap."
- done
-
-_Museum1FText_5c23d::
- text "Please go to the"
- line "other side!"
- done
-
-_Museum1FText_5c242::
- text "Take plenty of"
- line "time to look!"
- done
-
-_Museum1FText_5c251::
- text "That is one"
- line "magnificent"
- cont "fossil!"
- done
-
-_Museum1FText_5c28e::
- text "Ssh! I think that"
- line "this chunk of"
- cont "AMBER contains"
- cont "#MON DNA!"
-
- para "It would be great"
- line "if #MON could"
- cont "be resurrected"
- cont "from it!"
-
- para "But, my colleagues"
- line "just ignore me!"
-
- para "So I have a favor"
- line "to ask!"
-
- para "Take this to a"
- line "#MON LAB and"
- cont "get it examined!"
- prompt
-
-_ReceivedOldAmberText::
- text "<PLAYER> received"
- line "OLD AMBER!@@"
-
-_Museum1FText_5c299::
- text "Ssh! Get the OLD"
- line "AMBER checked!"
- done
-
-_Museum1FText_5c29e::
- text "You don't have"
- line "space for this!"
- done
-
-_Museum1FText_5c2ad::
- text "We are proud of 2"
- line "fossils of very"
- cont "rare, prehistoric"
- cont "#MON!"
- done
-
-_Museum1FText_5c2bc::
- text "The AMBER is"
- line "clear and gold!"
- done
--- a/text/maps/Museum2F.asm
+++ /dev/null
@@ -1,45 +1,0 @@
-_Museum2FText1::
- text "MOON STONE?"
-
- para "What's so special"
- line "about it?"
- done
-
-_Museum2FText2::
- text "July 20, 1969!"
-
- para "The 1st lunar"
- line "landing!"
-
- para "I bought a color"
- line "TV to watch it!"
- done
-
-_Museum2FText3::
- text "We have a space"
- line "exhibit now."
- done
-
-_Museum2FText4::
- text "I want a PIKACHU!"
- line "It's so cute!"
-
- para "I asked my Daddy"
- line "to catch me one!"
- done
-
-_Museum2FText5::
- text "Yeah, a PIKACHU"
- line "soon, I promise!"
- done
-
-_Museum2FText6::
- text "SPACE SHUTTLE"
- line "COLUMBIA"
- done
-
-_Museum2FText7::
- text "Meteorite that"
- line "fell on MT.MOON."
- cont "(MOON STONE?)"
- done
--- a/text/maps/NameRatersHouse.asm
+++ /dev/null
@@ -1,60 +1,0 @@
-_NameRaterText_1dab3::
- text "Hello, hello!"
- line "I am the official"
- cont "NAME RATER!"
-
- para "Want me to rate"
- line "the nicknames of"
- cont "your #MON?"
- done
-
-_NameRaterText_1dab8::
- text "Which #MON"
- line "should I look at?"
- prompt
-
-_NameRaterText_1dabd::
- TX_RAM wcd6d
- text ", is it?"
- line "That is a decent"
- cont "nickname!"
-
- para "But, would you"
- line "like me to give"
- cont "it a nicer name?"
-
- para "How about it?"
- done
-
-_NameRaterText_1dac2::
- text "Fine! What should"
- line "we name it?"
- prompt
-
-_NameRaterText_1dac7::
- text "OK! This #MON"
- line "has been renamed"
- cont "@"
- TX_RAM wBuffer
- text "!"
-
- para "That's a better"
- line "name than before!"
- done
-
-_NameRaterText_1dacc::
- text "Fine! Come any"
- line "time you like!"
- done
-
-_NameRaterText_1dad1::
- TX_RAM wcd6d
- text ", is it?"
- line "That is a truly"
- cont "impeccable name!"
-
- para "Take good care of"
- line "@"
- TX_RAM wcd6d
- text "!"
- done
--- a/text/maps/OaksLab.asm
+++ /dev/null
@@ -1,477 +1,0 @@
-_OaksLabGaryText1::
- text "<RIVAL>: Yo"
- line "<PLAYER>! Gramps"
- cont "isn't around!"
- done
-
-_OaksLabText40::
- text "<RIVAL>: Heh, I"
- line "don't need to be"
- cont "greedy like you!"
-
- para "Go ahead and"
- line "choose, <PLAYER>!"
- done
-
-_OaksLabText41::
- text "<RIVAL>: My"
- line "#MON looks a"
- cont "lot stronger."
- done
-
-_OaksLabText39::
- text "Those are #"
- line "BALLs. They"
- cont "contain #MON!"
- done
-
-_OaksLabCharmanderText::
- text "So! You want the"
- line "fire #MON,"
- cont "CHARMANDER?"
- done
-
-_OaksLabSquirtleText::
- text "So! You want the"
- line "water #MON,"
- cont "SQUIRTLE?"
- done
-
-_OaksLabBulbasaurText::
- text "So! You want the"
- line "plant #MON,"
- cont "BULBASAUR?"
- done
-
-_OaksLabMonEnergeticText::
- text "This #MON is"
- line "really energetic!"
- prompt
-
-_OaksLabReceivedMonText::
- text "<PLAYER> received"
- line "a @"
- TX_RAM wcd6d
- text "!@@"
-
-_OaksLabLastMonText::
- text "That's PROF.OAK's"
- line "last #MON!"
- done
-
-_OaksLabText_1d2f0::
- text "OAK: Now, <PLAYER>,"
- line "which #MON do"
- cont "you want?"
- done
-
-_OaksLabText_1d2f5::
- text "OAK: If a wild"
- line "#MON appears,"
- cont "your #MON can"
- cont "fight against it!"
- done
-
-_OaksLabText_1d2fa::
- text "OAK: <PLAYER>,"
- line "raise your young"
- cont "#MON by making"
- cont "it fight!"
- done
-
-_OaksLabDeliverParcelText1::
- text "OAK: Oh, <PLAYER>!"
-
- para "How is my old"
- line "#MON?"
-
- para "Well, it seems to"
- line "like you a lot."
-
- para "You must be"
- line "talented as a"
- cont "#MON trainer!"
-
- para "What? You have"
- line "something for me?"
-
- para "<PLAYER> delivered"
- line "OAK's PARCEL.@@"
-
-_OaksLabDeliverParcelText2::
- text ""
- para "Ah! This is the"
- line "custom # BALL"
- cont "I ordered!"
- cont "Thank you!"
- done
-
-_OaksLabAroundWorldText::
- text "#MON around the"
- line "world wait for"
- cont "you, <PLAYER>!"
- done
-
-_OaksLabGivePokeballsText1::
- text "OAK: You can't get"
- line "detailed data on"
- cont "#MON by just"
- cont "seeing them."
-
- para "You must catch"
- line "them! Use these"
- cont "to capture wild"
- cont "#MON."
-
- para "<PLAYER> got 5"
- line "# BALLs!@@"
-
-_OaksLabGivePokeballsText2::
- text ""
- para "When a wild"
- line "#MON appears,"
- cont "it's fair game."
-
- para "Just throw a #"
- line "BALL at it and try"
- line "to catch it!"
-
- para "This won't always"
- line "work, though."
-
- para "A healthy #MON"
- line "could escape. You"
- cont "have to be lucky!"
- done
-
-_OaksLabPleaseVisitText::
- text "OAK: Come see me"
- line "sometimes."
-
- para "I want to know how"
- line "your #DEX is"
- cont "coming along."
- done
-
-_OaksLabText_1d31d::
- text "OAK: Good to see "
- line "you! How is your "
- cont "#DEX coming? "
- cont "Here, let me take"
- cont "a look!"
- prompt
-
-_OaksLabText_1d32c::
- text "It's encyclopedia-"
- line "like, but the"
- cont "pages are blank!"
- done
-
-_OaksLabText8::
- text "?"
- done
-
-_OaksLabText_1d340::
- text "PROF.OAK is the"
- line "authority on"
- cont "#MON!"
-
- para "Many #MON"
- line "trainers hold him"
- cont "in high regard!"
- done
-
-_OaksLabRivalWaitingText::
- text "<RIVAL>: Gramps!"
- line "I'm fed up with"
- cont "waiting!"
- done
-
-_OaksLabChooseMonText::
- text "OAK: <RIVAL>?"
- line "Let me think..."
-
- para "Oh, that's right,"
- line "I told you to"
- cont "come! Just wait!"
-
- para "Here, <PLAYER>!"
-
- para "There are 3"
- line "#MON here!"
-
- para "Haha!"
-
- para "They are inside"
- line "the # BALLs."
-
- para "When I was young,"
- line "I was a serious"
- cont "#MON trainer!"
-
- para "In my old age, I"
- line "have only 3 left,"
- cont "but you can have"
- cont "one! Choose!"
- done
-
-_OaksLabRivalInterjectionText::
- text "<RIVAL>: Hey!"
- line "Gramps! What"
- cont "about me?"
- done
-
-_OaksLabBePatientText::
- text "OAK: Be patient!"
- line "<RIVAL>, you can"
- cont "have one too!"
- done
-
-_OaksLabLeavingText::
- text "OAK: Hey! Don't go"
- line "away yet!"
- done
-
-_OaksLabRivalPickingMonText::
- text "<RIVAL>: I'll take"
- line "this one, then!"
- done
-
-_OaksLabRivalReceivedMonText::
- text "<RIVAL> received"
- line "a @"
- TX_RAM wcd6d
- text "!@@"
-
-_OaksLabRivalChallengeText::
- text "<RIVAL>: Wait"
- line "<PLAYER>!"
- cont "Let's check out"
- cont "our #MON!"
-
- para "Come on, I'll take"
- line "you on!"
- done
-
-_OaksLabText_1d3be::
- text "WHAT?"
- line "Unbelievable!"
- cont "I picked the"
- cont "wrong #MON!"
- prompt
-
-_OaksLabText_1d3c3::
- text "<RIVAL>: Yeah! Am"
- line "I great or what?"
- prompt
-
-_OaksLabRivalToughenUpText::
- text "<RIVAL>: Okay!"
- line "I'll make my"
- cont "#MON fight to"
- cont "toughen it up!"
-
- para "<PLAYER>! Gramps!"
- line "Smell you later!"
- done
-
-_OaksLabText21::
- text "<RIVAL>: Gramps!"
- done
-
-_OaksLabText22::
- text "<RIVAL>: What did"
- line "you call me for?"
- done
-
-_OaksLabText23::
- text "OAK: Oh right! I"
- line "have a request"
- cont "of you two."
- done
-
-_OaksLabText24::
- text "On the desk there"
- line "is my invention,"
- cont "#DEX!"
-
- para "It automatically"
- line "records data on"
- cont "#MON you've"
- cont "seen or caught!"
-
- para "It's a hi-tech"
- line "encyclopedia!"
- done
-
-_OaksLabText25::
- text "OAK: <PLAYER> and"
- line "<RIVAL>! Take"
- cont "these with you!"
-
- para "<PLAYER> got"
- line "#DEX from OAK!@@"
-
-_OaksLabText26::
- text "To make a complete"
- line "guide on all the"
- cont "#MON in the"
- cont "world..."
-
- para "That was my dream!"
-
- para "But, I'm too old!"
- line "I can't do it!"
-
- para "So, I want you two"
- line "to fulfill my"
- cont "dream for me!"
-
- para "Get moving, you"
- line "two!"
-
- para "This is a great"
- line "undertaking in"
- cont "#MON history!"
- done
-
-_OaksLabText27::
- text "<RIVAL>: Alright"
- line "Gramps! Leave it"
- cont "all to me!"
-
- para "<PLAYER>, I hate to"
- line "say it, but I"
- cont "don't need you!"
-
- para "I know! I'll"
- line "borrow a TOWN MAP"
- cont "from my sis!"
-
- para "I'll tell her not"
- line "to lend you one,"
- cont "<PLAYER>! Hahaha!"
- done
-
-_OaksLabText_1d405::
- text "I study #MON as"
- line "PROF.OAK's AIDE."
- done
-
-_OaksLabText_441cc::
- text "#DEX comp-"
- line "letion is:"
-
- para "@"
- TX_NUM hDexRatingNumMonsSeen, 1, 3
- text " #MON seen"
- line "@"
- TX_NUM hDexRatingNumMonsOwned, 1, 3
- text " #MON owned"
-
- para "PROF.OAK's"
- line "Rating:"
- prompt
-
-_OaksLabText_44201::
- text "You still have"
- line "lots to do."
- cont "Look for #MON"
- cont "in grassy areas!"
- done
-
-_OaksLabText_44206::
- text "You're on the"
- line "right track! "
- cont "Get a FLASH HM"
- cont "from my AIDE!"
- done
-
-_OaksLabText_4420b::
- text "You still need"
- line "more #MON!"
- cont "Try to catch"
- cont "other species!"
- done
-
-_OaksLabText_44210::
- text "Good, you're"
- line "trying hard!"
- cont "Get an ITEMFINDER"
- cont "from my AIDE!"
- done
-
-_OaksLabText_44215::
- text "Looking good!"
- line "Go find my AIDE"
- cont "when you get 50!"
- done
-
-_OaksLabText_4421a::
- text "You finally got at"
- line "least 50 species!"
- cont "Be sure to get"
- cont "EXP.ALL from my"
- cont "AIDE!"
- done
-
-_OaksLabText_4421f::
- text "Ho! This is geting"
- line "even better!"
- done
-
-_OaksLabText_44224::
- text "Very good!"
- line "Go fish for some"
- cont "marine #MON!"
- done
-
-_OaksLabText_44229::
- text "Wonderful!"
- line "Do you like to"
- cont "collect things?"
- done
-
-_OaksLabText_4422e::
- text "I'm impressed!"
- line "It must have been"
- cont "difficult to do!"
- done
-
-_OaksLabText_44233::
- text "You finally got at"
- line "least 100 species!"
- cont "I can't believe"
- cont "how good you are!"
- done
-
-_OaksLabText_44238::
- text "You even have the"
- line "evolved forms of"
- cont "#MON! Super!"
- done
-
-_OaksLabText_4423d::
- text "Excellent! Trade"
- line "with friends to"
- cont "get some more!"
- done
-
-_OaksLabText_44242::
- text "Outstanding!"
- line "You've become a"
- cont "real pro at this!"
- done
-
-_OaksLabText_44247::
- text "I have nothing"
- line "left to say!"
- cont "You're the"
- cont "authority now!"
- done
-
-_OaksLabText_4424c::
- text "Your #DEX is"
- line "entirely complete!"
- cont "Congratulations!"
- done
--- a/text/maps/PalletTown.asm
+++ /dev/null
@@ -1,55 +1,0 @@
-_OakAppearsText::
- text "OAK: Hey! Wait!"
- line "Don't go out!@@"
-
-_OakWalksUpText::
- text "OAK: It's unsafe!"
- line "Wild #MON live"
- cont "in tall grass!"
-
- para "You need your own"
- line "#MON for your"
- cont "protection."
- cont "I know!"
-
- para "Here, come with"
- line "me!"
- done
-
-_PalletTownText2::
- text "I'm raising"
- line "#MON too!"
-
- para "When they get"
- line "strong, they can"
- cont "protect me!"
- done
-
-_PalletTownText3::
- text "Technology is"
- line "incredible!"
-
- para "You can now store"
- line "and recall items"
- cont "and #MON as"
- cont "data via PC!"
- done
-
-_PalletTownText4::
- text "OAK #MON"
- line "RESEARCH LAB"
- done
-
-_PalletTownText5::
- text "PALLET TOWN"
- line "Shades of your"
- cont "journey await!"
- done
-
-_PalletTownText6::
- text "<PLAYER>'s house "
- done
-
-_PalletTownText7::
- text "<RIVAL>'s house "
- done
--- a/text/maps/PewterCity.asm
+++ /dev/null
@@ -1,117 +1,0 @@
-_PewterCityText1::
- text "It's rumored that"
- line "CLEFAIRYs came"
- cont "from the moon!"
-
- para "They appeared "
- line "after MOON STONE"
- cont "fell on MT.MOON."
- done
-
-_PewterCityText2::
- text "There aren't many"
- line "serious #MON"
- cont "trainers here!"
-
- para "They're all like"
- line "BUG CATCHERs,"
- cont "but PEWTER GYM's"
- cont "BROCK is totally"
- cont "into it!"
- done
-
-_PewterCityText_193f1::
- text "Did you check out"
- line "the MUSEUM?"
- done
-
-_PewterCityText_193f6::
- text "Weren't those"
- line "fossils from MT."
- cont "MOON amazing?"
- done
-
-_PewterCityText_193fb::
- text "Really?"
- line "You absolutely"
- cont "have to go!"
- done
-
-_PewterCityText13::
- text "It's right here!"
- line "You have to pay"
- cont "to get in, but"
- cont "it's worth it!"
- cont "See you around!"
- done
-
-_PewterCityText_19427::
- text "Psssst!"
- line "Do you know what"
- cont "I'm doing?"
- done
-
-_PewterCityText_1942c::
- text "That's right!"
- line "It's hard work!"
- done
-
-_PewterCityText_19431::
- text "I'm spraying REPEL"
- line "to keep #MON"
- cont "out of my garden!"
- done
-
-_PewterCityText_1945d::
- text "You're a trainer"
- line "right? BROCK's"
- cont "looking for new"
- cont "challengers!"
- cont "Follow me!"
- done
-
-_PewterCityText14::
- text "If you have the"
- line "right stuff, go"
- cont "take on BROCK!"
- done
-
-_PewterCityText6::
- text "TRAINER TIPS"
-
- para "Any #MON that"
- line "takes part in"
- cont "battle, however"
- cont "short, earns EXP!"
- done
-
-_PewterCityText7::
- text "NOTICE!"
-
- para "Thieves have been"
- line "stealing #MON"
- cont "fossils at MT."
- cont "MOON! Please call"
- cont "PEWTER POLICE"
- cont "with any info!"
- done
-
-_PewterCityText10::
- text "PEWTER MUSEUM"
- line "OF SCIENCE"
- done
-
-_PewterCityText11::
- text "PEWTER CITY"
- line "#MON GYM"
- cont "LEADER: BROCK"
-
- para "The Rock Solid"
- line "#MON Trainer!"
- done
-
-_PewterCityText12::
- text "PEWTER CITY"
- line "A Stone Gray"
- cont "City"
- done
--- a/text/maps/PewterGym.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-_PewterGymText_5c49e::
- text "I'm BROCK!"
- line "I'm PEWTER's GYM"
- cont "LEADER!"
-
- para "I believe in rock"
- line "hard defense and"
- cont "determination!"
-
- para "That's why my"
- line "#MON are all"
- cont "the rock-type!"
-
- para "Do you still want"
- line "to challenge me?"
- cont "Fine then! Show"
- cont "me your best!"
- done
--- a/text/maps/PewterGym_2.asm
+++ /dev/null
@@ -1,144 +1,0 @@
-_PewterGymText_5c4a3::
- text "There are all"
- line "kinds of trainers"
- cont "in the world!"
-
- para "You appear to be"
- line "very gifted as a"
- cont "#MON trainer!"
-
- para "Go to the GYM in"
- line "CERULEAN and test"
- cont "your abilities!"
- done
-
-_TM34PreReceiveText::
- text "Wait! Take this"
- line "with you!"
- done
-
-_ReceivedTM34Text::
- text "<PLAYER> received"
- line "TM34!@@"
-
-_TM34ExplanationText::
- text ""
-
- para "A TM contains a"
- line "technique that"
- cont "can be taught to"
- cont "#MON!"
-
- para "A TM is good only"
- line "once! So when you"
- cont "use one to teach"
- cont "a new technique,"
- cont "pick the #MON"
- cont "carefully!"
-
- para "TM34 contains"
- line "BIDE!"
-
- para "Your #MON will"
- line "absorb damage in"
- cont "battle then pay"
- cont "it back double!"
- done
-
-_TM34NoRoomText::
- text "You don't have"
- line "room for this!"
- done
-
-_PewterGymText_5c4bc::
- text "I took"
- line "you for granted."
-
- para "As proof of your"
- line "victory, here's"
- cont "the BOULDERBADGE!"
-
- para "<PLAYER> received"
- line "the BOULDERBADGE!@@"
-
-_PewterGymText_5c4c1::
- text ""
-
- para "That's an official"
- line "#MON LEAGUE"
- cont "BADGE!"
-
- para "Its bearer's"
- line "#MON become"
- cont "more powerful!"
-
- para "The technique"
- line "FLASH can now be"
- cont "used any time!"
- prompt
-
-_PewterGymBattleText1::
- text "Stop right there,"
- line "kid!"
-
- para "You're still light"
- line "years from facing"
- cont "BROCK!"
- done
-
-_PewterGymEndBattleText1::
- text "Darn!"
-
- para "Light years isn't"
- line "time! It measures"
- cont "distance!"
- prompt
-
-_PewterGymAfterBattleText1::
- text "You're pretty hot,"
- line "but not as hot"
- cont "as BROCK!"
- done
-
-_PewterGymText_5c515::
- text "Hiya! I can tell"
- line "you have what it"
- cont "takes to become a"
- cont "#MON champ!"
-
- para "I'm no trainer,"
- line "but I can tell"
- cont "you how to win!"
-
- para "Let me take you"
- line "to the top!"
- done
-
-_PewterGymText_5c51a::
- text "All right! Let's"
- line "get happening!"
- prompt
-
-_PewterGymText_5c51f::
- text "The 1st #MON"
- line "out in a match is"
- cont "at the top of the"
- cont "#MON LIST!"
-
- para "By changing the"
- line "order of #MON,"
- cont "matches could be"
- cont "made easier!"
- done
-
-_PewterGymText_5c524::
- text "It's a free"
- line "service! Let's"
- cont "get happening!"
- prompt
-
-_PewterGymText_5c529::
- text "Just as I thought!"
- line "You're #MON"
- cont "champ material!"
- done
--- a/text/maps/PewterMart.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-_PewterMartText2::
- text "A shady, old man"
- line "got me to buy"
- cont "this really weird"
- cont "fish #MON!"
-
- para "It's totally weak"
- line "and it cost ¥500!"
- done
-
-_PewterMartText3::
- text "Good things can"
- line "happen if you"
- cont "raise #MON"
- cont "diligently, even"
- cont "the weak ones!"
- done
--- a/text/maps/PewterNidoranHouse.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-_PewterHouse1Text1::
- text "NIDORAN: Bowbow!@@"
-
-_PewterHouse1Text2::
- text "NIDORAN sit!"
- done
-
-_PewterHouse1Text3::
- text "Our #MON's an"
- line "outsider, so it's"
- cont "hard to handle."
-
- para "An outsider is a"
- line "#MON that you"
- cont "get in a trade."
-
- para "It grows fast, but"
- line "it may ignore an"
- cont "unskilled trainer"
- cont "in battle!"
-
- para "If only we had"
- line "some BADGEs..."
- done
--- a/text/maps/PewterPokecenter.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-_PewterPokecenterText2::
- text "What!?"
-
- para "TEAM ROCKET is"
- line "at MT.MOON? Huh?"
- cont "I'm on the phone!"
-
- para "Scram!"
- done
-
-_PewterJigglypuffText::
- text "JIGGLYPUFF: Puu"
- line "pupuu!"
- done
--- a/text/maps/PewterSpeechHouse.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-_PewterHouse2Text1::
- text "#MON learn new"
- line "techniques as"
- cont "they grow!"
-
- para "But, some moves"
- line "must be taught by"
- cont "the trainer!"
- done
-
-_PewterHouse2Text2::
- text "#MON become"
- line "easier to catch"
- cont "when they are"
- cont "hurt or asleep!"
-
- para "But, it's not a"
- line "sure thing!"
- done
--- a/text/maps/PokemonFanClub.asm
+++ /dev/null
@@ -1,143 +1,0 @@
-PikachuFanText::
- text "Won't you admire"
- line "my PIKACHU's"
- cont "adorable tail?"
- done
-
-PikachuFanBetterText::
- text "Humph! My PIKACHU"
- line "is twice as cute"
- cont "as that one!"
- done
-
-SeelFanText::
- text "I just love my"
- line "SEEL!"
-
- para "It squeals when I"
- line "hug it!"
- done
-
-SeelFanBetterText::
- text "Oh dear!"
-
- para "My SEEL is far"
- line "more attractive!"
- done
-
-FanClubPikachuText::
- text "PIKACHU: Chu!"
- line "Pikachu!"
- done
-
-FanClubSeelText::
- text "SEEL: Kyuoo!"
- done
-
-FanClubMeetChairText::
- text "I chair the"
- line "#MON Fan Club!"
-
- para "I have collected"
- line "over 100 #MON!"
-
- para "I'm very fussy"
- line "when it comes to"
- cont "#MON!"
-
- para "So..."
-
- para "Did you come"
- line "visit to hear"
- cont "about my #MON?"
- done
-
-FanClubChairStoryText::
- text "Good!"
- line "Then listen up!"
-
- para "My favorite"
- line "RAPIDASH..."
-
- para "It...cute..."
- line "lovely...smart..."
- cont "plus...amazing..."
- cont "you think so?..."
- cont "oh yes...it..."
- cont "stunning..."
- cont "kindly..."
- cont "love it!"
-
- para "Hug it...when..."
- cont "sleeping...warm"
- cont "and cuddly..."
- cont "spectacular..."
- cont "ravishing..."
- cont "...Oops! Look at"
- cont "the time! I kept"
- cont "you too long!"
-
- para "Thanks for hearing"
- line "me out! I want"
- cont "you to have this!"
- prompt
-
-ReceivedBikeVoucherText::
- text "<PLAYER> received"
- line "a @"
- TX_RAM wcf4b
- text "!@@"
-
-ExplainBikeVoucherText::
- text ""
- para "Exchange that for"
- line "a BICYCLE!"
-
- para "Don't worry, my"
- line "FEAROW will FLY"
- cont "me anywhere!"
-
- para "So, I don't need a"
- line "BICYCLE!"
-
- para "I hope you like"
- line "cycling!"
- done
-
-FanClubNoStoryText::
- text "Oh. Come back"
- line "when you want to"
- cont "hear my story!"
- done
-
-FanClubChairFinalText::
- text "Hello, <PLAYER>!"
-
- para "Did you come see"
- line "me about my"
- cont "#MON again?"
-
- para "No? Too bad!"
- done
-
-FanClubBagFullText::
- text "Make room for"
- line "this!"
- done
-
-_FanClubText6::
- text "Our Chairman is"
- line "very vocal about"
- cont "#MON."
- done
-
-_FanClubText7::
- text "Let's all listen"
- line "politely to other"
- cont "trainers!"
- done
-
-_FanClubText8::
- text "If someone brags,"
- line "brag right back!"
- done
--- a/text/maps/PokemonMansion1F.asm
+++ /dev/null
@@ -1,29 +1,0 @@
-_Mansion1BattleText2::
- text "Who are you? There"
- line "shouldn't be"
- cont "anyone here."
- done
-
-_Mansion1EndBattleText2::
- text "Ouch!"
- prompt
-
-_Mansion1AfterBattleText2::
- text "A key? I don't"
- line "know what you're"
- cont "talking about."
- done
-
-_MansionSwitchText::
- text "A secret switch!"
-
- para "Press it?"
- done
-
-_MansionSwitchPressedText::
- text "Who wouldn't?"
- prompt
-
-_MansionSwitchNotPressedText::
- text "Not quite yet!"
- done
--- a/text/maps/PokemonMansion2F.asm
+++ /dev/null
@@ -1,47 +1,0 @@
-_Mansion2BattleText1::
- text "I can't get out!"
- line "This old place is"
- cont "one big puzzle!"
- done
-
-_Mansion2EndBattleText1::
- text "Oh no!"
- line "My bag of loot!"
- prompt
-
-_Mansion2AfterBattleText1::
- text "Switches open and"
- line "close alternating"
- cont "sets of doors!"
- done
-
-_Mansion2Text3::
- text "Diary: July 5"
- line "Guyana,"
- cont "South America"
-
- para "A new #MON was"
- line "discovered deep"
- cont "in the jungle."
- done
-
-_Mansion2Text4::
- text "Diary: July 10"
- line "We christened the"
- cont "newly discovered"
- cont "#MON, MEW."
- done
-
-_Mansion2Text_520c2::
- text "A secret switch!"
-
- para "Press it?"
- done
-
-_Mansion2Text_520c7::
- text "Who wouldn't?"
- prompt
-
-_Mansion2Text_520cc::
- text "Not quite yet!"
- done
--- a/text/maps/PokemonMansion3F.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-_Mansion3BattleText1::
- text "This place is"
- line "like, huge!"
- done
-
-_Mansion3EndBattleText1::
- text "Ayah!"
- prompt
-
-_Mansion3AfterBattleText1::
- text "I wonder where"
- line "my partner went."
- done
-
-_Mansion3BattleText2::
- text "My mentor once"
- line "lived here."
- done
-
-_Mansion3EndBattleText2::
- text "Whew!"
- line "Overwhelming!"
- prompt
-
-_Mansion3AfterBattleText2::
- text "So, you're stuck?"
- line "Try jumping off"
- cont "over there!"
- done
-
-_Mansion3Text5::
- text "Diary: Feb. 6"
- line "MEW gave birth."
-
- para "We named the"
- line "newborn MEWTWO."
- done
--- a/text/maps/PokemonMansionB1F.asm
+++ /dev/null
@@ -1,39 +1,0 @@
-_Mansion4BattleText1::
- text "Uh-oh. Where am"
- line "I now?"
- done
-
-_Mansion4EndBattleText1::
- text "Awooh!"
- prompt
-
-_Mansion4AfterBattleText1::
- text "You can find stuff"
- line "lying around."
- done
-
-_Mansion4BattleText2::
- text "This place is"
- line "ideal for a lab."
- done
-
-_Mansion4EndBattleText2::
- text "What"
- line "was that for?"
- prompt
-
-_Mansion4AfterBattleText2::
- text "I like it here!"
- line "It's conducive to"
- cont "my studies!"
- done
-
-_Mansion4Text7::
- text "Diary; Sept. 1"
- line "MEWTWO is far too"
- cont "powerful."
-
- para "We have failed to"
- line "curb its vicious"
- cont "tendencies..."
- done
--- a/text/maps/PokemonTower1F.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-_PokemonTower1Text1::
- text "#MON TOWER was"
- line "erected in the"
- cont "memory of #MON"
- cont "that had died."
- done
-
-_PokemonTower1Text2::
- text "Did you come to"
- line "pay respects?"
- cont "Bless you!"
- done
-
-_PokemonTower1Text3::
- text "I came to pray"
- line "for my CLEFAIRY."
-
- para "Sniff! I can't"
- line "stop crying..."
- done
-
-_PokemonTower1Text4::
- text "My GROWLITHE..."
- line "Why did you die?"
- done
-
-_PokemonTower1Text5::
- text "I am a CHANNELER!"
- line "There are spirits"
- cont "up to mischief!"
- done
--- a/text/maps/PokemonTower2F.asm
+++ /dev/null
@@ -1,57 +1,0 @@
-_PokemonTower2Text_6062d::
- text "<RIVAL>: Hey,"
- line "<PLAYER>! What"
- cont "brings you here?"
- cont "Your #MON"
- cont "don't look dead!"
-
- para "I can at least"
- line "make them faint!"
- cont "Let's go, pal!"
- done
-
-_PokemonTower2Text_60632::
- text "What?"
- line "You stinker!"
-
- para "I took it easy on"
- line "you too!"
- prompt
-
-_PokemonTower2Text_60637::
- text "<RIVAL>: Well,"
- line "look at all your"
- cont "wimpy #MON!"
-
- para "Toughen them up a"
- line "bit more!"
- prompt
-
-_PokemonTower2Text_6063c::
- text "How's your #DEX"
- line "coming, pal?"
- cont "I just caught a"
- cont "CUBONE!"
-
- para "I can't find the"
- line "grown-up MAROWAK"
- cont "yet!"
-
- para "I doubt there are"
- line "any left! Well, I"
- cont "better get going!"
- cont "I've got a lot to"
- cont "accomplish, pal!"
-
- para "Smell ya later!"
- done
-
-_PokemonTower2Text2::
- text "Even we could not"
- line "identify the"
- cont "wayward GHOSTs!"
-
- para "A SILPH SCOPE"
- line "might be able to"
- cont "unmask them."
- done
--- a/text/maps/PokemonTower3F.asm
+++ /dev/null
@@ -1,45 +1,0 @@
-_PokemonTower3BattleText1::
- text "Urrg...Awaa..."
- line "Huhu...graa.."
- done
-
-_PokemonTower3EndBattleText1::
- text "Hwa!"
- line "I'm saved!"
- prompt
-
-_PokemonTower3AfterBattleText1::
- text "The GHOSTs can be"
- line "identified by the"
- cont "SILPH SCOPE."
- done
-
-_PokemonTower3BattleText2::
- text "Kekeke...."
- line "Kwaaah!"
- done
-
-_PokemonTower3EndBattleText2::
- text "Hmm?"
- line "What am I doing?"
- prompt
-
-_PokemonTower3AfterBattleText2::
- text "Sorry! I was"
- line "possessed!"
- done
-
-_PokemonTower3BattleText3::
- text "Be gone!"
- line "Evil spirit!"
- done
-
-_PokemonTower3EndBattleText3::
- text "Whew!"
- line "The spirit left!"
- prompt
-
-_PokemonTower3AfterBattleText3::
- text "My friends were"
- line "possessed too!"
- done
--- a/text/maps/PokemonTower4F.asm
+++ /dev/null
@@ -1,45 +1,0 @@
-_PokemonTower4BattleText1::
- text "GHOST! No!"
- line "Kwaaah!"
- done
-
-_PokemonTower4EndBattleText1::
- text "Where"
- line "is the GHOST?"
- prompt
-
-_PokemonTower4AfterBattleText1::
- text "I must have been"
- line "dreaming..."
- done
-
-_PokemonTower4BattleText2::
- text "Be cursed with"
- line "me! Kwaaah!"
- done
-
-_PokemonTower4EndBattleText2::
- text "What!"
- prompt
-
-_PokemonTower4AfterBattleText2::
- text "We can't crack"
- line "the identity of"
- cont "the GHOSTs."
- done
-
-_PokemonTower4BattleText3::
- text "Huhuhu..."
- line "Beat me not!"
- done
-
-_PokemonTower4EndBattleText3::
- text "Huh?"
- line "Who? What?"
- prompt
-
-_PokemonTower4AfterBattleText3::
- text "May the departed"
- line "souls of #MON"
- cont "rest in peace..."
- done
--- a/text/maps/PokemonTower5F.asm
+++ /dev/null
@@ -1,71 +1,0 @@
-_PokemonTower5Text1::
- text "Come, child! I"
- line "sealed this space"
- cont "with white magic!"
-
- para "You can rest here!"
- done
-
-_PokemonTower5BattleText1::
- text "Give...me..."
- line "your...soul..."
- done
-
-_PokemonTower5EndBattleText1::
- text "Gasp!"
- prompt
-
-_PokemonTower5AfterBattleText1::
- text "I was under"
- line "possession!"
- done
-
-_PokemonTower5BattleText2::
- text "You...shall..."
- line "join...us..."
- done
-
-_PokemonTower5EndBattleText2::
- text "What"
- line "a nightmare!"
- prompt
-
-_PokemonTower5AfterBattleText2::
- text "I was possessed!"
- done
-
-_PokemonTower5BattleText3::
- text "Zombies!"
- done
-
-_PokemonTower5EndBattleText3::
- text "Ha?"
- prompt
-
-_PokemonTower5AfterBattleText3::
- text "I regained my"
- line "senses!"
- done
-
-_PokemonTower5BattleText4::
- text "Urgah..."
- line "Urff...."
- done
-
-_PokemonTower5EndBattleText4::
- text "Whoo!"
- prompt
-
-_PokemonTower5AfterBattleText4::
- text "I fell to evil"
- line "spirits despite"
- cont "my training!"
- done
-
-_PokemonTower5Text7::
- text "Entered purified,"
- line "protected zone!"
-
- para "<PLAYER>'s #MON"
- line "are fully healed!"
- done
--- a/text/maps/PokemonTower6F.asm
+++ /dev/null
@@ -1,61 +1,0 @@
-_PokemonTower2Text_60c1f::
- text "The GHOST was the"
- line "restless soul of"
- cont "CUBONE's mother!"
- done
-
-_PokemonTower2Text_60c24::
- text "The mother's soul"
- line "was calmed."
-
- para "It departed to"
- line "the afterlife!"
- done
-
-_PokemonTower6BattleText1::
- text "Give...me..."
- line "blood..."
- done
-
-_PokemonTower6EndBattleText1::
- text "Groan!"
- prompt
-
-_PokemonTower6AfterBattleText1::
- text "I feel anemic and"
- line "weak..."
- done
-
-_PokemonTower6BattleText2::
- text "Urff... Kwaah!"
- done
-
-_PokemonTower6EndBattleText2::
- text "Some-"
- line "thing fell out!"
- prompt
-
-_PokemonTower6AfterBattleText2::
- text "Hair didn't fall"
- line "out! It was an"
- cont "evil spirit!"
- done
-
-_PokemonTower6BattleText3::
- text "Ke..ke...ke..."
- line "ke..ke...ke!!"
- done
-
-_PokemonTower6EndBattleText3::
- text "Keee!"
- prompt
-
-_PokemonTower6AfterBattleText3::
- text "What's going on"
- line "here?"
- done
-
-_PokemonTower6Text6::
- text "Be gone..."
- line "Intruders..."
- done
--- a/text/maps/PokemonTower7F.asm
+++ /dev/null
@@ -1,78 +1,0 @@
-_TowerRescueFujiText::
- text "MR.FUJI: Heh? You"
- line "came to save me?"
-
- para "Thank you. But, I"
- line "came here of my"
- cont "own free will."
-
- para "I came to calm"
- line "the soul of"
- cont "CUBONE's mother."
-
- para "I think MAROWAK's"
- line "spirit has gone"
- cont "to the afterlife."
-
- para "I must thank you"
- line "for your kind"
- cont "concern!"
-
- para "Follow me to my"
- line "home, #MON"
- cont "HOUSE at the foot"
- cont "of this tower."
- done
-
-_PokemonTower7BattleText1::
- text "What do you want?"
- line "Why are you here?"
- done
-
-_PokemonTower7EndBattleText1::
- text "I give up!"
- prompt
-
-_PokemonTower7AfterBattleText1::
- text "I'm not going to"
- line "forget this!"
- done
-
-_PokemonTower7BattleText2::
- text "This old guy came"
- line "and complained"
- cont "about us harming"
- cont "useless #MON!"
-
- para "We're talking it"
- line "over as adults!"
- done
-
-_PokemonTower7EndBattleText2::
- text "Please!"
- line "No more!"
- prompt
-
-_PokemonTower7AfterBattleText2::
- text "#MON are only"
- line "good for making"
- cont "money!"
-
- para "Stay out of our"
- line "business!"
- done
-
-_PokemonTower7BattleText3::
- text "You're not saving"
- line "anyone, kid!"
- done
-
-_PokemonTower7EndBattleText3::
- text "Don't"
- line "fight us ROCKETs!"
- prompt
-
-_PokemonTower7AfterBattleText3::
- text "You're not getting"
- line "away with this!"
- done
--- a/text/maps/PowerPlant.asm
+++ /dev/null
@@ -1,6 +1,0 @@
-_VoltorbBattleText::
- text "Bzzzt!"
- done
-
-_ZapdosBattleText::
- text "Gyaoo!@@"
--- a/text/maps/RedsHouse1F.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-_MomWakeUpText::
- text "MOM: Right."
- line "All boys leave"
- cont "home some day."
- cont "It said so on TV."
-
- para "PROF.OAK, next"
- line "door, is looking"
- cont "for you."
- done
-
-_MomHealText1::
- text "MOM: <PLAYER>!"
- line "You should take a"
- cont "quick rest."
- prompt
-
-_MomHealText2::
- text "MOM: Oh good!"
- line "You and your"
- cont "#MON are"
- cont "looking great!"
- cont "Take care now!"
- done
-
-_StandByMeText::
- text "There's a movie"
- line "on TV. Four boys"
- cont "are walking on"
- cont "railroad tracks."
-
- para "I better go too."
- done
-
-_TVWrongSideText::
- text "Oops, wrong side."
- done
--- a/text/maps/RockTunnel1F.asm
+++ /dev/null
@@ -1,115 +1,0 @@
-_RockTunnel1BattleText1::
- text "This tunnel goes"
- line "a long way, kid!"
- done
-
-_RockTunnel1EndBattleText1::
- text "Doh!"
- line "You win!"
- prompt
-
-_RockTunnel1AfterBattleText1::
- text "Watch for ONIX!"
- line "It can put the"
- cont "squeeze on you!"
- done
-
-_RockTunnel1BattleText2::
- text "Hmm. Maybe I'm"
- line "lost in here..."
- done
-
-_RockTunnel1EndBattleText2::
- text "Ease up!"
- line "What am I doing?"
- cont "Which way is out?"
- prompt
-
-_RockTunnel1AfterBattleText2::
- text "That sleeping"
- line "#MON on ROUTE"
- cont "12 forced me to"
- cont "take this detour."
- done
-
-_RockTunnel1BattleText3::
- text "Outsiders like"
- line "you need to show"
- cont "me some respect!"
- done
-
-_RockTunnel1EndBattleText3::
- text "I give!"
- prompt
-
-_RockTunnel1AfterBattleText3::
- text "You're talented"
- line "enough to hike!"
- done
-
-_RockTunnel1BattleText4::
- text "#MON fight!"
- line "Ready, go!"
- done
-
-_RockTunnel1EndBattleText4::
- text "Game"
- line "over!"
- prompt
-
-_RockTunnel1AfterBattleText4::
- text "Oh well, I'll get"
- line "a ZUBAT as I go!"
- done
-
-_RockTunnel1BattleText5::
- text "Eek! Don't try"
- line "anything funny in"
- cont "the dark!"
- done
-
-_RockTunnel1EndBattleText5::
- text "It"
- line "was too dark!"
- prompt
-
-_RockTunnel1AfterBattleText5::
- text "I saw a MACHOP"
- line "in this tunnel!"
- done
-
-_RockTunnel1BattleText6::
- text "I came this far"
- line "for #MON!"
- done
-
-_RockTunnel1EndBattleText6::
- text "I'm"
- line "out of #MON!"
- prompt
-
-_RockTunnel1AfterBattleText6::
- text "You looked cute"
- line "and harmless!"
- done
-
-_RockTunnel1BattleText7::
- text "You have #MON!"
- line "Let's start!"
- done
-
-_RockTunnel1EndBattleText7::
- text "You"
- line "play hard!"
- prompt
-
-_RockTunnel1AfterBattleText7::
- text "Whew! I'm all"
- line "sweaty now!"
- done
-
-_RockTunnel1Text8::
- text "ROCK TUNNEL"
- line "CERULEAN CITY -"
- cont "LAVENDER TOWN"
- done
--- a/text/maps/RockTunnelB1F.asm
+++ /dev/null
@@ -1,108 +1,0 @@
-_RockTunnel2BattleText2::
- text "Hikers leave twigs"
- line "as trail markers."
- done
-
-_RockTunnel2EndBattleText2::
- text "Ohhh!"
- line "I did my best!"
- prompt
-
-_RockTunnel2AfterBattleText2::
- text "I want to go "
- line "home!"
- done
-
-_RockTunnel2BattleText3::
- text "Hahaha! Can you"
- line "beat my power?"
- done
-
-_RockTunnel2EndBattleText3::
- text "Oops!"
- line "Out-muscled!"
- prompt
-
-_RockTunnel2AfterBattleText3::
- text "I go for power"
- line "because I hate"
- cont "thinking!"
- done
-
-_RockTunnel2BattleText4::
- text "You have a"
- line "#DEX?"
- cont "I want one too!"
- done
-
-_RockTunnel2EndBattleText4::
- text "Shoot!"
- line "I'm so jealous!"
- prompt
-
-_RockTunnel2AfterBattleText4::
- text "When you finish"
- line "your #DEX, can"
- cont "I have it?"
- done
-
-_RockTunnel2BattleText5::
- text "Do you know about"
- line "costume players?"
- done
-
-_RockTunnel2EndBattleText5::
- text "Well,"
- line "that's that."
- prompt
-
-_RockTunnel2AfterBattleText5::
- text "Costume players"
- line "dress up as"
- cont "#MON for fun."
- done
-
-_RockTunnel2BattleText6::
- text "My #MON"
- line "techniques will"
- cont "leave you crying!"
- done
-
-_RockTunnel2EndBattleText6::
- text "I give!"
- line "You're a better"
- cont "technician!"
- prompt
-
-_RockTunnel2AfterBattleText6::
- text "In mountains,"
- line "you'll often find"
- cont "rock-type #MON."
- done
-
-_RockTunnel2BattleText7::
- text "I don't often"
- line "come here, but I"
- cont "will fight you."
- done
-
-_RockTunnel2EndBattleText7::
- text "Oh!"
- line "I lost!"
- prompt
-
-_RockTunnel2AfterBattleText7::
- text "I like tiny"
- line "#MON, big ones"
- cont "are too scary!"
- done
-
-_RockTunnel2BattleText8::
- text "Hit me with your"
- line "best shot!"
- done
-
-_RockTunnel2EndBattleText8::
- text "Fired"
- line "away!"
- prompt
--- a/text/maps/RockTunnelB1F_2.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-_RockTunnel2AfterBattleText8::
- text "I'll raise my"
- line "#MON to beat"
- cont "yours, kid!"
- done
-
-_RockTunnel2BattleText9::
- text "I draw #MON"
- line "when I'm home."
- done
-
-_RockTunnel2EndBattleText9::
- text "Whew!"
- line "I'm exhausted!"
- prompt
-
-_RockTunnel2AfterBattleText9::
- text "I'm an artist,"
- line "not a fighter."
- done
--- a/text/maps/RockTunnelPokecenter.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-_RockTunnelPokecenterText2::
- text "The element types"
- line "of #MON make"
- cont "them stronger"
- cont "than some types"
- cont "and weaker than"
- cont "others!"
- done
-
-_RockTunnelPokecenterText3::
- text "I sold a useless"
- line "NUGGET for ¥5000!"
- done
--- a/text/maps/RocketHideoutB1F.asm
+++ /dev/null
@@ -1,73 +1,0 @@
-_RocketHideout1EndBattleText6::
- text "Why...?@@"
-
-_RocketHideout1BattleText2::
- text "Who are you? How"
- line "did you get here?"
- done
-
-_RocketHideout1EndBattleText2::
- text "Oww!"
- line "Beaten!"
- prompt
-
-_RocketHideout1AfterBattleTxt2::
- text "Are you dissing"
- line "TEAM ROCKET?"
- done
-
-_RocketHideout1BattleText3::
- text "You broke into"
- line "our operation?"
- done
-
-_RocketHideout1EndBattleText3::
- text "Burnt!"
- prompt
-
-_RocketHideout1AfterBattleTxt3::
- text "You're not going"
- line "to get away with"
- cont "this, brat!"
- done
-
-_RocketHideout1BattleText4::
- text "Intruder alert!"
- done
-
-_RocketHideout1EndBattleText4::
- text "I"
- line "can't do it!"
- prompt
-
-_RocketHideout1AfterBattleTxt4::
- text "SILPH SCOPE?"
- line "I don't know"
- cont "where it is!"
- done
-
-_RocketHideout1BattleText5::
- text "Why did you come"
- line "here?"
- done
-
-_RocketHideout1EndBattleText5::
- text "This"
- line "won't do!"
- prompt
-
-_RocketHideout1AfterBattleTxt5::
- text "OK, I'll talk!"
- line "Take the elevator"
- cont "to see my BOSS!"
- done
-
-_RocketHideout1BattleText6::
- text "Are you lost, you"
- line "little rat?"
- done
-
-_RocketHideout1AfterBattleTxt6::
- text "Uh-oh, that fight"
- line "opened the door!"
- done
--- a/text/maps/RocketHideoutB2F.asm
+++ /dev/null
@@ -1,17 +1,0 @@
-_RocketHideout2BattleText2::
- text "BOSS said you can"
- line "see GHOSTs with"
- cont "the SILPH SCOPE!"
- done
-
-_RocketHideout2EndBattleText2::
- text "I"
- line "surrender!"
- prompt
-
-_RocketHideout2AfterBattleTxt2::
- text "The TEAM ROCKET"
- line "HQ has 4 basement"
- cont "floors. Can you"
- cont "reach the BOSS?"
- done
--- a/text/maps/RocketHideoutB3F.asm
+++ /dev/null
@@ -1,35 +1,0 @@
-_RocketHideout3BattleText2::
- text "Stop meddling in"
- line "TEAM ROCKET's"
- cont "affairs!"
- done
-
-_RocketHideout3EndBattleText2::
- text "Oof!"
- line "Taken down!"
- prompt
-
-_RocketHideout3AfterBattleTxt2::
- text "SILPH SCOPE?"
- line "The machine the"
- cont "BOSS stole. It's"
- cont "here somewhere."
- done
-
-_RocketHideout3BattleTxt::
- text "We got word from"
- line "upstairs that you"
- cont "were coming!"
- done
-
-_RocketHideout3EndBattleText3::
- text "What?"
- line "I lost? No!"
- prompt
-
-_RocketHide3AfterBattleText3::
- text "Go ahead and go!"
- line "But, you need the"
- cont "LIFT KEY to run"
- cont "the elevator!"
- done
--- a/text/maps/RocketHideoutB4F.asm
+++ /dev/null
@@ -1,74 +1,0 @@
-_RocketHideout4Text_4557a::
- text "So! I must say, I"
- line "am impressed you"
- cont "got here!"
- done
-
-_RocketHideout4Text_4557f::
- text "WHAT!"
- line "This cannot be!"
- prompt
-
-_RocketHideout4Text_45584::
- text "I see that you"
- line "raise #MON"
- cont "with utmost care."
-
- para "A child like you"
- line "would never"
- cont "understand what I"
- cont "hope to achieve."
-
- para "I shall step"
- line "aside this time!"
-
- para "I hope we meet"
- line "again..."
- done
-
-_RocketHideout4BattleText2::
- text "I know you! You"
- line "ruined our plans"
- cont "at MT.MOON!"
- done
-
-_RocketHideout4EndBattleText2::
- text "Burned"
- line "again!"
- prompt
-
-_RocketHide4AfterBattleText2::
- text "Do you have"
- line "something against"
- cont "TEAM ROCKET?"
- done
-
-_RocketHideout4BattleText3::
- text "How can you not"
- line "see the beauty of"
- cont "our evil?"
- done
-
-_RocketHideout4EndBattleText3::
- text "Ayaya!"
- prompt
-
-_RocketHide4AfterBattleText3::
- text "BOSS! I'm sorry I"
- line "failed you!"
- done
-
-_RocketHideout4BattleText4::
- text "The elevator"
- line "doesn't work? Who"
- cont "has the LIFT KEY?"
- done
-
-_RocketHideout4EndBattleText4::
- text "No!"
- prompt
-
-_RocketHideout4Text_455ec::
- text "Oh no! I dropped"
- line "the LIFT KEY!"
- done
--- a/text/maps/RocketHideoutElevator.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-_RocketElevatorText_4578b::
- text "It appears to"
- line "need a key.@@"
--- a/text/maps/Route1.asm
+++ /dev/null
@@ -1,49 +1,0 @@
-_Route1ViridianMartSampleText::
- text "Hi! I work at a"
- line "#MON MART."
-
- para "It's a convenient"
- line "shop, so please"
- cont "visit us in"
- cont "VIRIDIAN CITY."
-
- para "I know, I'll give"
- line "you a sample!"
- cont "Here you go!"
- prompt
-
-_Route1Text_1cae8::
- text "<PLAYER> got"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_Route1Text_1caee::
- text "We also carry"
- line "# BALLs for"
- cont "catching #MON!"
- done
-
-_Route1Text_1caf3::
- text "You have too much"
- line "stuff with you!"
- done
-
-_Route1Text2::
- text "See those ledges"
- line "along the road?"
-
- para "It's a bit scary,"
- line "but you can jump"
- cont "from them."
-
- para "You can get back"
- line "to PALLET TOWN"
- cont "quicker that way."
- done
-
-_Route1Text3::
- text "ROUTE 1"
- line "PALLET TOWN -"
- cont "VIRIDIAN CITY"
- done
--- a/text/maps/Route10.asm
+++ /dev/null
@@ -1,109 +1,0 @@
-_Route10BattleText1::
- text "Wow, are you a"
- line "#MANIAC too?"
- cont "Want to see my"
- cont "collection?"
- done
-
-_Route10EndBattleText1::
- text "Humph."
- line "I'm not angry!"
- prompt
-
-_Route10AfterBattleText1::
- text "I have more rare"
- line "#MON at home!"
- done
-
-_Route10BattleText2::
- text "Ha-hahah-ah-ha!"
- done
-
-_Route10EndBattleText2::
- text "Ha-haha!"
- line "Not laughing!"
- cont "Ha-hay fever!"
- cont "Haha-ha-choo!"
- prompt
-
-_Route10AfterBattleText2::
- text "Haha-ha-choo!"
- line "Ha-choo!"
- cont "Snort! Snivel!"
- done
-
-_Route10BattleText3::
- text "Hi kid, want to"
- line "see my #MON?"
- done
-
-_Route10EndBattleText3::
- text "Oh no!"
- line "My #MON!"
- prompt
-
-_Route10AfterBattleText3::
- text "I don't like you"
- line "for beating me!"
- done
-
-_Route10BattleText4::
- text "I've been to a"
- line "#MON GYM a few"
- cont "times. But, I"
- cont "lost each time."
- done
-
-_Route10EndBattleText4::
- text "Ohh!"
- line "Blew it again!"
- prompt
-
-_Route10AfterBattleText4::
- text "I noticed some"
- line "#MANIACs"
- cont "prowling around."
- done
-
-_Route10BattleText5::
- text "Ah! This mountain"
- line "air is delicious!"
- done
-
-_Route10EndBattleText5::
- text "That"
- line "cleared my head!"
- prompt
-
-_Route10AfterBattleText5::
- text "I feel bloated on"
- line "mountain air!"
- done
-
-_Route10BattleText6::
- text "I'm feeling a bit"
- line "faint from this"
- cont "tough hike."
- done
-
-_Route10EndBattleText6::
- text "I'm"
- line "not up to it!"
- prompt
-
-_Route10AfterBattleText6::
- text "The #MON here"
- line "are so chunky!"
- cont "There should be a"
- cont "pink one with a"
- cont "floral pattern!"
- done
-
-_Route10Text9::
-_Route10Text7::
- text "ROCK TUNNEL"
- done
-
-_Route10Text10::
- text "POWER PLANT"
- done
--- a/text/maps/Route11.asm
+++ /dev/null
@@ -1,133 +1,0 @@
-_Route11BattleText1::
- text "Win, lose or draw!"
- done
-
-_Route11EndBattleText1::
- text "Atcha!"
- line "Didn't go my way!"
- prompt
-
-_Route11AfterBattleText1::
- text "#MON is life!"
- line "And to live is to"
- cont "gamble!"
- done
-
-_Route11BattleText2::
- text "Competition! I"
- line "can't get enough!"
- done
-
-_Route11EndBattleText2::
- text "I had"
- line "a chance!"
- prompt
-
-_Route11AfterBattleText2::
- text "You can't be a"
- line "coward in the"
- cont "world of #MON!"
- done
-
-_Route11BattleText3::
- text "Let's go, but"
- line "don't cheat!"
- done
-
-_Route11EndBattleText3::
- text "Huh?"
- line "That's not right!"
- prompt
-
-_Route11AfterBattleText3::
- text "I did my best! I"
- line "have no regrets!"
- done
-
-_Route11BattleText4::
- text "Careful!"
- line "I'm laying down"
- cont "some cables!"
- done
-
-_Route11EndBattleText4::
- text "That"
- line "was electric!"
- prompt
-
-_Route11AfterBattleText4::
- text "Spread the word"
- line "to save energy!"
- done
-
-_Route11BattleText5::
- text "I just became a"
- line "trainer! But, I"
- cont "think I can win!"
- done
-
-_Route11EndBattleText5::
- text "My"
- line "#MON couldn't!"
- prompt
-
-_Route11AfterBattleText5::
- text "What do you want?"
- line "Leave me alone!"
- done
-
-_Route11BattleText6::
- text "Fwahaha! I have"
- line "never lost!"
- done
-
-_Route11EndBattleText6::
- text "My"
- line "first loss!"
- prompt
-
-_Route11AfterBattleText6::
- text "Luck of the draw!"
- line "Just luck!"
- done
-
-_Route11BattleText7::
- text "I have never won"
- line "before..."
- done
-
-_Route11EndBattleText7::
- text "I saw"
- line "this coming..."
- prompt
-
-_Route11AfterBattleText7::
- text "It's just luck."
- line "Luck of the draw."
- done
-
-_Route11BattleText8::
- text "I'm the best in"
- line "my class!"
- done
-
-_Route11EndBattleText8::
- text "Darn!"
- line "I need to make my"
- cont "#MON stronger!"
- prompt
-
-_Route11AfterBattleText8::
- text "There's a fat"
- line "#MON that"
- cont "comes down from"
- cont "the mountains."
-
- para "It's strong if"
- line "you can get it."
- done
-
-_Route11BattleText9::
- text "Watch out for"
- line "live wires!"
- done
--- a/text/maps/Route11Gate1F.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-_Route11GateText1::
- text "When you catch"
- line "lots of #MON,"
- cont "isn't it hard to"
- cont "think up names?"
-
- para "In LAVENDER TOWN,"
- line "there's a man who"
- cont "rates #MON"
- cont "nicknames."
-
- para "He'll help you"
- line "rename them too!"
- done
--- a/text/maps/Route11Gate2F.asm
+++ /dev/null
@@ -1,40 +1,0 @@
-_Route11GateUpstairsText_494a3::
- text "There are items on"
- line "the ground that"
- cont "can't be seen."
-
- para "ITEMFINDER will"
- line "detect an item"
- cont "close to you."
-
- para "It can't pinpoint"
- line "it, so you have"
- cont "to look yourself!"
- done
-
-_BinocularsSnorlaxText::
- text "Looked into the"
- line "binoculars."
-
- para "A big #MON is"
- line "asleep on a road!"
- done
-
-_BinocularsNoSnorlaxText::
- text "Looked into the"
- line "binoculars."
-
- para "It's a beautiful"
- line "view!"
- done
-
-_Route11GateUpstairsText_494d5::
- text "Looked into the"
- line "binoculars."
-
- para "The only way to"
- line "get from CERULEAN"
- cont "CITY to LAVENDER"
- cont "is by way of the"
- cont "ROCK TUNNEL."
- done
--- a/text/maps/Route11_2.asm
+++ /dev/null
@@ -1,28 +1,0 @@
-_Route11EndBattleText9::
- text "Whoa!"
- line "You spark plug!"
- prompt
-
-_Route11AfterBattleText9::
- text "Well, better get"
- line "back to work."
- done
-
-_Route11BattleText10::
- text "My #MON should"
- line "be ready by now!"
- done
-
-_Route11EndBattleText10::
- text "Too"
- line "much, too young!"
- prompt
-
-_Route11AfterBattleText10::
- text "I better go find"
- line "stronger ones!"
- done
-
-_Route11Text11::
- text "DIGLETT's CAVE"
- done
--- a/text/maps/Route12.asm
+++ /dev/null
@@ -1,139 +1,0 @@
-_Route12Text1::
- text "A sleeping #MON"
- line "blocks the way!"
- done
-
-_Route12Text13::
- text "SNORLAX woke up!"
-
- para "It attacked in a"
- line "grumpy rage!"
- done
-
-_Route12Text14::
- text "SNORLAX calmed"
- line "down! With a big"
- cont "yawn, it returned"
- cont "to the mountains!"
- done
-
-_Route12BattleText1::
- text "Yeah! I got a"
- line "bite, here!"
- done
-
-_Route12EndBattleText1::
- text "Tch!"
- line "Just a small fry!"
- prompt
-
-_Route12AfterBattleText1::
- text "Hang on! My line's"
- line "snagged!"
- done
-
-_Route12BattleText2::
- text "Be patient!"
- line "Fishing is a"
- cont "waiting game!"
- done
-
-_Route12EndBattleText2::
- text "That"
- line "one got away!"
- prompt
-
-_Route12AfterBattleText2::
- text "With a better ROD,"
- line "I could catch"
- cont "better #MON!"
- done
-
-_Route12BattleText3::
- text "Have you found a"
- line "MOON STONE?"
- done
-
-_Route12EndBattleText3::
- text "Oww!"
- prompt
-
-_Route12AfterBattleText3::
- text "I could have made"
- line "my #MON evolve"
- cont "with MOON STONE!"
- done
-
-_Route12BattleText4::
- text "Electricity is my"
- line "specialty!"
- done
-
-_Route12EndBattleText4::
- text "Unplugged!"
- prompt
-
-_Route12AfterBattleText4::
- text "Water conducts"
- line "electricity, so"
- cont "you should zap"
- cont "sea #MON!"
- done
-
-_Route12BattleText5::
- text "The FISHING FOOL"
- line "vs. #MON KID!"
- done
-
-_Route12EndBattleText5::
- text "Too"
- line "much!"
- prompt
-
-_Route12AfterBattleText5::
- text "You beat me at"
- line "#MON, but I'm"
- cont "good at fishing!"
- done
-
-_Route12BattleText6::
- text "I'd rather be"
- line "working!"
- done
-
-_Route12EndBattleText6::
- text "It's"
- line "not easy..."
- prompt
-
-_Route12AfterBattleText6::
- text "It's all right."
- line "Losing doesn't"
- cont "bug me any more."
- done
-
-_Route12BattleText7::
- text "You never know"
- line "what you could"
- cont "catch!"
- done
-
-_Route12EndBattleText7::
- text "Lost"
- line "it!"
- prompt
-
-_Route12AfterBattleText7::
- text "I catch MAGIKARP"
- line "all the time, but"
- cont "they're so weak!"
- done
-
-_Route12Text11::
- text "ROUTE 12 "
- line "North to LAVENDER"
- done
-
-_Route12Text12::
- text "SPORT FISHING AREA"
- done
--- a/text/maps/Route12Gate1F.asm
+++ /dev/null
@@ -1,4 +1,0 @@
-_Route12GateText1::
- text "There's a lookout"
- line "spot upstairs."
- done
--- a/text/maps/Route12Gate2F.asm
+++ /dev/null
@@ -1,42 +1,0 @@
-_TM39PreReceiveText::
- text "My #MON's"
- line "ashes are stored"
- cont "in #MON TOWER."
-
- para "You can have this"
- line "TM. I don't need"
- cont "it any more..."
- prompt
-
-_ReceivedTM39Text::
- text "<PLAYER> received"
- line "TM39!@@"
-
-_TM39ExplanationText::
- text "TM39 is a move"
- line "called SWIFT."
-
- para "It's very accurate,"
- line "so use it during"
- cont "battles you can't"
- cont "afford to lose."
- done
-
-_TM39NoRoomText::
- text "You don't have"
- line "room for this."
- done
-
-_Route12GateUpstairsText_495b8::
- text "Looked into the"
- line "binoculars."
-
- para "A man fishing!"
- done
-
-_Route12GateUpstairsText_495c4::
- text "Looked into the"
- line "binoculars."
-
- para "It's #MON TOWER!"
- done
--- a/text/maps/Route12SuperRodHouse.asm
+++ /dev/null
@@ -1,61 +1,0 @@
-_Route12HouseText_564c0::
- text "I'm the FISHING"
- line "GURU's brother!"
-
- para "I simply Looove"
- line "fishing!"
-
- para "Do you like to"
- line "fish?"
- done
-
-_Route12HouseText_564c5::
- text "Grand! I like"
- line "your style!"
-
- para "Take this and"
- line "fish, young one!"
-
- para "<PLAYER> received"
- line "a @"
- TX_RAM wcf4b
- text "!@@"
-
-_Route12HouseText_564ca::
- text ""
-
- para "Fishing is a way"
- line "of life!"
-
- para "From the seas to"
- line "rivers, go out"
- cont "and land the big"
- cont "one!"
- done
-
-_Route12HouseText_564cf::
- text "Oh... That's so"
- line "disappointing..."
- done
-
-_Route12HouseText_564d4::
- text "Hello there,"
- line "<PLAYER>!"
-
- para "Use the SUPER ROD"
- line "in any water!"
- cont "You can catch"
- cont "different kinds"
- cont "of #MON."
-
- para "Try fishing"
- line "wherever you can!"
- done
-
-_Route12HouseText_564d9::
- text "Oh no!"
-
- para "I had a gift for"
- line "you, but you have"
- cont "no room for it!"
- done
--- a/text/maps/Route13.asm
+++ /dev/null
@@ -1,179 +1,0 @@
-_Route13BattleText2::
- text "My bird #MON"
- line "want to scrap!"
- done
-
-_Route13EndBattleText2::
- text "My"
- line "bird combo lost?"
- prompt
-
-_Route13AfterBattleText2::
- text "My #MON look"
- line "happy even though"
- cont "they lost."
- done
-
-_Route13BattleText3::
- text "I'm told I'm good"
- line "for a kid!"
- done
-
-_Route13EndBattleText3::
- text "Ohh!"
- line "I lost!"
- prompt
-
-_Route13AfterBattleText3::
- text "I want to become"
- line "a good trainer."
- cont "I'll train hard."
- done
-
-_Route13BattleText4::
- text "Wow! Your BADGEs"
- line "are too cool!"
- done
-
-_Route13EndBattleText4::
- text "Not"
- line "enough!"
- prompt
-
-_Route13AfterBattleText4::
- text "You got those"
- line "BADGEs from GYM"
- cont "LEADERs. I know!"
- done
-
-_Route13BattleText5::
- text "My cute #MON"
- line "wish to make your"
- cont "acquaintance."
- done
-
-_Route13EndBattleText5::
- text "Wow!"
- line "You totally won!"
- prompt
-
-_Route13AfterBattleText5::
- text "You have to make"
- line "#MON fight to"
- cont "toughen them up!"
- done
-
-_Route13BattleText6::
- text "I found CARBOS in"
- line "a cave once."
- done
-
-_Route13EndBattleText6::
- text "Just"
- line "messed up!"
- prompt
-
-_Route13AfterBattleText6::
- text "CARBOS boosted"
- line "the SPEED of my"
- cont "#MON."
- done
-
-_Route13BattleText7::
- text "The wind's blowing"
- line "my way!"
- done
-
-_Route13EndBattleText7::
- text "The"
- line "wind turned!"
- prompt
-
-_Route13AfterBattleText7::
- text "I'm beat. I guess"
- line "I'll FLY home."
- done
-
-_Route13BattleText8::
- text "Sure, I'll play"
- line "with you!"
- done
-
-_Route13EndBattleText8::
- text "Oh!"
- line "You little brute!"
- prompt
-
-_Route13AfterBattleText8::
- text "I wonder which is"
- line "stronger, male or"
- cont "female #MON?"
- done
-
-_Route13BattleText9::
- text "Do you want to"
- line "#MON with me?"
- done
-
-_Route13EndBattleText9::
- text "It's over"
- line "already?"
- prompt
-
-_Route13AfterBattleText9::
- text "I don't know"
- line "anything about"
- cont "#MON. I just"
- cont "like cool ones!"
- done
-
-_Route13BattleText10::
- text "What're you"
- line "lookin' at?"
- done
-
-_Route13EndBattleText10::
- text "Dang!"
- line "Stripped gears!"
- prompt
-
-_Route13AfterBattleText10::
- text "Get lost!"
- done
-
-_Route13BattleText11::
- text "I always go with"
- line "bird #MON!"
- done
-
-_Route13EndBattleText11::
- text "Out"
- line "of power!"
- prompt
-
-_Route13AfterBattleText11::
- text "I wish I could"
- line "fly like PIDGEY"
- cont "and PIDGEOTTO..."
- done
-
-_Route13Text11::
- text "TRAINER TIPS"
-
- para "Look to the left"
- line "of that post!"
- done
-
-_Route13Text12::
- text "TRAINER TIPS"
-
- para "Use SELECT to"
- line "switch items in"
- cont "the ITEM window!"
- done
-
-_Route13Text13::
- text "ROUTE 13"
- line "North to SILENCE"
- cont "BRIDGE"
- done
--- a/text/maps/Route14.asm
+++ /dev/null
@@ -1,173 +1,0 @@
-_Route14BattleText1::
- text "You need to use"
- line "TMs to teach good"
- cont "moves to #MON!"
- done
-
-_Route14EndBattleText1::
- text "Not"
- line "good enough!"
- prompt
-
-_Route14AfterBattleText1::
- text "You have some HMs"
- line "right? #MON"
- cont "can't ever forget"
- cont "those moves."
- done
-
-_Route14BattleText2::
- text "My bird #MON"
- line "should be ready"
- cont "for battle."
- done
-
-_Route14EndBattleText2::
- text "Not"
- line "ready yet!"
- prompt
-
-_Route14AfterBattleText2::
- text "They need to learn"
- line "better moves."
- done
-
-_Route14BattleText3::
- text "TMs are on sale"
- line "in CELADON!"
- cont "But, only a few"
- cont "people have HMs!"
- done
-
-_Route14EndBattleText3::
- text "Aww,"
- line "bummer!"
- prompt
-
-_Route14AfterBattleText3::
- text "Teach #MON"
- line "moves of the same"
- cont "element type for"
- cont "more power."
- done
-
-_Route14BattleText4::
- text "Have you taught"
- line "your bird #MON"
- cont "how to FLY?"
- done
-
-_Route14EndBattleText4::
- text "Shot"
- line "down in flames!"
- prompt
-
-_Route14AfterBattleText4::
- text "Bird #MON are"
- line "my true love!"
- done
-
-_Route14BattleText5::
- text "Have you heard of"
- line "the legendary"
- cont "#MON?"
- done
-
-_Route14EndBattleText5::
- text "Why?"
- line "Why'd I lose?"
- prompt
-
-_Route14AfterBattleText5::
- text "The 3 legendary"
- line "#MON are all"
- cont "birds of prey."
- done
-
-_Route14BattleText6::
- text "I'm not into it,"
- line "but OK! Let's go!"
- done
-
-_Route14EndBattleText6::
- text "I"
- line "knew it!"
- prompt
-
-_Route14AfterBattleText6::
- text "Winning, losing,"
- line "it doesn't matter"
- cont "in the long run!"
- done
-
-_Route14BattleText7::
- text "C'mon, c'mon."
- line "Let's go, let's"
- cont "go, let's go!"
- done
-
-_Route14EndBattleText7::
- text "Arrg!"
- line "Lost! Get lost!"
- prompt
-
-_Route14AfterBattleText7::
- text "What, what, what?"
- line "What do you want?"
- done
-
-_Route14BattleText8::
- text "Perfect! I need to"
- line "burn some time!"
- done
-
-_Route14EndBattleText8::
- text "What?"
- line "You!?"
- prompt
-
-_Route14AfterBattleText8::
- text "Raising #MON"
- line "is a drag, man."
- done
-
-_Route14BattleText9::
- text "We ride out here"
- line "because there's"
- cont "more room!"
- done
-
-_Route14EndBattleText9::
- text "Wipe out!"
- prompt
-
-_Route14AfterBattleText9::
- text "It's cool you"
- line "made your #MON"
- cont "so strong!"
-
- para "Might is right!"
- line "And you know it!"
- done
-
-_Route14BattleText10::
- text "#MON fight?"
- line "Cool! Rumble!"
- done
-
-_Route14EndBattleText10::
- text "Blown"
- line "away!"
- prompt
-
-_Route14AfterBattleText10::
- text "You know who'd"
- line "win, you and me"
- cont "one on one!"
- done
-
-_Route14Text11::
- text "ROUTE 14"
- line "West to FUCHSIA"
- cont "CITY"
- done
--- a/text/maps/Route15.asm
+++ /dev/null
@@ -1,171 +1,0 @@
-_Route15BattleText1::
- text "Let me try out the"
- line "#MON I just"
- cont "got in a trade!"
- done
-
-_Route15EndBattleText1::
- text "Not"
- line "good enough!"
- prompt
-
-_Route15AfterBattleText1::
- text "You can't change"
- line "the nickname of"
- cont "any #MON you"
- cont "get in a trade."
-
- para "Only the Original"
- line "Trainer can."
- done
-
-_Route15BattleText2::
- text "You look gentle,"
- line "so I think I can"
- cont "beat you!"
- done
-
-_Route15EndBattleText2::
- text "No,"
- line "wrong!"
- prompt
-
-_Route15AfterBattleText2::
- text "I'm afraid of"
- line "BIKERs, they look"
- cont "so ugly and mean!"
- done
-
-_Route15BattleText3::
- text "When I whistle, I"
- line "can summon bird"
- cont "#MON!"
- done
-
-_Route15EndBattleText3::
- text "Ow!"
- line "That's tragic!"
- prompt
-
-_Route15AfterBattleText3::
- text "Maybe I'm not cut"
- line "out for battles."
- done
-
-_Route15BattleText4::
- text "Hmm? My birds are"
- line "shivering! You're"
- cont "good, aren't you?"
- done
-
-_Route15EndBattleText4::
- text "Just"
- line "as I thought!"
- prompt
-
-_Route15AfterBattleText4::
- text "Did you know moves"
- line "like EARTHQUAKE"
- cont "don't have any"
- cont "effect on birds?"
- done
-
-_Route15BattleText5::
- text "Oh, you're a"
- line "little cutie!"
- done
-
-_Route15EndBattleText5::
- text "You looked"
- line "so cute too!"
- prompt
-
-_Route15AfterBattleText5::
- text "I forgive you!"
- line "I can take it!"
- done
-
-_Route15BattleText6::
- text "I raise #MON"
- line "because I live"
- cont "alone!"
- done
-
-_Route15EndBattleText6::
- text "I didn't"
- line "ask for this!"
- prompt
-
-_Route15AfterBattleText6::
- text "I just like going"
- line "home to be with"
- cont "my #MON!"
- done
-
-_Route15BattleText7::
- text "Hey kid! C'mon!"
- line "I just got these!"
- done
-
-_Route15EndBattleText7::
- text "Why"
- line "not?"
- prompt
-
-_Route15AfterBattleText7::
- text "You only live"
- line "once, so I live"
- cont "as an outlaw!"
- cont "TEAM ROCKET RULES!"
- done
-
-_Route15BattleText8::
- text "Fork over all your"
- line "cash when you"
- cont "lose to me, kid!"
- done
-
-_Route15EndBattleText8::
- text "That"
- line "can't be true!"
- prompt
-
-_Route15AfterBattleText8::
- text "I was just joking"
- line "about the money!"
- done
-
-_Route15BattleText9::
- text "What's cool?"
- line "Trading #MON!"
- done
-
-_Route15EndBattleText9::
- text "I"
- line "said trade!"
- prompt
-
-_Route15AfterBattleText9::
- text "I trade #MON"
- line "with my friends!"
- done
-
-_Route15BattleText10::
- text "Want to play with"
- line "my #MON?"
- done
-
-_Route15EndBattleText10::
- text "I was"
- line "too impatient!"
- prompt
-
-_Route15AfterBattleText10::
- text "I'll go train with"
- line "weaker people.@@"
-
-_Route15Text12::
- text "ROUTE 15"
- line "West to FUCHSIA"
- cont "CITY"
- done
--- a/text/maps/Route15Gate1F.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-_Route15GateText1::
- text "Are you working"
- line "on a #DEX?"
-
- para "PROF.OAK's AIDE"
- line "came by here."
- done
--- a/text/maps/Route15Gate2F.asm
+++ /dev/null
@@ -1,24 +1,0 @@
-_Route15GateUpstairsText_4968c::
- text "EXP.ALL gives"
- line "EXP points to all"
- cont "the #MON with"
- cont "you, even if they"
- cont "don't fight."
-
- para "It does, however,"
- line "reduce the amount"
- cont "of EXP for each"
- cont "#MON."
-
- para "If you don't need"
- line "it, you should "
- cont "store it via PC."
- done
-
-_Route15GateUpstairsText_49698::
- text "Looked into the"
- line "binoculars."
-
- para "It looks like a"
- line "small island!"
- done
--- a/text/maps/Route16.asm
+++ /dev/null
@@ -1,120 +1,0 @@
-_Route16BattleText1::
- text "What do you want?"
- done
-
-_Route16EndBattleText1::
- text "Don't you"
- line "dare laugh!"
- prompt
-
-_Route16AfterBattleText1::
- text "We like just"
- line "hanging here,"
- cont "what's it to you?"
- done
-
-_Route16BattleText2::
- text "Nice BIKE!"
- line "Hand it over!"
- done
-
-_Route16EndBattleText2::
- text "Knock"
- line "out!"
- prompt
-
-_Route16AfterBattleText2::
- text "Forget it, who"
- line "needs your BIKE!"
- done
-
-_Route16BattleText3::
- text "Come out and play,"
- line "little mouse!"
- done
-
-_Route16EndBattleText3::
- text "You"
- line "little rat!"
- prompt
-
-_Route16AfterBattleText3::
- text "I hate losing!"
- line "Get away from me!"
- done
-
-_Route16BattleText4::
- text "Hey, you just"
- line "bumped me!"
- done
-
-_Route16EndBattleText4::
- text "Kaboom!"
- prompt
-
-_Route16AfterBattleText4::
- text "You can also get"
- line "to FUCHSIA from"
- cont "VERMILION using a"
- cont "coastal road."
- done
-
-_Route16BattleText5::
- text "I'm feeling"
- line "hungry and mean!"
- done
-
-_Route16EndBattleText5::
- text "Bad,"
- line "bad, bad!"
- prompt
-
-_Route16AfterBattleText5::
- text "I like my #MON"
- line "ferocious! They"
- cont "tear up enemies!"
- done
-
-_Route16BattleText6::
- text "Sure, I'll go!"
- done
-
-_Route16EndBattleText6::
- text "Don't make"
- line "me mad!"
- prompt
-
-_Route16AfterBattleText6::
- text "I like harassing"
- line "people with my"
- cont "vicious #MON!"
- done
-
-_Route16Text7::
- text "A sleeping #MON"
- line "blocks the way!"
- done
-
-_Route16Text10::
- text "SNORLAX woke up!"
-
- para "It attacked in a"
- line "grumpy rage!"
- done
-
-_Route16Text11::
- text "With a big yawn,"
- line "SNORLAX returned"
- cont "to the mountains!"
- done
-
-_Route16Text8::
- text "Enjoy the slope!"
- line "CYCLING ROAD"
- done
-
-_Route16Text9::
- text "ROUTE 16"
- line "CELADON CITY -"
- cont "FUCHSIA CITY"
- done
--- a/text/maps/Route16FlyHouse.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-_Route16HouseText3::
- text "Oh, you found my"
- line "secret retreat!"
-
- para "Please don't tell"
- line "anyone I'm here."
- cont "I'll make it up"
- cont "to you with this!"
- prompt
-
-_ReceivedHM02Text::
- text "<PLAYER> received"
- line "HM02!@@"
-
-_HM02ExplanationText::
- text "HM02 is FLY."
- line "It will take you"
- cont "back to any town."
-
- para "Put it to good"
- line "use!"
- done
-
-_HM02NoRoomText::
- text "You don't have any"
- line "room for this."
- done
-
-_Route16HouseText_1e652::
- text "FEAROW: Kyueen!"
- done
--- a/text/maps/Route16Gate1F.asm
+++ /dev/null
@@ -1,22 +1,0 @@
-_Route16GateText_49777::
- text "No pedestrians"
- line "are allowed on"
- cont "CYCLING ROAD!"
- done
-
-_Route16GateText_4977c::
- text "CYCLING ROAD is a"
- line "downhill course"
- cont "by the sea. It's"
- cont "a great ride."
- done
-
-_Route16GateText_49781::
- text "Excuse me! Wait"
- line "up please!"
- done
-
-_Route16GateText2::
- text "How'd you get in?"
- line "Good effort!"
- done
--- a/text/maps/Route16Gate2F.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-_Route16GateUpstairsText_49820::
- text "I'm going for a"
- line "ride with my girl"
- cont "friend!"
- done
-
-_Route16GateUpstairsText_4982f::
- text "We're going"
- line "riding together!"
- done
-
-_Route16GateUpstairsText_4983b::
- text "Looked into the"
- line "binoculars."
-
- para "It's CELADON DEPT."
- line "STORE!"
- done
-
-_Route16GateUpstairsText_49847::
- text "Looked into the"
- line "binoculars."
-
- para "There's a long"
- line "path over water!"
- done
--- a/text/maps/Route17.asm
+++ /dev/null
@@ -1,195 +1,0 @@
-_Route17BattleText1::
- text "There's no money"
- line "in fighting kids!"
- done
-
-_Route17EndBattleText1::
- text "Burned"
- line "out!"
- prompt
-
-_Route17AfterBattleText1::
- text "Good stuff is"
- line "lying around on"
- cont "CYCLING ROAD!"
- done
-
-_Route17BattleText2::
- text "What do you want,"
- line "kiddo?"
- done
-
-_Route17EndBattleText2::
- text "Whoo!"
- prompt
-
-_Route17AfterBattleText2::
- text "I could belly-"
- line "bump you outta"
- cont "here!"
- done
-
-_Route17BattleText3::
- text "You heading to"
- line "FUCHSIA?"
- done
-
-_Route17EndBattleText3::
- text "Crash and"
- line "burn!"
- prompt
-
-_Route17AfterBattleText3::
- text "I love racing"
- line "downhill!"
- done
-
-_Route17BattleText4::
- text "We're BIKERs!"
- line "Highway stars!"
- done
-
-_Route17EndBattleText4::
- text "Smoked!"
- prompt
-
-_Route17AfterBattleText4::
- text "Are you looking"
- line "for adventure?"
- done
-
-_Route17BattleText5::
- text "Let VOLTORB"
- line "electrify you!"
- done
-
-_Route17EndBattleText5::
- text "Grounded"
- line "out!"
- prompt
-
-_Route17AfterBattleText5::
- text "I got my VOLTORB"
- line "at the abandoned"
- cont "POWER PLANT."
- done
-
-_Route17BattleText6::
- text "My #MON won't"
- line "evolve! Why?"
- done
-
-_Route17EndBattleText6::
- text "Why,"
- line "you!"
- prompt
-
-_Route17AfterBattleText6::
- text "Maybe some #MON"
- line "need element"
- cont "STONEs to evolve."
- done
-
-_Route17BattleText7::
- text "I need a little"
- line "exercise!"
- done
-
-_Route17EndBattleText7::
- text "Whew!"
- line "Good workout!"
- prompt
-
-_Route17AfterBattleText7::
- text "I'm sure I lost"
- line "weight there!"
- done
-
-_Route17BattleText8::
- text "Be a rebel!"
- done
-
-_Route17EndBattleText8::
- text "Aaaargh!"
- prompt
-
-_Route17AfterBattleText8::
- text "Be ready to fight"
- line "for your beliefs!"
- done
-
-_Route17BattleText9::
- text "Nice BIKE!"
- line "How's it handle?"
- done
-
-_Route17EndBattleText9::
- text "Shoot!"
- prompt
-
-_Route17AfterBattleText9::
- text "The slope makes"
- line "it hard to steer!"
- done
-
-_Route17BattleText10::
- text "Get lost kid!"
- line "I'm bushed!"
- done
-
-_Route17EndBattleText10::
- text "Are you"
- line "satisfied?"
- prompt
-
-_Route17AfterBattleText10::
- text "I need to catch"
- line "a few Zs!"
- done
-
-_Route17Text11::
- text "It's a notice!"
-
- para "Watch out for"
- line "discarded items!"
- done
-
-_Route17Text12::
- text "TRAINER TIPS"
-
- para "All #MON are"
- line "unique."
-
- para "Even #MON of"
- line "the same type and"
- cont "level grow at"
- cont "different rates."
- done
-
-_Route17Text13::
- text "TRAINER TIPS"
-
- para "Press the A or B"
- line "Button to stay in"
- cont "place while on a"
- cont "slope."
- done
-
-_Route17Text14::
- text "ROUTE 17"
- line "CELADON CITY -"
- cont "FUCHSIA CITY"
- done
-
-_Route17Text15::
- text "It's a notice!"
-
- para "Don't throw the"
- line "game, throw #"
- cont "BALLs instead!"
- done
-
-_Route17Text16::
- text "CYCLING ROAD"
- line "Slope ends here!"
- done
--- a/text/maps/Route18.asm
+++ /dev/null
@@ -1,58 +1,0 @@
-_Route18BattleText1::
- text "I always check"
- line "every grassy area"
- cont "for new #MON."
- done
-
-_Route18EndBattleText1::
- text "Tch!"
- prompt
-
-_Route18AfterBattleText1::
- text "I wish I had a"
- line "BIKE!"
- done
-
-_Route18BattleText2::
- text "Kurukkoo!"
- line "How do you like"
- cont "my bird call?"
- done
-
-_Route18EndBattleText2::
- text "I"
- line "had to bug you!"
- prompt
-
-_Route18AfterBattleText2::
- text "I also collect sea"
- line "#MON on"
- cont "weekends!"
- done
-
-_Route18BattleText3::
- text "This is my turf!"
- line "Get out of here!"
- done
-
-_Route18EndBattleText3::
- text "Darn!"
- prompt
-
-_Route18AfterBattleText3::
- text "This is my fave"
- line "#MON hunting"
- cont "area!"
- done
-
-_Route18Text4::
- text "ROUTE 18"
- line "CELADON CITY -"
- cont "FUCHSIA CITY"
- done
-
-_Route18Text5::
- text "CYCLING ROAD"
- line "No pedestrians"
- cont "permitted!"
- done
--- a/text/maps/Route18Gate1F.asm
+++ /dev/null
@@ -1,14 +1,0 @@
-_Route18GateText_49928::
- text "You need a BICYCLE"
- line "for CYCLING ROAD!"
- done
-
-_Route18GateText_4992d::
- text "CYCLING ROAD is"
- line "all uphill from"
- cont "here."
- done
-
-_Route18GateText_49932::
- text "Excuse me!"
- done
--- a/text/maps/Route18Gate2F.asm
+++ /dev/null
@@ -1,15 +1,0 @@
-_Route18GateUpstairsText_49993::
- text "Looked into the"
- line "binoculars."
-
- para "PALLET TOWN is in"
- line "the west!"
- done
-
-_Route18GateUpstairsText_4999f::
- text "Looked into the"
- line "binoculars."
-
- para "There are people"
- line "swimming!"
- done
--- a/text/maps/Route19.asm
+++ /dev/null
@@ -1,157 +1,0 @@
-_Route19BattleText1::
- text "Have to warm up"
- line "before my swim!"
- done
-
-_Route19EndBattleText1::
- text "All"
- line "warmed up!"
- prompt
-
-_Route19AfterBattleText1::
- text "Thanks, kid! I'm"
- line "ready for a swim!"
- done
-
-_Route19BattleText2::
- text "Wait! You'll have"
- line "a heart attack!"
- done
-
-_Route19EndBattleText2::
- text "Ooh!"
- line "That's chilly!"
- prompt
-
-_Route19AfterBattleText2::
- text "Watch out for"
- line "TENTACOOL!"
- done
-
-_Route19BattleText3::
- text "I love swimming!"
- line "What about you?"
- done
-
-_Route19EndBattleText3::
- text "Belly"
- line "flop!"
- prompt
-
-_Route19AfterBattleText3::
- text "I can beat #MON"
- line "at swimming!"
- done
-
-_Route19BattleText4::
- text "What's beyond the"
- line "horizon?"
- done
-
-_Route19EndBattleText4::
- text "Glub!"
- prompt
-
-_Route19AfterBattleText4::
- text "I see a couple of"
- line "islands!"
- done
-
-_Route19BattleText5::
- text "I tried diving"
- line "for #MON, but"
- cont "it was a no go!"
- done
-
-_Route19EndBattleText5::
- text "Help!"
- prompt
-
-_Route19AfterBattleText5::
- text "You have to fish"
- line "for sea #MON!"
- done
-
-_Route19BattleText6::
- text "I look at the"
- line "sea to forget!"
- done
-
-_Route19EndBattleText6::
- text "Ooh!"
- line "Traumatic!"
- prompt
-
-_Route19AfterBattleText6::
- text "I'm looking at the"
- line "sea to forget!"
- done
-
-_Route19BattleText7::
- text "Oh, I just love"
- line "your ride! Can I"
- cont "have it if I win?"
- done
-
-_Route19EndBattleText7::
- text "Oh!"
- line "I lost!"
- prompt
-
-_Route19AfterBattleText7::
- text "It's still a long"
- line "way to go to"
- cont "SEAFOAM ISLANDS."
- done
-
-_Route19BattleText8::
- text "Swimming's great!"
- line "Sunburns aren't!"
- done
-
-_Route19EndBattleText8::
- text "Shocker!"
- prompt
-
-_Route19AfterBattleText8::
- text "My boy friend"
- line "wanted to swim to"
- cont "SEAFOAM ISLANDS."
- done
-
-_Route19BattleText9::
- text "These waters are"
- line "treacherous!"
- done
-
-_Route19EndBattleText9::
- text "Ooh!"
- line "Dangerous!"
- prompt
-
-_Route19AfterBattleText9::
- text "I got a cramp!"
- line "Glub, glub..."
- done
-
-_Route19BattleText10::
- text "I swam here, but"
- line "I'm tired."
- done
-
-_Route19EndBattleText10::
- text "I'm"
- line "exhausted..."
- prompt
-
-_Route19AfterBattleText10::
- text "LAPRAS is so big,"
- line "it must keep you"
- cont "dry on water."
- done
-
-_Route19Text11::
- text "SEA ROUTE 19"
- line "FUCHSIA CITY -"
- cont "SEAFOAM ISLANDS"
- done
--- a/text/maps/Route2.asm
+++ /dev/null
@@ -1,9 +1,0 @@
-_Route2Text3::
- text "ROUTE 2"
- line "VIRIDIAN CITY -"
- cont "PEWTER CITY"
- done
-
-_Route2Text4::
- text "DIGLETT's CAVE"
- done
--- a/text/maps/Route20.asm
+++ /dev/null
@@ -1,156 +1,0 @@
-_Route20BattleText1::
- text "The water is"
- line "shallow here."
- done
-
-_Route20EndBattleText1::
- text "Splash!"
- prompt
-
-_Route20AfterBattleText1::
- text "I wish I could"
- line "ride my #MON."
- done
-
-_Route20BattleText2::
- text "SEAFOAM is a"
- line "quiet getaway!"
- done
-
-_Route20EndBattleText2::
- text "Quit it!"
- prompt
-
-_Route20AfterBattleText2::
- text "There's a huge"
- line "cavern underneath"
- cont "this island."
- done
-
-_Route20BattleText3::
- text "I love floating"
- line "with the fishes!"
- done
-
-_Route20EndBattleText3::
- text "Yowch!"
- prompt
-
-_Route20AfterBattleText3::
- text "Want to float"
- line "with me?"
- done
-
-_Route20BattleText4::
- text "Are you on"
- line "vacation too?"
- done
-
-_Route20EndBattleText4::
- text "No"
- line "mercy at all!"
- prompt
-
-_Route20AfterBattleText4::
- text "SEAFOAM used to"
- line "be one island!"
- done
-
-_Route20BattleText5::
- text "Check out my buff"
- line "physique!"
- done
-
-_Route20EndBattleText5::
- text "Wimpy!"
- prompt
-
-_Route20AfterBattleText5::
- text "I should've been"
- line "buffing up my"
- cont "#MON, not me!"
- done
-
-_Route20BattleText6::
- text "Why are you"
- line "riding a #MON?"
- cont "Can't you swim?"
- done
-
-_Route20EndBattleText6::
- text "Ouch!"
- line "Torpedoed!"
- prompt
-
-_Route20AfterBattleText6::
- text "Riding a #MON"
- line "sure looks fun!"
- done
-
-_Route20BattleText7::
- text "I rode my bird"
- line "#MON here!"
- done
-
-_Route20EndBattleText7::
- text "Oh"
- line "no!"
- prompt
-
-_Route20AfterBattleText7::
- text "My birds can't"
- line "FLY me back!"
- done
-
-_Route20BattleText8::
- text "My boy friend gave"
- line "me big pearls!"
- done
-
-_Route20EndBattleText8::
- text "Don't"
- line "touch my pearls!"
- prompt
-
-_Route20AfterBattleText8::
- text "Will my pearls"
- line "grow bigger"
- cont "inside CLOYSTER?"
- done
-
-_Route20BattleText9::
- text "I swam here from"
- line "CINNABAR ISLAND!"
- done
-
-_Route20EndBattleText9::
- text "I'm"
- line "so disappointed!"
- prompt
-
-_Route20AfterBattleText9::
- text "#MON have"
- line "taken over an"
- cont "abandoned mansion"
- cont "on CINNABAR!"
- done
-
-_Route20BattleText10::
- text "CINNABAR, in the"
- line "west, has a LAB"
- cont "for #MON."
- done
-
-_Route20EndBattleText10::
- text "Wait!"
- prompt
-
-_Route20AfterBattleText10::
- text "CINNABAR is a "
- line "volcanic island!"
- done
-
-_Route20Text12::
-_Route20Text11::
- text "SEAFOAM ISLANDS"
- done
--- a/text/maps/Route21.asm
+++ /dev/null
@@ -1,137 +1,0 @@
-_Route21BattleText1::
- text "You want to know"
- line "if the fish are"
- cont "biting?"
- done
-
-_Route21EndBattleText1::
- text "Dang!"
- prompt
-
-_Route21AfterBattleText1::
- text "I can't catch"
- line "anything good!"
- done
-
-_Route21BattleText2::
- text "I got a big haul!"
- line "Wanna go for it?"
- done
-
-_Route21EndBattleText2::
- text "Darn"
- line "MAGIKARP!"
- prompt
-
-_Route21AfterBattleText2::
- text "I seem to only"
- line "catch MAGIKARP!"
- done
-
-_Route21BattleText3::
- text "The sea cleanses"
- line "my body and soul!"
- done
-
-_Route21EndBattleText3::
- text "Ayah!"
- prompt
-
-_Route21AfterBattleText3::
- text "I like the"
- line "mountains too!"
- done
-
-_Route21BattleText4::
- text "What's wrong with"
- line "me swimming?"
- done
-
-_Route21EndBattleText4::
- text "Cheap"
- line "shot!"
- prompt
-
-_Route21AfterBattleText4::
- text "I look like what?"
- line "A studded inner"
- cont "tube? Get lost!"
- done
-
-_Route21BattleText5::
- text "I caught all my"
- line "#MON at sea!"
- done
-
-_Route21EndBattleText5::
- text "Diver!!"
- line "Down!!"
- prompt
-
-_Route21AfterBattleText5::
- text "Where'd you catch"
- line "your #MON?"
- done
-
-_Route21BattleText6::
- text "Right now, I'm in"
- line "a triathlon meet!"
- done
-
-_Route21EndBattleText6::
- text "Pant..."
- line "pant...pant..."
- prompt
-
-_Route21AfterBattleText6::
- text "I'm beat!"
- line "But, I still have"
- cont "the bike race and"
- cont "marathon left!"
- done
-
-_Route21BattleText7::
- text "Ahh! Feel the sun"
- line "and the wind!"
- done
-
-_Route21EndBattleText7::
- text "Yow!"
- line "I lost!"
- prompt
-
-_Route21AfterBattleText7::
- text "I'm sunburnt to a"
- line "crisp!"
- done
-
-_Route21BattleText8::
- text "Hey, don't scare"
- line "away the fish!"
- done
-
-_Route21EndBattleText8::
- text "Sorry!"
- line "I didn't mean it!"
- prompt
-
-_Route21AfterBattleText8::
- text "I was just angry"
- line "that I couldn't"
- cont "catch anything."
- done
-
-_Route21BattleText9::
- text "Keep me company"
- line "'til I get a hit!"
- done
-
-_Route21EndBattleText9::
- text "That"
- line "burned some time."
- prompt
-
-_Route21AfterBattleText9::
- text "Oh wait! I got a"
- line "bite! Yeah!"
- done
--- a/text/maps/Route22.asm
+++ /dev/null
@@ -1,104 +1,0 @@
-_Route22RivalBeforeBattleText1::
- text "<RIVAL>: Hey!"
- line "<PLAYER>!"
-
- para "You're going to"
- line "#MON LEAGUE?"
-
- para "Forget it! You"
- line "probably don't"
- cont "have any BADGEs!"
-
- para "The guard won't"
- line "let you through!"
-
- para "By the way, did"
- line "your #MON"
- cont "get any stronger?"
- done
-
-_Route22RivalAfterBattleText1::
- text "I heard #MON"
- line "LEAGUE has many"
- cont "tough trainers!"
-
- para "I have to figure"
- line "out how to get"
- cont "past them!"
-
- para "You should quit"
- line "dawdling and get"
- cont "a move on!"
- done
-
-_Route22RivalDefeatedText1::
- text "Awww!"
- line "You just lucked"
- cont "out!"
- prompt
-
-_Route22Text_511bc::
- text "<RIVAL>: What?"
- line "Why do I have 2"
- cont "#MON?"
-
- para "You should catch"
- cont "some more too!"
- prompt
-
-_Route22RivalBeforeBattleText2::
- text "<RIVAL>: What?"
- line "<PLAYER>! What a"
- cont "surprise to see"
- cont "you here!"
-
- para "So you're going to"
- line "#MON LEAGUE?"
-
- para "You collected all"
- line "the BADGEs too?"
- cont "That's cool!"
-
- para "Then I'll whip you"
- line "<PLAYER> as a"
- cont "warm up for"
- cont "#MON LEAGUE!"
-
- para "Come on!"
- done
-
-_Route22RivalAfterBattleText2::
- text "That loosened me"
- line "up! I'm ready for"
- cont "#MON LEAGUE!"
-
- para "<PLAYER>, you need"
- line "more practice!"
-
- para "But hey, you know"
- line "that! I'm out of"
- cont "here. Smell ya!"
- done
-
-_Route22RivalDefeatedText2::
- text "What!?"
-
- para "I was just"
- line "careless!"
- prompt
-
-_Route22Text_511d0::
- text "<RIVAL>: Hahaha!"
- line "<PLAYER>! That's"
- cont "your best? You're"
- cont "nowhere near as"
- cont "good as me, pal!"
-
- para "Go train some"
- line "more! You loser!"
- prompt
-
-_Route22FrontGateText::
- text "#MON LEAGUE"
- line "Front Gate"
- done
--- a/text/maps/Route22Gate.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-_Route22GateText_1e704::
- text "Only truly skilled"
- line "trainers are"
- cont "allowed through."
-
- para "You don't have the"
- line "BOULDERBADGE yet!@@"
-
-_Route22GateText_1e715::
- text ""
-
- para "The rules are"
- line "rules. I can't"
- cont "let you pass."
- done
-
-_Route22GateText_1e71a::
- text "Oh! That is the"
- line "BOULDERBADGE!"
- cont "Go right ahead!@@"
--- a/text/maps/Route23.asm
+++ /dev/null
@@ -1,39 +1,0 @@
-_VictoryRoadGuardText1::
- text "You can pass here"
- line "only if you have"
- cont "the @"
- TX_RAM wcd6d
- text "!"
-
- para "You don't have the"
- line "@"
- TX_RAM wcd6d
- text " yet!"
-
- para "You have to have"
- line "it to get to"
- cont "#MON LEAGUE!@@"
-
-_VictoryRoadGuardText2::
- text "You can pass here"
- line "only if you have"
- cont "the @"
- TX_RAM wcd6d
- text "!"
-
- para "Oh! That is the"
- line "@"
- TX_RAM wcd6d
- text "!@@"
-
-_VictoryRoadGuardText_513a3::
- text ""
-
- para "OK then! Please,"
- line "go right ahead!"
- done
-
-_Route23Text8::
- text "VICTORY ROAD GATE"
- line "- #MON LEAGUE"
- done
--- a/text/maps/Route24.asm
+++ /dev/null
@@ -1,65 +1,0 @@
-_Route24Text_51510::
- text "Congratulations!"
- line "You beat our 5"
- cont "contest trainers!@@"
-
-_Route24Text_51515::
- text ""
-
- para "You just earned a"
- line "fabulous prize!"
- prompt
-
-_Route24Text_5151a::
- text "<PLAYER> received"
- line "a @"
- TX_RAM wcf4b
- text "!@@"
-
-_Route24Text_51521::
- text "You don't have"
- line "any room!"
- done
-
-_Route24Text_51526::
- text "By the way, would"
- line "you like to join"
- cont "TEAM ROCKET?"
-
- para "We're a group"
- line "dedicated to evil"
- cont "using #MON!"
-
- para "Want to join?"
-
- para "Are you sure?"
-
- para "Come on, join us!"
-
- para "I'm telling you"
- line "to join!"
-
- para "OK, you need"
- line "convincing!"
-
- para "I'll make you an"
- line "offer you can't"
- cont "refuse!"
- done
-
-_Route24Text_5152b::
- text "Arrgh!"
- line "You are good!"
- prompt
-
-_Route24Text_51530::
- text "With your ability,"
- line "you could become"
- cont "a top leader in"
- cont "TEAM ROCKET!"
- done
-
-_Route24BattleText1::
- text "I saw your feat"
- line "from the grass!"
- done
--- a/text/maps/Route24_2.asm
+++ /dev/null
@@ -1,90 +1,0 @@
-_Route24EndBattleText1::
- text "I"
- line "thought not!"
- prompt
-
-_Route24AfterBattleText1::
- text "I hid because the"
- line "people on the"
- cont "bridge scared me!"
- done
-
-_Route24BattleText2::
- text "OK! I'm No. 5!"
- line "I'll stomp you!"
- done
-
-_Route24EndBattleText2::
- text "Whoa!"
- line "Too much!"
- prompt
-
-_Route24AfterBattleText2::
- text "I did my best, I"
- line "have no regrets!"
- done
-
-_Route24BattleText3::
- text "I'm No. 4!"
- line "Getting tired?"
- done
-
-_Route24EndBattleText3::
- text "I lost"
- line "too!"
- prompt
-
-_Route24AfterBattleText3::
- text "I did my best, so"
- line "I've no regrets!"
- done
-
-_Route24BattleText4::
- text "Here's No. 3!"
- line "I won't be easy!"
- done
-
-_Route24EndBattleText4::
- text "Ow!"
- line "Stomped flat!"
- prompt
-
-_Route24AfterBattleText4::
- text "I did my best, I"
- line "have no regrets!"
- done
-
-_Route24BattleText5::
- text "I'm second!"
- line "Now it's serious!"
- done
-
-_Route24EndBattleText5::
- text "How could I"
- line "lose?"
- prompt
-
-_Route24AfterBattleText5::
- text "I did my best, I"
- line "have no regrets!"
- done
-
-_Route24BattleText6::
- text "This is NUGGET"
- line "BRIDGE! Beat us 5"
- cont "trainers and win"
- cont "a fabulous prize!"
-
- para "Think you got"
- line "what it takes?"
- done
-
-_Route24EndBattleText6::
- text "Whoo!"
- line "Good stuff!"
- prompt
-
-_Route24AfterBattleText6::
- text "I did my best, I"
- line "have no regrets!"
- done
--- a/text/maps/Route25.asm
+++ /dev/null
@@ -1,156 +1,0 @@
-_Route25BattleText1::
- text "Local trainers"
- line "come here to"
- cont "practice!"
- done
-
-_Route25EndBattleText1::
- text "You're"
- line "decent."
- prompt
-
-_Route25AfterBattleText1::
- text "All #MON have"
- line "weaknesses. It's"
- cont "best to raise"
- cont "different kinds."
- done
-
-_Route25BattleText2::
- text "Dad took me to a"
- line "great party on"
- cont "S.S.ANNE at"
- cont "VERMILION CITY!"
- done
-
-_Route25EndBattleText2::
- text "I'm"
- line "not mad!"
- prompt
-
-_Route25AfterBattleText2::
- text "On S.S.ANNE, I"
- line "saw trainers from"
- cont "around the world."
- done
-
-_Route25BattleText3::
- text "I'm a cool guy."
- line "I've got a girl"
- cont "friend!"
- done
-
-_Route25EndBattleText3::
- text "Aww,"
- line "darn..."
- prompt
-
-_Route25AfterBattleText3::
- text "Oh well. My girl"
- line "will cheer me up."
- done
-
-_Route25BattleText4::
- text "Hi! My boy"
- line "friend is cool!"
- done
-
-_Route25EndBattleText4::
- text "I was in"
- line "bad condition!"
- prompt
-
-_Route25AfterBattleText4::
- text "I wish my guy was"
- line "as good as you!"
- done
-
-_Route25BattleText5::
- text "I knew I had to"
- line "fight you!"
- done
-
-_Route25EndBattleText5::
- text "I knew"
- line "I'd lose too!"
- prompt
-
-_Route25AfterBattleText5::
- text "If your #MON"
- line "gets confused or"
- cont "falls asleep,"
- cont "switch it!"
- done
-
-_Route25BattleText6::
- text "My friend has a"
- line "cute #MON."
- cont "I'm so jealous!"
- done
-
-_Route25EndBattleText6::
- text "I'm"
- line "not so jealous!"
- prompt
-
-_Route25AfterBattleText6::
- text "You came from MT."
- line "MOON? May I have"
- cont "a CLEFAIRY?"
- done
-
-_Route25BattleText7::
- text "I just got down"
- line "from MT.MOON,"
- cont "but I'm ready!"
- done
-
-_Route25EndBattleText7::
- text "You"
- line "worked hard!"
- prompt
-
-_Route25AfterBattleText7::
- text "Drat!"
- line "A ZUBAT bit me"
- cont "back in there."
- done
-
-_Route25BattleText8::
- text "I'm off to see a"
- line "#MON collector"
- cont "at the cape!"
- done
-
-_Route25EndBattleText8::
- text "You"
- line "got me."
- prompt
-
-_Route25AfterBattleText8::
- text "The collector has"
- line "many rare kinds"
- cont "of #MON."
- done
-
-_Route25BattleText9::
- text "You're going to"
- line "see BILL? First,"
- cont "let's fight!"
- done
-
-_Route25EndBattleText9::
- text "You're"
- line "something."
- prompt
-
-_Route25AfterBattleText9::
- text "The trail below"
- line "is a shortcut to"
- cont "CERULEAN CITY."
- done
-
-_Route25Text11::
- text "SEA COTTAGE"
- line "BILL lives here!"
- done
--- a/text/maps/Route2Gate.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-_Route2GateText_5d616::
- text "The HM FLASH"
- line "lights even the"
- cont "darkest dungeons."
- done
-
-_Route2GateText2::
- text "Once a #MON"
- line "learns FLASH, you"
- cont "can get through"
- cont "ROCK TUNNEL."
- done
--- a/text/maps/Route2TradeHouse.asm
+++ /dev/null
@@ -1,6 +1,0 @@
-_Route2HouseText1::
- text "A fainted #MON"
- line "can't fight. But, "
- cont "it can still use "
- cont "moves like CUT!"
- done
--- a/text/maps/Route3.asm
+++ /dev/null
@@ -1,145 +1,0 @@
-_Route3Text1::
- text "Whew... I better"
- line "take a rest..."
- cont "Groan..."
-
- para "That tunnel from"
- line "CERULEAN takes a"
- cont "lot out of you!"
- done
-
-_Route3BattleText1::
- text "Hey! I met you in"
- line "VIRIDIAN FOREST!"
- done
-
-_Route3EndBattleText1::
- text "You"
- line "beat me again!"
- prompt
-
-_Route3AfterBattleText1::
- text "There are other"
- line "kinds of #MON"
- cont "than those found"
- cont "in the forest!"
- done
-
-_Route3BattleText2::
- text "Hi! I like shorts!"
- line "They're comfy and"
- cont "easy to wear!"
- done
-
-_Route3EndBattleText2::
- text "I don't"
- line "believe it!"
- prompt
-
-_Route3AfterBattleText2::
- text "Are you storing"
- line "your #MON on"
- cont "PC? Each BOX can"
- cont "hold 20 #MON!"
- done
-
-_Route3BattleText3::
- text "You looked at me,"
- line "didn't you?"
- done
-
-_Route3EndBattleText3::
- text "You're"
- line "mean!"
- prompt
-
-_Route3AfterBattleText3::
- text "Quit staring if"
- line "you don't want to"
- cont "fight!"
- done
-
-_Route3BattleText4::
- text "Are you a trainer?"
- line "Let's fight!"
- done
-
-_Route3EndBattleText4::
- text "If I"
- line "had new #MON I"
- cont "would've won!"
- prompt
-
-_Route3AfterBattleText4::
- text "If a #MON BOX"
- line "on the PC gets"
- cont "full, just switch"
- cont "to another BOX!"
- done
-
-_Route3BattleText5::
- text "That look you"
- line "gave me, it's so"
- cont "intriguing!"
- done
-
-_Route3EndBattleText5::
- text "Be nice!"
- prompt
-
-_Route3AfterBattleText5::
- text "Avoid fights by"
- line "not letting"
- cont "people see you!"
- done
-
-_Route3BattleText6::
- text "Hey! You're not"
- line "wearing shorts!"
- done
-
-_Route3EndBattleText6::
- text "Lost!"
- line "Lost! Lost!"
- prompt
-
-_Route3AfterBattleText6::
- text "I always wear"
- line "shorts, even in"
- cont "winter!"
- done
-
-_Route3BattleText7::
- text "You can fight my"
- line "new #MON!"
- done
-
-_Route3EndBattleText7::
- text "Done"
- line "like dinner!"
- prompt
-
-_Route3AfterBattleText7::
- text "Trained #MON"
- line "are stronger than"
- cont "the wild ones!"
- done
-
-_Route3BattleText8::
- text "Eek! Did you"
- line "touch me?"
- done
-
-_Route3EndBattleText8::
- text "That's it?"
- prompt
-
-_Route3AfterBattleText8::
- text "ROUTE 4 is at the"
- line "foot of MT.MOON."
- done
-
-_Route3Text10::
- text "ROUTE 3"
- line "MT.MOON AHEAD"
- done
--- a/text/maps/Route4.asm
+++ /dev/null
@@ -1,35 +1,0 @@
-_Route4Text1::
- text "Ouch! I tripped"
- line "over a rocky"
- cont "#MON, GEODUDE!"
- done
-
-_Route4BattleText1::
- text "I came to get my"
- line "mushroom #MON!"
- done
-
-_Route4EndBattleText1::
- text "Oh! My cute"
- line "mushroom #MON!"
- prompt
-
-_Route4AfterBattleText1::
- text "There might not"
- line "be any more"
- cont "mushrooms here."
-
- para "I think I got"
- line "them all."
- done
-
-_Route4Text5::
- text "MT.MOON"
- line "Tunnel Entrance"
- done
-
-_Route4Text6::
- text "ROUTE 4"
- line "MT.MOON -"
- cont "CERULEAN CITY"
- done
--- a/text/maps/Route5.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-_Route5Text1::
- text "UNDERGROUND PATH"
- line "CERULEAN CITY -"
- cont "VERMILION CITY"
- done
--- a/text/maps/Route6.asm
+++ /dev/null
@@ -1,97 +1,0 @@
-_Route6BattleText1::
- text "Who's there?"
- line "Quit listening in"
- cont "on us!"
- done
-
-_Route6EndBattleText1::
- text "I"
- line "just can't win!"
- prompt
-
-_Route6AfterBattleText1::
- text "Whisper..."
- line "whisper..."
- done
-
-_Route6BattleText2::
- text "Excuse me! This"
- line "is a private"
- cont "conversation!"
- done
-
-_Route6EndBattleText2::
- text "Ugh!"
- line "I hate losing!"
- prompt
-
-_Route6BattleText3::
- text "There aren't many"
- line "bugs out here."
- done
-
-_Route6EndBattleText3::
- text "No!"
- line "You're kidding!"
- prompt
-
-_Route6AfterBattleText3::
- text "I like bugs, so"
- line "I'm going back to"
- cont "VIRIDIAN FOREST."
- done
-
-_Route6BattleText4::
- text "Huh? You want"
- line "to talk to me?"
- done
-
-_Route6EndBattleText4::
- text "I"
- line "didn't start it!"
- prompt
-
-_Route6AfterBattleText4::
- text "I should carry"
- line "more #MON with"
- cont "me for safety."
- done
-
-_Route6BattleText5::
- text "Me? Well, OK."
- line "I'll play!"
- done
-
-_Route6EndBattleText5::
- text "Just"
- line "didn't work!"
- prompt
-
-_Route6AfterBattleText5::
- text "I want to get"
- line "stronger! What's"
- cont "your secret?"
- done
-
-_Route6BattleText6::
- text "I've never seen"
- line "you around!"
- cont "Are you good?"
- done
-
-_Route6EndBattleText6::
- text "You"
- line "are too good!"
- prompt
-
-_Route6AfterBattleText6::
- text "Are my #MON"
- line "weak? Or, am I"
- cont "just bad?"
- done
-
-_Route6Text7::
- text "UNDERGROUND PATH"
- line "CERULEAN CITY -"
- cont "VERMILION CITY"
- done
--- a/text/maps/Route7.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-_Route7Text1::
- text "UNDERGROUND PATH"
- line "CELADON CITY -"
- cont "LAVENDER TOWN"
- done
--- a/text/maps/Route8.asm
+++ /dev/null
@@ -1,154 +1,0 @@
-_Route8BattleText1::
- text "You look good at"
- line "#MON, but"
- cont "how's your chem?"
- done
-
-_Route8EndBattleText1::
- text "Ow!"
- line "Meltdown!"
- prompt
-
-_Route8AfterBattleText1::
- text "I am better at"
- line "school than this!"
- done
-
-_Route8BattleText2::
- text "All right! Let's"
- line "roll the dice!"
- done
-
-_Route8EndBattleText2::
- text "Drat!"
- line "Came up short!"
- prompt
-
-_Route8AfterBattleText2::
- text "Lady Luck's not"
- line "with me today!"
- done
-
-_Route8BattleText3::
- text "You need strategy"
- line "to win at this!"
- done
-
-_Route8EndBattleText3::
- text "It's"
- line "not logical!"
- prompt
-
-_Route8AfterBattleText3::
- text "Go with GRIMER"
- line "first...and..."
- cont "...and...then..."
- done
-
-_Route8BattleText4::
- text "I like NIDORAN, so"
- line "I collect them!"
- done
-
-_Route8EndBattleText4::
- text "Why? Why??"
- prompt
-
-_Route8AfterBattleText4::
- text "When #MON grow"
- line "up they get ugly!"
- cont "They shouldn't"
- cont "evolve!"
- done
-
-_Route8BattleText5::
- text "School is fun, but"
- line "so are #MON."
- done
-
-_Route8EndBattleText5::
- text "I'll"
- line "stay with school."
- prompt
-
-_Route8AfterBattleText5::
- text "We're stuck here"
- line "because of the"
- cont "gates at SAFFRON."
- done
-
-_Route8BattleText6::
- text "MEOWTH is so cute,"
- line "meow, meow, meow!"
- done
-
-_Route8EndBattleText6::
- text "Meow!"
- prompt
-
-_Route8AfterBattleText6::
- text "I think PIDGEY"
- line "and RATTATA"
- cont "are cute too!"
- done
-
-_Route8BattleText7::
- text "We must look"
- line "silly standing"
- cont "here like this!"
- done
-
-_Route8EndBattleText7::
- text "Look what"
- line "you did!"
- prompt
-
-_Route8AfterBattleText7::
- text "SAFFRON's gate"
- line "keeper won't let"
- cont "us through."
- cont "He's so mean!"
- done
-
-_Route8BattleText8::
- text "I'm a rambling,"
- line "gambling dude!"
- done
-
-_Route8EndBattleText8::
- text "Missed"
- line "the big score!"
- prompt
-
-_Route8AfterBattleText8::
- text "Gambling and"
- line "#MON are like"
- cont "eating peanuts!"
- cont "Just can't stop!"
- done
-
-_Route8BattleText9::
- text "What's a cute,"
- line "round and fluffy"
- cont "#MON?"
- done
-
-_Route8EndBattleText9::
- text "Stop!"
-
- para "Don't be so mean"
- line "to my CLEFAIRY!"
- prompt
-
-_Route8AfterBattleText9::
- text "I heard that"
- line "CLEFAIRY evolves"
- cont "when it's exposed"
- cont "to a MOON STONE."
- done
-
-_Route8Text10::
- text "UNDERGROUND PATH"
- line "CELADON CITY -"
- cont "LAVENDER TOWN"
- done
--- a/text/maps/Route9.asm
+++ /dev/null
@@ -1,157 +1,0 @@
-_Route9BattleText1::
- text "You have #MON"
- line "with you!"
- cont "You're mine!"
- done
-
-_Route9EndBattleText1::
- text "You"
- line "deceived me!"
- prompt
-
-_Route9AfterBattleText1::
- text "You need light to"
- line "get through that"
- cont "dark tunnel ahead."
- done
-
-_Route9BattleText2::
- text "Who's that walking"
- line "with those good"
- cont "looking #MON?"
- done
-
-_Route9EndBattleText2::
- text "Out"
- line "like a light!"
- prompt
-
-_Route9AfterBattleText2::
- text "Keep walking!"
- done
-
-_Route9BattleText3::
- text "I'm taking ROCK"
- line "TUNNEL to go to"
- cont "LAVENDER..."
- done
-
-_Route9EndBattleText3::
- text "Can't"
- line "measure up!"
- prompt
-
-_Route9AfterBattleText3::
- text "Are you off to"
- line "ROCK TUNNEL too?"
- done
-
-_Route9BattleText4::
- text "Don't you dare"
- line "condescend me!"
- done
-
-_Route9EndBattleText4::
- text "No!"
- line "You're too much!"
- prompt
-
-_Route9AfterBattleText4::
- text "You're obviously"
- line "talented! Good"
- cont "luck to you!"
- done
-
-_Route9BattleText5::
- text "Bwahaha!"
- line "Great! I was"
- cont "bored, eh!"
- done
-
-_Route9EndBattleText5::
- text "Keep it"
- line "coming, eh!"
-
- para "Oh wait. I'm out"
- line "of #MON!"
- prompt
-
-_Route9AfterBattleText5::
- text "You sure had guts"
- line "standing up to me"
- cont "there, eh?"
- done
-
-_Route9BattleText6::
- text "Hahaha!"
- line "Aren't you a"
- cont "little toughie!"
- done
-
-_Route9EndBattleText6::
- text "What's"
- line "that?"
- prompt
-
-_Route9AfterBattleText6::
- text "Hahaha! Kids"
- line "should be tough!"
- done
-
-_Route9BattleText7::
- text "I got up early"
- line "every day to"
- cont "raise my #MON"
- cont "from cocoons!"
- done
-
-_Route9EndBattleText7::
- text "WHAT?"
-
- para "What a total"
- line "waste of time!"
- prompt
-
-_Route9AfterBattleText7::
- text "I have to collect"
- line "more than bugs to"
- cont "get stronger..."
- done
-
-_Route9BattleText8::
- text "Hahahaha!"
- line "Come on, dude!"
- done
-
-_Route9EndBattleText8::
- text "Hahahaha!"
- line "You beat me fair!"
- prompt
-
-_Route9AfterBattleText8::
- text "Hahahaha!"
- line "Us hearty guys"
- cont "always laugh!"
- done
-
-_Route9BattleText9::
- text "Go, my super bug"
- line "#MON!"
- done
-
-_Route9EndBattleText9::
- text "My"
- line "bugs..."
- prompt
-
-_Route9AfterBattleText9::
- text "If you don't like"
- line "bug #MON, you"
- cont "bug me!"
- done
-
-_Route9Text11::
- text "ROUTE 9"
- line "CERULEAN CITY-"
- cont "ROCK TUNNEL"
- done
--- a/text/maps/SSAnne1F.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-_SSAnne1Text1::
- text "Bonjour!"
- line "I am le waiter on"
- cont "this ship!"
-
- para "I will be happy"
- line "to serve you any-"
- cont "thing you please!"
-
- para "Ah! Le strong"
- line "silent type!"
- done
-
-_SSAnne1Text2::
- text "The passengers"
- line "are restless!"
-
- para "You might be"
- line "challenged by the"
- cont "more bored ones!"
- done
--- a/text/maps/SSAnne1FRooms.asm
+++ /dev/null
@@ -1,104 +1,0 @@
-_SSAnne8Text8::
- text "WIGGLYTUFF: Puup"
- line "pupuu!@@"
-
-_SSAnne8BattleText1::
- text "I travel alone"
- line "on my journeys!"
-
- para "My #MON are my"
- line "only friends!"
- done
-
-_SSAnne8EndBattleText1::
- text "My, my"
- line "friends..."
- prompt
-
-_SSAnne8AfterBattleText1::
- text "You should be"
- line "nice to friends!"
- done
-
-_SSAnne8BattleText2::
- text "You pup! How dare"
- line "you barge in!"
- done
-
-_SSAnne8EndBattleText2::
- text "Humph!"
- line "You rude child!"
- prompt
-
-_SSAnne8AfterBattleText2::
- text "I wish to be left"
- line "alone! Get out!"
- done
-
-_SSAnne8BattleText3::
- text "I love #MON!"
- line "Do you?"
- done
-
-_SSAnne8EndBattleText3::
- text "Wow! "
- line "You're great!"
- prompt
-
-_SSAnne8AfterBattleText3::
- text "Let me be your"
- line "friend, OK?"
-
- para "Then we can trade"
- line "#MON!"
- done
-
-_SSAnne8BattleText4::
- text "I collected these"
- line "#MON from all"
- cont "around the world!"
- done
-
-_SSAnne8EndBattleText4::
- text "Oh no!"
- line "I went around the"
- cont "world for these!"
- prompt
-
-_SSAnne8AfterBattleText4::
- text "You hurt my poor"
- line "worldly #MON!"
-
- para "I demand that you"
- line "heal them at a"
- cont "#MON CENTER!"
- done
-
-_SSAnne8Text5::
- text "Waiter, I would"
- line "like a cherry pie"
- cont "please!"
- done
-
-_SSAnne8Text6::
- text "A cruise is so"
- line "elegant yet cozy!"
- done
-
-_SSAnne8Text7::
- text "I always travel"
- line "with WIGGLYTUFF!"
- done
-
-_SSAnne8Text9::
- text "We are cruising"
- line "around the world."
- done
-
-_SSAnne8Text11::
- text "Ssh! I'm a GLOBAL"
- line "POLICE agent!"
-
- para "I'm on the trail"
- line "of TEAM ROCKET!"
- done
--- a/text/maps/SSAnne2F.asm
+++ /dev/null
@@ -1,63 +1,0 @@
-_SSAnne2Text1::
- text "This ship, she is"
- line "a luxury liner"
- cont "for trainers!"
-
- para "At every port, we"
- line "hold parties with"
- cont "invited trainers!"
- done
-
-_SSAnneRivalBeforeBattleText::
- text "<RIVAL>: Bonjour!"
- line "<PLAYER>!"
-
- para "Imagine seeing"
- line "you here!"
-
- para "<PLAYER>, were you"
- line "really invited?"
-
- para "So how's your"
- line "#DEX coming?"
-
- para "I already caught"
- line "40 kinds, pal!"
-
- para "Different kinds"
- line "are everywhere!"
-
- para "Crawl around in"
- line "grassy areas!"
- done
-
-_SSAnneRivalDefeatedText::
- text "Humph!"
-
- para "At least you're"
- line "raising your"
- cont "#MON!"
- prompt
-
-_SSAnneRivalWonText::
- text "<PLAYER>! What are"
- line "you, seasick?"
-
- para "You should shape"
- line "up, pal!"
- prompt
-
-_SSAnneRivalCaptainText::
- text "<RIVAL>: I heard"
- line "there was a CUT"
- cont "master on board."
-
- para "But, he was just a"
- line "seasick, old man!"
-
- para "But, CUT itself is"
- line "really useful!"
-
- para "You should go see"
- line "him! Smell ya!"
- done
--- a/text/maps/SSAnne2FRooms.asm
+++ /dev/null
@@ -1,113 +1,0 @@
-_SSAnne9Text_61bf2::
- text "In all my travels"
- line "I've never seen"
- cont "any #MON sleep"
- cont "like this one!"
-
- para "It was something"
- line "like this!"
- prompt
-
-_SSAnne9Text_61c01::
- text "Ah yes, I have"
- line "seen some #MON"
- cont "ferry people"
- cont "across the water!"
- done
-
-_SSAnne9Text_61c10::
- text "#MON can CUT"
- line "down small bushes."
- done
-
-_SSAnne9Text_61c1f::
- text "Have you gone to"
- line "the SAFARI ZONE"
- cont "in FUCHSIA CITY?"
-
- para "It had many rare"
- line "kinds of #MON!!"
- done
-
-_SSAnne9Text_61c2e::
- text "Me and my Daddy"
- line "think the SAFARI"
- cont "ZONE is awesome!"
- done
-
-_SSAnne9Text_61c3d::
- text "The CAPTAIN looked"
- line "really sick and"
- cont "pale!"
- done
-
-_SSAnne9Text_61c4c::
- text "I hear many people"
- line "get seasick!"
- done
-
-_SSAnne9BattleText1::
- text "Competing against"
- line "the young keeps"
- cont "me youthful."
- done
-
-_SSAnne9EndBattleText1::
- text "Good"
- line "fight! Ah, I feel"
- cont "young again!"
- prompt
-
-_SSAnne9AfterBattleText1::
- text "15 years ago, I"
- line "would have won!"
- done
-
-_SSAnne9BattleText2::
- text "Check out what I"
- line "fished up!"
- done
-
-_SSAnne9EndBattleText2::
- text "I'm"
- line "all out!"
- prompt
-
-_SSAnne9AfterBattleText2::
- text "Party?"
-
- para "The cruise ship's"
- line "party should be"
- cont "over by now."
- done
-
-_SSAnne9BattleText3::
- text "Which do you like,"
- line "a strong or a"
- cont "rare #MON?"
- done
-
-_SSAnne9EndBattleText3::
- text "I must"
- line "salute you!"
- prompt
-
-_SSAnne9AfterBattleText3::
- text "I prefer strong"
- line "and rare #MON."
- done
-
-_SSAnne9BattleText4::
- text "I never saw you"
- line "at the party."
- done
-
-_SSAnne9EndBattleText4::
- text "Take"
- line "it easy!"
- prompt
-
-_SSAnne9AfterBattleText4::
- text "Oh, I adore your"
- line "strong #MON!"
- done
--- a/text/maps/SSAnne3F.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-_SSAnne3Text1::
- text "Our CAPTAIN is a"
- line "sword master!"
-
- para "He even teaches"
- line "CUT to #MON!"
- done
--- a/text/maps/SSAnneB1FRooms.asm
+++ /dev/null
@@ -1,112 +1,0 @@
-_SSAnne10Text8::
- text "MACHOKE: Gwoh!"
- line "Goggoh!@@"
-
-_SSAnne10BattleText1::
- text "You know what they"
- line "say about sailors"
- cont "and fighting!"
- done
-
-_SSAnne10EndBattleText1::
- text "Right!"
- line "Good fight, mate!"
- prompt
-
-_SSAnne10AfterBattleText1::
- text "Haha! Want to be"
- line "a sailor, mate?"
- done
-
-_SSAnne10BattleText2::
- text "My sailor's pride"
- line "is at stake!"
- done
-
-_SSAnne10EndBattleText2::
- text "Your"
- line "spirit sank me!"
- prompt
-
-_SSAnne10AfterBattleText2::
- text "Did you see the"
- line "FISHING GURU in"
- cont "VERMILION CITY?"
- done
-
-_SSAnne10BattleText3::
- text "Us sailors have"
- line "#MON too!"
- done
-
-_SSAnne10EndBattleText3::
- text "OK, "
- line "you're not bad."
- prompt
-
-_SSAnne10AfterBattleText3::
- text "We caught all our"
- line "#MON while"
- cont "out at sea!"
- done
-
-_SSAnne10BattleText4::
- text "I like feisty"
- line "kids like you!@@"
-
-_SSAnne10EndBattleText4::
- text "Argh!"
- line "Lost it!"
- prompt
-
-_SSAnne10AfterBattleText4::
- text "Sea #MON live"
- line "in deep water."
- cont "You'll need a ROD!"
- done
-
-_SSAnne10BattleText5::
- text "Matey, you're"
- line "walking the plank"
- cont "if you lose!"
- done
-
-_SSAnne10EndBattleText5::
- text "Argh!"
- line "Beaten by a kid!"
- prompt
-
-_SSAnne10AfterBattleText5::
- text "Jellyfish some-"
- line "times drift into"
- cont "the ship."
- done
-
-_SSAnne10BattleText6::
- text "Hello stranger!"
- line "Stop and chat!"
-
- para "All my #MON"
- line "are from the sea!"
- done
-
-_SSAnne10EndBattleText6::
- text "Darn!"
- line "I let that one"
- cont "get away!"
- prompt
-
-_SSAnne10AfterBattleText6::
- text "I was going to"
- line "make you my"
- cont "assistant too!"
- done
-
-_SSAnne10Text7::
- text "My buddy, MACHOKE,"
- line "is super strong!"
-
- para "He has enough"
- line "STRENGTH to move"
- cont "big rocks!"
- done
--- a/text/maps/SSAnneBow.asm
+++ /dev/null
@@ -1,52 +1,0 @@
-_SSAnne5Text1::
- text "The party's over."
- line "The ship will be"
- cont "departing soon."
- done
-
-_SSAnne5Text2::
- text "Scrubbing decks"
- line "is hard work!"
- done
-
-_SSAnne5Text3::
- text "Urf. I feel ill."
-
- para "I stepped out to"
- line "get some air."
- done
-
-_SSAnne5BattleText1::
- text "Hey matey!"
-
- para "Let's do a little"
- line "jig!"
- done
-
-_SSAnne5EndBattleText1::
- text "You're"
- line "impressive!"
- prompt
-
-_SSAnne5AfterBattleText1::
- text "How many kinds of"
- line "#MON do you"
- cont "think there are?"
- done
-
-_SSAnne5BattleText2::
- text "Ahoy there!"
- line "Are you seasick?"
- done
-
-_SSAnne5EndBattleText2::
- text "I was"
- line "just careless!"
- prompt
-
-_SSAnne5AfterBattleText2::
- text "My Pa said there"
- line "are 100 kinds of"
- cont "#MON. I think"
- cont "there are more."
- done
--- a/text/maps/SSAnneCaptainsRoom.asm
+++ /dev/null
@@ -1,62 +1,0 @@
-_SSAnne7RubText::
- text "CAPTAIN: Ooargh..."
- line "I feel hideous..."
- cont "Urrp! Seasick..."
-
- para "<PLAYER> rubbed"
- line "the CAPTAIN's"
- cont "back!"
-
- para "Rub-rub..."
- line "Rub-rub...@@"
-
-_ReceivingHM01Text::
- text "CAPTAIN: Whew!"
- line "Thank you! I"
- cont "feel much better!"
-
- para "You want to see"
- line "my CUT technique?"
-
- para "I could show you"
- line "if I wasn't ill..."
-
- para "I know! You can"
- line "have this!"
-
- para "Teach it to your"
- line "#MON and you"
- cont "can see it CUT"
- cont "any time!"
- prompt
-
-_ReceivedHM01Text::
- text "<PLAYER> got"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_SSAnne7Text_61932::
- text "CAPTAIN: Whew!"
-
- para "Now that I'm not"
- line "sick any more, I"
- cont "guess it's time."
- done
-
-_HM01NoRoomText::
- text "Oh no! You have"
- line "no room for this!"
- done
-
-_SSAnne7Text2::
- text "Yuck! Shouldn't"
- line "have looked!"
- done
-
-_SSAnne7Text3::
- text "How to Conquer"
- line "Seasickness..."
- cont "The CAPTAIN's"
- cont "reading this!"
- done
--- a/text/maps/SSAnneKitchen.asm
+++ /dev/null
@@ -1,69 +1,0 @@
-_SSAnne6Text1::
- text "You, mon petit!"
- line "We're busy here!"
- cont "Out of the way!"
- done
-
-_SSAnne6Text2::
- text "I saw an odd ball"
- line "in the trash."
- done
-
-_SSAnne6Text3::
- text "I'm so busy I'm"
- line "getting dizzy!"
- done
-
-_SSAnne6Text4::
- text "Hum-de-hum-de-"
- line "ho..."
-
- para "I peel spuds"
- line "every day!"
- cont "Hum-hum..."
- done
-
-_SSAnne6Text5::
- text "Did you hear about"
- line "SNORLAX?"
-
- para "All it does is"
- line "eat and sleep!"
- done
-
-_SSAnne6Text6::
- text "Snivel...Sniff..."
-
- para "I only get to"
- line "peel onions..."
- cont "Snivel..."
- done
-
-_SSAnne6Text_61807::
- text "Er-hem! Indeed I"
- line "am le CHEF!"
-
- para "Le main course is"
- prompt
-
-_SSAnne6Text_6180c::
- text "Salmon du Salad!"
-
- para "Les guests may"
- line "gripe it's fish"
- cont "again, however!"
- done
-
-_SSAnne6Text_61811::
- text "Eels au Barbecue!"
-
- para "Les guests will"
- line "mutiny, I fear."
- done
-
-_SSAnne6Text_61816::
- text "Prime Beef Steak!"
-
- para "But, have I enough"
- line "fillets du beef?"
- done
--- a/text/maps/SafariZoneCenter.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-_SafariZoneCenterText2::
- text "REST HOUSE"
- done
-
-_SafariZoneCenterText3::
- text "TRAINER TIPS"
-
- para "Press the START"
- line "Button to check"
- cont "remaining time!"
- done
--- a/text/maps/SafariZoneCenterRestHouse.asm
+++ /dev/null
@@ -1,11 +1,0 @@
-_SafariZoneRestHouse1Text1::
- text "SARA: Where did"
- line "my boy friend,"
- cont "ERIK, go?"
- done
-
-_SafariZoneRestHouse1Text2::
- text "I'm catching"
- line "#MON to take"
- cont "home as gifts!"
- done
--- a/text/maps/SafariZoneEast.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-_SafariZoneEastText5::
- text "REST HOUSE"
- done
-
-_SafariZoneEastText6::
- text "TRAINER TIPS"
-
- para "The remaining time"
- line "declines only"
- cont "while you walk!"
- done
-
-_SafariZoneEastText7::
- text "CENTER AREA"
- line "NORTH: AREA 2"
- done
--- a/text/maps/SafariZoneEastRestHouse.asm
+++ /dev/null
@@ -1,18 +1,0 @@
-_SafariZoneRestHouse3Text1::
- text "How many did you"
- line "catch? I'm bushed"
- cont "from the work!"
- done
-
-_SafariZoneRestHouse3Text2::
- text "I caught a"
- line "CHANSEY!"
-
- para "That makes this"
- line "all worthwhile!"
- done
-
-_SafariZoneRestHouse3Text3::
- text "Whew! I'm tired"
- line "from all the fun!"
- done
--- a/text/maps/SafariZoneGate.asm
+++ /dev/null
@@ -1,94 +1,0 @@
-_SafariZoneEntranceText1::
- text "Welcome to the"
- line "SAFARI ZONE!"
- done
-
-SafariZoneEntranceText_9e6e4::
- text "For just ¥500,"
- line "you can catch all"
- cont "the #MON you"
- cont "want in the park!"
-
- para "Would you like to"
- line "join the hunt?@@"
-
-SafariZoneEntranceText_9e747::
- text "That'll be ¥500"
- line "please!"
-
- para "We only use a"
- line "special # BALL"
- cont "here."
-
- para "<PLAYER> received"
- line "30 SAFARI BALLs!@@"
-
-_SafariZoneEntranceText_75360::
- text ""
-
- para "We'll call you on"
- line "the PA when you"
- cont "run out of time"
- cont "or SAFARI BALLs!"
- done
-
-_SafariZoneEntranceText_75365::
- text "OK! Please come"
- line "again!"
- done
-
-_SafariZoneEntranceText_7536a::
- text "Oops! Not enough"
- line "money!"
- done
-
-SafariZoneEntranceText_9e814::
- text "Leaving early?@@"
-
-_SafariZoneEntranceText_753bb::
- text "Please return any"
- line "SAFARI BALLs you"
- cont "have left."
- done
-
-_SafariZoneEntranceText_753c0::
- text "Good Luck!"
- done
-
-_SafariZoneEntranceText_753c5::
- text "Did you get a"
- line "good haul?"
- cont "Come again!"
- done
-
-_SafariZoneEntranceText_753e6::
- text "Hi! Is it your"
- line "first time here?"
- done
-
-_SafariZoneEntranceText_753eb::
- text "SAFARI ZONE has 4"
- line "zones in it."
-
- para "Each zone has"
- line "different kinds"
- cont "of #MON. Use"
- cont "SAFARI BALLs to"
- cont "catch them!"
-
- para "When you run out"
- line "of time or SAFARI"
- cont "BALLs, it's game"
- cont "over for you!"
-
- para "Before you go,"
- line "open an unused"
- cont "#MON BOX so"
- cont "there's room for"
- cont "new #MON!"
- done
-
-_SafariZoneEntranceText_753f0::
- text "Sorry, you're a"
- line "regular here!"
- done
--- a/text/maps/SafariZoneNorth.asm
+++ /dev/null
@@ -1,33 +1,0 @@
-_SafariZoneNorthText3::
- text "REST HOUSE"
- done
-
-_SafariZoneNorthText4::
- text "TRAINER TIPS"
-
- para "The SECRET HOUSE"
- line "is still ahead!"
- done
-
-_SafariZoneNorthText5::
- text "AREA 2"
- done
-
-_SafariZoneNorthText6::
- text "TRAINER TIPS"
-
- para "#MON hide in"
- line "tall grass!"
-
- para "Zigzag through"
- line "grassy areas to"
- cont "flush them out."
- done
-
-_SafariZoneNorthText7::
- text "TRAINER TIPS"
-
- para "Win a free HM for"
- line "finding the"
- cont "SECRET HOUSE!"
- done
--- a/text/maps/SafariZoneNorthRestHouse.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-_SafariZoneRestHouse4Text1::
- text "You can keep any"
- line "item you find on"
- cont "the ground here."
-
- para "But, you'll run"
- line "out of time if"
- cont "you try for all"
- cont "of them at once!"
- done
-
-_SafariZoneRestHouse4Text2::
- text "Go to the deepest"
- line "part of the"
- cont "SAFARI ZONE. You"
- cont "will win a prize!"
- done
-
-_SafariZoneRestHouse4Text3::
- text "My EEVEE evolved"
- line "into FLAREON!"
-
- para "But, a friend's"
- line "EEVEE turned into"
- cont "a VAPOREON!"
- cont "I wonder why?"
- done
--- a/text/maps/SafariZoneSecretHouse.asm
+++ /dev/null
@@ -1,44 +1,0 @@
-_SecretHouseText_4a350::
- text "Ah! Finally!"
-
- para "You're the first"
- line "person to reach"
- cont "the SECRET HOUSE!"
-
- para "I was getting"
- line "worried that no"
- cont "one would win our"
- cont "campaign prize."
-
- para "Congratulations!"
- line "You have won!"
- prompt
-
-_ReceivedHM03Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_HM03ExplanationText::
- text "HM03 is SURF!"
-
- para "#MON will be"
- line "able to ferry you"
- cont "across water!"
-
- para "And, this HM isn't"
- line "disposable! You"
- cont "can use it over"
- cont "and over!"
-
- para "You're super lucky"
- line "for winning this"
- cont "fabulous prize!"
- done
-
-_HM03NoRoomText::
- text "You don't have"
- line "room for this"
- cont "fabulous prize!"
- done
--- a/text/maps/SafariZoneWest.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-_SafariZoneWestText5::
- text "REST HOUSE"
- done
-
-_SafariZoneWestText6::
- text "REQUEST NOTICE"
-
- para "Please find the"
- line "SAFARI WARDEN's"
- cont "lost GOLD TEETH."
- cont "They're around"
- cont "here somewhere."
-
- para "Reward offered!"
- line "Contact: WARDEN"
- done
-
-_SafariZoneWestText7::
- text "TRAINER TIPS"
-
- para "Zone Exploration"
- line "Campaign!"
-
- para "The Search for"
- line "the SECRET HOUSE!"
- done
-
-_SafariZoneWestText8::
- text "AREA 3"
- line "EAST: CENTER AREA"
- done
--- a/text/maps/SafariZoneWestRestHouse.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-_SafariZoneRestHouse2Text1::
- text "Tossing ROCKs at"
- line "#MON might"
- cont "make them run,"
- cont "but they'll be"
- cont "easier to catch."
- done
-
-_SafariZoneRestHouse2Text2::
- text "Using BAIT will"
- line "make #MON"
- cont "easier to catch."
- done
-
-_SafariZoneRestHouse2Text3::
- text "I hiked a lot, but"
- line "I didn't see any"
- cont "#MON I wanted."
- done
--- a/text/maps/SaffronCity.asm
+++ /dev/null
@@ -1,151 +1,0 @@
-_SaffronCityText1::
- text "What do you want?"
- line "Get lost!"
- done
-
-_SaffronCityText2::
- text "BOSS said he'll"
- line "take this town!"
- done
-
-_SaffronCityText3::
- text "Get out of the"
- line "way!"
- done
-
-_SaffronCityText4::
- text "SAFFRON belongs"
- line "to TEAM ROCKET!"
- done
-
-_SaffronCityText5::
- text "Being evil makes"
- line "me feel so alive!"
- done
-
-_SaffronCityText6::
- text "Ow! Watch where"
- line "you're walking!"
- done
-
-_SaffronCityText7::
- text "With SILPH under"
- line "control, we can"
- cont "exploit #MON"
- cont "around the world!"
- done
-
-_SaffronCityText8::
- text "You beat TEAM"
- line "ROCKET all alone?"
- cont "That's amazing!"
- done
-
-_SaffronCityText9::
- text "Yeah! TEAM ROCKET"
- line "is gone!"
- cont "It's safe to go"
- cont "out again!"
- done
-
-_SaffronCityText10::
- text "People should be"
- line "flocking back to"
- cont "SAFFRON now."
- done
-
-_SaffronCityText11::
- text "I flew here on my"
- line "PIDGEOT when I"
- cont "read about SILPH."
-
- para "It's already over?"
- line "I missed the"
- cont "media action."
- done
-
-_SaffronCityText12::
- text "PIDGEOT: Bi bibii!@@"
-
-_SaffronCityText13::
- text "I saw ROCKET"
- line "BOSS escaping"
- cont "SILPH's building."
- done
-
-_SaffronCityText14::
- text "I'm a security"
- line "guard."
-
- para "Suspicious kids I"
- line "don't allow in!"
- done
-
-_SaffronCityText15::
- text "..."
- line "Snore..."
-
- para "Hah! He's taking"
- line "a snooze!"
- done
-
-_SaffronCityText16::
- text "SAFFRON CITY"
- line "Shining, Golden"
- cont "Land of Commerce"
- done
-
-_SaffronCityText17::
- text "FIGHTING DOJO"
- done
-
-_SaffronCityText18::
- text "SAFFRON CITY"
- line "#MON GYM"
- cont "LEADER: SABRINA"
-
- para "The Master of"
- line "Psychic #MON!"
- done
-
-_SaffronCityText20::
- text "TRAINER TIPS"
-
- para "FULL HEAL cures"
- line "all ailments like"
- cont "sleep and burns."
-
- para "It costs a bit"
- line "more, but it's"
- cont "more convenient."
- done
-
-_SaffronCityText21::
- text "TRAINER TIPS"
-
- para "New GREAT BALL"
- line "offers improved"
- cont "capture rates."
-
- para "Try it on those"
- line "hard-to-catch"
- cont "#MON."
- done
-
-_SaffronCityText22::
- text "SILPH CO."
- line "OFFICE BUILDING"
- done
-
-_SaffronCityText24::
- text "MR.PSYCHIC's"
- line "HOUSE"
- done
-
-_SaffronCityText25::
- text "SILPH's latest"
- line "product!"
-
- para "Release to be"
- line "determined..."
- done
--- a/text/maps/SaffronGates.asm
+++ /dev/null
@@ -1,37 +1,0 @@
-_SaffronGateText_1dfe7::
- text "I'm on guard duty."
- line "Gee, I'm thirsty,"
- cont "though!"
-
- para "Oh wait there,"
- line "the road's closed."
- done
-
-_SaffronGateText_8aaa9::
- text "Whoa, boy!"
- line "I'm parched!"
- cont "..."
- cont "Huh? I can have"
- cont "this drink?"
- cont "Gee, thanks!@@"
-
-_SaffronGateText_1dff1::
- text ""
-
- para "..."
- line "Glug glug..."
- cont "..."
- cont "Gulp..."
- cont "If you want to go"
- cont "to SAFFRON CITY..."
- cont "..."
- cont "You can go on"
- cont "through. I'll"
- cont "share this with"
- cont "the other guards!"
- done
-
-_SaffronGateText_1dff6::
- text "Hi, thanks for"
- line "the cool drinks!"
- done
--- a/text/maps/SaffronGym.asm
+++ /dev/null
@@ -1,237 +1,0 @@
-_SaffronGymText_5d162::
- text "I had a vision of"
- line "your arrival!"
-
- para "I have had psychic"
- line "powers since I"
- cont "was a child."
-
- para "I first learned"
- line "to bend spoons"
- cont "with my mind."
-
- para "I dislike fight-"
- line "ing, but if you"
- cont "wish, I will show"
- cont "you my powers!"
- done
-
-_SaffronGymText_5d167::
- text "I'm"
- line "shocked!"
- cont "But, a loss is a"
- cont "loss."
-
- para "I admit I didn't"
- line "work hard enough"
- cont "to win!"
-
- para "You earned the"
- line "MARSHBADGE!@@"
-
-_SaffronGymText_5d16e::
- text "Everyone has"
- line "psychic power!"
- cont "People just don't"
- cont "realize it!"
- done
-
-_SaffronGymText_5d173::
- text "The MARSHBADGE"
- line "makes #MON up"
- cont "to L70 obey you!"
-
- para "Stronger #MON"
- line "will become wild,"
- cont "ignoring your"
- cont "orders in battle!"
-
- para "Just don't raise"
- line "your #MON too"
- cont "much!"
-
- para "Wait, please take"
- line "this TM with you!"
- done
-
-ReceivedTM46Text::
- text "<PLAYER> received"
- line "TM46!@@"
-
-_TM46ExplanationText::
- text ""
-
- para "TM46 is PSYWAVE!"
- line "It uses powerful"
- cont "psychic waves to"
- cont "inflict damage!"
- done
-
-_TM46NoRoomText::
- text "Your pack is full"
- line "of other items!"
- done
-
-_SaffronGymText_5d1e6::
- text "Yo! Champ in"
- line "making!"
-
- para "SABRINA's #MON"
- line "use psychic power"
- cont "instead of force!"
-
- para "Fighting #MON"
- line "are weak against"
- cont "psychic #MON!"
-
- para "They get creamed"
- line "before they can"
- cont "even aim a punch!"
- done
-
-_SaffronGymText_5d1eb::
- text "Psychic power,"
- line "huh?"
-
- para "If I had that,"
- line "I'd make a bundle"
- cont "at the slots!"
- done
-
-_SaffronGymBattleText1::
- text "SABRINA is younger"
- line "than I, but I"
- cont "respect her!"
- done
-
-_SaffronGymEndBattleText1::
- text "Not"
- line "good enough!"
- prompt
-
-_SaffronGymAfterBattleText1::
- text "In a battle of"
- line "equals, the one"
- cont "with the stronger"
- cont "will wins!"
-
- para "If you wish"
- line "to beat SABRINA,"
- cont "focus on winning!"
- done
-
-_SaffronGymBattleText2::
- text "Does our unseen"
- line "power scare you?"
- done
-
-_SaffronGymEndBattleText2::
- text "I never"
- line "foresaw this!"
- prompt
-
-_SaffronGymAfterBattleText2::
- text "Psychic #MON"
- line "fear only ghosts"
- cont "and bugs!"
- done
-
-_SaffronGymBattleText3::
- text "#MON take on"
- line "the appearance of"
- cont "their trainers."
-
- para "Your #MON must"
- line "be tough, then!"
- done
-
-_SaffronGymEndBattleText3::
- text "I knew"
- line "it!"
- prompt
-
-_SaffronGymAfterBattleText3::
- text "I must teach"
- line "better techniques"
- cont "to my #MON!"
- done
-
-_SaffronGymBattleText4::
- text "You know that"
- line "power alone isn't"
- cont "enough!"
- done
-
-_SaffronGymEndBattleText4::
- text "I don't"
- line "believe this!"
- prompt
-
-_SaffronGymAfterBattleText4::
- text "SABRINA just wiped"
- line "out the KARATE"
- cont "MASTER next door!"
- done
-
-_SaffronGymBattleText5::
- text "You and I, our"
- line "#MON shall"
- cont "fight!"
- done
-
-_SaffronGymEndBattleText5::
- text "I lost"
- line "after all!"
- prompt
-
-_SaffronGymAfterBattleText5::
- text "I knew that this"
- line "was going to take"
- cont "place."
- done
-
-_SaffronGymBattleText6::
- text "SABRINA is young,"
- line "but she's also"
- cont "our LEADER!"
-
- para "You won't reach"
- line "her easily!"
- done
-
-_SaffronGymEndBattleText6::
- text "I lost"
- line "my concentration!"
- prompt
-
-_SaffronGymAfterBattleText6::
- text "There used to be"
- line "2 #MON GYMs in"
- cont "SAFFRON."
-
- para "The FIGHTING DOJO"
- line "next door lost"
- cont "its GYM status"
- cont "when we went and"
- cont "creamed them!"
- done
-
-_SaffronGymBattleText7::
- text "SAFFRON #MON"
- line "GYM is famous for"
- cont "its psychics!"
-
- para "You want to see"
- line "SABRINA!"
- cont "I can tell!"
- done
-
-_SaffronGymEndBattleText7::
- text "Arrrgh!"
- prompt
-
-_SaffronGymAfterBattleText7::
- text "That's right! I"
- line "used telepathy to"
- cont "read your mind!"
- done
--- a/text/maps/SaffronMart.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-_SaffronMartText2::
- text "MAX REPEL lasts"
- line "longer than SUPER"
- cont "REPEL for keeping"
- cont "weaker #MON"
- cont "away!"
- done
-
-_SaffronMartText3::
- text "REVIVE is costly,"
- line "but it revives"
- cont "fainted #MON!"
- done
--- a/text/maps/SaffronPidgeyHouse.asm
+++ /dev/null
@@ -1,26 +1,0 @@
-_SaffronHouse1Text1::
- text "Thank you for"
- line "writing. I hope"
- cont "to see you soon!"
-
- para "Hey! Don't look"
- line "at my letter!"
- done
-
-_SaffronHouse1Text2::
- text "PIDGEY: Kurukkoo!@@"
-
-_SaffronHouse1Text3::
- text "The COPYCAT is"
- line "cute! I'm getting"
- cont "her a # DOLL!"
- done
-
-_SaffronHouse1Text4::
- text "I was given a PP"
- line "UP as a gift."
-
- para "It's used for"
- line "increasing the PP"
- cont "of techniques!"
- done
--- a/text/maps/SaffronPokecenter.asm
+++ /dev/null
@@ -1,12 +1,0 @@
-_SaffronPokecenterText2::
- text "#MON growth"
- line "rates differ from"
- cont "specie to specie."
- done
-
-_SaffronPokecenterText3::
- text "SILPH CO. is very"
- line "famous. That's"
- cont "why it attracted"
- cont "TEAM ROCKET!"
- done
--- a/text/maps/SeafoamIslandsB4F.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-_ArticunoBattleText::
- text "Gyaoo!@@"
-
-_SeafoamIslands5Text4::
- text "Boulders might"
- line "change the flow"
- cont "of water!"
- done
-
-_SeafoamIslands5Text5::
- text "DANGER"
- line "Fast current!"
- done
--- a/text/maps/SilphCo10F.asm
+++ /dev/null
@@ -1,42 +1,0 @@
-_SilphCo10Text_5a1d3::
- text "Waaaaa!"
- cont "I'm scared!"
- done
-
-_SilphCo10Text_5a1d8::
- text "Please keep quiet"
- line "about my crying!"
- done
-
-_SilphCo10BattleText1::
- text "Welcome to the"
- line "10F! So good of"
- cont "you to join me!"
- done
-
-_SilphCo10EndBattleText1::
- text "I'm"
- line "stunned!"
- prompt
-
-_SilphCo10AfterBattleText1::
- text "Nice try, but the"
- line "boardroom is up"
- cont "one more floor!"
- done
-
-_SilphCo10BattleText2::
- text "Enough of your"
- line "silly games!"
- done
-
-_SilphCo10EndBattleText2::
- text "No"
- line "continues left!"
- prompt
-
-_SilphCo10AfterBattleText2::
- text "Are you satisfied"
- line "with beating me?"
- cont "Then go on home!"
- done
--- a/text/maps/SilphCo11F.asm
+++ /dev/null
@@ -1,134 +1,0 @@
-_SilphCoPresidentText::
- text "PRESIDENT: Thank"
- line "you for saving"
- cont "SILPH!"
-
- para "I will never"
- line "forget you saved"
- cont "us in our moment"
- cont "of peril!"
-
- para "I have to thank"
- line "you in some way!"
-
- para "Because I am rich,"
- line "I can give you"
- cont "anything!"
-
- para "Here, maybe this"
- line "will do!"
- prompt
-
-_ReceivedSilphCoMasterBallText::
- text "<PLAYER> got a"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_SilphCo10Text_6231c::
- text "PRESIDENT: You"
- line "can't buy that"
- cont "anywhere!"
-
- para "It's our secret"
- line "prototype MASTER"
- cont "BALL!"
-
- para "It will catch any"
- line "#MON without"
- cont "fail!"
-
- para "You should be"
- line "quiet about using"
- cont "it, though."
- done
-
-_SilphCoMasterBallNoRoomText::
- text "You have no"
- line "room for this."
- done
-
-_SilphCo11Text2::
- text "SECRETARY: Thank"
- line "you for rescuing"
- cont "all of us!"
-
- para "We admire your"
- line "courage."
- done
-
-_SilphCo11Text3::
- text "Ah <PLAYER>!"
- line "So we meet again!"
-
- para "The PRESIDENT and"
- line "I are discussing"
- cont "a vital business"
- cont "proposition."
-
- para "Keep your nose"
- line "out of grown-up"
- cont "matters..."
-
- para "Or, experience a"
- line "world of pain!"
- done
-
-_SilphCo10Text_62330::
- text "Arrgh!!"
- line "I lost again!?"
- prompt
-
-_SilphCo10Text_62335::
- text "Blast it all!"
- line "You ruined our"
- cont "plans for SILPH!"
-
- para "But, TEAM ROCKET"
- line "will never fall!"
-
- para "<PLAYER>! Never"
- line "forget that all"
- cont "#MON exist"
- cont "for TEAM ROCKET!"
-
- para "I must go, but I"
- line "shall return!"
- done
-
-_SilphCo11BattleText1::
- text "Stop right there!"
- line "Don't you move!"
- done
-
-_SilphCo11EndBattleText1::
- text "Don't..."
- line "Please!"
- prompt
-
-_SilphCo11AfterBattleText1::
- text "So, you want to"
- line "see my BOSS?"
- done
-
-_SilphCo11BattleText2::
- text "Halt! Do you have"
- line "an appointment"
- cont "with my BOSS?"
- done
-
-_SilphCo11EndBattleText2::
- text "Gaah!"
- line "Demolished!"
- prompt
-
-_SilphCo11AfterBattleText2::
- text "Watch your step,"
- line "my BOSS likes his"
- cont "#MON tough!"
- done
-
-_SilphCo10Text_6237b::
- text "The monitor has"
- line "#MON on it!"
- done
--- a/text/maps/SilphCo1F.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-_SilphCo1Text1::
- text "Welcome!"
-
- para "The PRESIDENT is"
- line "in the boardroom"
- cont "on 11F!"
- done
--- a/text/maps/SilphCo2F.asm
+++ /dev/null
@@ -1,96 +1,0 @@
-_SilphCo2Text_59ded::
- text "Eeek!"
- line "No! Stop! Help!"
-
- para "Oh, you're not"
- line "with TEAM ROCKET."
- cont "I thought..."
- cont "I'm sorry. Here,"
- cont "please take this!"
- prompt
-
-_ReceivedTM36Text::
- text "<PLAYER> got"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM36ExplanationText::
- text "TM36 is"
- line "SELFDESTRUCT!"
-
- para "It's powerful, but"
- line "the #MON that"
- cont "uses it faints!"
- cont "Be careful."
- done
-
-_TM36NoRoomText::
- text "You don't have any"
- line "room for this."
- done
-
-_SilphCo2BattleText1::
- text "Help! I'm a SILPH"
- line "employee."
- done
-
-_SilphCo2EndBattleText1::
- text "How"
- line "did you know I"
- cont "was a ROCKET?"
- prompt
-
-_SilphCo2AfterBattleText1::
- text "I work for both"
- line "SILPH and TEAM"
- cont "ROCKET!"
- done
-
-_SilphCo2BattleText2::
- text "It's off limits"
- line "here! Go home!"
- done
-
-_SilphCo2EndBattleText2::
- text "You're"
- line "good."
- prompt
-
-_SilphCo2AfterBattleText2::
- text "Can you solve the"
- line "maze in here?"
- done
-
-_SilphCo2BattleText3::
- text "No kids are"
- line "allowed in here!"
- done
-
-_SilphCo2EndBattleText3::
- text "Tough!"
- prompt
-
-_SilphCo2AfterBattleText3::
- text "Diamond shaped"
- line "tiles are"
- cont "teleport blocks!"
-
- para "They're hi-tech"
- line "transporters!"
- done
-
-_SilphCo2BattleText4::
- text "Hey kid! What are"
- line "you doing here?"
- done
-
-_SilphCo2EndBattleText4::
- text "I goofed!"
- prompt
-
-_SilphCo2AfterBattleText4::
- text "SILPH CO. will"
- line "be merged with"
- cont "TEAM ROCKET!"
- done
--- a/text/maps/SilphCo3F.asm
+++ /dev/null
@@ -1,46 +1,0 @@
-_SilphCo3Text_59ff9::
- text "I work for SILPH."
- line "What should I do?"
- done
-
-_SilphCo3Text_59ffe::
- text "<PLAYER>! You and"
- line "your #MON"
- cont "saved us!"
- done
-
-_SilphCo3BattleText1::
- text "Quit messing with"
- line "us, kid!"
- done
-
-_SilphCo3EndBattleText1::
- text "I give"
- line "up!"
- prompt
-
-_SilphCo3AfterBattleText1::
- text "A hint? You can"
- line "open doors with a"
- cont "CARD KEY!"
- done
-
-_SilphCo3BattleText2::
- text "I support TEAM"
- line "ROCKET more than"
- cont "I support SILPH!"
- done
-
-_SilphCo3EndBattleText2::
- text "You"
- line "really got me!"
- prompt
-
-_SilphCo3AfterBattleText2::
- text "Humph..."
-
- para "TEAM ROCKET said"
- line "that if I helped"
- cont "them, they'd let"
- cont "me study #MON!"
- done
--- a/text/maps/SilphCo4F.asm
+++ /dev/null
@@ -1,56 +1,0 @@
-_SilphCo4Text_19de0::
- text "Sssh! Can't you"
- line "see I'm hiding?"
- done
-
-_SilphCo4Text_19de5::
- text "Huh? TEAM ROCKET"
- line "is gone?"
- done
-
-_SilphCo4BattleText2::
- text "TEAM ROCKET has"
- line "taken command of"
- cont "SILPH CO.!"
- done
-
-_SilphCo4EndBattleText2::
- text "Arrgh!"
- prompt
-
-_SilphCo4AfterBattleText2::
- text "Fwahahaha!"
- line "My BOSS has been"
- cont "after this place!"
- done
-
-_SilphCo4BattleText3::
- text "My #MON are my"
- line "loyal soldiers!"
- done
-
-_SilphCo4EndBattleText3::
- text "Darn!"
- line "You weak #MON!"
- prompt
-
-_SilphCo4AfterBattleText3::
- text "The doors are"
- line "electronically"
- cont "locked! A CARD"
- cont "KEY opens them!"
- done
-
-_SilphCo4BattleText4::
- text "Intruder spotted!"
- done
-
-_SilphCo4EndBattleText4::
- text "Who"
- line "are you?"
- prompt
-
-_SilphCo4AfterBattleText4::
- text "I better tell the"
- line "BOSS on 11F!"
- done
--- a/text/maps/SilphCo5F.asm
+++ /dev/null
@@ -1,51 +1,0 @@
-_SilphCo5Text_1a010::
- text "TEAM ROCKET is"
- line "in an uproar over"
- cont "some intruder."
- cont "That's you right?"
- done
-
-_SilphCo5Text_1a015::
- text "TEAM ROCKET took"
- line "off! You're our"
- cont "hero! Thank you!"
- done
-
-_SilphCo5BattleText2::
- text "I heard a kid was"
- line "wandering around."
- done
-
-_SilphCo5EndBattleText2::
- text "Boom!"
- prompt
-
-_SilphCo5AfterBattleText2::
- text "It's not smart"
- line "to pick a fight"
- cont "with TEAM ROCKET!"
- done
-
-_SilphCo5BattleText3::
- text "We study #"
- line "BALL technology"
- cont "on this floor!"
- done
-
-_SilphCo5EndBattleText3::
- text "Dang!"
- line "Blast it!"
- prompt
-
-_SilphCo5AfterBattleText3::
- text "We worked on the"
- line "ultimate #"
- cont "BALL which would"
- cont "catch anything!"
- done
-
-_SilphCo5BattleText4::
- text "Whaaat? There"
- line "shouldn't be any"
- cont "children here?"
- done
--- a/text/maps/SilphCo5F_2.asm
+++ /dev/null
@@ -1,55 +1,0 @@
-_SilphCo5EndBattleText4::
- text "Oh"
- line "goodness!"
- prompt
-
-_SilphCo5AfterBattleText4::
- text "You're only on 5F."
- line "It's a long way"
- cont "to my BOSS!"
- done
-
-_SilphCo5BattleText5::
- text "Show TEAM ROCKET"
- line "a little respect!"
- done
-
-_SilphCo5EndBattleText5::
- text "Cough..."
- line "Cough..."
- prompt
-
-_SilphCo5AfterBattleText5::
- text "Which reminds me."
-
- para "KOFFING evolves"
- line "into WEEZING!"
- done
-
-_SilphCo5Text9::
- text "It's a #MON"
- line "REPORT!"
-
- para "#MON LAB"
- line "created PORYGON,"
- cont "the first virtual"
- cont "reality #MON."
- done
-
-_SilphCo5Text10::
- text "It's a #MON"
- line "REPORT!"
-
- para "Over 160 #MON"
- line "techniques have"
- cont "been confirmed."
- done
-
-_SilphCo5Text11::
- text "It's a #MON"
- line "REPORT!"
-
- para "4 #MON evolve"
- line "only when traded"
- cont "by link-cable."
- done
--- a/text/maps/SilphCo6F.asm
+++ /dev/null
@@ -1,107 +1,0 @@
-_SilphCo6Text_1a24a::
- text "The ROCKETs came"
- line "and took over the"
- cont "building!"
- done
-
-_SilphCo6Text_1a24f::
- text "Well, better get"
- line "back to work!"
- done
-
-_SilphCo6Text_1a261::
- text "Oh dear, oh dear."
- line "Help me please!"
- done
-
-_SilphCo6Text_1a266::
- text "We got engaged!"
- line "Heheh!"
- done
-
-_SilphCo6Text_1a278::
- text "Look at him! He's"
- line "such a coward!"
- done
-
-_SilphCo6Text_1a27d::
- text "I feel so sorry"
- line "for him, I have"
- cont "to marry him!"
- done
-
-_SilphCo6Text_1a28f::
- text "TEAM ROCKET is"
- line "trying to conquer"
- cont "the world with"
- cont "#MON!"
- done
-
-_SilphCo6Text_1a294::
- text "TEAM ROCKET ran"
- line "because of you!"
- done
-
-_SilphCo6Text_1a2a6::
- text "They must have"
- line "targeted SILPH"
- cont "for our #MON"
- cont "products."
- done
-
-_SilphCo6Text_1a2ab::
- text "Come work for"
- line "SILPH when you"
- cont "get older!"
- done
-
-_SilphCo6BattleText2::
- text "I am one of the 4"
- line "ROCKET BROTHERS!"
- done
-
-_SilphCo6EndBattleText2::
- text "Flame"
- line "out!"
- prompt
-
-_SilphCo6AfterBattleText2::
- text "No matter!"
- line "My brothers will"
- cont "avenge me!"
- done
-
-_SilphCo6BattleText3::
- text "That rotten"
- line "PRESIDENT!"
-
- para "He shouldn't have"
- line "sent me to the"
- cont "TIKSI BRANCH!"
- done
-
-_SilphCo6EndBattleText3::
- text "Shoot!"
- prompt
-
-_SilphCo6AfterBattleText3::
- text "TIKSI BRANCH?"
- line "It's in Russian"
- cont "no man's land!"
- done
-
-_SilphCo6BattleText4::
- text "You dare betray"
- line "TEAM ROCKET?"
- done
-
-_SilphCo6EndBattleText4::
- text "You"
- line "traitor!"
- prompt
-
-_SilphCo6AfterBattleText4::
- text "If you stand for"
- line "justice, you"
- cont "betray evil!"
- done
--- a/text/maps/SilphCo7F.asm
+++ /dev/null
@@ -1,209 +1,0 @@
-_MeetLaprasGuyText::
- text "Oh! Hi! You're"
- line "not a ROCKET! You"
- cont "came to save us?"
- cont "Why, thank you!"
-
- para "I want you to"
- line "have this #MON"
- cont "for saving us."
- prompt
-
-_HeresYourLaprasText::
- text "It's LAPRAS. It's"
- line "very intelligent."
-
- para "We kept it in our"
- line "lab, but it will"
- cont "be much better"
- cont "off with you!"
-
- para "I think you will"
- line "be a good trainer"
- cont "for LAPRAS!"
-
- para "It's a good"
- line "swimmer. It'll"
- cont "give you a lift!"
- done
-
-_LaprasGuyText::
- text "TEAM ROCKET's"
- line "BOSS went to the"
- cont "boardroom! Is our"
- cont "PRESIDENT OK?"
- done
-
-_LaprasGuySavedText::
- text "Saved at last!"
- line "Thank you!"
- done
-
-_SilphCo7Text_51e00::
- text "TEAM ROCKET was"
- line "after the MASTER"
- cont "BALL which will"
- cont "catch any #MON!"
- done
-
-_CanceledMasterBallText::
- text "We canceled the"
- line "MASTER BALL"
- cont "project because"
- cont "of TEAM ROCKET."
- done
-
-_SilphCo7Text_51e23::
- text "It would be bad"
- line "if TEAM ROCKET"
- cont "took over SILPH"
- cont "or our #MON!"
- done
-
-_SilphCo7Text_51e28::
- text "Wow! You chased"
- line "off TEAM ROCKET"
- cont "all by yourself?"
- done
-
-_SilphCo7Text_51e46::
- text "You! It's really"
- line "dangerous here!"
- cont "You came to save"
- cont "me? You can't!"
- done
-
-_SilphCo7Text_51e4b::
- text "Safe at last!"
- line "Oh thank you!"
- done
-
-_SilphCo7BattleText1::
- text "Oh ho! I smell a"
- line "little rat!"
- done
-
-_SilphCo7EndBattleText1::
- text "Lights"
- line "out!"
- prompt
-
-_SilphCo7AfterBattleText1::
- text "You won't find my"
- line "BOSS by just"
- cont "scurrying around!"
- done
-
-_SilphCo7BattleText2::
- text "Heheh!"
-
- para "You mistook me for"
- line "a SILPH worker?"
- done
-
-_SilphCo7EndBattleText2::
- text "I'm"
- line "done!"
- prompt
-
-_SilphCo7AfterBattleText2::
- text "Despite your age,"
- line "you are a skilled"
- cont "trainer!"
- done
-
-_SilphCo7BattleText3::
- text "I am one of the 4"
- line "ROCKET BROTHERS!"
- done
-
-_SilphCo7EndBattleText3::
- text "Aack!"
- line "Brothers, I lost!"
- prompt
-
-_SilphCo7AfterBattleText3::
- text "Doesn't matter."
- line "My brothers will"
- cont "repay the favor!"
- done
-
-_SilphCo7BattleText4::
- text "A child intruder?"
- line "That must be you!"
- done
-
-_SilphCo7EndBattleText4::
- text "Fine!"
- line "I lost!"
- prompt
-
-_SilphCo7AfterBattleText4::
- text "Go on home"
- line "before my BOSS"
- cont "gets ticked off!"
- done
-
-_SilphCo7Text_51ebe::
- text "<RIVAL>: What"
- line "kept you <PLAYER>?"
- done
-
-_SilphCo7Text_51ec3::
- text "<RIVAL>: Hahaha!"
- line "I thought you'd"
- cont "turn up if I"
- cont "waited here!"
-
- para "I guess TEAM"
- line "ROCKET slowed you"
- cont "down! Not that I"
- cont "care!"
-
- para "I saw you in"
- line "SAFFRON, so I"
- cont "decided to see if"
- cont "you got better!"
- done
-
-_SilphCo7Text_51ec8::
- text "Oh ho!"
- line "So, you are ready"
- cont "for BOSS ROCKET!"
- prompt
-
-_SilphCo7Text_51ecd::
- text "<RIVAL>: How can"
- line "I put this?"
-
- para "You're not good"
- line "enough to play"
- cont "with us big boys!"
- prompt
-
-_SilphCo7Text_51ed2::
- text "Well, <PLAYER>!"
-
- para "I'm moving on up"
- line "and ahead!"
-
- para "By checking my"
- line "#DEX, I'm"
- cont "starting to see"
- cont "what's strong and"
- cont "how they evolve!"
-
- para "I'm going to the"
- line "#MON LEAGUE"
- cont "to boot out the"
- cont "ELITE FOUR!"
-
- para "I'll become the"
- line "world's most"
- cont "powerful trainer!"
-
- para "<PLAYER>, well"
- line "good luck to you!"
- cont "Don't sweat it!"
- cont "Smell ya!"
- done
--- a/text/maps/SilphCo8F.asm
+++ /dev/null
@@ -1,56 +1,0 @@
-_SilphCo8Text_565be::
- text "I wonder if SILPH"
- line "is finished..."
- done
-
-_SilphCo8Text_565c3::
- text "Thanks for saving"
- line "us!"
- done
-
-_SilphCo8BattleText1::
- text "That's as far as"
- line "you'll go!"
- done
-
-_SilphCo8EndBattleText1::
- text "Not"
- line "enough grit!"
- prompt
-
-_SilphCo8AfterBattleText1::
- text "If you don't turn"
- line "back, I'll call"
- cont "for backup!"
- done
-
-_SilphCo8BattleText2::
- text "You're causing us"
- line "problems!"
- done
-
-_SilphCo8EndBattleText2::
- text "Huh?"
- line "I lost?"
- prompt
-
-_SilphCo8AfterBattleText2::
- text "So, what do you"
- line "think of SILPH"
- cont "BUILDING's maze?"
- done
-
-_SilphCo8BattleText3::
- text "I am one of the 4"
- line "ROCKET BROTHERS!"
- done
-
-_SilphCo8EndBattleText3::
- text "Whoo!"
- line "Oh brothers!"
- prompt
-
-_SilphCo8AfterBattleText3::
- text "I'll leave you up"
- line "to my brothers!"
- done
--- a/text/maps/SilphCo9F.asm
+++ /dev/null
@@ -1,62 +1,0 @@
-_SilphCo9Text_5d8e5::
- text "You look tired!"
- line "You should take a"
- cont "quick nap!"
- prompt
-
-_SilphCo9Text_5d8ea::
- text "Don't give up!"
- done
-
-_SilphCo9Text_5d8ef::
- text "Thank you so"
- line "much!"
- done
-
-_SilphCo9BattleText1::
- text "Your #MON seem"
- line "to adore you, kid!"
- done
-
-_SilphCo9EndBattleText1::
- text "Ghaaah!"
- prompt
-
-_SilphCo9AfterBattleText1::
- text "If I had started"
- line "as a trainer at"
- cont "your age..."
- done
-
-_SilphCo9BattleText2::
- text "Your #MON have"
- line "weak points! I"
- cont "can nail them!"
- done
-
-_SilphCo9EndBattleText2::
- text "You"
- line "hammered me!"
- prompt
-
-_SilphCo9AfterBattleText2::
- text "Exploiting weak"
- line "spots does work!"
- cont "Think about"
- cont "element types!"
- done
-
-_SilphCo9BattleText3::
- text "I am one of the 4"
- line "ROCKET BROTHERS!"
- done
-
-_SilphCo9EndBattleText3::
- text "Warg!"
- line "Brothers, I lost!"
- prompt
-
-_SilphCo9AfterBattleText3::
- text "My brothers will"
- line "avenge me!"
- done
--- a/text/maps/UndergroundPathRoute6.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-_UndergrdTunnelEntRoute6Text1::
- text "People often lose"
- line "things in that"
- cont "UNDERGROUND PATH."
- done
--- a/text/maps/UndergroundPathRoute7.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-_UndergroundPathEntRoute7Text1::
- text "I heard a sleepy"
- line "#MON appeared"
- cont "near CELADON CITY."
- done
--- a/text/maps/UndergroundPathRoute7Copy.asm
+++ /dev/null
@@ -1,35 +1,0 @@
-_UGPathRoute7EntranceUnusedText_5d773::
- text "I want to shop at"
- line "the dept. store"
- cont "in CELADON but..."
-
- para "There are so many"
- line "rough looking"
- cont "people there."
- done
-
-_UGPathRoute7EntranceUnusedText_5d778::
- text "TEAM ROCKET had a"
- line "secret hideout in"
- cont "CELADON CITY?"
- done
-
-_UGPathRoute7EntranceUnusedText_5d77d::
- text "You're here to"
- line "shop in CELADON?"
-
- para "Just step outside"
- line "and head west!"
- done
-
-_UGPathRoute7EntranceUnusedText_5d782::
- text "The UNDERGROUND"
- line "PATH goes beneath"
- cont "SAFFRON and leads"
- cont "to LAVENDER."
-
- para "If you're heading"
- line "to CERULEAN, go"
- cont "to the building"
- cont "across the road."
- done
--- a/text/maps/UndergroundPathRoute8.asm
+++ /dev/null
@@ -1,5 +1,0 @@
-_UndergroundPathEntRoute8Text1::
- text "The dept. store"
- line "in CELADON has a"
- cont "great selection!"
- done
--- a/text/maps/VermilionCity.asm
+++ /dev/null
@@ -1,126 +1,0 @@
-_VermilionCityText1::
- text "We're careful"
- line "about pollution!"
-
- para "We've heard GRIMER"
- line "multiplies in"
- cont "toxic sludge!"
- done
-
-_VermilionCityTextDidYouSee::
- text "Did you see S.S."
- line "ANNE moored in"
- cont "the harbor?"
- done
-
-_VermilionCityTextSSAnneDeparted::
- text "So, S.S.ANNE has"
- line "departed!"
-
- para "She'll be back in"
- line "about a year."
- done
-
-_SSAnneWelcomeText4::
- text "Welcome to S.S."
- line "ANNE!"
- done
-
-_SSAnneWelcomeText9::
- text "Welcome to S.S."
- line "ANNE!"
-
- para "Excuse me, do you"
- line "have a ticket?"
- prompt
-
-_SSAnneFlashedTicketText::
- text "<PLAYER> flashed"
- line "the S.S.TICKET!"
-
- para "Great! Welcome to"
- line "S.S.ANNE!"
- done
-
-_SSAnneNoTicketText::
- text "<PLAYER> doesn't"
- line "have the needed"
- cont "S.S.TICKET."
-
- para "Sorry!"
-
- para "You need a ticket"
- line "to get aboard."
- done
-
-_SSAnneNotHereText::
- text "The ship set sail."
- done
-
-_VermilionCityText4::
- text "I'm putting up a"
- line "building on this"
- cont "plot of land."
-
- para "My #MON is"
- line "tamping the land."
- done
-
-_VermilionCityText5::
- text "MACHOP: Guoh!"
- line "Gogogoh!@@"
-
-_VermilionCityText14::
- text ""
- para "A MACHOP is"
- line "stomping the land"
- cont "flat."
- done
-
-_VermilionCityText6::
- text "S.S.ANNE is a"
- line "famous luxury"
- cont "cruise ship."
-
- para "We visit VERMILION"
- line "once a year."
- done
-
-_VermilionCityText7::
- text "VERMILION CITY"
- line "The Port of"
- cont "Exquisite Sunsets"
- done
-
-_VermilionCityText8::
- text "NOTICE!"
-
- para "ROUTE 12 may be"
- line "blocked off by a"
- cont "sleeping #MON."
-
- para "Detour through"
- line "ROCK TUNNEL to"
- cont "LAVENDER TOWN."
-
- para "VERMILION POLICE"
- done
-
-_VermilionCityText11::
- text "#MON FAN CLUB"
- line "All #MON fans"
- cont "welcome!"
- done
-
-_VermilionCityText12::
- text "VERMILION CITY"
- line "#MON GYM"
- cont "LEADER: LT.SURGE"
-
- para "The Lightning "
- line "American!"
- done
-
-_VermilionCityText13::
- text "VERMILION HARBOR"
- done
--- a/text/maps/VermilionDock.asm
+++ /dev/null
@@ -1,3 +1,0 @@
-_VermilionDockText1::
- text ""
- done
--- a/text/maps/VermilionGym.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-_LTSurgePreBattleText::
- text "Hey, kid! What do"
- line "you think you're"
- cont "doing here?"
-
- para "You won't live"
- line "long in combat!"
- cont "That's for sure!"
-
- para "I tell you kid,"
- line "electric #MON"
- cont "saved me during"
- cont "the war!"
-
- para "They zapped my"
- line "enemies into"
- cont "paralysis!"
-
- para "The same as I'll"
- line "do to you!"
- done
--- a/text/maps/VermilionGym_2.asm
+++ /dev/null
@@ -1,144 +1,0 @@
-_LTSurgePostBattleAdviceText::
- text "A little word of"
- line "advice, kid!"
-
- para "Electricity is"
- line "sure powerful!"
-
- para "But, it's useless"
- line "against ground-"
- cont "type #MON!"
- done
-
-_LTSurgeThunderbadgeInfoText::
- text "The THUNDERBADGE"
- line "cranks up your"
- cont "#MON's SPEED!"
-
- para "It also lets your"
- line "#MON FLY any"
- cont "time, kid!"
-
- para "You're special,"
- line "kid! Take this!"
- done
-
-_ReceivedTM24Text::
- text "<PLAYER> received "
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_TM24ExplanationText::
- text ""
-
- para "TM24 contains"
- line "THUNDERBOLT!"
-
- para "Teach it to an"
- line "electric #MON!"
- done
-
-_TM24NoRoomText::
- text "Yo kid, make room"
- line "in your pack!"
- done
-
-_ReceivedThunderbadgeText::
- text "Whoa!"
-
- para "You're the real"
- line "deal, kid!"
-
- para "Fine then, take"
- line "the THUNDERBADGE!"
- prompt
-
-_VermilionGymBattleText1::
- text "When I was in the"
- line "Army, LT.SURGE"
- cont "was my strict CO!"
- done
-
-_VermilionGymEndBattleText1::
- text "Stop!"
- line "You're very good!"
- prompt
-
-_VermilionGymAfterBattleText1::
- text "The door won't"
- line "open?"
-
- para "LT.SURGE always"
- line "was cautious!"
- done
-
-_VermilionGymBattleText2::
- text "I'm a lightweight,"
- line "but I'm good with"
- cont "electricity!"
- done
-
-_VermilionGymEndBattleText2::
- text "Fried!"
- prompt
-
-_VermilionGymAfterBattleText2::
- text "OK, I'll talk!"
-
- para "LT.SURGE said he"
- line "hid door switches"
- cont "inside something!"
- done
-
-_VermilionGymBattleText3::
- text "This is no place"
- line "for kids!"
- done
-
-_VermilionGymEndBattleText3::
- text "Wow!"
- line "Surprised me!"
- prompt
-
-_VermilionGymAfterBattleText3::
- text "LT.SURGE set up"
- line "double locks!"
- cont "Here's a hint!"
-
- para "When you open the"
- line "1st lock, the 2nd"
- cont "lock is right"
- cont "next to it!"
- done
-
-_VermilionGymFanPreBattleText::
- text "Yo! Champ in"
- line "making!"
-
- para "LT.SURGE has a"
- line "nickname. People"
- cont "refer to him as"
- cont "the Lightning"
- cont "American!"
-
- para "He's an expert on"
- line "electric #MON!"
-
- para "Birds and water"
- line "#MON are at"
- cont "risk! Beware of"
- cont "paralysis too!"
-
- para "LT.SURGE is very"
- line "cautious!"
-
- para "You'll have to"
- line "break a code to"
- cont "get to him!"
- done
-
-_VermilionGymFanPostBattleText::
- text "Whew! That match"
- line "was electric!"
- done
--- a/text/maps/VermilionMart.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-_VermilionMartText2::
- text "There are evil"
- line "people who will"
- cont "use #MON for"
- cont "criminal acts."
-
- para "TEAM ROCKET"
- line "traffics in rare"
- cont "#MON."
-
- para "They also abandon"
- line "#MON that they"
- cont "consider not to"
- cont "be popular or"
- cont "useful."
- done
-
-_VermilionMartText3::
- text "I think #MON"
- line "can be good or"
- cont "evil. It depends"
- cont "on the trainer."
- done
--- a/text/maps/VermilionOldRodHouse.asm
+++ /dev/null
@@ -1,54 +1,0 @@
-_VermilionHouse2Text_560b1::
- text "I'm the FISHING"
- line "GURU!"
-
- para "I simply Looove"
- line "fishing!"
-
- para "Do you like to"
- line "fish?"
- done
-
-_VermilionHouse2Text_560b6::
- text "Grand! I like"
- line "your style!"
-
- para "Take this and"
- line "fish, young one!"
-
- para "<PLAYER> received"
- line "an @"
- TX_RAM wcf4b
- text "!@@"
-
-_VermilionHouse2Text_560bb::
- text ""
-
- para "Fishing is a way"
- line "of life!"
-
- para "From the seas to"
- line "rivers, go out"
- cont "and land the big"
- cont "one, young one!"
- done
-
-_VermilionHouse2Text_560c0::
- text "Oh... That's so"
- line "disappointing..."
- done
-
-_VermilionHouse2Text_560c5::
- text "Hello there,"
- line "<PLAYER>!"
-
- para "How are the fish"
- line "biting?"
- done
-
-_VermilionHouse2Text_560ca::
- text "Oh no!"
-
- para "You have no room"
- line "for my gift!"
- done
--- a/text/maps/VermilionPidgeyHouse.asm
+++ /dev/null
@@ -1,21 +1,0 @@
-_VermilionHouse1Text1::
- text "I'm getting my"
- line "PIDGEY to fly a"
- cont "letter to SAFFRON"
- cont "in the north!"
- done
-
-_VermilionHouse1Text2::
- text "PIDGEY: Kurukkoo!@@"
-
-_VermilionHouse1Text3::
- text "Dear PIPPI, I hope"
- line "to see you soon."
-
- para "I heard SAFFRON"
- line "has problems with"
- cont "TEAM ROCKET."
-
- para "VERMILION appears"
- line "to be safe."
- done
--- a/text/maps/VermilionPokecenter.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-_VermilionPokecenterText2::
- text "Even if they are"
- line "the same level,"
- cont "#MON can have"
- cont "very different"
- cont "abilities."
-
- para "A #MON raised"
- line "by a trainer is"
- cont "stronger than one"
- cont "in the wild."
- done
-
-_VermilionPokecenterText3::
- text "My #MON was"
- line "poisoned! It"
- cont "fainted while we"
- cont "were walking!"
- done
--- a/text/maps/VictoryRoad1F.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-_VictoryRoad1BattleText1::
- text "I wonder if you"
- line "are good enough"
- cont "for me!"
- done
-
-_VictoryRoad1EndBattleText1::
- text "I"
- line "lost out!"
- prompt
-
-_VictoryRoad1AfterBattleText1::
- text "I never wanted to"
- line "lose to anybody!"
- done
-
-_VictoryRoad1BattleText2::
- text "I can see you're"
- line "good! Let me see"
- cont "exactly how good!"
- done
-
-_VictoryRoad1EndBattleText2::
- text "I"
- line "had a chance..."
- prompt
-
-_VictoryRoad1AfterBattleText2::
- text "I concede, you're"
- line "better than me!"
- done
--- a/text/maps/VictoryRoad2F.asm
+++ /dev/null
@@ -1,85 +1,0 @@
-_MoltresBattleText::
- text "Gyaoo!@@"
-
-_VictoryRoad2BattleText1::
- text "VICTORY ROAD is"
- line "the final test"
- cont "for trainers!"
- done
-
-_VictoryRoad2EndBattleText1::
- text "Aiyah!"
- prompt
-
-_VictoryRoad2AfterBattleText1::
- text "If you get stuck,"
- line "try moving some"
- cont "boulders around!"
- done
-
-_VictoryRoad2BattleText2::
- text "Ah, so you wish"
- line "to challenge the"
- cont "ELITE FOUR?"
- done
-
-_VictoryRoad2EndBattleText2::
- text "You"
- line "got me!"
- prompt
-
-_VictoryRoad2AfterBattleText2::
- text "<RIVAL> also came"
- line "through here!"
- done
-
-_VictoryRoad2BattleText3::
- text "Come on!"
- line "I'll whip you!"
- done
-
-_VictoryRoad2EndBattleText3::
- text "I got"
- line "whipped!"
- prompt
-
-_VictoryRoad2AfterBattleText3::
- text "You earned the"
- line "right to be on"
- cont "VICTORY ROAD!"
- done
-
-_VictoryRoad2BattleText4::
- text "If you can get"
- line "through here, you"
- cont "can go meet the"
- cont "ELITE FOUR!"
- done
-
-_VictoryRoad2EndBattleText4::
- text "No!"
- line "Unbelievable!"
- prompt
-
-_VictoryRoad2AfterBattleText4::
- text "I can beat you"
- line "when it comes to"
- cont "knowledge about"
- cont "#MON!"
- done
-
-_VictoryRoad2BattleText5::
- text "Is VICTORY ROAD"
- line "too tough?"
- done
-
-_VictoryRoad2EndBattleText5::
- text "Well"
- line "done!"
- prompt
-
-_VictoryRoad2AfterBattleText5::
- text "Many trainers give"
- line "up the challenge"
- cont "here."
- done
--- a/text/maps/VictoryRoad3F.asm
+++ /dev/null
@@ -1,63 +1,0 @@
-_VictoryRoad3BattleText2::
- text "I heard rumors of"
- line "a child prodigy!"
- done
-
-_VictoryRoad3EndBattleText2::
- text "The"
- line "rumors were true!"
- prompt
-
-_VictoryRoad3AfterBattleText2::
- text "You beat GIOVANNI"
- line "of TEAM ROCKET?"
- done
-
-_VictoryRoad3BattleText3::
- text "I'll show you just"
- line "how good you are!"
- done
-
-_VictoryRoad3EndBattleText3::
- text "I'm"
- line "furious!"
- prompt
-
-_VictoryRoad3AfterBattleText3::
- text "You showed me just"
- line "how good I was!"
- done
-
-_VictoryRoad3BattleText4::
- text "Only the chosen"
- line "can pass here!"
- done
-
-_VictoryRoad3EndBattleText4::
- text "I"
- line "don't believe it!"
- prompt
-
-_VictoryRoad3AfterBattleText4::
- text "All trainers here"
- line "are headed to the"
- cont "#MON LEAGUE!"
- cont "Be careful!"
- done
-
-_VictoryRoad3BattleText5::
- text "Trainers live to"
- line "seek stronger"
- cont "opponents!"
- done
-
-_VictoryRoad3EndBattleText5::
- text "Oh!"
- line "So strong!"
- prompt
-
-_VictoryRoad3AfterBattleText5::
- text "By fighting tough"
- line "battles, you get"
- cont "stronger!"
- done
--- a/text/maps/ViridianCity.asm
+++ /dev/null
@@ -1,180 +1,0 @@
-_ViridianCityText1::
- text "Those # BALLs"
- line "at your waist!"
- cont "You have #MON!"
-
- para "It's great that"
- line "you can carry and"
- cont "use #MON any"
- cont "time, anywhere!"
- done
-
-_ViridianCityText_19122::
- text "This #MON GYM"
- line "is always closed."
-
- para "I wonder who the"
- line "LEADER is?"
- done
-
-_ViridianCityText_19127::
- text "VIRIDIAN GYM's"
- line "LEADER returned!"
- done
-
-_ViridianCityText_1914d::
- text "You want to know"
- line "about the 2 kinds"
- cont "of caterpillar"
- cont "#MON?"
- done
-
-_ViridianCityText_19152::
- text "Oh, OK then!"
- done
-
-_ViridianCityText_19157::
- text "CATERPIE has no"
- line "poison, but"
- cont "WEEDLE does."
-
- para "Watch out for its"
- line "POISON STING!"
- done
-
-_ViridianCityText_19175::
- text "Oh Grandpa! Don't"
- line "be so mean!"
- cont "He hasn't had his"
- cont "coffee yet."
- done
-
-_ViridianCityText_1917a::
- text "When I go shop in"
- line "PEWTER CITY, I"
- cont "have to take the"
- cont "winding trail in"
- cont "VIRIDIAN FOREST."
- done
-
-_ViridianCityText_19191::
- text "You can't go"
- line "through here!"
-
- para "This is private"
- line "property!"
- done
-
-_ViridianCityText_191ca::
- text "Yawn!"
- line "I must have dozed"
- cont "off in the sun."
-
- para "I had this dream"
- line "about a DROWZEE"
- cont "eating my dream."
- cont "What's this?"
- cont "Where did this TM"
- cont "come from?"
-
- para "This is spooky!"
- line "Here, you can"
- cont "have this TM."
- prompt
-
-_ReceivedTM42Text::
- text "<PLAYER> received"
- line "TM42!@@"
-
-_TM42Explanation::
- text "TM42 contains"
- line "DREAM EATER..."
- cont "...Snore..."
- done
-
-_TM42NoRoomText::
- text "You have too much"
- line "stuff already."
- done
-
-_ViridianCityText_1920a::
- text "Ahh, I've had my"
- line "coffee now and I"
- cont "feel great!"
-
- para "Sure you can go"
- line "through!"
-
- para "Are you in a"
- line "hurry?"
- done
-
-_ViridianCityText_1920f::
- text "I see you're using"
- line "a #DEX."
-
- para "When you catch a"
- line "#MON, #DEX"
- cont "is automatically"
- cont "updated."
-
- para "What? Don't you"
- line "know how to catch"
- cont "#MON?"
-
- para "I'll show you"
- line "how to then."
- done
-
-_ViridianCityText_19214::
- text "Time is money..."
- line "Go along then."
- done
-
-_ViridianCityText_19219::
- text "First, you need"
- line "to weaken the"
- cont "target #MON."
- done
-
-_ViridianCityText8::
- text "VIRIDIAN CITY "
- line "The Eternally"
- cont "Green Paradise"
- done
-
-_ViridianCityText9::
- text "TRAINER TIPS"
-
- para "Catch #MON"
- line "and expand your"
- cont "collection!"
-
- para "The more you have,"
- line "the easier it is"
- cont "to fight!"
- done
-
-_ViridianCityText10::
- text "TRAINER TIPS"
-
- para "The battle moves"
- line "of #MON are"
- cont "limited by their"
- cont "POWER POINTs, PP."
-
- para "To replenish PP,"
- line "rest your tired"
- cont "#MON at a"
- cont "#MON CENTER!"
- done
-
-_ViridianCityText13::
- text "VIRIDIAN CITY"
- line "#MON GYM"
- done
-
-_ViridianCityText14::
- text "The GYM's doors"
- line "are locked..."
- done
--- a/text/maps/ViridianForest.asm
+++ /dev/null
@@ -1,123 +1,0 @@
-_ViridianForestText1::
- text "I came here with"
- line "some friends!"
-
- para "They're out for"
- line "#MON fights!"
- done
-
-_ViridianForestBattleText1::
- text "Hey! You have"
- line "#MON! Come on!"
- cont "Let's battle'em!"
- done
-
-_ViridianForestEndBattleText1::
- text "No!"
- line "CATERPIE can't"
- cont "cut it!"
- prompt
-
-_ViridianFrstAfterBattleText1::
- text "Ssh! You'll scare"
- line "the bugs away!"
- done
-
-_ViridianForestBattleText2::
- text "Yo! You can't jam"
- line "out if you're a"
- cont "#MON trainer!"
- done
-
-_ViridianForestEndBattleText2::
- text "Huh?"
- line "I ran out of"
- cont "#MON!"
- prompt
-
-_ViridianFrstAfterBattleText2::
- text "Darn! I'm going"
- line "to catch some"
- cont "stronger ones!"
- done
-
-_ViridianForestBattleText3::
- text "Hey, wait up!"
- line "What's the hurry?"
- done
-
-_ViridianForestEndBattleText3::
- text "I"
- line "give! You're good"
- cont "at this!"
- prompt
-
-_ViridianFrstAfterBattleText3::
- text "Sometimes, you"
- line "can find stuff on"
- cont "the ground!"
-
- para "I'm looking for"
- line "the stuff I"
- cont "dropped!"
- done
-
-_ViridianForestText8::
- text "I ran out of #"
- line "BALLs to catch"
- cont "#MON with!"
-
- para "You should carry"
- line "extras!"
- done
-
-_ViridianForestText9::
- text "TRAINER TIPS"
-
- para "If you want to"
- line "avoid battles,"
- cont "stay away from"
- cont "grassy areas!"
- done
-
-_ViridianForestText10::
- text "For poison, use"
- line "ANTIDOTE! Get it"
- cont "at #MON MARTs!"
- done
-
-_ViridianForestText11::
- text "TRAINER TIPS"
-
- para "Contact PROF.OAK"
- line "via PC to get"
- cont "your #DEX"
- cont "evaluated!"
- done
-
-_ViridianForestText12::
- text "TRAINER TIPS"
-
- para "No stealing of"
- line "#MON from"
- cont "other trainers!"
- cont "Catch only wild"
- cont "#MON!"
- done
-
-_ViridianForestText13::
- text "TRAINER TIPS"
-
- para "Weaken #MON"
- line "before attempting"
- cont "capture!"
-
- para "When healthy,"
- line "they may escape!"
- done
-
-_ViridianForestText14::
- text "LEAVING"
- line "VIRIDIAN FOREST"
- cont "PEWTER CITY AHEAD"
- done
--- a/text/maps/ViridianForestNorthGate.asm
+++ /dev/null
@@ -1,19 +1,0 @@
-_ViridianForestExitText1::
- text "Many #MON live"
- line "only in forests "
- cont "and caves."
-
- para "You need to look"
- line "everywhere to get"
- cont "different kinds!"
- done
-
-_ViridianForestExitText2::
- text "Have you noticed"
- line "the bushes on the"
- cont "roadside?"
-
- para "They can be cut"
- line "down by a special"
- cont "#MON move."
- done
--- a/text/maps/ViridianForestSouthGate.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-_ViridianForestEntranceText1::
- text "Are you going to"
- line "VIRIDIAN FOREST?"
- cont "Be careful, it's"
- cont "a natural maze!"
- done
-
-_ViridianForestEntranceText2::
- text "RATTATA may be"
- line "small, but its"
- cont "bite is wicked!"
- cont "Did you get one?"
- done
--- a/text/maps/ViridianGym.asm
+++ /dev/null
@@ -1,237 +1,0 @@
-_ViridianGymText_74ace::
- text "Fwahahaha! This is"
- line "my hideout!"
-
- para "I planned to"
- line "resurrect TEAM"
- cont "ROCKET here!"
-
- para "But, you have"
- line "caught me again!"
- cont "So be it! This"
- cont "time, I'm not"
- cont "holding back!"
-
- para "Once more, you"
- line "shall face"
- cont "GIOVANNI, the"
- cont "greatest trainer!"
- done
-
-_ViridianGymText_74ad3::
- text "Ha!"
- line "That was a truly"
- cont "intense fight!"
- cont "You have won!"
- cont "As proof, here is"
- cont "the EARTHBADGE!@@"
-
-_ViridianGymText_74ad9::
- text "Having lost, I"
- line "cannot face my"
- cont "underlings!"
- cont "TEAM ROCKET is"
- cont "finished forever!"
-
- para "I will dedicate my"
- line "life to the study"
- cont "of #MON!"
-
- para "Let us meet again"
- line "some day!"
- cont "Farewell!@@"
-
-_ViridianGymText12::
- text "The EARTHBADGE"
- line "makes #MON of"
- cont "any level obey!"
-
- para "It is evidence of"
- line "your mastery as a"
- cont "#MON trainer!"
-
- para "With it, you can"
- line "enter the #MON"
- cont "LEAGUE!"
-
- para "It is my gift for"
- line "your #MON"
- cont "LEAGUE challenge!"
- done
-
-_ReceivedTM27Text::
- text "<PLAYER> received"
- line "TM27!@@"
-
-_TM27ExplanationText::
- text ""
-
- para "TM27 is FISSURE!"
- line "It will take out"
- cont "#MON with just"
- cont "one hit!"
-
- para "I made it when I"
- line "ran the GYM here,"
- cont "too long ago..."
- done
-
-_TM27NoRoomText::
- text "You do not have"
- line "space for this!"
- done
-
-_ViridianGymBattleText1::
- text "Heh! You must be"
- line "running out of"
- cont "steam by now!"
- done
-
-_ViridianGymEndBattleText1::
- text "I"
- line "ran out of gas!"
- prompt
-
-_ViridianGymAfterBattleText1::
- text "You need power to"
- line "keep up with our"
- cont "GYM LEADER!"
- done
-
-_ViridianGymBattleText2::
- text "Rrrroar! I'm"
- line "working myself"
- cont "into a rage!"
- done
-
-_ViridianGymEndBattleText2::
- text "Wargh!"
- prompt
-
-_ViridianGymAfterBattleText2::
- text "I'm still not"
- line "worthy!"
- done
-
-_ViridianGymBattleText3::
- text "#MON and I, we"
- line "make wonderful"
- cont "music together!"
- done
-
-_ViridianGymEndBattleText3::
- text "You are in"
- line "perfect harmony!"
- prompt
-
-_ViridianGymAfterBattleText3::
- text "Do you know the"
- line "identity of our"
- cont "GYM LEADER?"
- done
-
-_ViridianGymBattleText4::
- text "Karate is the"
- line "ultimate form of"
- cont "martial arts!"
- done
-
-_ViridianGymEndBattleText4::
- text "Atcho!"
- prompt
-
-_ViridianGymAfterBattleText4::
- text "If my #MON"
- line "were as good at"
- cont "Karate as I..."
- done
-
-_ViridianGymBattleText5::
- text "The truly talented"
- line "win with style!"
- done
-
-_ViridianGymEndBattleText5::
- text "I"
- line "lost my grip!"
- prompt
-
-_ViridianGymAfterBattleText5::
- text "The LEADER will"
- line "scold me!"
- done
-
-_ViridianGymBattleText6::
- text "I'm the KARATE"
- line "KING! Your fate"
- cont "rests with me!"
- done
-
-_ViridianGymEndBattleText6::
- text "Ayah!"
- prompt
-
-_ViridianGymAfterBattleText6::
- text "#MON LEAGUE?"
- line "You? Don't get"
- cont "cocky!"
- done
-
-_ViridianGymBattleText7::
- text "Your #MON will"
- line "cower at the"
- cont "crack of my whip!"
- done
-
-_ViridianGymEndBattleText7::
- text "Yowch!"
- line "Whiplash!"
- prompt
-
-_ViridianGymAfterBattleText7::
- text "Wait! I was just"
- line "careless!"
- done
-
-_ViridianGymBattleText8::
- text "VIRIDIAN GYM was"
- line "closed for a long"
- cont "time, but now our"
- cont "LEADER is back!"
- done
-
-_ViridianGymEndBattleText8::
- text "I"
- line "was beaten?"
- prompt
-
-_ViridianGymAfterBattleText8::
- text "You can go onto"
- line "#MON LEAGUE"
- cont "only by defeating"
- cont "our GYM LEADER!"
- done
-
-_ViridianGymText_74bd4::
- text "Yo! Champ in"
- line "making!"
-
- para "Even I don't know"
- line "VIRIDIAN LEADER's"
- cont "identity!"
-
- para "This will be the"
- line "toughest of all"
- cont "the GYM LEADERs!"
-
- para "I heard that the"
- line "trainers here"
- cont "like ground-type"
- cont "#MON!"
- done
-
-_ViridianGymText_74bd9::
- text "Blow me away!"
- line "GIOVANNI was the"
- cont "GYM LEADER here?"
- done
--- a/text/maps/ViridianMart.asm
+++ /dev/null
@@ -1,30 +1,0 @@
-_ViridianMartText1::
- text "Okay! Say hi to"
- line "PROF.OAK for me!"
- done
-
-_ViridianMartText4::
- text "Hey! You came from"
- line "PALLET TOWN?"
- done
-
-ViridianMartParcelQuestText::
- text "You know PROF."
- line "OAK, right?"
-
- para "His order came in."
- line "Will you take it"
- cont "to him?"
-
- para "<PLAYER> got"
- line "OAK's PARCEL!@@"
-
-_ViridianMartText2::
- text "This shop sells"
- line "many ANTIDOTEs."
- done
-
-_ViridianMartText3::
- text "No! POTIONs are"
- line "all sold out."
- done
--- a/text/maps/ViridianNicknameHouse.asm
+++ /dev/null
@@ -1,23 +1,0 @@
-_ViridianHouseText1::
- text "Coming up with"
- line "nicknames is fun,"
- cont "but hard."
-
- para "Simple names are"
- line "the easiest to"
- cont "remember."
- done
-
-_ViridianHouseText2::
- text "My Daddy loves"
- line "#MON too."
- done
-
-_ViridianHouseText_1d5b1::
- text "SPEARY: Tetweet!"
- done
-
-_ViridianHouseText4::
- text "SPEAROW"
- line "Name: SPEARY"
- done
--- a/text/maps/ViridianPokecenter.asm
+++ /dev/null
@@ -1,16 +1,0 @@
-_ViridianPokeCenterText2::
- text "You can use that"
- line "PC in the corner."
-
- para "The receptionist"
- line "told me. So kind!"
- done
-
-_ViridianPokeCenterText3::
- text "There's a #MON"
- line "CENTER in every"
- cont "town ahead."
-
- para "They don't charge"
- line "any money either!"
- done
--- a/text/maps/ViridianSchoolHouse.asm
+++ /dev/null
@@ -1,13 +1,0 @@
-_SchoolText1::
- text "Whew! I'm trying"
- line "to memorize all"
- cont "my notes."
- done
-
-_SchoolText2::
- text "Okay!"
-
- para "Be sure to read"
- line "the blackboard"
- cont "carefully!"
- done
--- a/text/maps/WardensHouse.asm
+++ /dev/null
@@ -1,84 +1,0 @@
-_WardenGibberishText1::
- text "WARDEN: Hif fuff"
- line "hefifoo!"
-
- para "Ha lof ha feef ee"
- line "hafahi ho. Heff"
- cont "hee fwee!"
- done
-
-_WardenGibberishText2::
- text "Ah howhee ho hoo!"
- line "Eef ee hafahi ho!"
- done
-
-_WardenGibberishText3::
- text "Ha? He ohay heh"
- line "ha hoo ee haheh!"
- done
-
-_WardenTeethText1::
- text "<PLAYER> gave the"
- line "GOLD TEETH to the"
- cont "WARDEN!@@"
-
-_WardenTeethText2::
- text ""
-
- para "The WARDEN popped"
- line "in his teeth!"
- prompt
-
-_WardenThankYouText::
- text "WARDEN: Thanks,"
- line "kid! No one could"
- cont "understand a word"
- cont "that I said."
-
- para "I couldn't work"
- line "that way."
- cont "Let me give you"
- cont "something for"
- cont "your trouble."
- prompt
-
-_ReceivedHM04Text::
- text "<PLAYER> received"
- line "@"
- TX_RAM wcf4b
- text "!@@"
-
-_HM04ExplanationText::
- text "WARDEN: HM04"
- line "teaches STRENGTH!"
-
- para "It lets #MON"
- line "move boulders"
- cont "when you're out-"
- cont "side of battle."
-
- para "Oh yes, did you"
- line "find SECRET HOUSE"
- cont "in SAFARI ZONE?"
-
- para "If you do, you"
- line "win an HM!"
-
- para "I hear it's the"
- line "rare SURF HM."
- done
-
-_HM04NoRoomText::
- text "Your pack is"
- line "stuffed full!"
- done
-
-_FuchsiaHouse2Text_75176::
- text "#MON photos"
- line "and fossils."
- done
-
-_FuchsiaHouse2Text_7517b::
- text "Old #MON"
- line "merchandise."
- done
--- a/text/monster_names.asm
+++ /dev/null
@@ -1,191 +1,0 @@
-MonsterNames::
- db "RHYDON@@@@"
- db "KANGASKHAN"
- db "NIDORAN♂@@"
- db "CLEFAIRY@@"
- db "SPEAROW@@@"
- db "VOLTORB@@@"
- db "NIDOKING@@"
- db "SLOWBRO@@@"
- db "IVYSAUR@@@"
- db "EXEGGUTOR@"
- db "LICKITUNG@"
- db "EXEGGCUTE@"
- db "GRIMER@@@@"
- db "GENGAR@@@@"
- db "NIDORAN♀@@"
- db "NIDOQUEEN@"
- db "CUBONE@@@@"
- db "RHYHORN@@@"
- db "LAPRAS@@@@"
- db "ARCANINE@@"
- db "MEW@@@@@@@"
- db "GYARADOS@@"
- db "SHELLDER@@"
- db "TENTACOOL@"
- db "GASTLY@@@@"
- db "SCYTHER@@@"
- db "STARYU@@@@"
- db "BLASTOISE@"
- db "PINSIR@@@@"
- db "TANGELA@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "GROWLITHE@"
- db "ONIX@@@@@@"
- db "FEAROW@@@@"
- db "PIDGEY@@@@"
- db "SLOWPOKE@@"
- db "KADABRA@@@"
- db "GRAVELER@@"
- db "CHANSEY@@@"
- db "MACHOKE@@@"
- db "MR.MIME@@@"
- db "HITMONLEE@"
- db "HITMONCHAN"
- db "ARBOK@@@@@"
- db "PARASECT@@"
- db "PSYDUCK@@@"
- db "DROWZEE@@@"
- db "GOLEM@@@@@"
- db "MISSINGNO."
- db "MAGMAR@@@@"
- db "MISSINGNO."
- db "ELECTABUZZ"
- db "MAGNETON@@"
- db "KOFFING@@@"
- db "MISSINGNO."
- db "MANKEY@@@@"
- db "SEEL@@@@@@"
- db "DIGLETT@@@"
- db "TAUROS@@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "FARFETCH'D"
- db "VENONAT@@@"
- db "DRAGONITE@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "DODUO@@@@@"
- db "POLIWAG@@@"
- db "JYNX@@@@@@"
- db "MOLTRES@@@"
- db "ARTICUNO@@"
- db "ZAPDOS@@@@"
- db "DITTO@@@@@"
- db "MEOWTH@@@@"
- db "KRABBY@@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "VULPIX@@@@"
- db "NINETALES@"
- db "PIKACHU@@@"
- db "RAICHU@@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "DRATINI@@@"
- db "DRAGONAIR@"
- db "KABUTO@@@@"
- db "KABUTOPS@@"
- db "HORSEA@@@@"
- db "SEADRA@@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "SANDSHREW@"
- db "SANDSLASH@"
- db "OMANYTE@@@"
- db "OMASTAR@@@"
- db "JIGGLYPUFF"
- db "WIGGLYTUFF"
- db "EEVEE@@@@@"
- db "FLAREON@@@"
- db "JOLTEON@@@"
- db "VAPOREON@@"
- db "MACHOP@@@@"
- db "ZUBAT@@@@@"
- db "EKANS@@@@@"
- db "PARAS@@@@@"
- db "POLIWHIRL@"
- db "POLIWRATH@"
- db "WEEDLE@@@@"
- db "KAKUNA@@@@"
- db "BEEDRILL@@"
- db "MISSINGNO."
- db "DODRIO@@@@"
- db "PRIMEAPE@@"
- db "DUGTRIO@@@"
- db "VENOMOTH@@"
- db "DEWGONG@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "CATERPIE@@"
- db "METAPOD@@@"
- db "BUTTERFREE"
- db "MACHAMP@@@"
- db "MISSINGNO."
- db "GOLDUCK@@@"
- db "HYPNO@@@@@"
- db "GOLBAT@@@@"
- db "MEWTWO@@@@"
- db "SNORLAX@@@"
- db "MAGIKARP@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "MUK@@@@@@@"
- db "MISSINGNO."
- db "KINGLER@@@"
- db "CLOYSTER@@"
- db "MISSINGNO."
- db "ELECTRODE@"
- db "CLEFABLE@@"
- db "WEEZING@@@"
- db "PERSIAN@@@"
- db "MAROWAK@@@"
- db "MISSINGNO."
- db "HAUNTER@@@"
- db "ABRA@@@@@@"
- db "ALAKAZAM@@"
- db "PIDGEOTTO@"
- db "PIDGEOT@@@"
- db "STARMIE@@@"
- db "BULBASAUR@"
- db "VENUSAUR@@"
- db "TENTACRUEL"
- db "MISSINGNO."
- db "GOLDEEN@@@"
- db "SEAKING@@@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "PONYTA@@@@"
- db "RAPIDASH@@"
- db "RATTATA@@@"
- db "RATICATE@@"
- db "NIDORINO@@"
- db "NIDORINA@@"
- db "GEODUDE@@@"
- db "PORYGON@@@"
- db "AERODACTYL"
- db "MISSINGNO."
- db "MAGNEMITE@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "CHARMANDER"
- db "SQUIRTLE@@"
- db "CHARMELEON"
- db "WARTORTLE@"
- db "CHARIZARD@"
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "MISSINGNO."
- db "ODDISH@@@@"
- db "GLOOM@@@@@"
- db "VILEPLUME@"
- db "BELLSPROUT"
- db "WEEPINBELL"
- db "VICTREEBEL"
--- a/text/move_names.asm
+++ /dev/null
@@ -1,167 +1,0 @@
-MoveNames::
- db "POUND@"
- db "KARATE CHOP@"
- db "DOUBLESLAP@"
- db "COMET PUNCH@"
- db "MEGA PUNCH@"
- db "PAY DAY@"
- db "FIRE PUNCH@"
- db "ICE PUNCH@"
- db "THUNDERPUNCH@"
- db "SCRATCH@"
- db "VICEGRIP@"
- db "GUILLOTINE@"
- db "RAZOR WIND@"
- db "SWORDS DANCE@"
- db "CUT@"
- db "GUST@"
- db "WING ATTACK@"
- db "WHIRLWIND@"
- db "FLY@"
- db "BIND@"
- db "SLAM@"
- db "VINE WHIP@"
- db "STOMP@"
- db "DOUBLE KICK@"
- db "MEGA KICK@"
- db "JUMP KICK@"
- db "ROLLING KICK@"
- db "SAND-ATTACK@"
- db "HEADBUTT@"
- db "HORN ATTACK@"
- db "FURY ATTACK@"
- db "HORN DRILL@"
- db "TACKLE@"
- db "BODY SLAM@"
- db "WRAP@"
- db "TAKE DOWN@"
- db "THRASH@"
- db "DOUBLE-EDGE@"
- db "TAIL WHIP@"
- db "POISON STING@"
- db "TWINEEDLE@"
- db "PIN MISSILE@"
- db "LEER@"
- db "BITE@"
- db "GROWL@"
- db "ROAR@"
- db "SING@"
- db "SUPERSONIC@"
- db "SONICBOOM@"
- db "DISABLE@"
- db "ACID@"
- db "EMBER@"
- db "FLAMETHROWER@"
- db "MIST@"
- db "WATER GUN@"
- db "HYDRO PUMP@"
- db "SURF@"
- db "ICE BEAM@"
- db "BLIZZARD@"
- db "PSYBEAM@"
- db "BUBBLEBEAM@"
- db "AURORA BEAM@"
- db "HYPER BEAM@"
- db "PECK@"
- db "DRILL PECK@"
- db "SUBMISSION@"
- db "LOW KICK@"
- db "COUNTER@"
- db "SEISMIC TOSS@"
- db "STRENGTH@"
- db "ABSORB@"
- db "MEGA DRAIN@"
- db "LEECH SEED@"
- db "GROWTH@"
- db "RAZOR LEAF@"
- db "SOLARBEAM@"
- db "POISONPOWDER@"
- db "STUN SPORE@"
- db "SLEEP POWDER@"
- db "PETAL DANCE@"
- db "STRING SHOT@"
- db "DRAGON RAGE@"
- db "FIRE SPIN@"
- db "THUNDERSHOCK@"
- db "THUNDERBOLT@"
- db "THUNDER WAVE@"
- db "THUNDER@"
- db "ROCK THROW@"
- db "EARTHQUAKE@"
- db "FISSURE@"
- db "DIG@"
- db "TOXIC@"
- db "CONFUSION@"
- db "PSYCHIC@"
- db "HYPNOSIS@"
- db "MEDITATE@"
- db "AGILITY@"
- db "QUICK ATTACK@"
- db "RAGE@"
- db "TELEPORT@"
- db "NIGHT SHADE@"
- db "MIMIC@"
- db "SCREECH@"
- db "DOUBLE TEAM@"
- db "RECOVER@"
- db "HARDEN@"
- db "MINIMIZE@"
- db "SMOKESCREEN@"
- db "CONFUSE RAY@"
- db "WITHDRAW@"
- db "DEFENSE CURL@"
- db "BARRIER@"
- db "LIGHT SCREEN@"
- db "HAZE@"
- db "REFLECT@"
- db "FOCUS ENERGY@"
- db "BIDE@"
- db "METRONOME@"
- db "MIRROR MOVE@"
- db "SELFDESTRUCT@"
- db "EGG BOMB@"
- db "LICK@"
- db "SMOG@"
- db "SLUDGE@"
- db "BONE CLUB@"
- db "FIRE BLAST@"
- db "WATERFALL@"
- db "CLAMP@"
- db "SWIFT@"
- db "SKULL BASH@"
- db "SPIKE CANNON@"
- db "CONSTRICT@"
- db "AMNESIA@"
- db "KINESIS@"
- db "SOFTBOILED@"
- db "HI JUMP KICK@"
- db "GLARE@"
- db "DREAM EATER@"
- db "POISON GAS@"
- db "BARRAGE@"
- db "LEECH LIFE@"
- db "LOVELY KISS@"
- db "SKY ATTACK@"
- db "TRANSFORM@"
- db "BUBBLE@"
- db "DIZZY PUNCH@"
- db "SPORE@"
- db "FLASH@"
- db "PSYWAVE@"
- db "SPLASH@"
- db "ACID ARMOR@"
- db "CRABHAMMER@"
- db "EXPLOSION@"
- db "FURY SWIPES@"
- db "BONEMERANG@"
- db "REST@"
- db "ROCK SLIDE@"
- db "HYPER FANG@"
- db "SHARPEN@"
- db "CONVERSION@"
- db "TRI ATTACK@"
- db "SUPER FANG@"
- db "SLASH@"
- db "SUBSTITUTE@"
- db "STRUGGLE@"
-
--- a/text/oakspeech.asm
+++ /dev/null
@@ -1,55 +1,0 @@
-_OakSpeechText1::
- text "Hello there!"
- line "Welcome to the"
- cont "world of #MON!"
-
- para "My name is OAK!"
- line "People call me"
- cont "the #MON PROF!"
- prompt
-
-_OakSpeechText2A::
- text "This world is"
- line "inhabited by"
- cont "creatures called"
- cont "#MON!@@"
-
-_OakSpeechText2B::
- text $51,"For some people,"
- line "#MON are"
- cont "pets. Others use"
- cont "them for fights."
-
- para "Myself..."
-
- para "I study #MON"
- line "as a profession."
- prompt
-
-_IntroducePlayerText::
- text "First, what is"
- line "your name?"
- prompt
-
-_IntroduceRivalText::
- text "This is my grand-"
- line "son. He's been"
- cont "your rival since"
- cont "you were a baby."
-
- para "...Erm, what is"
- line "his name again?"
- prompt
-
-_OakSpeechText3::
- text "<PLAYER>!"
-
- para "Your very own"
- line "#MON legend is"
- cont "about to unfold!"
-
- para "A world of dreams"
- line "and adventures"
- cont "with #MON"
- cont "awaits! Let's go!"
- done
--- a/text/player_names.asm
+++ /dev/null
@@ -1,31 +1,0 @@
-IF DEF(_RED)
-DefaultNamesPlayer:
- db "NEW NAME"
- next "RED"
- next "ASH"
- next "JACK"
- db "@"
-
-DefaultNamesRival:
- db "NEW NAME"
- next "BLUE"
- next "GARY"
- next "JOHN"
- db "@"
-ENDC
-
-IF DEF(_BLUE)
-DefaultNamesPlayer:
- db "NEW NAME"
- next "BLUE"
- next "GARY"
- next "JOHN"
- db "@"
-
-DefaultNamesRival:
- db "NEW NAME"
- next "RED"
- next "ASH"
- next "JACK"
- db "@"
-ENDC
--- a/text/player_names_list.asm
+++ /dev/null
@@ -1,27 +1,0 @@
-IF DEF(_RED)
-DefaultNamesPlayerList:
- db "NEW NAME@"
- db "RED@"
- db "ASH@"
- db "JACK@"
-
-DefaultNamesRivalList:
- db "NEW NAME@"
- db "BLUE@"
- db "GARY@"
- db "JOHN@"
-ENDC
-
-IF DEF(_BLUE)
-DefaultNamesPlayerList:
- db "NEW NAME@"
- db "BLUE@"
- db "GARY@"
- db "JOHN@"
-
-DefaultNamesRivalList:
- db "NEW NAME@"
- db "RED@"
- db "ASH@"
- db "JACK@"
-ENDC
--- a/text/pokedex.asm
+++ /dev/null
@@ -1,1510 +1,0 @@
-_RhydonDexEntry::
- text "Protected by an"
- next "armor-like hide,"
- next "it is capable of"
-
- page "living in molten"
- next "lava of 3,600"
- next "degrees"
- dex
-
-_KangaskhanDexEntry::
- text "The infant rarely"
- next "ventures out of"
- next "its mother's"
-
- page "protective pouch"
- next "until it is 3"
- next "years old"
- dex
-
-_NidoranMDexEntry::
- text "Stiffens its ears"
- next "to sense danger."
- next "The larger its"
-
- page "horns, the more"
- next "powerful its"
- next "secreted venom"
- dex
-
-_ClefairyDexEntry::
- text "Its magical and"
- next "cute appeal has"
- next "many admirers."
-
- page "It is rare and"
- next "found only in"
- next "certain areas"
- dex
-
-_SpearowDexEntry::
- text "Eats bugs in"
- next "grassy areas. It"
- next "has to flap its"
-
- page "short wings at"
- next "high speed to"
- next "stay airborne"
- dex
-
-_VoltorbDexEntry::
- text "Usually found in"
- next "power plants."
- next "Easily mistaken"
-
- page "for a # BALL,"
- next "they have zapped"
- next "many people"
- dex
-
-_NidokingDexEntry::
- text "It uses its"
- next "powerful tail in"
- next "battle to smash,"
-
- page "constrict, then"
- next "break the prey's"
- next "bones"
- dex
-
-_SlowbroDexEntry::
- text "The SHELLDER that"
- next "is latched onto"
- next "SLOWPOKE's tail"
-
- page "is said to feed"
- next "on the host's left"
- next "over scraps"
- dex
-
-_IvysaurDexEntry::
- text "When the bulb on"
- next "its back grows"
- next "large, it appears"
-
- page "to lose the"
- next "ability to stand"
- next "on its hind legs"
- dex
-
-_ExeggutorDexEntry::
- text "Legend has it that"
- next "on rare occasions,"
- next "one of its heads"
-
- page "will drop off and"
- next "continue on as an"
- next "EXEGGCUTE"
- dex
-
-_LickitungDexEntry::
- text "Its tongue can be"
- next "extended like a"
- next "chameleon's. It"
-
- page "leaves a tingling"
- next "sensation when it"
- next "licks enemies"
- dex
-
-_ExeggcuteDexEntry::
- text "Often mistaken"
- next "for eggs."
- next "When disturbed,"
-
- page "they quickly"
- next "gather and attack"
- next "in swarms"
- dex
-
-_GrimerDexEntry::
- text "Appears in filthy"
- next "areas. Thrives by"
- next "sucking up"
-
- page "polluted sludge"
- next "that is pumped"
- next "out of factories"
- dex
-
-_GengarDexEntry::
- text "Under a full moon,"
- next "this #MON"
- next "likes to mimic"
-
- page "the shadows of"
- next "people and laugh"
- next "at their fright"
- dex
-
-_NidoranFDexEntry::
- text "Although small,"
- next "its venomous"
- next "barbs render this"
-
- page "#MON dangerous."
- next "The female has"
- next "smaller horns"
- dex
-
-_NidoqueenDexEntry::
- text "Its hard scales"
- next "provide strong"
- next "protection. It"
-
- page "uses its hefty"
- next "bulk to execute"
- next "powerful moves"
- dex
-
-_CuboneDexEntry::
- text "Because it never"
- next "removes its skull"
- next "helmet, no one"
-
- page "has ever seen"
- next "this #MON's"
- next "real face"
- dex
-
-_RhyhornDexEntry::
- text "Its massive bones"
- next "are 1000 times"
- next "harder than human"
-
- page "bones. It can"
- next "easily knock a"
- next "trailer flying"
- dex
-
-_LaprasDexEntry::
- text "A #MON that"
- next "has been over-"
- next "hunted almost to"
-
- page "extinction. It"
- next "can ferry people"
- next "across the water"
- dex
-
-_ArcanineDexEntry::
- text "A #MON that"
- next "has been admired"
- next "since the past"
-
- page "for its beauty."
- next "It runs agilely"
- next "as if on wings"
- dex
-
-_MewDexEntry::
- text "So rare that it"
- next "is still said to"
- next "be a mirage by"
-
- page "many experts. Only"
- next "a few people have"
- next "seen it worldwide"
- dex
-
-_GyaradosDexEntry::
- text "Rarely seen in"
- next "the wild. Huge"
- next "and vicious, it"
-
- page "is capable of"
- next "destroying entire"
- next "cities in a rage"
- dex
-
-_ShellderDexEntry::
- text "Its hard shell"
- next "repels any kind"
- next "of attack."
-
- page "It is vulnerable"
- next "only when its"
- next "shell is open"
- dex
-
-_TentacoolDexEntry::
- text "Drifts in shallow"
- next "seas. Anglers who"
- next "hook them by"
-
- page "accident are"
- next "often punished by"
- next "its stinging acid"
- dex
-
-_GastlyDexEntry::
- text "Almost invisible,"
- next "this gaseous"
- next "#MON cloaks"
-
- page "the target and"
- next "puts it to sleep"
- next "without notice"
- dex
-
-_ScytherDexEntry::
- text "With ninja-like"
- next "agility and speed,"
- next "it can create the"
-
- page "illusion that"
- next "there is more"
- next "than one"
- dex
-
-_StaryuDexEntry::
- text "An enigmatic"
- next "#MON that can"
- next "effortlessly"
-
- page "regenerate any"
- next "appendage it"
- next "loses in battle"
- dex
-
-_BlastoiseDexEntry::
- text "A brutal #MON"
- next "with pressurized"
- next "water jets on its"
-
- page "shell. They are"
- next "used for high"
- next "speed tackles"
- dex
-
-_PinsirDexEntry::
- text "If it fails to"
- next "crush the victim"
- next "in its pincers,"
-
- page "it will swing it"
- next "around and toss"
- next "it hard"
- dex
-
-_TangelaDexEntry::
- text "The whole body is"
- next "swathed with wide"
- next "vines that are"
-
- page "similar to sea-"
- next "weed. Its vines"
- next "shake as it walks"
- dex
-
-_GrowlitheDexEntry::
- text "Very protective"
- next "of its territory."
- next "It will bark and"
-
- page "bite to repel"
- next "intruders from"
- next "its space"
- dex
-
-_OnixDexEntry::
- text "As it grows, the"
- next "stone portions of"
- next "its body harden"
-
- page "to become similar"
- next "to a diamond, but"
- next "colored black"
- dex
-
-_FearowDexEntry::
- text "With its huge and"
- next "magnificent wings,"
- next "it can keep aloft"
-
- page "without ever"
- next "having to land"
- next "for rest"
- dex
-
-_PidgeyDexEntry::
- text "A common sight in"
- next "forests and woods."
- next "It flaps its"
-
- page "wings at ground"
- next "level to kick up"
- next "blinding sand"
- dex
-
-_SlowpokeDexEntry::
- text "Incredibly slow"
- next "and dopey. It"
- next "takes 5 seconds"
-
- page "for it to feel"
- next "pain when under"
- next "attack"
- dex
-
-_KadabraDexEntry::
- text "It emits special"
- next "alpha waves from"
- next "its body that"
-
- page "induce headaches"
- next "just by being"
- next "close by"
- dex
-
-_GravelerDexEntry::
- text "Rolls down slopes"
- next "to move. It rolls"
- next "over any obstacle"
-
- page "without slowing"
- next "or changing its"
- next "direction"
- dex
-
-_ChanseyDexEntry::
- text "A rare and elusive"
- next "#MON that is"
- next "said to bring"
-
- page "happiness to those"
- next "who manage to get"
- next "it"
- dex
-
-_MachokeDexEntry::
- text "Its muscular body"
- next "is so powerful, it"
- next "must wear a power"
-
- page "save belt to be"
- next "able to regulate"
- next "its motions"
- dex
-
-_MrMimeDexEntry::
- text "If interrupted"
- next "while it is"
- next "miming, it will"
-
- page "slap around the"
- next "offender with its"
- next "broad hands"
- dex
-
-_HitmonleeDexEntry::
- text "When in a hurry,"
- next "its legs lengthen"
- next "progressively."
-
- page "It runs smoothly"
- next "with extra long,"
- next "loping strides"
- dex
-
-_HitmonchanDexEntry::
- text "While apparently"
- next "doing nothing, it"
- next "fires punches in"
-
- page "lightning fast"
- next "volleys that are"
- next "impossible to see"
- dex
-
-_ArbokDexEntry::
- text "It is rumored that"
- next "the ferocious"
- next "warning markings"
-
- page "on its belly"
- next "differ from area"
- next "to area"
- dex
-
-_ParasectDexEntry::
- text "A host-parasite"
- next "pair in which the"
- next "parasite mushroom"
-
- page "has taken over the"
- next "host bug. Prefers"
- next "damp places"
- dex
-
-_PsyduckDexEntry::
- text "While lulling its"
- next "enemies with its"
- next "vacant look, this"
-
- page "wily #MON will"
- next "use psychokinetic"
- next "powers"
- dex
-
-_DrowzeeDexEntry::
- text "Puts enemies to"
- next "sleep then eats"
- next "their dreams."
-
- page "Occasionally gets"
- next "sick from eating"
- next "bad dreams"
- dex
-
-_GolemDexEntry::
- text "Its boulder-like"
- next "body is extremely"
- next "hard. It can"
-
- page "easily withstand"
- next "dynamite blasts"
- next "without damage"
- dex
-
-_MagmarDexEntry::
- text "Its body always"
- next "burns with an"
- next "orange glow that"
-
- page "enables it to"
- next "hide perfectly"
- next "among flames"
- dex
-
-_ElectabuzzDexEntry::
- text "Normally found"
- next "near power plants,"
- next "they can wander"
-
- page "away and cause"
- next "major blackouts"
- next "in cities"
- dex
-
-_MagnetonDexEntry::
- text "Formed by several"
- next "MAGNEMITEs linked"
- next "together. They"
-
- page "frequently appear"
- next "when sunspots"
- next "flare up"
- dex
-
-_KoffingDexEntry::
- text "Because it stores"
- next "several kinds of"
- next "toxic gases in"
-
- page "its body, it is"
- next "prone to exploding"
- next "without warning"
- dex
-
-_MankeyDexEntry::
- text "Extremely quick to"
- next "anger. It could"
- next "be docile one"
-
- page "moment then"
- next "thrashing away"
- next "the next instant"
- dex
-
-_SeelDexEntry::
- text "The protruding"
- next "horn on its head"
- next "is very hard."
-
- page "It is used for"
- next "bashing through"
- next "thick ice"
- dex
-
-_DiglettDexEntry::
- text "Lives about one"
- next "yard underground"
- next "where it feeds on"
-
- page "plant roots. It"
- next "sometimes appears"
- next "above ground"
- dex
-
-_TaurosDexEntry::
- text "When it targets"
- next "an enemy, it"
- next "charges furiously"
-
- page "while whipping its"
- next "body with its"
- next "long tails"
- dex
-
-_FarfetchdDexEntry::
- text "The sprig of"
- next "green onions it"
- next "holds is its"
-
- page "weapon. It is"
- next "used much like a"
- next "metal sword"
- dex
-
-_VenonatDexEntry::
- text "Lives in the"
- next "shadows of tall"
- next "trees where it"
-
- page "eats insects. It"
- next "is attracted by"
- next "light at night"
- dex
-
-_DragoniteDexEntry::
- text "An extremely"
- next "rarely seen"
- next "marine #MON."
-
- page "Its intelligence"
- next "is said to match"
- next "that of humans"
- dex
-
-_DoduoDexEntry::
- text "A bird that makes"
- next "up for its poor"
- next "flying with its"
-
- page "fast foot speed."
- next "Leaves giant"
- next "footprints"
- dex
-
-_PoliwagDexEntry::
- text "Its newly grown"
- next "legs prevent it"
- next "from running. It"
-
- page "appears to prefer"
- next "swimming than"
- next "trying to stand"
- dex
-
-_JynxDexEntry::
- text "It seductively"
- next "wiggles its hips"
- next "as it walks. It"
-
- page "can cause people"
- next "to dance in"
- next "unison with it"
- dex
-
-_MoltresDexEntry::
- text "Known as the"
- next "legendary bird of"
- next "fire. Every flap"
-
- page "of its wings"
- next "creates a dazzling"
- next "flash of flames"
- dex
-
-_ArticunoDexEntry::
- text "A legendary bird"
- next "#MON that is"
- next "said to appear to"
-
- page "doomed people who"
- next "are lost in icy"
- next "mountains"
- dex
-
-_ZapdosDexEntry::
- text "A legendary bird"
- next "#MON that is"
- next "said to appear"
-
- page "from clouds while"
- next "dropping enormous"
- next "lightning bolts"
- dex
-
-_DittoDexEntry::
- text "Capable of copying"
- next "an enemy's genetic"
- next "code to instantly"
-
- page "transform itself"
- next "into a duplicate"
- next "of the enemy"
- dex
-
-_MeowthDexEntry::
- text "Adores circular"
- next "objects. Wanders"
- next "the streets on a"
-
- page "nightly basis to"
- next "look for dropped"
- next "loose change"
- dex
-
-_KrabbyDexEntry::
- text "Its pincers are"
- next "not only powerful"
- next "weapons, they are"
-
- page "used for balance"
- next "when walking"
- next "sideways"
- dex
-
-_VulpixDexEntry::
- text "At the time of"
- next "birth, it has"
- next "just one tail."
-
- page "The tail splits"
- next "from its tip as"
- next "it grows older"
- dex
-
-_NinetalesDexEntry::
- text "Very smart and"
- next "very vengeful."
- next "Grabbing one of"
-
- page "its many tails"
- next "could result in a"
- next "1000-year curse"
- dex
-
-_PikachuDexEntry::
- text "When several of"
- next "these #MON"
- next "gather, their"
-
- page "electricity could"
- next "build and cause"
- next "lightning storms"
- dex
-
-_RaichuDexEntry::
- text "Its long tail"
- next "serves as a"
- next "ground to protect"
-
- page "itself from its"
- next "own high voltage"
- next "power"
- dex
-
-_DratiniDexEntry::
- text "Long considered a"
- next "mythical #MON"
- next "until recently"
-
- page "when a small"
- next "colony was found"
- next "living underwater"
- dex
-
-_DragonairDexEntry::
- text "A mystical #MON"
- next "that exudes a"
- next "gentle aura."
-
- page "Has the ability"
- next "to change climate"
- next "conditions"
- dex
-
-_KabutoDexEntry::
- text "A #MON that"
- next "was resurrected"
- next "from a fossil"
-
- page "found in what was"
- next "once the ocean"
- next "floor eons ago"
- dex
-
-_KabutopsDexEntry::
- text "Its sleek shape is"
- next "perfect for swim-"
- next "ming. It slashes"
-
- page "prey with its"
- next "claws and drains"
- next "the body fluids"
- dex
-
-_HorseaDexEntry::
- text "Known to shoot"
- next "down flying bugs"
- next "with precision"
-
- page "blasts of ink"
- next "from the surface"
- next "of the water"
- dex
-
-_SeadraDexEntry::
- text "Capable of swim-"
- next "ming backwards by"
- next "rapidly flapping"
-
- page "its wing-like"
- next "pectoral fins and"
- next "stout tail"
- dex
-
-_SandshrewDexEntry::
- text "Burrows deep"
- next "underground in"
- next "arid locations"
-
- page "far from water."
- next "It only emerges"
- next "to hunt for food"
- dex
-
-_SandslashDexEntry::
- text "Curls up into a"
- next "spiny ball when"
- next "threatened. It"
-
- page "can roll while"
- next "curled up to"
- next "attack or escape"
- dex
-
-_OmanyteDexEntry::
- text "Although long"
- next "extinct, in rare"
- next "cases, it can be"
-
- page "genetically"
- next "resurrected from"
- next "fossils"
- dex
-
-_OmastarDexEntry::
- text "A prehistoric"
- next "#MON that died"
- next "out when its"
-
- page "heavy shell made"
- next "it impossible to"
- next "catch prey"
- dex
-
-_JigglypuffDexEntry::
- text "When its huge eyes"
- next "light up, it sings"
- next "a mysteriously"
-
- page "soothing melody"
- next "that lulls its"
- next "enemies to sleep"
- dex
-
-_WigglytuffDexEntry::
- text "The body is soft"
- next "and rubbery. When"
- next "angered, it will"
-
- page "suck in air and"
- next "inflate itself to"
- next "an enormous size"
- dex
-
-_EeveeDexEntry::
- text "Its genetic code"
- next "is irregular."
- next "It may mutate if"
-
- page "it is exposed to"
- next "radiation from"
- next "element STONEs"
- dex
-
-_FlareonDexEntry::
- text "When storing"
- next "thermal energy in"
- next "its body, its"
-
- page "temperature could"
- next "soar to over 1600"
- next "degrees"
- dex
-
-_JolteonDexEntry::
- text "It accumulates"
- next "negative ions in"
- next "the atmosphere to"
-
- page "blast out 10000-"
- next "volt lightning"
- next "bolts"
- dex
-
-_VaporeonDexEntry::
- text "Lives close to"
- next "water. Its long"
- next "tail is ridged"
-
- page "with a fin which"
- next "is often mistaken"
- next "for a mermaid's"
- dex
-
-_MachopDexEntry::
- text "Loves to build"
- next "its muscles."
- next "It trains in all"
-
- page "styles of martial"
- next "arts to become"
- next "even stronger"
- dex
-
-_ZubatDexEntry::
- text "Forms colonies in"
- next "perpetually dark"
- next "places. Uses"
-
- page "ultrasonic waves"
- next "to identify and"
- next "approach targets"
- dex
-
-_EkansDexEntry::
- text "Moves silently"
- next "and stealthily."
- next "Eats the eggs of"
-
- page "birds, such as"
- next "PIDGEY and"
- next "SPEAROW, whole"
- dex
-
-_ParasDexEntry::
- text "Burrows to suck"
- next "tree roots. The"
- next "mushrooms on its"
-
- page "back grow by draw-"
- next "ing nutrients from"
- next "the bug host"
- dex
-
-_PoliwhirlDexEntry::
- text "Capable of living"
- next "in or out of"
- next "water. When out"
-
- page "of water, it"
- next "sweats to keep"
- next "its body slimy"
- dex
-
-_PoliwrathDexEntry::
- text "An adept swimmer"
- next "at both the front"
- next "crawl and breast"
-
- page "stroke. Easily"
- next "overtakes the best"
- next "human swimmers"
- dex
-
-_WeedleDexEntry::
- text "Often found in"
- next "forests, eating"
- next "leaves."
-
- page "It has a sharp"
- next "venomous stinger"
- next "on its head"
- dex
-
-_KakunaDexEntry::
- text "Almost incapable"
- next "of moving, this"
- next "#MON can only"
-
- page "harden its shell"
- next "to protect itself"
- next "from predators"
- dex
-
-_BeedrillDexEntry::
- text "Flies at high"
- next "speed and attacks"
- next "using its large"
-
- page "venomous stingers"
- next "on its forelegs"
- next "and tail"
- dex
-
-_DodrioDexEntry::
- text "Uses its three"
- next "brains to execute"
- next "complex plans."
-
- page "While two heads"
- next "sleep, one head"
- next "stays awake"
- dex
-
-_PrimeapeDexEntry::
- text "Always furious"
- next "and tenacious to"
- next "boot. It will not"
-
- page "abandon chasing"
- next "its quarry until"
- next "it is caught"
- dex
-
-_DugtrioDexEntry::
- text "A team of DIGLETT"
- next "triplets."
- next "It triggers huge"
-
- page "earthquakes by"
- next "burrowing 60 miles"
- next "underground"
- dex
-
-_VenomothDexEntry::
- text "The dust-like"
- next "scales covering"
- next "its wings are"
-
- page "color coded to"
- next "indicate the kinds"
- next "of poison it has"
- dex
-
-_DewgongDexEntry::
- text "Stores thermal"
- next "energy in its"
- next "body. Swims at a"
-
- page "steady 8 knots"
- next "even in intensely"
- next "cold waters"
- dex
-
-_CaterpieDexEntry::
- text "Its short feet"
- next "are tipped with"
- next "suction pads that"
-
- page "enable it to"
- next "tirelessly climb"
- next "slopes and walls"
- dex
-
-_MetapodDexEntry::
- text "This #MON is"
- next "vulnerable to"
- next "attack while its"
-
- page "shell is soft,"
- next "exposing its weak"
- next "and tender body"
- dex
-
-_ButterfreeDexEntry::
- text "In battle, it"
- next "flaps its wings"
- next "at high speed to"
-
- page "release highly"
- next "toxic dust into"
- next "the air"
- dex
-
-_MachampDexEntry::
- text "Using its heavy"
- next "muscles, it throws"
- next "powerful punches"
-
- page "that can send the"
- next "victim clear over"
- next "the horizon"
- dex
-
-_GolduckDexEntry::
- text "Often seen swim-"
- next "ming elegantly by"
- next "lake shores. It"
-
- page "is often mistaken"
- next "for the Japanese"
- next "monster, Kappa"
- dex
-
-_HypnoDexEntry::
- text "When it locks eyes"
- next "with an enemy, it"
- next "will use a mix of"
-
- page "PSI moves such as"
- next "HYPNOSIS and"
- next "CONFUSION"
- dex
-
-_GolbatDexEntry::
- text "Once it strikes,"
- next "it will not stop"
- next "draining energy"
-
- page "from the victim"
- next "even if it gets"
- next "too heavy to fly"
- dex
-
-_MewtwoDexEntry::
- text "It was created by"
- next "a scientist after"
- next "years of horrific"
-
- page "gene splicing and"
- next "DNA engineering"
- next "experiments"
- dex
-
-_SnorlaxDexEntry::
- text "Very lazy. Just"
- next "eats and sleeps."
- next "As its rotund"
-
- page "bulk builds, it"
- next "becomes steadily"
- next "more slothful"
- dex
-
-_MagikarpDexEntry::
- text "In the distant"
- next "past, it was"
- next "somewhat stronger"
-
- page "than the horribly"
- next "weak descendants"
- next "that exist today"
- dex
-
-_MukDexEntry::
- text "Thickly covered"
- next "with a filthy,"
- next "vile sludge. It"
-
- page "is so toxic, even"
- next "its footprints"
- next "contain poison"
- dex
-
-_KinglerDexEntry::
- text "The large pincer"
- next "has 10000 hp of"
- next "crushing power."
-
- page "However, its huge"
- next "size makes it"
- next "unwieldy to use"
- dex
-
-_CloysterDexEntry::
- text "When attacked, it"
- next "launches its"
- next "horns in quick"
-
- page "volleys. Its"
- next "innards have"
- next "never been seen"
- dex
-
-_ElectrodeDexEntry::
- text "It stores electric"
- next "energy under very"
- next "high pressure."
-
- page "It often explodes"
- next "with little or no"
- next "provocation"
- dex
-
-_ClefableDexEntry::
- text "A timid fairy"
- next "#MON that is"
- next "rarely seen. It"
-
- page "will run and hide"
- next "the moment it"
- next "senses people"
- dex
-
-_WeezingDexEntry::
- text "Where two kinds"
- next "of poison gases"
- next "meet, 2 KOFFINGs"
-
- page "can fuse into a"
- next "WEEZING over many"
- next "years"
- dex
-
-_PersianDexEntry::
- text "Although its fur"
- next "has many admirers,"
- next "it is tough to"
-
- page "raise as a pet"
- next "because of its"
- next "fickle meanness"
- dex
-
-_MarowakDexEntry::
- text "The bone it holds"
- next "is its key weapon."
- next "It throws the"
-
- page "bone skillfully"
- next "like a boomerang"
- next "to KO targets"
- dex
-
-_HaunterDexEntry::
- text "Because of its"
- next "ability to slip"
- next "through block"
-
- page "walls, it is said"
- next "to be from an-"
- next "other dimension"
- dex
-
-_AbraDexEntry::
- text "Using its ability"
- next "to read minds, it"
- next "will identify"
-
- page "impending danger"
- next "and TELEPORT to"
- next "safety"
- dex
-
-_AlakazamDexEntry::
- text "Its brain can out-"
- next "perform a super-"
- next "computer."
-
- page "Its intelligence"
- next "quotient is said"
- next "to be 5,000"
- dex
-
-_PidgeottoDexEntry::
- text "Very protective"
- next "of its sprawling"
- next "territorial area,"
-
- page "this #MON will"
- next "fiercely peck at"
- next "any intruder"
- dex
-
-_PidgeotDexEntry::
- text "When hunting, it"
- next "skims the surface"
- next "of water at high"
-
- page "speed to pick off"
- next "unwary prey such"
- next "as MAGIKARP"
- dex
-
-_StarmieDexEntry::
- text "Its central core"
- next "glows with the"
- next "seven colors of"
-
- page "the rainbow. Some"
- next "people value the"
- next "core as a gem"
- dex
-
-_BulbasaurDexEntry::
- text "A strange seed was"
- next "planted on its"
- next "back at birth."
-
- page "The plant sprouts"
- next "and grows with"
- next "this #MON"
- dex
-
-_VenusaurDexEntry::
- text "The plant blooms"
- next "when it is"
- next "absorbing solar"
-
- page "energy. It stays"
- next "on the move to"
- next "seek sunlight"
- dex
-
-_TentacruelDexEntry::
- text "The tentacles are"
- next "normally kept"
- next "short. On hunts,"
-
- page "they are extended"
- next "to ensnare and"
- next "immobilize prey"
- dex
-
-_GoldeenDexEntry::
- text "Its tail fin"
- next "billows like an"
- next "elegant ballroom"
-
- page "dress, giving it"
- next "the nickname of"
- next "the Water Queen"
- dex
-
-_SeakingDexEntry::
- text "In the autumn"
- next "spawning season,"
- next "they can be seen"
-
- page "swimming power-"
- next "fully up rivers"
- next "and creeks"
- dex
-
-_PonytaDexEntry::
- text "Its hooves are 10"
- next "times harder than"
- next "diamonds. It can"
-
- page "trample anything"
- next "completely flat"
- next "in little time"
- dex
-
-_RapidashDexEntry::
- text "Very competitive,"
- next "this #MON will"
- next "chase anything"
-
- page "that moves fast"
- next "in the hopes of"
- next "racing it"
- dex
-
-_RattataDexEntry::
- text "Bites anything"
- next "when it attacks."
- next "Small and very"
-
- page "quick, it is a"
- next "common sight in"
- next "many places"
- dex
-
-_RaticateDexEntry::
- text "It uses its whis-"
- next "kers to maintain"
- next "its balance."
-
- page "It apparently"
- next "slows down if"
- next "they are cut off"
- dex
-
-_NidorinoDexEntry::
- text "An aggressive"
- next "#MON that is"
- next "quick to attack."
-
- page "The horn on its"
- next "head secretes a"
- next "powerful venom"
- dex
-
-_NidorinaDexEntry::
- text "The female's horn"
- next "develops slowly."
- next "Prefers physical"
-
- page "attacks such as"
- next "clawing and"
- next "biting"
- dex
-
-_GeodudeDexEntry::
- text "Found in fields"
- next "and mountains."
- next "Mistaking them"
-
- page "for boulders,"
- next "people often step"
- next "or trip on them"
- dex
-
-_PorygonDexEntry::
- text "A #MON that"
- next "consists entirely"
- next "of programming"
-
- page "code. Capable of"
- next "moving freely in"
- next "cyberspace"
- dex
-
-_AerodactylDexEntry::
- text "A ferocious, pre-"
- next "historic #MON"
- next "that goes for the"
-
- page "enemy's throat"
- next "with its serrated"
- next "saw-like fangs"
- dex
-
-_MagnemiteDexEntry::
- text "Uses anti-gravity"
- next "to stay suspended."
- next "Appears without"
-
- page "warning and uses"
- next "THUNDER WAVE and"
- next "similar moves"
- dex
-
-_CharmanderDexEntry::
- text "Obviously prefers"
- next "hot places. When"
- next "it rains, steam"
-
- page "is said to spout"
- next "from the tip of"
- next "its tail"
- dex
-
-_SquirtleDexEntry::
- text "After birth, its"
- next "back swells and"
- next "hardens into a"
-
- page "shell. Powerfully"
- next "sprays foam from"
- next "its mouth"
- dex
-
-_CharmeleonDexEntry::
- text "When it swings"
- next "its burning tail,"
- next "it elevates the"
-
- page "temperature to"
- next "unbearably high"
- next "levels"
- dex
-
-_WartortleDexEntry::
- text "Often hides in"
- next "water to stalk"
- next "unwary prey. For"
-
- page "swimming fast, it"
- next "moves its ears to"
- next "maintain balance"
- dex
-
-_CharizardDexEntry::
- text "Spits fire that"
- next "is hot enough to"
- next "melt boulders."
-
- page "Known to cause"
- next "forest fires"
- next "unintentionally"
- dex
-
-_OddishDexEntry::
- text "During the day,"
- next "it keeps its face"
- next "buried in the"
-
- page "ground. At night,"
- next "it wanders around"
- next "sowing its seeds"
- dex
-
-_GloomDexEntry::
- text "The fluid that"
- next "oozes from its"
- next "mouth isn't drool."
-
- page "It is a nectar"
- next "that is used to"
- next "attract prey"
- dex
-
-_VileplumeDexEntry::
- text "The larger its"
- next "petals, the more"
- next "toxic pollen it"
-
- page "contains. Its big"
- next "head is heavy and"
- next "hard to hold up"
- dex
-
-_BellsproutDexEntry::
- text "A carnivorous"
- next "#MON that traps"
- next "and eats bugs."
-
- page "It uses its root"
- next "feet to soak up"
- next "needed moisture"
- dex
-
-_WeepinbellDexEntry::
- text "It spits out"
- next "POISONPOWDER to"
- next "immobilize the"
-
- page "enemy and then"
- next "finishes it with"
- next "a spray of ACID"
- dex
-
-_VictreebelDexEntry::
- text "Said to live in"
- next "huge colonies"
- next "deep in jungles,"
-
- page "although no one"
- next "has ever returned"
- next "from there"
- dex
-
--- a/text/stat_names.asm
+++ /dev/null
@@ -1,7 +1,0 @@
-StatsTextStrings:
- db "ATTACK@"
- db "DEFENSE@"
- db "SPEED@"
- db "SPECIAL@"
- db "ACCURACY@"
- db "EVADE@"
--- a/text/trainer_name_pointers.asm
+++ /dev/null
@@ -1,92 +1,0 @@
-TrainerNamePointers:
-; what is the point of these?
- dw YoungsterName
- dw BugCatcherName
- dw LassName
- dw wTrainerName
- dw JrTrainerMName
- dw JrTrainerFName
- dw PokemaniacName
- dw SuperNerdName
- dw wTrainerName
- dw wTrainerName
- dw BurglarName
- dw EngineerName
- dw JugglerXName
- dw wTrainerName
- dw SwimmerName
- dw wTrainerName
- dw wTrainerName
- dw BeautyName
- dw wTrainerName
- dw RockerName
- dw JugglerName
- dw wTrainerName
- dw wTrainerName
- dw BlackbeltName
- dw wTrainerName
- dw ProfOakName
- dw ChiefName
- dw ScientistName
- dw wTrainerName
- dw RocketName
- dw CooltrainerMName
- dw CooltrainerFName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
- dw wTrainerName
-
-YoungsterName:
- db "YOUNGSTER@"
-BugCatcherName:
- db "BUG CATCHER@"
-LassName:
- db "LASS@"
-JrTrainerMName:
- db "JR.TRAINER♂@"
-JrTrainerFName:
- db "JR.TRAINER♀@"
-PokemaniacName:
- db "POKéMANIAC@"
-SuperNerdName:
- db "SUPER NERD@"
-BurglarName:
- db "BURGLAR@"
-EngineerName:
- db "ENGINEER@"
-JugglerXName:
- db "JUGGLER@"
-SwimmerName:
- db "SWIMMER@"
-BeautyName:
- db "BEAUTY@"
-RockerName:
- db "ROCKER@"
-JugglerName:
- db "JUGGLER@"
-BlackbeltName:
- db "BLACKBELT@"
-ProfOakName:
- db "PROF.OAK@"
-ChiefName:
- db "CHIEF@"
-ScientistName:
- db "SCIENTIST@"
-RocketName:
- db "ROCKET@"
-CooltrainerMName:
- db "COOLTRAINER♂@"
-CooltrainerFName:
- db "COOLTRAINER♀@"
--- a/text/trainer_names.asm
+++ /dev/null
@@ -1,48 +1,0 @@
-TrainerNames::
- db "YOUNGSTER@"
- db "BUG CATCHER@"
- db "LASS@"
- db "SAILOR@"
- db "JR.TRAINER♂@"
- db "JR.TRAINER♀@"
- db "POKéMANIAC@"
- db "SUPER NERD@"
- db "HIKER@"
- db "BIKER@"
- db "BURGLAR@"
- db "ENGINEER@"
- db "JUGGLER@"
- db "FISHERMAN@"
- db "SWIMMER@"
- db "CUE BALL@"
- db "GAMBLER@"
- db "BEAUTY@"
- db "PSYCHIC@"
- db "ROCKER@"
- db "JUGGLER@"
- db "TAMER@"
- db "BIRD KEEPER@"
- db "BLACKBELT@"
- db "RIVAL1@"
- db "PROF.OAK@"
- db "CHIEF@"
- db "SCIENTIST@"
- db "GIOVANNI@"
- db "ROCKET@"
- db "COOLTRAINER♂@"
- db "COOLTRAINER♀@"
- db "BRUNO@"
- db "BROCK@"
- db "MISTY@"
- db "LT.SURGE@"
- db "ERIKA@"
- db "KOGA@"
- db "BLAINE@"
- db "SABRINA@"
- db "GENTLEMAN@"
- db "RIVAL2@"
- db "RIVAL3@"
- db "LORELEI@"
- db "CHANNELER@"
- db "AGATHA@"
- db "LANCE@"
--- a/text/type_names.asm
+++ /dev/null
@@ -1,48 +1,0 @@
-TypeNames:
-
- dw .Normal
- dw .Fighting
- dw .Flying
- dw .Poison
- dw .Ground
- dw .Rock
- dw .Bird
- dw .Bug
- dw .Ghost
-
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
- dw .Normal
-
- dw .Fire
- dw .Water
- dw .Grass
- dw .Electric
- dw .Psychic
- dw .Ice
- dw .Dragon
-
-.Normal: db "NORMAL@"
-.Fighting: db "FIGHTING@"
-.Flying: db "FLYING@"
-.Poison: db "POISON@"
-.Fire: db "FIRE@"
-.Water: db "WATER@"
-.Grass: db "GRASS@"
-.Electric: db "ELECTRIC@"
-.Psychic: db "PSYCHIC@"
-.Ice: db "ICE@"
-.Ground: db "GROUND@"
-.Rock: db "ROCK@"
-.Bird: db "BIRD@"
-.Bug: db "BUG@"
-.Ghost: db "GHOST@"
-.Dragon: db "DRAGON@"
--- a/text/unused_names.asm
+++ /dev/null
@@ -1,20 +1,0 @@
-UnusedNames::
- db "かみなりバッヂ@"
- db "かいがらバッヂ@"
- db "おじぞうバッヂ@"
- db "はやぶさバッヂ@"
- db "ひんやりバッヂ@"
- db "なかよしバッヂ@"
- db "バラバッヂ@"
- db "ひのたまバッヂ@"
- db "ゴールドバッヂ@"
- db "たまご@"
- db "ひよこ@"
- db "ブロンズ@"
- db "シルバー@"
- db "ゴールド@"
- db "プチキャプテン@"
- db "キャプテン@"
- db "プチマスター@"
- db "マスター@"
- db "エクセレント"
--- a/tilesets.asm
+++ /dev/null
@@ -1,63 +1,0 @@
-SECTION "Tilesets 1", ROMX
-
-Overworld_GFX:: INCBIN "gfx/tilesets/overworld.2bpp"
-Overworld_Block:: INCBIN "gfx/blocksets/overworld.bst"
-
-RedsHouse1_GFX::
-RedsHouse2_GFX:: INCBIN "gfx/tilesets/reds_house.2bpp"
-RedsHouse1_Block::
-RedsHouse2_Block:: INCBIN "gfx/blocksets/reds_house.bst"
-
-House_GFX:: INCBIN "gfx/tilesets/house.2bpp"
-House_Block:: INCBIN "gfx/blocksets/house.bst"
-Mansion_GFX:: INCBIN "gfx/tilesets/mansion.2bpp"
-Mansion_Block:: INCBIN "gfx/blocksets/mansion.bst"
-ShipPort_GFX:: INCBIN "gfx/tilesets/ship_port.2bpp"
-ShipPort_Block:: INCBIN "gfx/blocksets/ship_port.bst"
-Interior_GFX:: INCBIN "gfx/tilesets/interior.2bpp"
-Interior_Block:: INCBIN "gfx/blocksets/interior.bst"
-Plateau_GFX:: INCBIN "gfx/tilesets/plateau.2bpp"
-Plateau_Block:: INCBIN "gfx/blocksets/plateau.bst"
-
-
-SECTION "Tilesets 2", ROMX
-
-Dojo_GFX::
-Gym_GFX:: INCBIN "gfx/tilesets/gym.2bpp"
-Dojo_Block::
-Gym_Block:: INCBIN "gfx/blocksets/gym.bst"
-
-Mart_GFX::
-Pokecenter_GFX:: INCBIN "gfx/tilesets/pokecenter.2bpp"
-Mart_Block::
-Pokecenter_Block:: INCBIN "gfx/blocksets/pokecenter.bst"
-
-ForestGate_GFX::
-Museum_GFX::
-Gate_GFX:: INCBIN "gfx/tilesets/gate.2bpp"
-ForestGate_Block::
-Museum_Block::
-Gate_Block:: INCBIN "gfx/blocksets/gate.bst"
-
-Forest_GFX:: INCBIN "gfx/tilesets/forest.2bpp"
-Forest_Block:: INCBIN "gfx/blocksets/forest.bst"
-Facility_GFX:: INCBIN "gfx/tilesets/facility.2bpp"
-Facility_Block:: INCBIN "gfx/blocksets/facility.bst"
-
-
-SECTION "Tilesets 3", ROMX
-
-Cemetery_GFX:: INCBIN "gfx/tilesets/cemetery.2bpp"
-Cemetery_Block:: INCBIN "gfx/blocksets/cemetery.bst"
-Cavern_GFX:: INCBIN "gfx/tilesets/cavern.2bpp"
-Cavern_Block:: INCBIN "gfx/blocksets/cavern.bst"
-Lobby_GFX:: INCBIN "gfx/tilesets/lobby.2bpp"
-Lobby_Block:: INCBIN "gfx/blocksets/lobby.bst"
-Ship_GFX:: INCBIN "gfx/tilesets/ship.2bpp"
-Ship_Block:: INCBIN "gfx/blocksets/ship.bst"
-Lab_GFX:: INCBIN "gfx/tilesets/lab.2bpp"
-Lab_Block:: INCBIN "gfx/blocksets/lab.bst"
-Club_GFX:: INCBIN "gfx/tilesets/club.2bpp"
-Club_Block:: INCBIN "gfx/blocksets/club.bst"
-Underground_GFX:: INCBIN "gfx/tilesets/underground.2bpp"
-Underground_Block:: INCBIN "gfx/blocksets/underground.bst"
--- a/wram.asm
+++ b/wram.asm
@@ -1,65 +1,8 @@
INCLUDE "constants.asm"
-flag_array: MACRO
- ds ((\1) + 7) / 8
-ENDM
+INCLUDE "macros/wram.asm"
-box_struct_length EQU 25 + NUM_MOVES * 2
-box_struct: MACRO
-\1Species:: db
-\1HP:: dw
-\1BoxLevel:: db
-\1Status:: db
-\1Type::
-\1Type1:: db
-\1Type2:: db
-\1CatchRate:: db
-\1Moves:: ds NUM_MOVES
-\1OTID:: dw
-\1Exp:: ds 3
-\1HPExp:: dw
-\1AttackExp:: dw
-\1DefenseExp:: dw
-\1SpeedExp:: dw
-\1SpecialExp:: dw
-\1DVs:: ds 2
-\1PP:: ds NUM_MOVES
-ENDM
-party_struct: MACRO
- box_struct \1
-\1Level:: db
-\1Stats::
-\1MaxHP:: dw
-\1Attack:: dw
-\1Defense:: dw
-\1Speed:: dw
-\1Special:: dw
-ENDM
-
-battle_struct: MACRO
-\1Species:: db
-\1HP:: dw
-\1PartyPos::
-\1BoxLevel:: db
-\1Status:: db
-\1Type::
-\1Type1:: db
-\1Type2:: db
-\1CatchRate:: db
-\1Moves:: ds NUM_MOVES
-\1DVs:: ds 2
-\1Level:: db
-\1Stats::
-\1MaxHP:: dw
-\1Attack:: dw
-\1Defense:: dw
-\1Speed:: dw
-\1Special:: dw
-\1PP:: ds NUM_MOVES
-ENDM
-
-
SECTION "WRAM Bank 0", WRAM0
wUnusedC000::
@@ -228,21 +171,6 @@
; C1xD
; C1xE
; C1xF
-spritestatedata1: MACRO
-\1PictureID:: db
-\1MovementStatus:: db
-\1ImageIndex:: db
-\1YStepVector:: db
-\1YPixels:: db
-\1XStepVector:: db
-\1XPixels:: db
-\1IntraAnimFrameCounter:: db
-\1AnimFrameCounter:: db
-\1FacingDirection:: db
- ds 6
-\1End::
-endm
-
wSpritePlayerStateData1:: spritestatedata1 wSpritePlayerStateData1
wSprite01StateData1:: spritestatedata1 wSprite01StateData1
wSprite02StateData1:: spritestatedata1 wSprite02StateData1
@@ -280,22 +208,6 @@
; C2xD
; C2xE: sprite image base offset (in video ram, player always has value 1, used to compute c1x2)
; C2xF
-spritestatedata2: MACRO
-\1WalkAnimationCounter:: db
- ds 1
-\1YDisplacement:: db
-\1XDisplacement:: db
-\1MapY:: db
-\1MapX:: db
-\1MovementByte1:: db
-\1GrassPriority:: db
-\1MovementDelay:: db
- ds 5
-\1ImageBaseOffset:: db
- ds 1
-\1End::
-endm
-
wSpritePlayerStateData2:: spritestatedata2 wSpritePlayerStateData2
wSprite01StateData2:: spritestatedata2 wSprite01StateData2
wSprite02StateData2:: spritestatedata2 wSprite02StateData2
@@ -1050,7 +962,7 @@
ds 1
wDayCarePerLevelCost::
-; 2-byte BCD number (always set to $0100)
+; 2-byte BCD number (always set to $100)
wHoFTeamIndex2::
@@ -1985,7 +1897,7 @@
ds 1
wSpriteLoadFlags::
-; bit 0 determines used buffer (0 -> $a188, 1 -> $a310)
+; bit 0 determines used buffer (0 -> sSpriteBuffer1, 1 -> sSpriteBuffer2)
; bit 1 loading last sprite chunk? (there are at most 2 chunks per load operation)
ds 1
wSpriteUnpackMode::
@@ -3185,7 +3097,7 @@
wBoxMons::
wBoxMon1:: box_struct wBoxMon1
-wBoxMon2:: ds box_struct_length * (MONS_PER_BOX + -1)
+wBoxMon2:: ds BOX_STRUCT_LENGTH * (MONS_PER_BOX - 1)
wBoxMonOT:: ds NAME_LENGTH * MONS_PER_BOX
wBoxMonNicks:: ds NAME_LENGTH * MONS_PER_BOX