diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-08-08 10:49:19 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-08-08 11:00:48 -0500 |
commit | c7ce0a95184784f029779426611324ff84f2ef12 (patch) | |
tree | 3b1523bdae1853d94cfc947f9784c73a8ee621e5 /main.asm | |
parent | 032f961ef26a94caf385f6d5ae5823a0066d4d66 (diff) |
Adding Leafeon test
An example to show adding a new Pokemon in pokered
Diffstat (limited to 'main.asm')
-rwxr-xr-x | main.asm | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -10,6 +10,7 @@ PICS_2 EQU $A PICS_3 EQU $B PICS_4 EQU $C PICS_5 EQU $D +PICS_6 EQU $2D INCLUDE "home.asm" @@ -69,7 +70,6 @@ ResetStatusAndHalveMoneyOnBlackout:: MewPicFront:: INCBIN "pic/bmon/mew.pic" MewPicBack:: INCBIN "pic/monback/mewb.pic" -INCLUDE "data/baseStats/mew.asm" INCLUDE "engine/battle/safari_zone.asm" @@ -6711,3 +6711,9 @@ INCLUDE "engine/evolution.asm" INCLUDE "engine/overworld/elevator.asm" INCLUDE "engine/items/tm_prices.asm" + + +SECTION "Pics 6", ROMX, BANK[PICS_6] + +LeafeonPicFront:: INCBIN "pic/bmon/leafeon.pic" +LeafeonPicBack:: INCBIN "pic/monback/leafeonb.pic" |