Toedscools and Toedscruels and Wigletts, oh my!

Also reworded some of the dex entries a bit.
This commit is contained in:
MementoMartha 2022-12-11 23:21:03 +00:00
parent 4ea2cb6b4f
commit 602a7386d4
22 changed files with 304 additions and 190 deletions

View file

@ -98,7 +98,7 @@
const DEX_MADAAMU ; (091) const DEX_MADAAMU ; (091)
const DEX_DIGLETT ; 50 (092) const DEX_DIGLETT ; 50 (092)
const DEX_DUGTRIO ; 51 (093) const DEX_DUGTRIO ; 51 (093)
; const DEX_WIGLETT ; (094) const DEX_WIGLETT ; (094)
const DEX_WUGTRIO ; (095) const DEX_WUGTRIO ; (095)
const DEX_CROCKY ; (096) const DEX_CROCKY ; (096)
const DEX_KOTORA ; (097) const DEX_KOTORA ; (097)
@ -108,8 +108,8 @@
const DEX_ELECTRODE ; 101 (101) const DEX_ELECTRODE ; 101 (101)
const DEX_TENTACOOL ; 72 (102) const DEX_TENTACOOL ; 72 (102)
const DEX_TENTACRUEL ; 73 (103) const DEX_TENTACRUEL ; 73 (103)
; const DEX_TOEDSCOOL ; (104) const DEX_TOEDSCOOL ; (104)
; const DEX_TOEDSCRUEL ; (105) const DEX_TOEDSCRUEL ; (105)
const DEX_DROWZEE ; 96 (106) const DEX_DROWZEE ; 96 (106)
const DEX_HYPNO ; 97 (107) const DEX_HYPNO ; 97 (107)
const DEX_LICKITUNG ; 108 (108) const DEX_LICKITUNG ; 108 (108)

View file

@ -227,21 +227,19 @@
const BETOBEBII ; $DA const BETOBEBII ; $DA
const MAGNEZONE ; $DB const MAGNEZONE ; $DB
const PORYGONZ ; $DC const PORYGONZ ; $DC
; const HAPPINY ; $DD const ANNIHILAPE ; $DD
; const MUNCHLAX ; $DE const SCREAM_TAIL ; $DE
const ANNIHILAPE ; $DF const SANDY_SHOCKS ; $DF
const SCREAM_TAIL ; $E0 const WIGLETT ; $E0
const SANDY_SHOCKS ; $E1 const WUGTRIO ; $E1
; const WIGLETT ; $E2 const TOEDSCOOL ; $E2
const WUGTRIO ; $E3 const TOEDSCRUEL ; $E3
; const TOEDSCOOL ; $E4 ; const PERRSERKER ; $E4
; const TOEDSCRUEL ; $E5 ; const SIRFETCHD ; $E5
; const PERRSERKER ; $E6 ; const MR_RIME ; $E6
; const SIRFETCHD ; $E7 ; const MELTAN ; $E7
; const MR_RIME ; $E8 ; const MELMETAL ; $E8
; const MELTAN ; $E9 const MISSINGNO ; $E9
; const MELMETAL ; $EA
const MISSINGNO ; $EB
DEF NUM_POKEMON_INDEXES EQU const_value - 1 DEF NUM_POKEMON_INDEXES EQU const_value - 1

View file

@ -93,7 +93,7 @@ INCLUDE "data/pokemon/base_stats/farfetchd.asm"
INCLUDE "data/pokemon/base_stats/madaamu.asm" INCLUDE "data/pokemon/base_stats/madaamu.asm"
INCLUDE "data/pokemon/base_stats/diglett.asm" INCLUDE "data/pokemon/base_stats/diglett.asm"
INCLUDE "data/pokemon/base_stats/dugtrio.asm" INCLUDE "data/pokemon/base_stats/dugtrio.asm"
; INCLUDE "data/pokemon/base_stats/wiglett.asm" INCLUDE "data/pokemon/base_stats/wiglett.asm"
INCLUDE "data/pokemon/base_stats/wugtrio.asm" INCLUDE "data/pokemon/base_stats/wugtrio.asm"
INCLUDE "data/pokemon/base_stats/crocky.asm" INCLUDE "data/pokemon/base_stats/crocky.asm"
INCLUDE "data/pokemon/base_stats/kotora.asm" INCLUDE "data/pokemon/base_stats/kotora.asm"
@ -103,8 +103,8 @@ INCLUDE "data/pokemon/base_stats/voltorb.asm"
INCLUDE "data/pokemon/base_stats/electrode.asm" INCLUDE "data/pokemon/base_stats/electrode.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/toedscool.asm" INCLUDE "data/pokemon/base_stats/toedscool.asm"
; INCLUDE "data/pokemon/base_stats/toedscruel.asm" INCLUDE "data/pokemon/base_stats/toedscruel.asm"
INCLUDE "data/pokemon/base_stats/drowzee.asm" INCLUDE "data/pokemon/base_stats/drowzee.asm"
INCLUDE "data/pokemon/base_stats/hypno.asm" INCLUDE "data/pokemon/base_stats/hypno.asm"
INCLUDE "data/pokemon/base_stats/lickitung.asm" INCLUDE "data/pokemon/base_stats/lickitung.asm"

View file

@ -0,0 +1,24 @@
db DEX_TOEDSCOOL ; pokedex id
db 40, 40, 35, 70, 100
; hp atk def spd spc
db GROUND, GRASS ; type
db 190 ; catch rate
db 105 ; base exp
INCBIN "gfx/pokemon/front/toedscool.pic", 0, 1 ; sprite dimensions
dw ToedscoolPicFront, ToedscoolPicBack
db ABSORB, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm SWORDS_DANCE, TOXIC, TAKE_DOWN, DOUBLE_EDGE, RAGE, \
MEGA_DRAIN, SOLARBEAM, EARTHQUAKE, FISSURE, DIG, \
MIMIC, DOUBLE_TEAM, REFLECT, BIDE, SKULL_BASH, \
REST, SUBSTITUTE, CUT
; end
db BANK(ToedscoolPicFront)
assert BANK(ToedscoolPicFront) == BANK(ToedscoolPicBack)

View file

@ -0,0 +1,24 @@
db DEX_TOEDSCRUEL ; pokedex id
db 80, 70, 65, 100, 120
; hp atk def spd spc
db GROUND, GRASS ; type
db 60 ; catch rate
db 205 ; base exp
INCBIN "gfx/pokemon/front/toedscruel.pic", 0, 1 ; sprite dimensions
dw ToedscruelPicFront, ToedscruelPicBack
db ABSORB, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm SWORDS_DANCE, TOXIC, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
RAGE, MEGA_DRAIN, SOLARBEAM, EARTHQUAKE, FISSURE, \
DIG, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
SKULL_BASH, REST, SUBSTITUTE, CUT
; end
db BANK(ToedscruelPicFront)
assert BANK(ToedscruelPicFront) == BANK(ToedscruelPicBack)

View file

@ -0,0 +1,24 @@
db DEX_WIGLETT ; pokedex id
db 10, 55, 25, 95, 35
; hp atk def spd spc
db WATER, WATER ; type
db 255 ; catch rate
db 81 ; base exp
INCBIN "gfx/pokemon/front/wiglett.pic", 0, 1 ; sprite dimensions
dw WiglettPicFront, WiglettPicBack
db WATER_GUN, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, \
WATER_GUN, RAGE, EARTHQUAKE, FISSURE, DIG, \
MIMIC, DOUBLE_TEAM, BIDE, REST, ROCK_SLIDE, \
SUBSTITUTE, CUT, SURF
; end
db BANK(WiglettPicFront)
assert BANK(WiglettPicFront) == BANK(WiglettPicBack)

View file

@ -226,15 +226,13 @@ CryData::
mon_cry SFX_CRY_05, $FF, $40 ; Betobebii mon_cry SFX_CRY_05, $FF, $40 ; Betobebii
mon_cry SFX_CRY_00, $00, $00 ; Magnezone mon_cry SFX_CRY_00, $00, $00 ; Magnezone
mon_cry SFX_CRY_00, $00, $00 ; Porygon-Z mon_cry SFX_CRY_00, $00, $00 ; Porygon-Z
; mon_cry SFX_CRY_00, $00, $00 ; Happiny
; mon_cry SFX_CRY_00, $00, $00 ; Munchlax
mon_cry SFX_CRY_20, $00, $1C ; Annihilape mon_cry SFX_CRY_20, $00, $1C ; Annihilape
mon_cry SFX_CRY_0E, $FA, $80 ; Scream Tail mon_cry SFX_CRY_0E, $FA, $80 ; Scream Tail
mon_cry SFX_CRY_1C, $1F, $DD ; Sandy Shocks mon_cry SFX_CRY_1C, $1F, $DD ; Sandy Shocks
; mon_cry SFX_CRY_00, $00, $00 ; Wiglett mon_cry SFX_CRY_00, $00, $00 ; Wiglett
mon_cry SFX_CRY_00, $00, $00 ; Wugtrio mon_cry SFX_CRY_00, $00, $00 ; Wugtrio
; mon_cry SFX_CRY_00, $00, $00 ; Toedscool mon_cry SFX_CRY_00, $00, $00 ; Toedscool
; mon_cry SFX_CRY_00, $00, $00 ; Toedscruel mon_cry SFX_CRY_00, $00, $00 ; Toedscruel
; mon_cry SFX_CRY_19, $1A, $40 ; Perrserker ; mon_cry SFX_CRY_19, $1A, $40 ; Perrserker
; mon_cry SFX_CRY_10, $64, $40 ; Sirfetch'd ; mon_cry SFX_CRY_10, $64, $40 ; Sirfetch'd
; mon_cry SFX_CRY_20, $00, $70 ; Mr. Rime ; mon_cry SFX_CRY_20, $00, $70 ; Mr. Rime

View file

@ -223,10 +223,10 @@ PokedexEntryPointers:
dw AnnihilapeDexEntry dw AnnihilapeDexEntry
dw ScreamTailDexEntry dw ScreamTailDexEntry
dw SandyShocksDexEntry dw SandyShocksDexEntry
; dw WiglettDexEntry dw WiglettDexEntry
dw WugtrioDexEntry dw WugtrioDexEntry
; dw ToedscoolDexEntry dw ToedscoolDexEntry
; dw ToedscruelDexEntry dw ToedscruelDexEntry
dw MissingNoDexEntry dw MissingNoDexEntry
assert_table_length NUM_POKEMON_INDEXES assert_table_length NUM_POKEMON_INDEXES
@ -1782,12 +1782,12 @@ SandyShocksDexEntry:
text_far _SandyShocksDexEntry text_far _SandyShocksDexEntry
text_end text_end
; WiglettDexEntry: WiglettDexEntry:
; db "GARDEN EEL@" db "GARDEN EEL@"
; db 3,11 db 3,11
; dw 40 dw 40
; text_far _WiglettDexEntry text_far _WiglettDexEntry
; text_end text_end
WugtrioDexEntry: WugtrioDexEntry:
db "GARDEN EEL@" db "GARDEN EEL@"
@ -1796,17 +1796,17 @@ WugtrioDexEntry:
text_far _WugtrioDexEntry text_far _WugtrioDexEntry
text_end text_end
; ToedscoolDexEntry: ToedscoolDexEntry:
; db "WOODEAR@" db "WOODEAR@"
; db 2,11 db 2,11
; dw 730 dw 730
; text_far _ToedscoolDexEntry text_far _ToedscoolDexEntry
; text_end text_end
; ToedscruelDexEntry: ToedscruelDexEntry:
; db "WOODEAR@" db "WOODEAR@"
; db 6,3 db 6,3
; dw 1280 dw 1280
; text_far _ToedscruelDexEntry text_far _ToedscruelDexEntry
; text_end text_end

View file

@ -220,15 +220,13 @@ PokedexOrder:
db DEX_BETOBEBII db DEX_BETOBEBII
db DEX_MAGNEZONE db DEX_MAGNEZONE
db DEX_PORYGONZ db DEX_PORYGONZ
; db DEX_HAPPINY
; db DEX_MUNCHLAX
db DEX_ANNIHILAPE db DEX_ANNIHILAPE
db DEX_SCREAM_TAIL db DEX_SCREAM_TAIL
db DEX_SANDY_SHOCKS db DEX_SANDY_SHOCKS
; db DEX_WIGLETT db DEX_WIGLETT
db DEX_WUGTRIO db DEX_WUGTRIO
; db DEX_TOEDSCOOL db DEX_TOEDSCOOL
; db DEX_TOEDSCRUEL db DEX_TOEDSCRUEL
; db DEX_PERRSERKER ; db DEX_PERRSERKER
; db DEX_SIRFETCHD ; db DEX_SIRFETCHD
; db DEX_MR_RIME ; db DEX_MR_RIME

View file

@ -89,13 +89,13 @@ _IvysaurDexEntry::
dex dex
_ExeggutorDexEntry:: _ExeggutorDexEntry::
text "Also known as the" text "Known as The"
next "walking tropical" next "Walking Tropical"
next "rainforest." next "Rainforest, each"
page "Each fruit has" page "fruit has a face"
next "a will of its" next "and a will of"
next "own" next "its own"
dex dex
_LickitungDexEntry:: ; new entry _LickitungDexEntry:: ; new entry
@ -119,13 +119,13 @@ _ExeggcuteDexEntry:: ; new entry
dex dex
_GrimerDexEntry:: ; new entry _GrimerDexEntry:: ; new entry
text "Toxic sludge" text "Sludge mutated by"
next "mutated by x-rays" next "x-rays from the"
next "from the moon" next "moon eventually"
page "eventually" page "became GRIMER."
next "became this" next "Loves to feed on"
next "#MON" next "filthy things"
dex dex
_GengarDexEntry:: ; new entry _GengarDexEntry:: ; new entry
@ -133,7 +133,7 @@ _GengarDexEntry:: ; new entry
next "honoring GENGAR" next "honoring GENGAR"
next "on mountains. It" next "on mountains. It"
page "Is said to appear" page "is said to appear"
next "from the dark to" next "from the dark to"
next "kill lost souls" next "kill lost souls"
dex dex
@ -173,9 +173,9 @@ _RhyhornDexEntry:: ; new entry
next "ramming can" next "ramming can"
next "destroy buildings." next "destroy buildings."
page "They are not" page "Due to this, they"
next "suitable house" next "are unsuitable"
next "pets" next "house pets"
dex dex
_LaprasDexEntry:: ; new entry _LaprasDexEntry:: ; new entry
@ -249,13 +249,13 @@ _GastlyDexEntry:: ; Dex entry from Green, swapping the Indian Elephant for Tram
dex dex
_ScytherDexEntry:: ; new entry _ScytherDexEntry:: ; new entry
text "It can fly with"
next "its wings, but"
next "it is uncommon."
page "Few specimens" page "Few specimens"
next "have ever been" next "have ever been"
next "caught" next "caught. While"
page "it can fly using"
next "its wings, it"
next "rarely does this"
dex dex
_StaryuDexEntry:: ; new entry _StaryuDexEntry:: ; new entry
@ -313,7 +313,7 @@ _OnixDexEntry:: ; new entry
next "underground," next "underground,"
next "burrowing at over" next "burrowing at over"
page "80 kilometers per" page "50 miles per" ; changed to imperial to match other measurements
next "hour in search" next "hour in search"
next "of prey" next "of prey"
dex dex
@ -329,11 +329,11 @@ _FearowDexEntry:: ; new entry
dex dex
_PidgeyDexEntry:: ; new entry _PidgeyDexEntry:: ; new entry
text "Dislikes fights." text "Does not like to"
next "They hide among" next "fight. It prefers"
next "tall grass" next "to hide in tall"
page "while feeding on" page "grass, feeding on"
next "CATERPIE and" next "CATERPIE and"
next "WEEDLE" next "WEEDLE"
dex dex
@ -349,13 +349,13 @@ _SlowpokeDexEntry::
dex dex
_KadabraDexEntry:: ; new entry _KadabraDexEntry:: ; new entry
text "A short story" text "Its popularity has"
next "about a boy" next "increased after"
next "becoming a" next "the release of a"
page "KADABRA made it" page "short story about"
next "a star for those" next "a boy who turned"
next "in the know" next "into a KADABRA"
dex dex
_GravelerDexEntry:: ; new entry _GravelerDexEntry:: ; new entry
@ -400,12 +400,12 @@ _MrMimeDexEntry:: ; new entry
_HitmonleeDexEntry:: ; new entry _HitmonleeDexEntry:: ; new entry
text "Sometimes called" text "Sometimes called"
next "'The Demon of" next "The Demon of"
next "Kickboxing'." next "Kickboxing."
page "Despite this," page "Despite this, it"
next "When not fighting," next "is very docile"
next "it is very docile" next "when not fighting"
dex dex
_HitmonchanDexEntry:: ; new entry _HitmonchanDexEntry:: ; new entry
@ -413,17 +413,17 @@ _HitmonchanDexEntry:: ; new entry
next "by the spirit of" next "by the spirit of"
next "a pro boxer." next "a pro boxer."
page "Its punches are" page "It throws punches"
next "faster than" next "that can outspeed"
next "bullet train" next "a bullet train"
dex dex
_ArbokDexEntry:: ; new entry _ArbokDexEntry:: ; new entry
text "ARBOK paralyzes" text "ARBOK paralyzes"
next "prey with its" next "prey with its"
next "gaze. It will" next "gaze. It often"
page "fight viciously" page "fights viciously"
next "with its mortal" next "with its mortal"
next "enemy, RATICATE" next "enemy, RATICATE"
dex dex
@ -436,7 +436,6 @@ _ParasectDexEntry:: ; new entry
page "mushroom's toxic" page "mushroom's toxic"
next "spores are used" next "spores are used"
next "in medicine" next "in medicine"
dex dex
_PsyduckDexEntry:: ; new entry, modified from the original. _PsyduckDexEntry:: ; new entry, modified from the original.
@ -450,13 +449,13 @@ _PsyduckDexEntry:: ; new entry, modified from the original.
dex dex
_DrowzeeDexEntry:: _DrowzeeDexEntry::
text "Often seen eerily" text "Said to be a"
next "muttering to" next "decendant of the"
next "itself." next "legendary Baku,"
page "It is said to" page "it is often seen"
next "be a descendent" next "eerily muttering"
next "of Baku" next "to itself"
dex dex
_GolemDexEntry:: ; new entry _GolemDexEntry:: ; new entry
@ -474,9 +473,9 @@ _MagmarDexEntry:: ; new entry, modified from the original
next "areas, MAGMAR's" next "areas, MAGMAR's"
next "body burns at" next "body burns at"
page "1200 degrees. It" page "2200 degrees F." ; changed to imperial
next "hides perfectly" next "Hides perfectly"
next "in lava" next "among flames"
dex dex
_ElectabuzzDexEntry:: ; new entry _ElectabuzzDexEntry:: ; new entry
@ -500,9 +499,9 @@ _MagnetonDexEntry:: ; new entry
dex dex
_KoffingDexEntry:: ; new entry _KoffingDexEntry:: ; new entry
text "Getting too close" text "The toxic gases"
next "to KOFFING makes" next "that it emits can"
next "tears fill eyes." next "induce tears."
page "It was originally" page "It was originally"
next "discovered in a" next "discovered in a"
@ -554,9 +553,9 @@ _FarfetchdDexEntry:: ; new entry
next "population has" next "population has"
next "declined due to" next "declined due to"
page "being hunted" page "being hunted for"
next "for the leeks" next "their tasty meat"
next "they carry" next "and leeks"
dex dex
_VenonatDexEntry:: ; new entry _VenonatDexEntry:: ; new entry
@ -571,18 +570,18 @@ _VenonatDexEntry:: ; new entry
dex dex
_DragoniteDexEntry:: ; new entry _DragoniteDexEntry:: ; new entry
text "Despite its bulk," text "Has the ability to"
next "it can outrun a" next "outspeed a jet,"
next "jet. It is said" next "despite its bulk."
page "to represent" page "Feared as a god"
next "a God of" next "of destruction due"
next "Destruction" next "to its strength"
dex dex
_DoduoDexEntry:: ; new entry _DoduoDexEntry:: ; new entry
text "It was found 3" text "First discovered"
next "years ago. It" next "3 years ago. It"
next "hates flying due" next "hates flying due"
page "to short wings," page "to short wings,"
@ -595,8 +594,9 @@ _PoliwagDexEntry:: ; new entry
next "skin reveals its" next "skin reveals its"
next "internal organs." next "internal organs."
page "It is genetically" page "Some believe it's"
next "close to tadpoles" next "a mutation of"
next "a common tadpole"
dex dex
_JynxDexEntry:: ; new entry _JynxDexEntry:: ; new entry
@ -635,8 +635,8 @@ _ZapdosDexEntry:: ; new entry
next "bird presiding" next "bird presiding"
next "over the heavens," next "over the heavens,"
page "innumerable years" page "ZAPDOS spends"
next "are spent flying" next "thousands of years"
next "above the clouds" next "above the clouds"
dex dex
@ -681,13 +681,13 @@ _VulpixDexEntry:: ; Changed to make it not too similar to Mikon's dex entry. ~
dex dex
_NinetalesDexEntry:: ; new entry _NinetalesDexEntry:: ; new entry
text "Elders often say" text "A proverb exists"
next "'NINETALES, 1,000" next "that refers to"
next "years, TOTARTLE," next "its longevity:"
page "10,000 years.'" page "'NINETALES, 1,000"
next "to refer to its" next "years, TOTARTLE,"
next "longevity" next "10,000 years."
dex dex
_PikachuDexEntry:: ; new entry _PikachuDexEntry:: ; new entry
@ -756,8 +756,8 @@ _HorseaDexEntry:: ; new entry
next "ink. In spring," next "ink. In spring,"
page "it lays thousands" page "it lays thousands"
next "of eggs, but" next "of eggs, but many"
next "GOLDEEN eats many" next "of them are eaten"
dex dex
_SeadraDexEntry:: _SeadraDexEntry::
@ -792,12 +792,12 @@ _SandslashDexEntry::
_OmanyteDexEntry:: ; new entry _OmanyteDexEntry:: ; new entry
text "It was related" text "It was related"
next "to mollusks." next "to mollusks and"
next "Feeding on" next "fed on small fish"
page "plankton and" page "and plankton. It"
next "small fish, it" next "swam by waving"
next "swam with 10 feet" next "its 10 feet"
dex dex
_OmastarDexEntry:: ; new entry _OmastarDexEntry:: ; new entry
@ -826,8 +826,8 @@ _WigglytuffDexEntry:: ; new entry
next "is sold as a" next "is sold as a"
page "luxury item to" page "luxury item to"
next "a number of rich,"
next "foreign buyers" next "foreign buyers"
dex dex
_EeveeDexEntry:: ; does not need a n.ew entry _EeveeDexEntry:: ; does not need a n.ew entry
@ -843,11 +843,11 @@ _EeveeDexEntry:: ; does not need a n.ew entry
_FlareonDexEntry:: ; new entry, sort of modified off the original _FlareonDexEntry:: ; new entry, sort of modified off the original
text "It stores fire" text "It stores fire"
next "in a flame sac." next "in a flame sac."
next "It looses it at" next "It blows out"
page "temperatures over" page "flames at nearly"
next "1,700 degrees" next "3,100 degrees"
next "celsius" next "Fahrenheit" ; changed to imperial
dex dex
_JolteonDexEntry:: ; new entry _JolteonDexEntry:: ; new entry
@ -926,7 +926,7 @@ _PoliwrathDexEntry:: ; new entry, modified from original.
next "and butterfly." next "and butterfly."
page "Why it remains a" page "Why it remains a"
next "tadpole is" next "tadpole is still"
next "unknown" next "unknown"
dex dex
@ -966,7 +966,7 @@ _DodrioDexEntry:: ; new entry
next "in Central" next "in Central"
page "America revered" page "America revered"
next "DODRIO as a" next "DODRIO as their"
next "symbol" next "symbol"
dex dex
@ -982,8 +982,8 @@ _PrimeapeDexEntry:: ; this entry is just like the pokedex, so no new one
_DugtrioDexEntry:: ; new entry, modified from the original _DugtrioDexEntry:: ; new entry, modified from the original
text "A team of DIGLETT" text "A team of DIGLETT"
next "triplets." next "triplets. They"
next "They burrow" next "burrow deep"
page "underground to" page "underground to"
next "hide themselves" next "hide themselves"
@ -1002,7 +1002,7 @@ _VenomothDexEntry:: ; does not need a n.ew entry
_DewgongDexEntry:: ; new entry _DewgongDexEntry:: ; new entry
text "Its blubber can" text "Its blubber can"
next "be up to 30 cm" next "be up to 12 inches"
next "thick. Unusually," next "thick. Unusually,"
page "they are more" page "they are more"
@ -1075,9 +1075,9 @@ _GolbatDexEntry:: ; new entry
next "fangs, GOLBAT can" next "fangs, GOLBAT can"
next "suck up to" next "suck up to"
page "300 milliliters" page "10 ounces of"
next "of blood in one" next "blood in a"
next "bite" next "single bite"
dex dex
_MewtwoDexEntry:: ; does not need a n.ew entry _MewtwoDexEntry:: ; does not need a n.ew entry
@ -1090,14 +1090,14 @@ _MewtwoDexEntry:: ; does not need a n.ew entry
next "experiments" next "experiments"
dex dex
_SnorlaxDexEntry:: ; new entry, could be improved. _SnorlaxDexEntry:: ; new entry
text "It eats 400 kilos" text "Isn't satisfied"
next "of food a day. As" next "unless it eats"
next "soon as it is" next "over 880 lbs of"
page "done, it falls" page "food every day."
next "asleep. It is the" next "When done, it"
next "heaviest #MON" next "falls asleep"
dex dex
_MagikarpDexEntry:: ; new entry _MagikarpDexEntry:: ; new entry
@ -1147,7 +1147,7 @@ _ElectrodeDexEntry:: ; new entry
page "provocation, it" page "provocation, it"
next "has been called" next "has been called"
next "the 'Bomb Ball'" next "the Bomb Ball"
dex dex
_ClefableDexEntry:: ; new entry _ClefableDexEntry:: ; new entry
@ -1232,11 +1232,11 @@ _PidgeottoDexEntry:: ; new entry
_PidgeotDexEntry:: ; new entry _PidgeotDexEntry:: ; new entry
text "Flies at speeds of" text "Flies at speeds of"
next "up to Mach-2 at" next "up to Mach-2."
next "1200 meters." next "They spread their"
page "They spread their" page "gorgeous wings"
next "wings for" next "widely for"
next "intimidation" next "intimidation"
dex dex
@ -1256,8 +1256,8 @@ _BulbasaurDexEntry:: ; new entry
next "about whether" next "about whether"
page "BULBASAUR is a" page "BULBASAUR is a"
next "plant or a" next "type of plant"
next "mammal" next "or a mammal"
dex dex
_VenusaurDexEntry:: ; new entry _VenusaurDexEntry:: ; new entry
@ -1272,8 +1272,8 @@ _VenusaurDexEntry:: ; new entry
_TentacruelDexEntry:: ; new entry _TentacruelDexEntry:: ; new entry
text "Also known as the" text "Also known as the"
next "'Gangster of the" next "Gangster of the"
next "Sea', it uses its" next "Sea, it uses its"
page "80 tentacles to" page "80 tentacles to"
next "ensnare and" next "ensnare and"
@ -1343,7 +1343,7 @@ _RaticateDexEntry:: ; new entry
_NidorinoDexEntry:: ; new entry _NidorinoDexEntry:: ; new entry
text "Its horn can" text "Its horn can"
next "pierce diamonds." next "pierce diamonds."
next "While evolved," next "Unlike NIDORINA,"
page "it does not lose" page "it does not lose"
next "the ability to" next "the ability to"
@ -1441,13 +1441,13 @@ _WartortleDexEntry:: ; new entry
dex dex
_CharizardDexEntry:: ; new entry _CharizardDexEntry:: ; new entry
text "Because its dung" text "Thought to be"
next "is found on Mt." next "capable of flying"
next "Fuji, it is" next "up to 4,500 feet"
page "thought to FLY up" page "in altitude after"
next "to 1,400 meters" next "its droppings were"
next "in altitude" next "found on Mt. Fuji"
dex dex
_OddishDexEntry:: ; new entry _OddishDexEntry:: ; new entry
@ -1465,8 +1465,8 @@ _GloomDexEntry:: ; new entry
next "emits a foul" next "emits a foul"
next "stench that makes" next "stench that makes"
page "foes faint up to" page "foes faint more"
next "2 kilometers" next "than a mile"
next "away" next "away"
dex dex

View file

@ -226,7 +226,10 @@ EvosMovesPointerTable:
dw AnnihilapeEvosMoves dw AnnihilapeEvosMoves
dw ScreamTailEvosMoves dw ScreamTailEvosMoves
dw SandyShocksEvosMoves dw SandyShocksEvosMoves
dw WugtrioEvosMoves dw WiglettEvosMoves
dw WugtrioEvosMoves
dw ToedscoolEvosMoves
dw ToedscruelEvosMoves
dw MissingNoEvosMoves dw MissingNoEvosMoves
assert_table_length NUM_POKEMON_INDEXES assert_table_length NUM_POKEMON_INDEXES
@ -2863,6 +2866,18 @@ SandyShocksEvosMoves:
db 55, METAL_SOUND db 55, METAL_SOUND
db 0 db 0
WiglettEvosMoves:
; Evolutions
db EV_LEVEL, 28, WUGTRIO
db 0
; Learnset
db 15, SAND_ATTACK
db 19, WRAP
db 24, HEADBUTT
db 31, DIG
db 40, HYDRO_PUMP
db 0
WugtrioEvosMoves: WugtrioEvosMoves:
; Evolutions ; Evolutions
db 0 db 0
@ -2871,7 +2886,36 @@ WugtrioEvosMoves:
db 19, WRAP db 19, WRAP
db 24, HEADBUTT db 24, HEADBUTT
db 31, DIG db 31, DIG
db 37, HYDRO_PUMP db 40, HYDRO_PUMP
db 0
ToedscoolEvosMoves:
; Evolutions
db EV_LEVEL, 30, TOEDSCRUEL
db 0
; Learnset
db 7, SUPERSONIC
db 13, WRAP
db 18, POISONPOWDER
db 22, STUN_SPORE
db 27, CONSTRICT
db 33, SOLARBEAM
db 40, SCREECH
db 48, SPORE
db 0
ToedscruelEvosMoves:
; Evolutions
db 0
; Learnset
db 7, SUPERSONIC
db 13, WRAP
db 18, POISONPOWDER
db 22, STUN_SPORE
db 27, CONSTRICT
db 35, SOLARBEAM
db 43, SCREECH
db 50, SPORE
db 0 db 0
MissingNoEvosMoves: MissingNoEvosMoves:

View file

@ -93,7 +93,7 @@ MonPartyData:
nybble ICON_BIRD ; Madaamu nybble ICON_BIRD ; Madaamu
nybble ICON_MON ; Diglett nybble ICON_MON ; Diglett
nybble ICON_MON ; Dugtrio nybble ICON_MON ; Dugtrio
; nybble ICON_WATER ; Wiglett nybble ICON_WATER ; Wiglett
nybble ICON_WATER ; Wugtrio nybble ICON_WATER ; Wugtrio
nybble ICON_MON ; Crocky nybble ICON_MON ; Crocky
nybble ICON_QUADRUPED ; Kotora nybble ICON_QUADRUPED ; Kotora
@ -103,8 +103,8 @@ MonPartyData:
nybble ICON_BALL ; Electrode nybble ICON_BALL ; Electrode
nybble ICON_WATER ; Tentacool nybble ICON_WATER ; Tentacool
nybble ICON_WATER ; Tentacruel nybble ICON_WATER ; Tentacruel
; nybble ICON_GRASS ; Toedscool nybble ICON_GRASS ; Toedscool
; nybble ICON_GRASS ; Toedscruel nybble ICON_GRASS ; Toedscruel
nybble ICON_MON ; Drowzee nybble ICON_MON ; Drowzee
nybble ICON_MON ; Hypno nybble ICON_MON ; Hypno
nybble ICON_MON ; Lickitung nybble ICON_MON ; Lickitung

View file

@ -220,15 +220,13 @@ MonsterNames::
db "BETOBEBII@" db "BETOBEBII@"
db "MAGNEZONE@" db "MAGNEZONE@"
db "PORYGON-Z@" db "PORYGON-Z@"
; db "HAPPINY@@@"
; db "MUNCHLAX@@"
db "ANNIHILAPE" db "ANNIHILAPE"
db "SCREAMTAIL" db "SCREAMTAIL"
db "SANDY SHOX" db "SANDY SHOX"
; db "WIGLETT@@@" db "WIGLETT@@@"
db "WUGTRIO@@@" db "WUGTRIO@@@"
; db "TOEDSCOOL@" db "TOEDSCOOL@"
; db "TOEDSCRUEL" db "TOEDSCRUEL"
; db "PERRSERKER" ; db "PERRSERKER"
; db "SIRFETCH'D" ; db "SIRFETCH'D"
; db "MR.RIME@@@" ; db "MR.RIME@@@"

View file

@ -198,7 +198,7 @@ _PuchikoonDexEntry::
next "is very hot" next "is very hot"
dex dex
_GyopinDexEntry:: _GyopinDexEntry:: ; may rework, I just reused PokeThon's version
text "It was once scarce" text "It was once scarce"
next "and rarely seen," next "and rarely seen,"
next "but thanks to a" next "but thanks to a"
@ -243,9 +243,9 @@ _TotartleDexEntry::
next "of living for" next "of living for"
next "10,000 years." next "10,000 years."
page "Its algae-covered" page "The shells of old"
next "tail is a symbol" next "TURTIDAL are fully"
next "of its longevity" next "covered in algae"
dex dex
_WeirduckDexEntry:: _WeirduckDexEntry::

View file

@ -94,7 +94,7 @@ MonsterPalettes:
db PAL_BROWNMON ; MADAAMU db PAL_BROWNMON ; MADAAMU
db PAL_BROWNMON ; DIGLETT db PAL_BROWNMON ; DIGLETT
db PAL_BROWNMON ; DUGTRIO db PAL_BROWNMON ; DUGTRIO
; db PAL_PINKMON ; WIGLETT db PAL_PINKMON ; WIGLETT
db PAL_PINKMON ; WUGTRIO db PAL_PINKMON ; WUGTRIO
db PAL_GREENMON ; CROCKY db PAL_GREENMON ; CROCKY
db PAL_YELLOWMON ; KOTORA db PAL_YELLOWMON ; KOTORA
@ -104,8 +104,8 @@ MonsterPalettes:
db PAL_REDMON ; ELECTRODE db PAL_REDMON ; ELECTRODE
db PAL_CYANMON ; TENTACOOL db PAL_CYANMON ; TENTACOOL
db PAL_CYANMON ; TENTACRUEL db PAL_CYANMON ; TENTACRUEL
; db PAL_BROWNMON ; TOEDSCOOL db PAL_BROWNMON ; TOEDSCOOL
; db PAL_YELLOWMON ; TOEDSCRUEL db PAL_YELLOWMON ; TOEDSCRUEL - Yellow doesn't really look right...
db PAL_YELLOWMON ; DROWZEE db PAL_YELLOWMON ; DROWZEE
db PAL_YELLOWMON ; HYPNO db PAL_YELLOWMON ; HYPNO
db PAL_PINKMON ; LICKITUNG db PAL_PINKMON ; LICKITUNG

View file

@ -522,7 +522,13 @@ ScreamTailPicFront:: INCBIN "gfx/pokemon/front/screamtail.pic"
ScreamTailPicBack:: INCBIN "gfx/pokemon/back/screamtailb.pic" ScreamTailPicBack:: INCBIN "gfx/pokemon/back/screamtailb.pic"
SandyShocksPicFront:: INCBIN "gfx/pokemon/front/sandyshocks.pic" SandyShocksPicFront:: INCBIN "gfx/pokemon/front/sandyshocks.pic"
SandyShocksPicBack:: INCBIN "gfx/pokemon/back/sandyshocksb.pic" SandyShocksPicBack:: INCBIN "gfx/pokemon/back/sandyshocksb.pic"
WiglettPicFront:: INCBIN "gfx/pokemon/front/wiglett.pic"
WiglettPicBack:: INCBIN "gfx/pokemon/back/wiglettb.pic"
WugtrioPicFront:: INCBIN "gfx/pokemon/front/wugtrio.pic" WugtrioPicFront:: INCBIN "gfx/pokemon/front/wugtrio.pic"
WugtrioPicBack:: INCBIN "gfx/pokemon/back/wugtriob.pic" WugtrioPicBack:: INCBIN "gfx/pokemon/back/wugtriob.pic"
ToedscoolPicFront:: INCBIN "gfx/pokemon/front/toedscool.pic"
ToedscoolPicBack:: INCBIN "gfx/pokemon/back/toedscoolb.pic"
ToedscruelPicFront:: INCBIN "gfx/pokemon/front/toedscruel.pic"
ToedscruelPicBack:: INCBIN "gfx/pokemon/back/toedscruelb.pic"
MissingNoPicFront:: INCBIN "gfx/pokemon/front/missingno.pic" MissingNoPicFront:: INCBIN "gfx/pokemon/front/missingno.pic"
MissingNoPicBack:: INCBIN "gfx/pokemon/back/missingnob.pic" MissingNoPicBack:: INCBIN "gfx/pokemon/back/missingnob.pic"

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B