Skip to content

Commit

Permalink
Taillow + Cafe Map
Browse files Browse the repository at this point in the history
- Added Taillow
- Created encounter data for Lake Fuchu
- added Kaga Cafe Map
  • Loading branch information
OrchiidDev committed Sep 10, 2024
1 parent a8ccd32 commit 29c1793
Show file tree
Hide file tree
Showing 53 changed files with 146 additions and 83 deletions.
2 changes: 1 addition & 1 deletion constants/pokemon_constants.asm
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ DEF JOHTO_POKEMON EQU const_value
const LUGIA ; f9
const HO_OH ; fa
const CELEBI ; fb
const TAILLOW ; fc
DEF NUM_POKEMON EQU const_value - 1
const_skip ; fc
const EGG ; fd

; Unown forms
Expand Down
1 change: 1 addition & 0 deletions data/pokemon/base_stats.asm
Original file line number Diff line number Diff line change
Expand Up @@ -274,4 +274,5 @@ INCLUDE "data/pokemon/base_stats/tyranitar.asm"
INCLUDE "data/pokemon/base_stats/lugia.asm"
INCLUDE "data/pokemon/base_stats/ho_oh.asm"
INCLUDE "data/pokemon/base_stats/celebi.asm"
INCLUDE "data/pokemon/base_stats/taillow.asm"
assert_table_length NUM_POKEMON
21 changes: 21 additions & 0 deletions data/pokemon/base_stats/taillow.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
db TAILLOW ; 016

db 40, 45, 40, 56, 35, 35
; hp atk def spd sat sdf

db NORMAL, FLYING ; type
db 255 ; catch rate
db 55 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 15 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/pidgey/front.dimensions"
dw NULL, NULL ; unused (beta front/back pics)
db GROWTH_MEDIUM_SLOW ; growth rate
dn EGG_FLYING, EGG_FLYING ; egg groups

; tm/hm learnset
tmhm CURSE, TOXIC, HIDDEN_POWER, SUNNY_DAY, SNORE, PROTECT, ENDURE, FRUSTRATION, RETURN, MUD_SLAP, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SWIFT, DETECT, REST, ATTRACT, THIEF, STEEL_WING, FLY
; end
2 changes: 1 addition & 1 deletion data/pokemon/cries.asm
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ PokemonCries::
mon_cry CRY_TYPHLOSION, 0, 256 ; LUGIA
mon_cry CRY_AIPOM, 0, 384 ; HO_OH
mon_cry CRY_ENTEI, 330, 273 ; CELEBI
mon_cry CRY_PIDGEY, 330, 273 ; TAILLOW
assert_table_length NUM_POKEMON
mon_cry CRY_NIDORAN_M, 0, 0 ; 252
mon_cry CRY_NIDORAN_M, 0, 0 ; 253
mon_cry CRY_NIDORAN_M, 0, 0 ; 254
mon_cry CRY_NIDORAN_M, 0, 0 ; 255
Expand Down
1 change: 1 addition & 0 deletions data/pokemon/dex_entries.asm
Original file line number Diff line number Diff line change
Expand Up @@ -263,3 +263,4 @@ TyranitarPokedexEntry:: INCLUDE "data/pokemon/dex_entries/tyranitar.asm"
LugiaPokedexEntry:: INCLUDE "data/pokemon/dex_entries/lugia.asm"
HoOhPokedexEntry:: INCLUDE "data/pokemon/dex_entries/ho_oh.asm"
CelebiPokedexEntry:: INCLUDE "data/pokemon/dex_entries/celebi.asm"
TaillowPokedexEntry:: INCLUDE "data/pokemon/dex_entries/taillow.asm"
10 changes: 10 additions & 0 deletions data/pokemon/dex_entries/taillow.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
db "TINY BIRD@" ; species name
dw 100, 40 ; height, weight

db "It rapidly flaps"
next "its wings in the"
next "grass, stirring up"

page "a dust cloud that"
next "drives insect prey"
next "out into the open.@"
1 change: 1 addition & 0 deletions data/pokemon/dex_entry_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,5 @@ PokedexDataPointerTable:
dw LugiaPokedexEntry
dw HoOhPokedexEntry
dw CelebiPokedexEntry
dw TaillowPokedexEntry
assert_table_length NUM_POKEMON
1 change: 1 addition & 0 deletions data/pokemon/dex_order_alpha.asm
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ AlphabeticalPokedexOrder:
db SUNFLORA
db SUNKERN
db SWINUB
db TAILLOW
db TANGELA
db TAUROS
db TEDDIURSA
Expand Down
1 change: 1 addition & 0 deletions data/pokemon/dex_order_new.asm
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,5 @@ NewPokedexOrder:
db MEWTWO
db MEW
db CELEBI
db TAILLOW
assert_table_length NUM_POKEMON
1 change: 1 addition & 0 deletions data/pokemon/egg_move_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,5 @@ EggMovePointers::
dw NoEggMoves
dw NoEggMoves
dw NoEggMoves
dw NoEggMoves
assert_table_length NUM_POKEMON
13 changes: 13 additions & 0 deletions data/pokemon/evos_attacks.asm
Original file line number Diff line number Diff line change
Expand Up @@ -3355,3 +3355,16 @@ CelebiEvosAttacks:
db 40, BATON_PASS
db 50, PERISH_SONG
db 0 ; no more level-up moves


TaillowEvosAttacks:
db 0 ; no more evolutions
db 1, TACKLE
db 5, SAND_ATTACK
db 9, GUST
db 15, QUICK_ATTACK
db 21, WHIRLWIND
db 29, WING_ATTACK
db 37, AGILITY
db 47, MIRROR_MOVE
db 0 ; no more level-up moves
1 change: 1 addition & 0 deletions data/pokemon/evos_attacks_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,5 @@ EvosAttacksPointers::
dw LugiaEvosAttacks
dw HoOhEvosAttacks
dw CelebiEvosAttacks
dw TaillowEvosAttacks
assert_table_length NUM_POKEMON
2 changes: 1 addition & 1 deletion data/pokemon/gen1_order.asm
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,4 @@ Pokered_MonIndices:
db QWILFISH
db WOBBUFFET
db WOBBUFFET
assert_table_length NUM_POKEMON + 1
assert_table_length NUM_POKEMON ;+ 1
1 change: 1 addition & 0 deletions data/pokemon/menu_icons.asm
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,5 @@ MonMenuIcons:
db ICON_LUGIA ; LUGIA
db ICON_HO_OH ; HO_OH
db ICON_HUMANSHAPE ; CELEBI
db ICON_BIRD ; TAILLOW
assert_table_length NUM_POKEMON
2 changes: 1 addition & 1 deletion data/pokemon/names.asm
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ PokemonNames::
db "LUGIA@@@@@"
db "HO-OH@@@@@"
db "CELEBI@@@@"
db "TAILLOW@@@"
assert_table_length NUM_POKEMON
db "?????@@@@@"
db "EGG@@@@@@@"
assert_table_length EGG
db "?????@@@@@"
Expand Down
9 changes: 2 additions & 7 deletions data/pokemon/palettes.asm
Original file line number Diff line number Diff line change
Expand Up @@ -517,16 +517,11 @@ INCBIN "gfx/pokemon/ho_oh/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/ho_oh/shiny.pal"
INCBIN "gfx/pokemon/celebi/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/celebi/shiny.pal"
INCBIN "gfx/pokemon/taillow/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/taillow/shiny.pal"

assert_table_length NUM_POKEMON + 1

; 252
RGB 30, 26, 11
RGB 23, 16, 00
; 252 shiny
RGB 30, 26, 11
RGB 23, 16, 00

INCBIN "gfx/pokemon/egg/front.gbcpal", middle_colors
INCLUDE "gfx/pokemon/egg/shiny.pal"

Expand Down
4 changes: 2 additions & 2 deletions data/pokemon/pic_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -508,9 +508,9 @@ PokemonPicPointers::
dba_pic HoOhBackpic
dba_pic CelebiFrontpic
dba_pic CelebiBackpic
dba_pic TaillowFrontpic
dba_pic TaillowBackpic
assert_table_length NUM_POKEMON
dbw -1, -1 ; unused
dbw -1, -1 ; unused
dba_pic EggPic
dbw -1, -1 ; unused
assert_table_length EGG
Binary file modified data/tilesets/game_corner_attributes.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions data/tilesets/game_corner_collision.asm
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
tilecoll WALL, WALL, WALL, WALL ; 2e
tilecoll WALL, WALL, FLOOR, WALL ; 2f
tilecoll WALL, WALL, WALL, FLOOR ; 30
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 31
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 32
tilecoll FLOOR, WALL, FLOOR, WALL ; 31
tilecoll WALL, WALL, WALL, WALL ; 32
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 33
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 34
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 35
Expand Down
Binary file modified data/tilesets/game_corner_metatiles.bin
Binary file not shown.
Binary file modified data/tilesets/kagawa_attributes.bin
Binary file not shown.
8 changes: 7 additions & 1 deletion data/tilesets/kagawa_collision.asm
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@
tilecoll WALL, WALL, WALL, WALL ; 91
tilecoll WALL, WALL, WALL, WALL ; 92
tilecoll FLOOR, FLOOR, HOP_DOWN, FLOOR ; 93
tilecoll WALL, WALL, WALL, WALL ; 94
tilecoll HOP_LEFT, FLOOR, HOP_LEFT, FLOOR ; 94
tilecoll WALL, FLOOR, WALL, WARP_CARPET_DOWN ; 95
tilecoll FLOOR, WALL, WARP_CARPET_DOWN, WALL ; 96
tilecoll WALL, WALL, WALL, WALL ; 97
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 98
tilecoll FLOOR, FLOOR, FLOOR, FLOOR ; 99
tilecoll FLOOR, FLOOR, WALL, FLOOR ; 9a
tilecoll WALL, WALL, FLOOR, FLOOR ; 9b
tilecoll WALL, WALL, WALL, WALL ; 9c
Binary file modified data/tilesets/kagawa_metatiles.bin
Binary file not shown.
29 changes: 29 additions & 0 deletions data/wild/johto_grass.asm
Original file line number Diff line number Diff line change
Expand Up @@ -1710,4 +1710,33 @@ JohtoGrassWildMons:
db 44, GOLBAT
end_grass_wildmons

def_grass_wildmons LAKE_FUCHU
db 10 percent, 10 percent, 10 percent ; encounter rates: morn/day/nite
; morn
db 5, YANMA
db 6, YANMA
db 6, YANMA
db 4, WOOPER
db 5, WOOPER
db 5, SENTRET
db 5, TAILLOW
; day
db 5, YANMA
db 4, SENTRET
db 5, SENTRET
db 5, WOOPER
db 6, WOOPER
db 4, TAILLOW
db 5, TAILLOW
; nite
db 4, HOOTHOOT
db 6, HOOTHOOT
db 7, HOOTHOOT
db 5, HOOTHOOT
db 6, SPINARAK
db 7, SPINARAK
db 7, SPINARAK
end_grass_wildmons


db -1 ; end
4 changes: 2 additions & 2 deletions gfx/footprints.asm
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ INCBIN "gfx/footprints/tyranitar.1bpp", footprint_bottom
INCBIN "gfx/footprints/lugia.1bpp", footprint_top
INCBIN "gfx/footprints/ho_oh.1bpp", footprint_top
INCBIN "gfx/footprints/celebi.1bpp", footprint_top
INCBIN "gfx/footprints/252.1bpp", footprint_top
INCBIN "gfx/footprints/pidgey.1bpp", footprint_top
INCBIN "gfx/footprints/253.1bpp", footprint_top
INCBIN "gfx/footprints/254.1bpp", footprint_top
INCBIN "gfx/footprints/255.1bpp", footprint_top
Expand All @@ -582,7 +582,7 @@ INCBIN "gfx/footprints/256.1bpp", footprint_top
INCBIN "gfx/footprints/lugia.1bpp", footprint_bottom
INCBIN "gfx/footprints/ho_oh.1bpp", footprint_bottom
INCBIN "gfx/footprints/celebi.1bpp", footprint_bottom
INCBIN "gfx/footprints/252.1bpp", footprint_bottom
INCBIN "gfx/footprints/pidgey.1bpp", footprint_bottom
INCBIN "gfx/footprints/253.1bpp", footprint_bottom
INCBIN "gfx/footprints/254.1bpp", footprint_bottom
INCBIN "gfx/footprints/255.1bpp", footprint_bottom
Expand Down
65 changes: 2 additions & 63 deletions gfx/pics.asm
Original file line number Diff line number Diff line change
Expand Up @@ -711,69 +711,8 @@ UnownRBackpic: INCBIN "gfx/pokemon/unown_r/back.2bpp.lz"

SECTION "Pics 19", ROMX

; Seems to be an accidental copy of the previous bank

INCBIN "gfx/pokemon/spinarak/back.2bpp.lz"
INCBIN "gfx/pokemon/raikou/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_k/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/houndour/back.2bpp.lz"
INCBIN "gfx/pokemon/poliwag/back.2bpp.lz"
INCBIN "gfx/pokemon/squirtle/back.2bpp.lz"
INCBIN "gfx/pokemon/shuckle/back.2bpp.lz"
INCBIN "gfx/pokemon/dewgong/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_b/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/slowpoke/back.2bpp.lz"
INCBIN "gfx/pokemon/dunsparce/back.2bpp.lz"
INCBIN "gfx/pokemon/donphan/back.2bpp.lz"
INCBIN "gfx/pokemon/wooper/back.2bpp.lz"
INCBIN "gfx/pokemon/tauros/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_x/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_n/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/tangela/back.2bpp.lz"
INCBIN "gfx/pokemon/voltorb/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_j/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/mantine/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_l/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/piloswine/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_m/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_f/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/natu/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_a/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/golem/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_u/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/diglett/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_q/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_p/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_c/back.2bpp.lz"
INCBIN "gfx/pokemon/jynx/back.2bpp.lz"
INCBIN "gfx/pokemon/golbat/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_y/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_g/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_i/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_v/back.2bpp.lz"
INCBIN "gfx/pokemon/forretress/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_s/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_r/front.animated.2bpp.lz"
INCBIN "gfx/pokemon/unown_e/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_j/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_b/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_o/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_z/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_w/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_n/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_a/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_m/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_k/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_t/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_x/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_l/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_u/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_q/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_y/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_p/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_i/back.2bpp.lz"
INCBIN "gfx/pokemon/unown_r/back.2bpp.lz"

TaillowFrontpic: INCBIN "gfx/pokemon/taillow/front.animated.2bpp.lz"
TaillowBackpic: INCBIN "gfx/pokemon/taillow/back.2bpp.lz"

; Sections "Pics 20" to "Pics 24" are not used for any graphics,
; but entries for their banks exist in FixPicBank (see engine/gfx/load_pics.asm).
Expand Down
Binary file modified gfx/pokegear/johto.bin
Binary file not shown.
Binary file modified gfx/pokegear/town_map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions gfx/pokemon/anim_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,5 @@ AnimationPointers:
dw LugiaAnimation
dw HoOhAnimation
dw CelebiAnimation
dw TaillowAnimation
assert_table_length NUM_POKEMON
1 change: 1 addition & 0 deletions gfx/pokemon/anims.asm
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,5 @@ TyranitarAnimation: INCLUDE "gfx/pokemon/tyranitar/anim.asm"
LugiaAnimation: INCLUDE "gfx/pokemon/lugia/anim.asm"
HoOhAnimation: INCLUDE "gfx/pokemon/ho_oh/anim.asm"
CelebiAnimation: INCLUDE "gfx/pokemon/celebi/anim.asm"
TaillowAnimation: INCLUDE "gfx/pokemon/taillow/anim.asm"
EggAnimation: INCLUDE "gfx/pokemon/egg/anim.asm"
1 change: 1 addition & 0 deletions gfx/pokemon/bitmask_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,5 @@ BitmasksPointers:
dw LugiaBitmasks
dw HoOhBitmasks
dw CelebiBitmasks
dw TaillowBitmasks
assert_table_length NUM_POKEMON
1 change: 1 addition & 0 deletions gfx/pokemon/bitmasks.asm
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,5 @@ TyranitarBitmasks: INCLUDE "gfx/pokemon/tyranitar/bitmask.asm"
LugiaBitmasks: INCLUDE "gfx/pokemon/lugia/bitmask.asm"
HoOhBitmasks: INCLUDE "gfx/pokemon/ho_oh/bitmask.asm"
CelebiBitmasks: INCLUDE "gfx/pokemon/celebi/bitmask.asm"
TaillowBitmasks: INCLUDE "gfx/pokemon/taillow/bitmask.asm"
EggBitmasks: INCLUDE "gfx/pokemon/egg/bitmask.asm"
1 change: 1 addition & 0 deletions gfx/pokemon/frame_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,5 @@ FramesPointers:
dw LugiaFrames
dw HoOhFrames
dw CelebiFrames
dw TaillowFrames
assert_table_length NUM_POKEMON
1 change: 1 addition & 0 deletions gfx/pokemon/idle_pointers.asm
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,5 @@ AnimationIdlePointers:
dw LugiaAnimationIdle
dw HoOhAnimationIdle
dw CelebiAnimationIdle
dw TaillowAnimationIdle
assert_table_length NUM_POKEMON
1 change: 1 addition & 0 deletions gfx/pokemon/idles.asm
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,5 @@ TyranitarAnimationIdle: INCLUDE "gfx/pokemon/tyranitar/anim_idle.asm"
LugiaAnimationIdle: INCLUDE "gfx/pokemon/lugia/anim_idle.asm"
HoOhAnimationIdle: INCLUDE "gfx/pokemon/ho_oh/anim_idle.asm"
CelebiAnimationIdle: INCLUDE "gfx/pokemon/celebi/anim_idle.asm"
TaillowAnimationIdle: INCLUDE "gfx/pokemon/taillow/anim_idle.asm"
EggAnimationIdle: INCLUDE "gfx/pokemon/egg/anim_idle.asm"
1 change: 1 addition & 0 deletions gfx/pokemon/johto_frames.asm
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,5 @@ TyranitarFrames: INCLUDE "gfx/pokemon/tyranitar/frames.asm"
LugiaFrames: INCLUDE "gfx/pokemon/lugia/frames.asm"
HoOhFrames: INCLUDE "gfx/pokemon/ho_oh/frames.asm"
CelebiFrames: INCLUDE "gfx/pokemon/celebi/frames.asm"
TaillowFrames: INCLUDE "gfx/pokemon/taillow/frames.asm"
EggFrames: INCLUDE "gfx/pokemon/egg/frames.asm"
Binary file added gfx/pokemon/swellow.zip
Binary file not shown.
9 changes: 9 additions & 0 deletions gfx/pokemon/swellow/anim.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
frame 1, 06
frame 2, 12
frame 1, 08
frame 2, 16
setrepeat 3
frame 3, 06
frame 0, 06
dorepeat 5
endanim
5 changes: 5 additions & 0 deletions gfx/pokemon/swellow/anim_idle.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
setrepeat 2
frame 4, 06
frame 0, 06
dorepeat 1
endanim
Binary file added gfx/pokemon/swellow/back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gfx/pokemon/swellow/front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions gfx/pokemon/swellow/shiny.pal
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

RGB 30, 17, 01
RGB 03, 16, 09

Binary file added gfx/pokemon/taillow.zip
Binary file not shown.
6 changes: 6 additions & 0 deletions gfx/pokemon/taillow/anim.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
frame 1, 10
frame 2, 10
frame 1, 08
frame 2, 08
frame 3, 08
endanim
5 changes: 5 additions & 0 deletions gfx/pokemon/taillow/anim_idle.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
setrepeat 3
frame 4, 06
frame 0, 06
dorepeat 1
endanim
Binary file added gfx/pokemon/taillow/back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gfx/pokemon/taillow/front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 29c1793

Please sign in to comment.