mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20:50 +12:00
Add Bellignan, fix evo stones
My first foray into adding Pokemon, here's Bellignan! Imported the sprite animation from Pokemon October. Works like a charm! I also fixed the new evo stones, which didn't have their effects assigned yet.
This commit is contained in:
parent
8669e4f980
commit
b582a0e7aa
|
@ -90,6 +90,7 @@
|
||||||
const BELLSPROUT ; 45
|
const BELLSPROUT ; 45
|
||||||
const WEEPINBELL ; 46
|
const WEEPINBELL ; 46
|
||||||
const VICTREEBEL ; 47
|
const VICTREEBEL ; 47
|
||||||
|
const BELLIGNAN
|
||||||
const TENTACOOL ; 48
|
const TENTACOOL ; 48
|
||||||
const TENTACRUEL ; 49
|
const TENTACRUEL ; 49
|
||||||
const GEODUDE ; 4a
|
const GEODUDE ; 4a
|
||||||
|
|
|
@ -98,6 +98,7 @@ INCLUDE "data/pokemon/base_stats/machamp.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/bellsprout.asm"
|
INCLUDE "data/pokemon/base_stats/bellsprout.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/weepinbell.asm"
|
INCLUDE "data/pokemon/base_stats/weepinbell.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/victreebel.asm"
|
INCLUDE "data/pokemon/base_stats/victreebel.asm"
|
||||||
|
INCLUDE "data/pokemon/base_stats/bellignan.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/tentacool.asm"
|
INCLUDE "data/pokemon/base_stats/tentacool.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/tentacruel.asm"
|
INCLUDE "data/pokemon/base_stats/tentacruel.asm"
|
||||||
INCLUDE "data/pokemon/base_stats/geodude.asm"
|
INCLUDE "data/pokemon/base_stats/geodude.asm"
|
||||||
|
|
|
@ -77,6 +77,7 @@ PokemonCries::
|
||||||
mon_cry CRY_PSYDUCK, 85, 129 ; BELLSPROUT
|
mon_cry CRY_PSYDUCK, 85, 129 ; BELLSPROUT
|
||||||
mon_cry CRY_WEEPINBELL, 68, 160 ; WEEPINBELL
|
mon_cry CRY_WEEPINBELL, 68, 160 ; WEEPINBELL
|
||||||
mon_cry CRY_WEEPINBELL, 102, 332 ; VICTREEBEL
|
mon_cry CRY_WEEPINBELL, 102, 332 ; VICTREEBEL
|
||||||
|
mon_cry CRY_SLOWKING, 573, 320 ; BELLIGNAN
|
||||||
mon_cry CRY_VENONAT, 0, 256 ; TENTACOOL
|
mon_cry CRY_VENONAT, 0, 256 ; TENTACOOL
|
||||||
mon_cry CRY_VENONAT, 238, 383 ; TENTACRUEL
|
mon_cry CRY_VENONAT, 238, 383 ; TENTACRUEL
|
||||||
mon_cry CRY_VULPIX, 240, 144 ; GEODUDE
|
mon_cry CRY_VULPIX, 240, 144 ; GEODUDE
|
||||||
|
|
|
@ -75,6 +75,7 @@ MachampPokedexEntry:: INCLUDE "data/pokemon/dex_entries/machamp.asm"
|
||||||
BellsproutPokedexEntry:: INCLUDE "data/pokemon/dex_entries/bellsprout.asm"
|
BellsproutPokedexEntry:: INCLUDE "data/pokemon/dex_entries/bellsprout.asm"
|
||||||
WeepinbellPokedexEntry:: INCLUDE "data/pokemon/dex_entries/weepinbell.asm"
|
WeepinbellPokedexEntry:: INCLUDE "data/pokemon/dex_entries/weepinbell.asm"
|
||||||
VictreebelPokedexEntry:: INCLUDE "data/pokemon/dex_entries/victreebel.asm"
|
VictreebelPokedexEntry:: INCLUDE "data/pokemon/dex_entries/victreebel.asm"
|
||||||
|
BellignanPokedexEntry:: INCLUDE "data/pokemon/dex_entries/bellignan.asm"
|
||||||
TentacoolPokedexEntry:: INCLUDE "data/pokemon/dex_entries/tentacool.asm"
|
TentacoolPokedexEntry:: INCLUDE "data/pokemon/dex_entries/tentacool.asm"
|
||||||
TentacruelPokedexEntry:: INCLUDE "data/pokemon/dex_entries/tentacruel.asm"
|
TentacruelPokedexEntry:: INCLUDE "data/pokemon/dex_entries/tentacruel.asm"
|
||||||
GeodudePokedexEntry:: INCLUDE "data/pokemon/dex_entries/geodude.asm"
|
GeodudePokedexEntry:: INCLUDE "data/pokemon/dex_entries/geodude.asm"
|
||||||
|
|
10
data/pokemon/dex_entries/bellignan.asm
Normal file
10
data/pokemon/dex_entries/bellignan.asm
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
db "SPROUT@" ; species name
|
||||||
|
dw 403, 160 ; height, weight
|
||||||
|
|
||||||
|
db "It lives through"
|
||||||
|
next "absorbing nutrients"
|
||||||
|
next "in the ground with"
|
||||||
|
|
||||||
|
page "its root-like"
|
||||||
|
next "feet. Revered"
|
||||||
|
next "by some faiths.@"
|
|
@ -72,6 +72,7 @@ PokedexDataPointerTable:
|
||||||
dba BellsproutPokedexEntry
|
dba BellsproutPokedexEntry
|
||||||
dba WeepinbellPokedexEntry
|
dba WeepinbellPokedexEntry
|
||||||
dba VictreebelPokedexEntry
|
dba VictreebelPokedexEntry
|
||||||
|
dba BellignanPokedexEntry
|
||||||
dba TentacoolPokedexEntry
|
dba TentacoolPokedexEntry
|
||||||
dba TentacruelPokedexEntry
|
dba TentacruelPokedexEntry
|
||||||
dba GeodudePokedexEntry
|
dba GeodudePokedexEntry
|
||||||
|
|
|
@ -14,6 +14,7 @@ AlphabeticalPokedexOrder:
|
||||||
dw AZUMARILL
|
dw AZUMARILL
|
||||||
dw BAYLEEF
|
dw BAYLEEF
|
||||||
dw BEEDRILL
|
dw BEEDRILL
|
||||||
|
dw BELLIGNAN
|
||||||
dw BELLOSSOM
|
dw BELLOSSOM
|
||||||
dw BELLSPROUT
|
dw BELLSPROUT
|
||||||
dw BLASTOISE
|
dw BLASTOISE
|
||||||
|
|
|
@ -68,6 +68,7 @@ NewPokedexOrder:
|
||||||
dw BELLSPROUT
|
dw BELLSPROUT
|
||||||
dw WEEPINBELL
|
dw WEEPINBELL
|
||||||
dw VICTREEBEL
|
dw VICTREEBEL
|
||||||
|
dw BELLIGNAN
|
||||||
dw HOPPIP
|
dw HOPPIP
|
||||||
dw SKIPLOOM
|
dw SKIPLOOM
|
||||||
dw JUMPLUFF
|
dw JUMPLUFF
|
||||||
|
|
|
@ -72,6 +72,7 @@ EggMovePointers1:
|
||||||
dw BellsproutEggMoves
|
dw BellsproutEggMoves
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
|
dw NoEggMoves1 ; Bellignan
|
||||||
dw TentacoolEggMoves
|
dw TentacoolEggMoves
|
||||||
dw NoEggMoves1
|
dw NoEggMoves1
|
||||||
dw GeodudeEggMoves
|
dw GeodudeEggMoves
|
||||||
|
|
|
@ -72,6 +72,7 @@ EvosAttacksPointers1::
|
||||||
dw BellsproutEvosAttacks
|
dw BellsproutEvosAttacks
|
||||||
dw WeepinbellEvosAttacks
|
dw WeepinbellEvosAttacks
|
||||||
dw VictreebelEvosAttacks
|
dw VictreebelEvosAttacks
|
||||||
|
dw BellignanEvosAttacks
|
||||||
dw TentacoolEvosAttacks
|
dw TentacoolEvosAttacks
|
||||||
dw TentacruelEvosAttacks
|
dw TentacruelEvosAttacks
|
||||||
dw GeodudeEvosAttacks
|
dw GeodudeEvosAttacks
|
||||||
|
@ -1069,6 +1070,7 @@ BellsproutEvosAttacks:
|
||||||
|
|
||||||
WeepinbellEvosAttacks:
|
WeepinbellEvosAttacks:
|
||||||
dbbw EVOLVE_ITEM, LEAF_STONE, VICTREEBEL
|
dbbw EVOLVE_ITEM, LEAF_STONE, VICTREEBEL
|
||||||
|
dbbw EVOLVE_ITEM, POISON_STONE, BELLIGNAN
|
||||||
db 0 ; no more evolutions
|
db 0 ; no more evolutions
|
||||||
dbw 1, VINE_WHIP
|
dbw 1, VINE_WHIP
|
||||||
dbw 1, GROWTH
|
dbw 1, GROWTH
|
||||||
|
@ -1092,6 +1094,16 @@ VictreebelEvosAttacks:
|
||||||
dbw 1, RAZOR_LEAF
|
dbw 1, RAZOR_LEAF
|
||||||
db 0 ; no more level-up moves
|
db 0 ; no more level-up moves
|
||||||
|
|
||||||
|
BellignanEvosAttacks:
|
||||||
|
db 0 ; no more evolutions
|
||||||
|
dbw 1, SLEEP_POWDER
|
||||||
|
dbw 1, RAZOR_LEAF
|
||||||
|
dbw 1, LOVELY_KISS
|
||||||
|
dbw 1, ACID
|
||||||
|
dbw 40, LOVELY_KISS
|
||||||
|
dbw 48, SLUDGE_BOMB
|
||||||
|
db 0 ; no more level-up moves
|
||||||
|
|
||||||
TentacoolEvosAttacks:
|
TentacoolEvosAttacks:
|
||||||
dbbw EVOLVE_LEVEL, 30, TENTACRUEL
|
dbbw EVOLVE_LEVEL, 30, TENTACRUEL
|
||||||
db 0 ; no more evolutions
|
db 0 ; no more evolutions
|
||||||
|
|
|
@ -72,6 +72,7 @@ FirstEvoStages::
|
||||||
dw BELLSPROUT
|
dw BELLSPROUT
|
||||||
dw BELLSPROUT
|
dw BELLSPROUT
|
||||||
dw BELLSPROUT
|
dw BELLSPROUT
|
||||||
|
dw BELLSPROUT
|
||||||
dw TENTACOOL ;48
|
dw TENTACOOL ;48
|
||||||
dw TENTACOOL
|
dw TENTACOOL
|
||||||
dw GEODUDE
|
dw GEODUDE
|
||||||
|
|
|
@ -73,6 +73,7 @@ KantoMonSpecials:
|
||||||
db 70 ; BELLSPROUT
|
db 70 ; BELLSPROUT
|
||||||
db 85 ; WEEPINBELL
|
db 85 ; WEEPINBELL
|
||||||
db 100 ; VICTREEBEL
|
db 100 ; VICTREEBEL
|
||||||
|
db 100 ; BELLIGNAN
|
||||||
db 100 ; TENTACOOL
|
db 100 ; TENTACOOL
|
||||||
db 120 ; TENTACRUEL
|
db 120 ; TENTACRUEL
|
||||||
db 30 ; GEODUDE
|
db 30 ; GEODUDE
|
||||||
|
|
|
@ -255,4 +255,5 @@ Pokered_MonIndices:
|
||||||
db QWILFISH
|
db QWILFISH
|
||||||
db WOBBUFFET
|
db WOBBUFFET
|
||||||
db WOBBUFFET
|
db WOBBUFFET
|
||||||
|
db BELLIGNAN
|
||||||
assert_table_length NUM_POKEMON + 1
|
assert_table_length NUM_POKEMON + 1
|
||||||
|
|
|
@ -73,6 +73,7 @@ MonMenuIcons:
|
||||||
db ICON_ODDISH ; BELLSPROUT
|
db ICON_ODDISH ; BELLSPROUT
|
||||||
db ICON_ODDISH ; WEEPINBELL
|
db ICON_ODDISH ; WEEPINBELL
|
||||||
db ICON_ODDISH ; VICTREEBEL
|
db ICON_ODDISH ; VICTREEBEL
|
||||||
|
db ICON_ODDISH ; BELLIGNAN
|
||||||
db ICON_JELLYFISH ; TENTACOOL
|
db ICON_JELLYFISH ; TENTACOOL
|
||||||
db ICON_JELLYFISH ; TENTACRUEL
|
db ICON_JELLYFISH ; TENTACRUEL
|
||||||
db ICON_GEODUDE ; GEODUDE
|
db ICON_GEODUDE ; GEODUDE
|
||||||
|
|
|
@ -75,6 +75,7 @@ PokemonNames::
|
||||||
db "BELLSPROUT"
|
db "BELLSPROUT"
|
||||||
db "WEEPINBELL"
|
db "WEEPINBELL"
|
||||||
db "VICTREEBEL"
|
db "VICTREEBEL"
|
||||||
|
db "BELLIGNAN@"
|
||||||
db "TENTACOOL@"
|
db "TENTACOOL@"
|
||||||
db "TENTACRUEL"
|
db "TENTACRUEL"
|
||||||
db "GEODUDE@@@"
|
db "GEODUDE@@@"
|
||||||
|
|
|
@ -175,6 +175,8 @@ INCBIN "gfx/pokemon/weepinbell/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/weepinbell/shiny.pal"
|
INCLUDE "gfx/pokemon/weepinbell/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/victreebel/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/victreebel/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/victreebel/shiny.pal"
|
INCLUDE "gfx/pokemon/victreebel/shiny.pal"
|
||||||
|
INCBIN "gfx/pokemon/bellignan/front.gbcpal", middle_colors
|
||||||
|
INCLUDE "gfx/pokemon/victreebel/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/tentacool/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/tentacool/front.gbcpal", middle_colors
|
||||||
INCLUDE "gfx/pokemon/tentacool/shiny.pal"
|
INCLUDE "gfx/pokemon/tentacool/shiny.pal"
|
||||||
INCBIN "gfx/pokemon/tentacruel/front.gbcpal", middle_colors
|
INCBIN "gfx/pokemon/tentacruel/front.gbcpal", middle_colors
|
||||||
|
|
|
@ -155,6 +155,8 @@ PokemonPicPointers::
|
||||||
dba WeepinbellBackpic
|
dba WeepinbellBackpic
|
||||||
dba VictreebelFrontpic
|
dba VictreebelFrontpic
|
||||||
dba VictreebelBackpic
|
dba VictreebelBackpic
|
||||||
|
dba BellignanFrontpic
|
||||||
|
dba BellignanBackpic
|
||||||
dba TentacoolFrontpic
|
dba TentacoolFrontpic
|
||||||
dba TentacoolBackpic
|
dba TentacoolBackpic
|
||||||
dba TentacruelFrontpic
|
dba TentacruelFrontpic
|
||||||
|
|
|
@ -148,14 +148,14 @@ ItemEffects:
|
||||||
dw NoEffect ; STAR_PIECE
|
dw NoEffect ; STAR_PIECE
|
||||||
dw BasementKeyEffect ; BASEMENT_KEY
|
dw BasementKeyEffect ; BASEMENT_KEY
|
||||||
dw NoEffect ; PASS
|
dw NoEffect ; PASS
|
||||||
dw NoEffect ; ITEM_87
|
dw EvoStoneEffect ; HEART_STONE
|
||||||
dw NoEffect ; ITEM_88
|
dw EvoStoneEffect ; POISON_STONE
|
||||||
dw NoEffect ; ITEM_89
|
dw EvoStoneEffect ; ICE_STONE
|
||||||
dw NoEffect ; CHARCOAL
|
dw NoEffect ; CHARCOAL
|
||||||
dw RestoreHPEffect ; BERRY_JUICE
|
dw RestoreHPEffect ; BERRY_JUICE
|
||||||
dw NoEffect ; SCOPE_LENS
|
dw NoEffect ; SCOPE_LENS
|
||||||
dw NoEffect ; ITEM_8D
|
dw EvoStoneEffect ; DUSK_STONE
|
||||||
dw NoEffect ; ITEM_8E
|
dw EvoStoneEffect ; SHINY_STONE
|
||||||
dw NoEffect ; METAL_COAT
|
dw NoEffect ; METAL_COAT
|
||||||
dw NoEffect ; DRAGON_FANG
|
dw NoEffect ; DRAGON_FANG
|
||||||
dw NoEffect ; ITEM_91
|
dw NoEffect ; ITEM_91
|
||||||
|
|
|
@ -72,6 +72,7 @@ INCBIN "gfx/footprints/machamp.1bpp"
|
||||||
INCBIN "gfx/footprints/bellsprout.1bpp"
|
INCBIN "gfx/footprints/bellsprout.1bpp"
|
||||||
INCBIN "gfx/footprints/weepinbell.1bpp"
|
INCBIN "gfx/footprints/weepinbell.1bpp"
|
||||||
INCBIN "gfx/footprints/victreebel.1bpp"
|
INCBIN "gfx/footprints/victreebel.1bpp"
|
||||||
|
;INCBIN "gfx/footprints/bellignan.1bpp"
|
||||||
INCBIN "gfx/footprints/tentacool.1bpp"
|
INCBIN "gfx/footprints/tentacool.1bpp"
|
||||||
INCBIN "gfx/footprints/tentacruel.1bpp"
|
INCBIN "gfx/footprints/tentacruel.1bpp"
|
||||||
INCBIN "gfx/footprints/geodude.1bpp"
|
INCBIN "gfx/footprints/geodude.1bpp"
|
||||||
|
|
BIN
gfx/footprints/bellignan.png
Normal file
BIN
gfx/footprints/bellignan.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 106 B |
|
@ -717,6 +717,8 @@ TotartleFrontpic: INCBIN "gfx/pokemon/totartle/front.animated.2bpp.lz"
|
||||||
TotartleBackpic: INCBIN "gfx/pokemon/totartle/back.2bpp.lz"
|
TotartleBackpic: INCBIN "gfx/pokemon/totartle/back.2bpp.lz"
|
||||||
BlastykeFrontpic: INCBIN "gfx/pokemon/blastyke/front.animated.2bpp.lz"
|
BlastykeFrontpic: INCBIN "gfx/pokemon/blastyke/front.animated.2bpp.lz"
|
||||||
BlastykeBackpic: INCBIN "gfx/pokemon/blastyke/back.2bpp.lz"
|
BlastykeBackpic: INCBIN "gfx/pokemon/blastyke/back.2bpp.lz"
|
||||||
|
BellignanFrontpic: INCBIN "gfx/pokemon/bellignan/front.animated.2bpp.lz"
|
||||||
|
BellignanBackpic: INCBIN "gfx/pokemon/bellignan/back.2bpp.lz"
|
||||||
INCBIN "gfx/pokemon/poliwag/back.2bpp.lz"
|
INCBIN "gfx/pokemon/poliwag/back.2bpp.lz"
|
||||||
INCBIN "gfx/pokemon/squirtle/back.2bpp.lz"
|
INCBIN "gfx/pokemon/squirtle/back.2bpp.lz"
|
||||||
INCBIN "gfx/pokemon/shuckle/back.2bpp.lz"
|
INCBIN "gfx/pokemon/shuckle/back.2bpp.lz"
|
||||||
|
|
|
@ -71,6 +71,7 @@ AnimationPointers:
|
||||||
dw BellsproutAnimation
|
dw BellsproutAnimation
|
||||||
dw WeepinbellAnimation
|
dw WeepinbellAnimation
|
||||||
dw VictreebelAnimation
|
dw VictreebelAnimation
|
||||||
|
dw BellignanAnimation
|
||||||
dw TentacoolAnimation
|
dw TentacoolAnimation
|
||||||
dw TentacruelAnimation
|
dw TentacruelAnimation
|
||||||
dw GeodudeAnimation
|
dw GeodudeAnimation
|
||||||
|
|
|
@ -69,6 +69,7 @@ MachampAnimation: INCLUDE "gfx/pokemon/machamp/anim.asm"
|
||||||
BellsproutAnimation: INCLUDE "gfx/pokemon/bellsprout/anim.asm"
|
BellsproutAnimation: INCLUDE "gfx/pokemon/bellsprout/anim.asm"
|
||||||
WeepinbellAnimation: INCLUDE "gfx/pokemon/weepinbell/anim.asm"
|
WeepinbellAnimation: INCLUDE "gfx/pokemon/weepinbell/anim.asm"
|
||||||
VictreebelAnimation: INCLUDE "gfx/pokemon/victreebel/anim.asm"
|
VictreebelAnimation: INCLUDE "gfx/pokemon/victreebel/anim.asm"
|
||||||
|
BellignanAnimation: INCLUDE "gfx/pokemon/bellignan/anim.asm"
|
||||||
TentacoolAnimation: INCLUDE "gfx/pokemon/tentacool/anim.asm"
|
TentacoolAnimation: INCLUDE "gfx/pokemon/tentacool/anim.asm"
|
||||||
TentacruelAnimation: INCLUDE "gfx/pokemon/tentacruel/anim.asm"
|
TentacruelAnimation: INCLUDE "gfx/pokemon/tentacruel/anim.asm"
|
||||||
GeodudeAnimation: INCLUDE "gfx/pokemon/geodude/anim.asm"
|
GeodudeAnimation: INCLUDE "gfx/pokemon/geodude/anim.asm"
|
||||||
|
|
19
gfx/pokemon/bellignan/anim.asm
Normal file
19
gfx/pokemon/bellignan/anim.asm
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
frame 0, 06
|
||||||
|
frame 1, 06
|
||||||
|
frame 2, 04
|
||||||
|
frame 3, 04
|
||||||
|
frame 4, 08
|
||||||
|
frame 5, 08
|
||||||
|
frame 6, 08
|
||||||
|
frame 7, 08
|
||||||
|
frame 1, 06
|
||||||
|
frame 2, 10
|
||||||
|
frame 8, 08
|
||||||
|
frame 9, 08
|
||||||
|
frame 10, 08
|
||||||
|
frame 11, 08
|
||||||
|
frame 9, 08
|
||||||
|
frame 11, 08
|
||||||
|
frame 9, 08
|
||||||
|
frame 11, 08
|
||||||
|
endanim
|
1
gfx/pokemon/bellignan/anim_idle.asm
Normal file
1
gfx/pokemon/bellignan/anim_idle.asm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
endanim
|
BIN
gfx/pokemon/bellignan/back.png
Normal file
BIN
gfx/pokemon/bellignan/back.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 887 B |
BIN
gfx/pokemon/bellignan/front.png
Normal file
BIN
gfx/pokemon/bellignan/front.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
2
gfx/pokemon/bellignan/readme.txt
Normal file
2
gfx/pokemon/bellignan/readme.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
This spritework is taken from Pokemon October, which finished Game Freak's design.
|
||||||
|
https://github.com/pokeachromicdevs/pokeoctober/tree/demo-2/gfx/pokemon/bellignan
|
2
gfx/pokemon/bellignan/shiny.pal
Normal file
2
gfx/pokemon/bellignan/shiny.pal
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
RGB 20, 23, 03
|
||||||
|
RGB 14, 12, 31
|
|
@ -71,6 +71,7 @@ BitmasksPointers:
|
||||||
dw BellsproutBitmasks
|
dw BellsproutBitmasks
|
||||||
dw WeepinbellBitmasks
|
dw WeepinbellBitmasks
|
||||||
dw VictreebelBitmasks
|
dw VictreebelBitmasks
|
||||||
|
dw BellignanBitmasks
|
||||||
dw TentacoolBitmasks
|
dw TentacoolBitmasks
|
||||||
dw TentacruelBitmasks
|
dw TentacruelBitmasks
|
||||||
dw GeodudeBitmasks
|
dw GeodudeBitmasks
|
||||||
|
|
|
@ -69,6 +69,7 @@ MachampBitmasks: INCLUDE "gfx/pokemon/machamp/bitmask.asm"
|
||||||
BellsproutBitmasks: INCLUDE "gfx/pokemon/bellsprout/bitmask.asm"
|
BellsproutBitmasks: INCLUDE "gfx/pokemon/bellsprout/bitmask.asm"
|
||||||
WeepinbellBitmasks: INCLUDE "gfx/pokemon/weepinbell/bitmask.asm"
|
WeepinbellBitmasks: INCLUDE "gfx/pokemon/weepinbell/bitmask.asm"
|
||||||
VictreebelBitmasks: INCLUDE "gfx/pokemon/victreebel/bitmask.asm"
|
VictreebelBitmasks: INCLUDE "gfx/pokemon/victreebel/bitmask.asm"
|
||||||
|
BellignanBitmasks: INCLUDE "gfx/pokemon/bellignan/bitmask.asm"
|
||||||
TentacoolBitmasks: INCLUDE "gfx/pokemon/tentacool/bitmask.asm"
|
TentacoolBitmasks: INCLUDE "gfx/pokemon/tentacool/bitmask.asm"
|
||||||
TentacruelBitmasks: INCLUDE "gfx/pokemon/tentacruel/bitmask.asm"
|
TentacruelBitmasks: INCLUDE "gfx/pokemon/tentacruel/bitmask.asm"
|
||||||
GeodudeBitmasks: INCLUDE "gfx/pokemon/geodude/bitmask.asm"
|
GeodudeBitmasks: INCLUDE "gfx/pokemon/geodude/bitmask.asm"
|
||||||
|
|
|
@ -71,6 +71,7 @@ FramesPointers:
|
||||||
dba BellsproutFrames
|
dba BellsproutFrames
|
||||||
dba WeepinbellFrames
|
dba WeepinbellFrames
|
||||||
dba VictreebelFrames
|
dba VictreebelFrames
|
||||||
|
dba BellignanFrames
|
||||||
dba TentacoolFrames
|
dba TentacoolFrames
|
||||||
dba TentacruelFrames
|
dba TentacruelFrames
|
||||||
dba GeodudeFrames
|
dba GeodudeFrames
|
||||||
|
|
|
@ -71,6 +71,7 @@ AnimationIdlePointers:
|
||||||
dw BellsproutAnimationIdle
|
dw BellsproutAnimationIdle
|
||||||
dw WeepinbellAnimationIdle
|
dw WeepinbellAnimationIdle
|
||||||
dw VictreebelAnimationIdle
|
dw VictreebelAnimationIdle
|
||||||
|
dw BellignanAnimationIdle
|
||||||
dw TentacoolAnimationIdle
|
dw TentacoolAnimationIdle
|
||||||
dw TentacruelAnimationIdle
|
dw TentacruelAnimationIdle
|
||||||
dw GeodudeAnimationIdle
|
dw GeodudeAnimationIdle
|
||||||
|
|
|
@ -69,6 +69,7 @@ MachampAnimationIdle: INCLUDE "gfx/pokemon/machamp/anim_idle.asm"
|
||||||
BellsproutAnimationIdle: INCLUDE "gfx/pokemon/bellsprout/anim_idle.asm"
|
BellsproutAnimationIdle: INCLUDE "gfx/pokemon/bellsprout/anim_idle.asm"
|
||||||
WeepinbellAnimationIdle: INCLUDE "gfx/pokemon/weepinbell/anim_idle.asm"
|
WeepinbellAnimationIdle: INCLUDE "gfx/pokemon/weepinbell/anim_idle.asm"
|
||||||
VictreebelAnimationIdle: INCLUDE "gfx/pokemon/victreebel/anim_idle.asm"
|
VictreebelAnimationIdle: INCLUDE "gfx/pokemon/victreebel/anim_idle.asm"
|
||||||
|
BellignanAnimationIdle: INCLUDE "gfx/pokemon/victreebel/anim_idle.asm"
|
||||||
TentacoolAnimationIdle: INCLUDE "gfx/pokemon/tentacool/anim_idle.asm"
|
TentacoolAnimationIdle: INCLUDE "gfx/pokemon/tentacool/anim_idle.asm"
|
||||||
TentacruelAnimationIdle: INCLUDE "gfx/pokemon/tentacruel/anim_idle.asm"
|
TentacruelAnimationIdle: INCLUDE "gfx/pokemon/tentacruel/anim_idle.asm"
|
||||||
GeodudeAnimationIdle: INCLUDE "gfx/pokemon/geodude/anim_idle.asm"
|
GeodudeAnimationIdle: INCLUDE "gfx/pokemon/geodude/anim_idle.asm"
|
||||||
|
|
|
@ -71,6 +71,7 @@ MachampFrames: INCLUDE "gfx/pokemon/machamp/frames.asm"
|
||||||
BellsproutFrames: INCLUDE "gfx/pokemon/bellsprout/frames.asm"
|
BellsproutFrames: INCLUDE "gfx/pokemon/bellsprout/frames.asm"
|
||||||
WeepinbellFrames: INCLUDE "gfx/pokemon/weepinbell/frames.asm"
|
WeepinbellFrames: INCLUDE "gfx/pokemon/weepinbell/frames.asm"
|
||||||
VictreebelFrames: INCLUDE "gfx/pokemon/victreebel/frames.asm"
|
VictreebelFrames: INCLUDE "gfx/pokemon/victreebel/frames.asm"
|
||||||
|
BellignanFrames: INCLUDE "gfx/pokemon/bellignan/frames.asm"
|
||||||
TentacoolFrames: INCLUDE "gfx/pokemon/tentacool/frames.asm"
|
TentacoolFrames: INCLUDE "gfx/pokemon/tentacool/frames.asm"
|
||||||
TentacruelFrames: INCLUDE "gfx/pokemon/tentacruel/frames.asm"
|
TentacruelFrames: INCLUDE "gfx/pokemon/tentacruel/frames.asm"
|
||||||
GeodudeFrames: INCLUDE "gfx/pokemon/geodude/frames.asm"
|
GeodudeFrames: INCLUDE "gfx/pokemon/geodude/frames.asm"
|
||||||
|
|
|
@ -114,23 +114,23 @@ PlayersRadioText4:
|
||||||
|
|
||||||
DebugPokemon1Script:
|
DebugPokemon1Script:
|
||||||
opentext
|
opentext
|
||||||
getmonname STRING_BUFFER_3, BLASTYKE
|
getmonname STRING_BUFFER_3, BELLIGNAN
|
||||||
writetext ReceivedDebugPokemonText
|
writetext ReceivedDebugPokemonText
|
||||||
playsound SFX_CAUGHT_MON
|
playsound SFX_CAUGHT_MON
|
||||||
waitsfx
|
waitsfx
|
||||||
promptbutton
|
promptbutton
|
||||||
givepoke BLASTYKE, 35, RARE_CANDY
|
givepoke BELLIGNAN, 35, RARE_CANDY
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
DebugPokemon2Script:
|
DebugPokemon2Script:
|
||||||
opentext
|
opentext
|
||||||
getmonname STRING_BUFFER_3, WARTORTLE
|
getmonname STRING_BUFFER_3, WEEPINBELL
|
||||||
writetext ReceivedDebugPokemonText
|
writetext ReceivedDebugPokemonText
|
||||||
playsound SFX_CAUGHT_MON
|
playsound SFX_CAUGHT_MON
|
||||||
waitsfx
|
waitsfx
|
||||||
promptbutton
|
promptbutton
|
||||||
givepoke WARTORTLE, 35, RARE_CANDY
|
givepoke WEEPINBELL, 35, POISON_STONE
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue