shithub: pokecrystal

Download patch

ref: 617ba8be3d86ea7c81d4481d67d8fee67caeeee9
parent: 35a8e9da5de14aaf1ce407fdb47e33127f05ce20
author: mid-kid <esteve.varela@gmail.com>
date: Mon Nov 20 13:11:53 EST 2017

width -> weight

This used to be confusing, since the first thing I think when I see
"width, height" is graphics, in this case probably the sprites.
Well, it has nothing to do with that. Weight is mass times gravity or
something, width is a form of distance.

--- a/data/pokedex/entries/001.asm
+++ b/data/pokedex/entries/001.asm
@@ -1,6 +1,6 @@
 ; BulbasaurPokedexEntry: ; 0x181695
 	db "SEED@" ; species name
-	dw 204, 150 ; height, width
+	dw 204, 150 ; height, weight
 
 	db   "While it is young,"
 	next "it uses the"
--- a/data/pokedex/entries/002.asm
+++ b/data/pokedex/entries/002.asm
@@ -1,6 +1,6 @@
 ; IvysaurPokedexEntry: ; 0x181702
 	db "SEED@" ; species name
-	dw 303, 290 ; height, width
+	dw 303, 290 ; height, weight
 
 	db   "The bulb on its"
 	next "back grows as it"
--- a/data/pokedex/entries/003.asm
+++ b/data/pokedex/entries/003.asm
@@ -1,6 +1,6 @@
 ; VenusaurPokedexEntry: ; 0x181773
 	db "SEED@" ; species name
-	dw 607, 2210 ; height, width
+	dw 607, 2210 ; height, weight
 
 	db   "As it warms it-"
 	next "self and absorbs"
--- a/data/pokedex/entries/004.asm
+++ b/data/pokedex/entries/004.asm
@@ -1,6 +1,6 @@
 ; CharmanderPokedexEntry: ; 0x1817db
 	db "LIZARD@" ; species name
-	dw 200, 190 ; height, width
+	dw 200, 190 ; height, weight
 
 	db   "If it's healthy,"
 	next "the flame on the"
--- a/data/pokedex/entries/005.asm
+++ b/data/pokedex/entries/005.asm
@@ -1,6 +1,6 @@
 ; CharmeleonPokedexEntry: ; 0x18184a
 	db "FLAME@" ; species name
-	dw 307, 420 ; height, width
+	dw 307, 420 ; height, weight
 
 	db   "If it becomes"
 	next "agitated during"
--- a/data/pokedex/entries/006.asm
+++ b/data/pokedex/entries/006.asm
@@ -1,6 +1,6 @@
 ; CharizardPokedexEntry: ; 0x1818b3
 	db "FLAME@" ; species name
-	dw 507, 2000 ; height, width
+	dw 507, 2000 ; height, weight
 
 	db   "It uses its wings"
 	next "to fly high. The"
--- a/data/pokedex/entries/007.asm
+++ b/data/pokedex/entries/007.asm
@@ -1,6 +1,6 @@
 ; SquirtlePokedexEntry: ; 0x181926
 	db "TINYTURTLE@" ; species name
-	dw 108, 200 ; height, width
+	dw 108, 200 ; height, weight
 
 	db   "When it feels"
 	next "threatened, it"
--- a/data/pokedex/entries/008.asm
+++ b/data/pokedex/entries/008.asm
@@ -1,6 +1,6 @@
 ; WartortlePokedexEntry: ; 0x181993
 	db "TURTLE@" ; species name
-	dw 303, 500 ; height, width
+	dw 303, 500 ; height, weight
 
 	db   "Its long, furry"
 	next "tail is a symbol"
--- a/data/pokedex/entries/009.asm
+++ b/data/pokedex/entries/009.asm
@@ -1,6 +1,6 @@
 ; BlastoisePokedexEntry: ; 0x1819f9
 	db "SHELLFISH@" ; species name
-	dw 503, 1890 ; height, width
+	dw 503, 1890 ; height, weight
 
 	db   "It firmly plants"
 	next "its feet on the"
--- a/data/pokedex/entries/010.asm
+++ b/data/pokedex/entries/010.asm
@@ -1,6 +1,6 @@
 ; CaterpiePokedexEntry: ; 0x181a60
 	db "WORM@" ; species name
-	dw 100, 60 ; height, width
+	dw 100, 60 ; height, weight
 
 	db   "It crawls into"
 	next "foliage where it"
--- a/data/pokedex/entries/011.asm
+++ b/data/pokedex/entries/011.asm
@@ -1,6 +1,6 @@
 ; MetapodPokedexEntry: ; 0x181ace
 	db "COCOON@" ; species name
-	dw 204, 220 ; height, width
+	dw 204, 220 ; height, weight
 
 	db   "This is its pre-"
 	next "evolved form. At"
--- a/data/pokedex/entries/012.asm
+++ b/data/pokedex/entries/012.asm
@@ -1,6 +1,6 @@
 ; ButterfreePokedexEntry: ; 0x181b45
 	db "BUTTERFLY@" ; species name
-	dw 307, 710 ; height, width
+	dw 307, 710 ; height, weight
 
 	db   "It flits from"
 	next "flower to flower,"
--- a/data/pokedex/entries/013.asm
+++ b/data/pokedex/entries/013.asm
@@ -1,6 +1,6 @@
 ; WeedlePokedexEntry: ; 0x181bb4
 	db "HAIRY BUG@" ; species name
-	dw 100, 70 ; height, width
+	dw 100, 70 ; height, weight
 
 	db   "The barb on top of"
 	next "its head secretes"
--- a/data/pokedex/entries/014.asm
+++ b/data/pokedex/entries/014.asm
@@ -1,6 +1,6 @@
 ; KakunaPokedexEntry: ; 0x181c23
 	db "COCOON@" ; species name
-	dw 200, 220 ; height, width
+	dw 200, 220 ; height, weight
 
 	db   "Nearly incapable"
 	next "of movement, it"
--- a/data/pokedex/entries/015.asm
+++ b/data/pokedex/entries/015.asm
@@ -1,6 +1,6 @@
 ; BeedrillPokedexEntry: ; 0x181c8a
 	db "POISON BEE@" ; species name
-	dw 303, 650 ; height, width
+	dw 303, 650 ; height, weight
 
 	db   "It uses sharp,"
 	next "poisonous stings"
--- a/data/pokedex/entries/016.asm
+++ b/data/pokedex/entries/016.asm
@@ -1,6 +1,6 @@
 ; PidgeyPokedexEntry: ; 0x181cfa
 	db "TINY BIRD@" ; species name
-	dw 100, 40 ; height, width
+	dw 100, 40 ; height, weight
 
 	db   "It rapidly flaps"
 	next "its wings in the"
--- a/data/pokedex/entries/017.asm
+++ b/data/pokedex/entries/017.asm
@@ -1,6 +1,6 @@
 ; PidgeottoPokedexEntry: ; 0x181d75
 	db "BIRD@" ; species name
-	dw 307, 660 ; height, width
+	dw 307, 660 ; height, weight
 
 	db   "It slowly flies in"
 	next "a circular pat-"
--- a/data/pokedex/entries/018.asm
+++ b/data/pokedex/entries/018.asm
@@ -1,6 +1,6 @@
 ; PidgeotPokedexEntry: ; 0x181dd7
 	db "BIRD@" ; species name
-	dw 411, 870 ; height, width
+	dw 411, 870 ; height, weight
 
 	db   "Its outstanding"
 	next "vision allows it"
--- a/data/pokedex/entries/019.asm
+++ b/data/pokedex/entries/019.asm
@@ -1,6 +1,6 @@
 ; RattataPokedexEntry: ; 0x181e3d
 	db "RAT@" ; species name
-	dw 100, 80 ; height, width
+	dw 100, 80 ; height, weight
 
 	db   "This #MON's"
 	next "impressive vital-"
--- a/data/pokedex/entries/020.asm
+++ b/data/pokedex/entries/020.asm
@@ -1,6 +1,6 @@
 ; RaticatePokedexEntry: ; 0x181ea3
 	db "RAT@" ; species name
-	dw 204, 410 ; height, width
+	dw 204, 410 ; height, weight
 
 	db   "The webs on its"
 	next "hind legs enable"
--- a/data/pokedex/entries/021.asm
+++ b/data/pokedex/entries/021.asm
@@ -1,6 +1,6 @@
 ; SpearowPokedexEntry: ; 0x181f03
 	db "TINY BIRD@" ; species name
-	dw 100, 40 ; height, width
+	dw 100, 40 ; height, weight
 
 	db   "To protect its"
 	next "territory, it"
--- a/data/pokedex/entries/022.asm
+++ b/data/pokedex/entries/022.asm
@@ -1,6 +1,6 @@
 ; FearowPokedexEntry: ; 0x181f64
 	db "BEAK@" ; species name
-	dw 311, 840 ; height, width
+	dw 311, 840 ; height, weight
 
 	db   "It uses its long"
 	next "beak to attack. It"
--- a/data/pokedex/entries/023.asm
+++ b/data/pokedex/entries/023.asm
@@ -1,6 +1,6 @@
 ; EkansPokedexEntry: ; 0x181fd4
 	db "SNAKE@" ; species name
-	dw 607, 150 ; height, width
+	dw 607, 150 ; height, weight
 
 	db   "It flutters the"
 	next "tip of its tongue"
--- a/data/pokedex/entries/024.asm
+++ b/data/pokedex/entries/024.asm
@@ -1,6 +1,6 @@
 ; ArbokPokedexEntry: ; 0x18203d
 	db "COBRA@" ; species name
-	dw 1106, 1430 ; height, width
+	dw 1106, 1430 ; height, weight
 
 	db   "To intimidate"
 	next "foes, it spreads"
--- a/data/pokedex/entries/025.asm
+++ b/data/pokedex/entries/025.asm
@@ -1,6 +1,6 @@
 ; PikachuPokedexEntry: ; 0x1820ad
 	db "MOUSE@" ; species name
-	dw 104, 130 ; height, width
+	dw 104, 130 ; height, weight
 
 	db   "When it is anger-"
 	next "ed, it immediately"
--- a/data/pokedex/entries/026.asm
+++ b/data/pokedex/entries/026.asm
@@ -1,6 +1,6 @@
 ; RaichuPokedexEntry: ; 0x182117
 	db "MOUSE@" ; species name
-	dw 207, 660 ; height, width
+	dw 207, 660 ; height, weight
 
 	db   "If its electric"
 	next "pouches run empty,"
--- a/data/pokedex/entries/027.asm
+++ b/data/pokedex/entries/027.asm
@@ -1,6 +1,6 @@
 ; SandshrewPokedexEntry: ; 0x182184
 	db "MOUSE@" ; species name
-	dw 200, 260 ; height, width
+	dw 200, 260 ; height, weight
 
 	db   "It prefers dry,"
 	next "sandy places"
--- a/data/pokedex/entries/028.asm
+++ b/data/pokedex/entries/028.asm
@@ -1,6 +1,6 @@
 ; SandslashPokedexEntry: ; 0x1821e7
 	db "MOUSE@" ; species name
-	dw 303, 650 ; height, width
+	dw 303, 650 ; height, weight
 
 	db   "Adept at climbing"
 	next "trees, it rolls"
--- a/data/pokedex/entries/029.asm
+++ b/data/pokedex/entries/029.asm
@@ -1,6 +1,6 @@
 ; NidoranFPokedexEntry: ; 0x18224b
 	db "POISON PIN@" ; species name
-	dw 104, 150 ; height, width
+	dw 104, 150 ; height, weight
 
 	db   "Small and very"
 	next "docile, it pro-"
--- a/data/pokedex/entries/030.asm
+++ b/data/pokedex/entries/030.asm
@@ -1,6 +1,6 @@
 ; NidorinaPokedexEntry: ; 0x1822b6
 	db "POISON PIN@" ; species name
-	dw 207, 440 ; height, width
+	dw 207, 440 ; height, weight
 
 	db   "It has a docile"
 	next "nature. If it is"
--- a/data/pokedex/entries/031.asm
+++ b/data/pokedex/entries/031.asm
@@ -1,6 +1,6 @@
 ; NidoqueenPokedexEntry: ; 0x18232e
 	db "DRILL@" ; species name
-	dw 403, 1320 ; height, width
+	dw 403, 1320 ; height, weight
 
 	db   "The hard scales"
 	next "that cover its"
--- a/data/pokedex/entries/032.asm
+++ b/data/pokedex/entries/032.asm
@@ -1,6 +1,6 @@
 ; NidoranMPokedexEntry: ; 0x182392
 	db "POISON PIN@" ; species name
-	dw 108, 200 ; height, width
+	dw 108, 200 ; height, weight
 
 	db   "It constantly"
 	next "moves its large"
--- a/data/pokedex/entries/033.asm
+++ b/data/pokedex/entries/033.asm
@@ -1,6 +1,6 @@
 ; NidorinoPokedexEntry: ; 0x1823fd
 	db "POISON PIN@" ; species name
-	dw 211, 430 ; height, width
+	dw 211, 430 ; height, weight
 
 	db   "It is easily"
 	next "agitated and uses"
--- a/data/pokedex/entries/034.asm
+++ b/data/pokedex/entries/034.asm
@@ -1,6 +1,6 @@
 ; NidokingPokedexEntry: ; 0x182463
 	db "DRILL@" ; species name
-	dw 407, 1370 ; height, width
+	dw 407, 1370 ; height, weight
 
 	db   "It uses its thick"
 	next "arms, legs and"
--- a/data/pokedex/entries/035.asm
+++ b/data/pokedex/entries/035.asm
@@ -1,6 +1,6 @@
 ; ClefairyPokedexEntry: ; 0x1824c8
 	db "FAIRY@" ; species name
-	dw 200, 170 ; height, width
+	dw 200, 170 ; height, weight
 
 	db   "Though rarely"
 	next "seen, it becomes"
--- a/data/pokedex/entries/036.asm
+++ b/data/pokedex/entries/036.asm
@@ -1,6 +1,6 @@
 ; ClefablePokedexEntry: ; 0x182530
 	db "FAIRY@" ; species name
-	dw 403, 880 ; height, width
+	dw 403, 880 ; height, weight
 
 	db   "Said to live in"
 	next "quiet, remote"
--- a/data/pokedex/entries/037.asm
+++ b/data/pokedex/entries/037.asm
@@ -1,6 +1,6 @@
 ; VulpixPokedexEntry: ; 0x18259b
 	db "FOX@" ; species name
-	dw 200, 220 ; height, width
+	dw 200, 220 ; height, weight
 
 	db   "As its body grows"
 	next "larger, its six"
--- a/data/pokedex/entries/038.asm
+++ b/data/pokedex/entries/038.asm
@@ -1,6 +1,6 @@
 ; NinetalesPokedexEntry: ; 0x18260c
 	db "FOX@" ; species name
-	dw 307, 440 ; height, width
+	dw 307, 440 ; height, weight
 
 	db   "It is said to live"
 	next "a thousand years,"
--- a/data/pokedex/entries/039.asm
+++ b/data/pokedex/entries/039.asm
@@ -1,6 +1,6 @@
 ; JigglypuffPokedexEntry: ; 0x182673
 	db "BALLOON@" ; species name
-	dw 108, 120 ; height, width
+	dw 108, 120 ; height, weight
 
 	db   "It rolls its cute"
 	next "eyes as it sings a"
--- a/data/pokedex/entries/040.asm
+++ b/data/pokedex/entries/040.asm
@@ -1,6 +1,6 @@
 ; WigglytuffPokedexEntry: ; 0x1826e9
 	db "BALLOON@" ; species name
-	dw 303, 260 ; height, width
+	dw 303, 260 ; height, weight
 
 	db   "The rich, fluffy"
 	next "fur that covers"
--- a/data/pokedex/entries/041.asm
+++ b/data/pokedex/entries/041.asm
@@ -1,6 +1,6 @@
 ; ZubatPokedexEntry: ; 0x18275d
 	db "BAT@" ; species name
-	dw 207, 170 ; height, width
+	dw 207, 170 ; height, weight
 
 	db   "During the day, it"
 	next "gathers with"
--- a/data/pokedex/entries/042.asm
+++ b/data/pokedex/entries/042.asm
@@ -1,6 +1,6 @@
 ; GolbatPokedexEntry: ; 0x1827c4
 	db "BAT@" ; species name
-	dw 503, 1210 ; height, width
+	dw 503, 1210 ; height, weight
 
 	db   "When it plunges"
 	next "its fangs into its"
--- a/data/pokedex/entries/043.asm
+++ b/data/pokedex/entries/043.asm
@@ -1,6 +1,6 @@
 ; OddishPokedexEntry: ; 0x182836
 	db "WEED@" ; species name
-	dw 108, 120 ; height, width
+	dw 108, 120 ; height, weight
 
 	db   "During the day, it"
 	next "stays in the cold"
--- a/data/pokedex/entries/044.asm
+++ b/data/pokedex/entries/044.asm
@@ -1,6 +1,6 @@
 ; GloomPokedexEntry: ; 0x1828a6
 	db "WEED@" ; species name
-	dw 207, 190 ; height, width
+	dw 207, 190 ; height, weight
 
 	db   "The smell from its"
 	next "drool-like syrup"
--- a/data/pokedex/entries/045.asm
+++ b/data/pokedex/entries/045.asm
@@ -1,6 +1,6 @@
 ; VileplumePokedexEntry: ; 0x182918
 	db "FLOWER@" ; species name
-	dw 311, 410 ; height, width
+	dw 311, 410 ; height, weight
 
 	db   "By shaking its big"
 	next "petals, it scat-"
--- a/data/pokedex/entries/046.asm
+++ b/data/pokedex/entries/046.asm
@@ -1,6 +1,6 @@
 ; ParasPokedexEntry: ; 0x18297f
 	db "MUSHROOM@" ; species name
-	dw 100, 120 ; height, width
+	dw 100, 120 ; height, weight
 
 	db   "The tochukaso"
 	next "growing on this"
--- a/data/pokedex/entries/047.asm
+++ b/data/pokedex/entries/047.asm
@@ -1,6 +1,6 @@
 ; ParasectPokedexEntry: ; 0x1829e2
 	db "MUSHROOM@" ; species name
-	dw 303, 650 ; height, width
+	dw 303, 650 ; height, weight
 
 	db   "When nothing's"
 	next "left to extract"
--- a/data/pokedex/entries/048.asm
+++ b/data/pokedex/entries/048.asm
@@ -1,6 +1,6 @@
 ; VenonatPokedexEntry: ; 0x182a53
 	db "INSECT@" ; species name
-	dw 303, 660 ; height, width
+	dw 303, 660 ; height, weight
 
 	db   "The small bugs it"
 	next "eats appear only"
--- a/data/pokedex/entries/049.asm
+++ b/data/pokedex/entries/049.asm
@@ -1,6 +1,6 @@
 ; VenomothPokedexEntry: ; 0x182abf
 	db "POISONMOTH@" ; species name
-	dw 411, 280 ; height, width
+	dw 411, 280 ; height, weight
 
 	db   "The scales it"
 	next "scatters will"
--- a/data/pokedex/entries/050.asm
+++ b/data/pokedex/entries/050.asm
@@ -1,6 +1,6 @@
 ; DiglettPokedexEntry: ; 0x182b30
 	db "MOLE@" ; species name
-	dw 8, 20 ; height, width
+	dw 8, 20 ; height, weight
 
 	db   "It digs under-"
 	next "ground and chews"
--- a/data/pokedex/entries/051.asm
+++ b/data/pokedex/entries/051.asm
@@ -1,6 +1,6 @@
 ; DugtrioPokedexEntry: ; 0x182b9d
 	db "MOLE@" ; species name
-	dw 204, 730 ; height, width
+	dw 204, 730 ; height, weight
 
 	db   "These DIGLETT"
 	next "triplets dig over"
--- a/data/pokedex/entries/052.asm
+++ b/data/pokedex/entries/052.asm
@@ -1,6 +1,6 @@
 ; MeowthPokedexEntry: ; 0x182c08
 	db "SCRATCHCAT@" ; species name
-	dw 104, 90 ; height, width
+	dw 104, 90 ; height, weight
 
 	db   "It loves things"
 	next "that sparkle. When"
--- a/data/pokedex/entries/053.asm
+++ b/data/pokedex/entries/053.asm
@@ -1,6 +1,6 @@
 ; PersianPokedexEntry: ; 0x182c78
 	db "CLASSY CAT@" ; species name
-	dw 303, 710 ; height, width
+	dw 303, 710 ; height, weight
 
 	db   "Behind its lithe,"
 	next "elegant appearance"
--- a/data/pokedex/entries/054.asm
+++ b/data/pokedex/entries/054.asm
@@ -1,6 +1,6 @@
 ; PsyduckPokedexEntry: ; 0x182cee
 	db "DUCK@" ; species name
-	dw 207, 430 ; height, width
+	dw 207, 430 ; height, weight
 
 	db   "The only time it"
 	next "can use its psy-"
--- a/data/pokedex/entries/055.asm
+++ b/data/pokedex/entries/055.asm
@@ -1,6 +1,6 @@
 ; GolduckPokedexEntry: ; 0x182d55
 	db "DUCK@" ; species name
-	dw 507, 1690 ; height, width
+	dw 507, 1690 ; height, weight
 
 	db   "It swims grace-"
 	next "fully along on the"
--- a/data/pokedex/entries/056.asm
+++ b/data/pokedex/entries/056.asm
@@ -1,6 +1,6 @@
 ; MankeyPokedexEntry: ; 0x182dbd
 	db "PIG MONKEY@" ; species name
-	dw 108, 620 ; height, width
+	dw 108, 620 ; height, weight
 
 	db   "It lives in groups"
 	next "in the treetops."
--- a/data/pokedex/entries/057.asm
+++ b/data/pokedex/entries/057.asm
@@ -1,6 +1,6 @@
 ; PrimeapePokedexEntry: ; 0x182e39
 	db "PIG MONKEY@" ; species name
-	dw 303, 710 ; height, width
+	dw 303, 710 ; height, weight
 
 	db   "It will beat up"
 	next "anyone who makes"
--- a/data/pokedex/entries/058.asm
+++ b/data/pokedex/entries/058.asm
@@ -1,6 +1,6 @@
 ; GrowlithePokedexEntry: ; 0x182eaa
 	db "PUPPY@" ; species name
-	dw 204, 420 ; height, width
+	dw 204, 420 ; height, weight
 
 	db   "It controls a big"
 	next "territory. If it"
--- a/data/pokedex/entries/059.asm
+++ b/data/pokedex/entries/059.asm
@@ -1,6 +1,6 @@
 ; ArcaninePokedexEntry: ; 0x182f1c
 	db "LEGENDARY@" ; species name
-	dw 603, 3420 ; height, width
+	dw 603, 3420 ; height, weight
 
 	db   "An ancient picture"
 	next "scroll shows that"
--- a/data/pokedex/entries/060.asm
+++ b/data/pokedex/entries/060.asm
@@ -1,6 +1,6 @@
 ; PoliwagPokedexEntry: ; 0x182f91
 	db "TADPOLE@" ; species name
-	dw 200, 270 ; height, width
+	dw 200, 270 ; height, weight
 
 	db   "The swirl on its"
 	next "belly is its"
--- a/data/pokedex/entries/061.asm
+++ b/data/pokedex/entries/061.asm
@@ -1,6 +1,6 @@
 ; PoliwhirlPokedexEntry: ; 0x182ffd
 	db "TADPOLE@" ; species name
-	dw 303, 440 ; height, width
+	dw 303, 440 ; height, weight
 
 	db   "Though it is"
 	next "skilled at walk-"
--- a/data/pokedex/entries/062.asm
+++ b/data/pokedex/entries/062.asm
@@ -1,6 +1,6 @@
 ; PoliwrathPokedexEntry: ; 0x183066
 	db "TADPOLE@" ; species name
-	dw 403, 1190 ; height, width
+	dw 403, 1190 ; height, weight
 
 	db   "It can use its"
 	next "well-developed"
--- a/data/pokedex/entries/063.asm
+++ b/data/pokedex/entries/063.asm
@@ -1,6 +1,6 @@
 ; AbraPokedexEntry: ; 0x1830d5
 	db "PSI@" ; species name
-	dw 211, 430 ; height, width
+	dw 211, 430 ; height, weight
 
 	db   "It hypnotizes"
 	next "itself so that it"
--- a/data/pokedex/entries/064.asm
+++ b/data/pokedex/entries/064.asm
@@ -1,6 +1,6 @@
 ; KadabraPokedexEntry: ; 0x18313c
 	db "PSI@" ; species name
-	dw 403, 1250 ; height, width
+	dw 403, 1250 ; height, weight
 
 	db   "When it closes its"
 	next "eyes, twice as"
--- a/data/pokedex/entries/065.asm
+++ b/data/pokedex/entries/065.asm
@@ -1,6 +1,6 @@
 ; AlakazamPokedexEntry: ; 0x1b8000
 	db "PSI@" ; species name
-	dw 411, 1060 ; height, width
+	dw 411, 1060 ; height, weight
 
 	db   "It has an IQ of"
 	next "5000. It calcu-"
--- a/data/pokedex/entries/066.asm
+++ b/data/pokedex/entries/066.asm
@@ -1,6 +1,6 @@
 ; MachopPokedexEntry: ; 0x1b8065
 	db "SUPERPOWER@" ; species name
-	dw 207, 430 ; height, width
+	dw 207, 430 ; height, weight
 
 	db   "It trains by"
 	next "lifting rocks in"
--- a/data/pokedex/entries/067.asm
+++ b/data/pokedex/entries/067.asm
@@ -1,6 +1,6 @@
 ; MachokePokedexEntry: ; 0x1b80cb
 	db "SUPERPOWER@" ; species name
-	dw 411, 1550 ; height, width
+	dw 411, 1550 ; height, weight
 
 	db   "This tough #MON"
 	next "always stays in"
--- a/data/pokedex/entries/068.asm
+++ b/data/pokedex/entries/068.asm
@@ -1,6 +1,6 @@
 ; MachampPokedexEntry: ; 0x1b8133
 	db "SUPERPOWER@" ; species name
-	dw 503, 2870 ; height, width
+	dw 503, 2870 ; height, weight
 
 	db   "With four arms"
 	next "that react more"
--- a/data/pokedex/entries/069.asm
+++ b/data/pokedex/entries/069.asm
@@ -1,6 +1,6 @@
 ; BellsproutPokedexEntry: ; 0x1b81a1
 	db "FLOWER@" ; species name
-	dw 204, 90 ; height, width
+	dw 204, 90 ; height, weight
 
 	db   "If it notices"
 	next "anything that"
--- a/data/pokedex/entries/070.asm
+++ b/data/pokedex/entries/070.asm
@@ -1,6 +1,6 @@
 ; WeepinbellPokedexEntry: ; 0x1b81fd
 	db "FLYCATCHER@" ; species name
-	dw 303, 140 ; height, width
+	dw 303, 140 ; height, weight
 
 	db   "When it's hungry,"
 	next "it swings its"
--- a/data/pokedex/entries/071.asm
+++ b/data/pokedex/entries/071.asm
@@ -1,6 +1,6 @@
 ; VictreebelPokedexEntry: ; 0x1b826e
 	db "FLYCATCHER@" ; species name
-	dw 507, 340 ; height, width
+	dw 507, 340 ; height, weight
 
 	db   "Once ingested into"
 	next "this #MON's"
--- a/data/pokedex/entries/072.asm
+++ b/data/pokedex/entries/072.asm
@@ -1,6 +1,6 @@
 ; TentacoolPokedexEntry: ; 0x1b82d1
 	db "JELLYFISH@" ; species name
-	dw 211, 1000 ; height, width
+	dw 211, 1000 ; height, weight
 
 	db   "As it floats along"
 	next "on the waves, it"
--- a/data/pokedex/entries/073.asm
+++ b/data/pokedex/entries/073.asm
@@ -1,6 +1,6 @@
 ; TentacruelPokedexEntry: ; 0x1b8337
 	db "JELLYFISH@" ; species name
-	dw 503, 1210 ; height, width
+	dw 503, 1210 ; height, weight
 
 	db   "When its 80 feel-"
 	next "ers absorb water,"
--- a/data/pokedex/entries/074.asm
+++ b/data/pokedex/entries/074.asm
@@ -1,6 +1,6 @@
 ; GeodudePokedexEntry: ; 0x1b83a1
 	db "ROCK@" ; species name
-	dw 104, 440 ; height, width
+	dw 104, 440 ; height, weight
 
 	db   "Proud of their"
 	next "sturdy bodies,"
--- a/data/pokedex/entries/075.asm
+++ b/data/pokedex/entries/075.asm
@@ -1,6 +1,6 @@
 ; GravelerPokedexEntry: ; 0x1b840c
 	db "ROCK@" ; species name
-	dw 303, 2320 ; height, width
+	dw 303, 2320 ; height, weight
 
 	db   "It travels by rol-"
 	next "ling on mountain"
--- a/data/pokedex/entries/076.asm
+++ b/data/pokedex/entries/076.asm
@@ -1,6 +1,6 @@
 ; GolemPokedexEntry: ; 0x1b8481
 	db "MEGATON@" ; species name
-	dw 407, 6620 ; height, width
+	dw 407, 6620 ; height, weight
 
 	db   "Its rock-like body"
 	next "is so durable,"
--- a/data/pokedex/entries/077.asm
+++ b/data/pokedex/entries/077.asm
@@ -1,6 +1,6 @@
 ; PonytaPokedexEntry: ; 0x1b84f2
 	db "FIRE HORSE@" ; species name
-	dw 303, 660 ; height, width
+	dw 303, 660 ; height, weight
 
 	db   "Training by"
 	next "jumping over grass"
--- a/data/pokedex/entries/078.asm
+++ b/data/pokedex/entries/078.asm
@@ -1,6 +1,6 @@
 ; RapidashPokedexEntry: ; 0x1b855e
 	db "FIRE HORSE@" ; species name
-	dw 507, 2090 ; height, width
+	dw 507, 2090 ; height, weight
 
 	db   "It just loves to"
 	next "gallop. The faster"
--- a/data/pokedex/entries/079.asm
+++ b/data/pokedex/entries/079.asm
@@ -1,6 +1,6 @@
 ; SlowpokePokedexEntry: ; 0x1b85d3
 	db "DOPEY@" ; species name
-	dw 311, 790 ; height, width
+	dw 311, 790 ; height, weight
 
 	db   "It is always so"
 	next "absent-minded that"
--- a/data/pokedex/entries/080.asm
+++ b/data/pokedex/entries/080.asm
@@ -1,6 +1,6 @@
 ; SlowbroPokedexEntry: ; 0x1b8635
 	db "HERMITCRAB@" ; species name
-	dw 503, 1730 ; height, width
+	dw 503, 1730 ; height, weight
 
 	db   "An attached"
 	next "SHELLDER won't let"
--- a/data/pokedex/entries/081.asm
+++ b/data/pokedex/entries/081.asm
@@ -1,6 +1,6 @@
 ; MagnemitePokedexEntry: ; 0x1b869d
 	db "MAGNET@" ; species name
-	dw 100, 130 ; height, width
+	dw 100, 130 ; height, weight
 
 	db   "The electricity"
 	next "emitted by the"
--- a/data/pokedex/entries/082.asm
+++ b/data/pokedex/entries/082.asm
@@ -1,6 +1,6 @@
 ; MagnetonPokedexEntry: ; 0x1b870a
 	db "MAGNET@" ; species name
-	dw 303, 1320 ; height, width
+	dw 303, 1320 ; height, weight
 
 	db   "When many"
 	next "MAGNETON gather"
--- a/data/pokedex/entries/083.asm
+++ b/data/pokedex/entries/083.asm
@@ -1,6 +1,6 @@
 ; FarfetchDPokedexEntry: ; 0x1b876c
 	db "WILD DUCK@" ; species name
-	dw 207, 330 ; height, width
+	dw 207, 330 ; height, weight
 
 	db   "In order to pre-"
 	next "vent their"
--- a/data/pokedex/entries/084.asm
+++ b/data/pokedex/entries/084.asm
@@ -1,6 +1,6 @@
 ; DoduoPokedexEntry: ; 0x1b87d7
 	db "TWIN BIRD@" ; species name
-	dw 407, 860 ; height, width
+	dw 407, 860 ; height, weight
 
 	db   "It lives on a"
 	next "grassy plain where"
--- a/data/pokedex/entries/085.asm
+++ b/data/pokedex/entries/085.asm
@@ -1,6 +1,6 @@
 ; DodrioPokedexEntry: ; 0x1b884a
 	db "TRIPLEBIRD@" ; species name
-	dw 511, 1880 ; height, width
+	dw 511, 1880 ; height, weight
 
 	db   "An enemy that"
 	next "takes its eyes off"
--- a/data/pokedex/entries/086.asm
+++ b/data/pokedex/entries/086.asm
@@ -1,6 +1,6 @@
 ; SeelPokedexEntry: ; 0x1b88bf
 	db "SEA LION@" ; species name
-	dw 307, 1980 ; height, width
+	dw 307, 1980 ; height, weight
 
 	db   "The light blue fur"
 	next "that covers it"
--- a/data/pokedex/entries/087.asm
+++ b/data/pokedex/entries/087.asm
@@ -1,6 +1,6 @@
 ; DewgongPokedexEntry: ; 0x1b8934
 	db "SEA LION@" ; species name
-	dw 507, 2650 ; height, width
+	dw 507, 2650 ; height, weight
 
 	db   "It sleeps under"
 	next "shallow ocean"
--- a/data/pokedex/entries/088.asm
+++ b/data/pokedex/entries/088.asm
@@ -1,6 +1,6 @@
 ; GrimerPokedexEntry: ; 0x1b89a2
 	db "SLUDGE@" ; species name
-	dw 211, 660 ; height, width
+	dw 211, 660 ; height, weight
 
 	db   "When two of these"
 	next "#MON's bodies"
--- a/data/pokedex/entries/089.asm
+++ b/data/pokedex/entries/089.asm
@@ -1,6 +1,6 @@
 ; MukPokedexEntry: ; 0x1b89fc
 	db "SLUDGE@" ; species name
-	dw 311, 660 ; height, width
+	dw 311, 660 ; height, weight
 
 	db   "As it moves, a"
 	next "very strong poison"
--- a/data/pokedex/entries/090.asm
+++ b/data/pokedex/entries/090.asm
@@ -1,6 +1,6 @@
 ; ShellderPokedexEntry: ; 0x1b8a68
 	db "BIVALVE@" ; species name
-	dw 100, 90 ; height, width
+	dw 100, 90 ; height, weight
 
 	db   "Clamping on to an"
 	next "opponent reveals"
--- a/data/pokedex/entries/091.asm
+++ b/data/pokedex/entries/091.asm
@@ -1,6 +1,6 @@
 ; CloysterPokedexEntry: ; 0x1b8ad9
 	db "BIVALVE@" ; species name
-	dw 411, 2920 ; height, width
+	dw 411, 2920 ; height, weight
 
 	db   "Even a missile"
 	next "can't break the"
--- a/data/pokedex/entries/092.asm
+++ b/data/pokedex/entries/092.asm
@@ -1,6 +1,6 @@
 ; GastlyPokedexEntry: ; 0x1b8b4a
 	db "GAS@" ; species name
-	dw 403, 2 ; height, width
+	dw 403, 2 ; height, weight
 
 	db   "It wraps its op-"
 	next "ponent in its gas-"
--- a/data/pokedex/entries/093.asm
+++ b/data/pokedex/entries/093.asm
@@ -1,6 +1,6 @@
 ; HaunterPokedexEntry: ; 0x1b8bbd
 	db "GAS@" ; species name
-	dw 503, 2 ; height, width
+	dw 503, 2 ; height, weight
 
 	db   "It hides in the"
 	next "dark, planning to"
--- a/data/pokedex/entries/094.asm
+++ b/data/pokedex/entries/094.asm
@@ -1,6 +1,6 @@
 ; GengarPokedexEntry: ; 0x1b8c25
 	db "SHADOW@" ; species name
-	dw 411, 890 ; height, width
+	dw 411, 890 ; height, weight
 
 	db   "Hiding in people's"
 	next "shadows at night,"
--- a/data/pokedex/entries/095.asm
+++ b/data/pokedex/entries/095.asm
@@ -1,6 +1,6 @@
 ; OnixPokedexEntry: ; 0x1b8c98
 	db "ROCK SNAKE@" ; species name
-	dw 2810, 4630 ; height, width
+	dw 2810, 4630 ; height, weight
 
 	db   "As it digs through"
 	next "the ground, it"
--- a/data/pokedex/entries/096.asm
+++ b/data/pokedex/entries/096.asm
@@ -1,6 +1,6 @@
 ; DrowzeePokedexEntry: ; 0x1b8d0a
 	db "HYPNOSIS@" ; species name
-	dw 303, 710 ; height, width
+	dw 303, 710 ; height, weight
 
 	db   "When it twitches"
 	next "its nose, it can"
--- a/data/pokedex/entries/097.asm
+++ b/data/pokedex/entries/097.asm
@@ -1,6 +1,6 @@
 ; HypnoPokedexEntry: ; 0x1b8d80
 	db "HYPNOSIS@" ; species name
-	dw 503, 1670 ; height, width
+	dw 503, 1670 ; height, weight
 
 	db   "The longer it"
 	next "swings its"
--- a/data/pokedex/entries/098.asm
+++ b/data/pokedex/entries/098.asm
@@ -1,6 +1,6 @@
 ; KrabbyPokedexEntry: ; 0x1b8ddd
 	db "RIVER CRAB@" ; species name
-	dw 104, 140 ; height, width
+	dw 104, 140 ; height, weight
 
 	db   "If it is unable"
 	next "to find food, it"
--- a/data/pokedex/entries/099.asm
+++ b/data/pokedex/entries/099.asm
@@ -1,6 +1,6 @@
 ; KinglerPokedexEntry: ; 0x1b8e45
 	db "PINCER@" ; species name
-	dw 403, 1320 ; height, width
+	dw 403, 1320 ; height, weight
 
 	db   "Its oversized claw"
 	next "is very powerful,"
--- a/data/pokedex/entries/100.asm
+++ b/data/pokedex/entries/100.asm
@@ -1,6 +1,6 @@
 ; VoltorbPokedexEntry: ; 0x1b8eb0
 	db "BALL@" ; species name
-	dw 108, 230 ; height, width
+	dw 108, 230 ; height, weight
 
 	db   "During the study"
 	next "of this #MON,"
--- a/data/pokedex/entries/101.asm
+++ b/data/pokedex/entries/101.asm
@@ -1,6 +1,6 @@
 ; ElectrodePokedexEntry: ; 0x1b8f19
 	db "BALL@" ; species name
-	dw 311, 1470 ; height, width
+	dw 311, 1470 ; height, weight
 
 	db   "The more energy it"
 	next "charges up, the"
--- a/data/pokedex/entries/102.asm
+++ b/data/pokedex/entries/102.asm
@@ -1,6 +1,6 @@
 ; ExeggcutePokedexEntry: ; 0x1b8f84
 	db "EGG@" ; species name
-	dw 104, 60 ; height, width
+	dw 104, 60 ; height, weight
 
 	db   "If even one is"
 	next "separated from the"
--- a/data/pokedex/entries/103.asm
+++ b/data/pokedex/entries/103.asm
@@ -1,6 +1,6 @@
 ; ExeggutorPokedexEntry: ; 0x1b8ff6
 	db "COCONUT@" ; species name
-	dw 607, 2650 ; height, width
+	dw 607, 2650 ; height, weight
 
 	db   "Living in a good"
 	next "environment makes"
--- a/data/pokedex/entries/104.asm
+++ b/data/pokedex/entries/104.asm
@@ -1,6 +1,6 @@
 ; CubonePokedexEntry: ; 0x1b9068
 	db "LONELY@" ; species name
-	dw 104, 140 ; height, width
+	dw 104, 140 ; height, weight
 
 	db   "It lost its mother"
 	next "after its birth."
--- a/data/pokedex/entries/105.asm
+++ b/data/pokedex/entries/105.asm
@@ -1,6 +1,6 @@
 ; MarowakPokedexEntry: ; 0x1b90d2
 	db "BONEKEEPER@" ; species name
-	dw 303, 990 ; height, width
+	dw 303, 990 ; height, weight
 
 	db   "Somewhere in the"
 	next "world is a ceme-"
--- a/data/pokedex/entries/106.asm
+++ b/data/pokedex/entries/106.asm
@@ -1,6 +1,6 @@
 ; HitmonleePokedexEntry: ; 0x1b913f
 	db "KICKING@" ; species name
-	dw 411, 1100 ; height, width
+	dw 411, 1100 ; height, weight
 
 	db   "It is also called"
 	next "the Kick Master."
--- a/data/pokedex/entries/107.asm
+++ b/data/pokedex/entries/107.asm
@@ -1,6 +1,6 @@
 ; HitmonchanPokedexEntry: ; 0x1b91a4
 	db "PUNCHING@" ; species name
-	dw 407, 1110 ; height, width
+	dw 407, 1110 ; height, weight
 
 	db   "To increase the"
 	next "strength of all"
--- a/data/pokedex/entries/108.asm
+++ b/data/pokedex/entries/108.asm
@@ -1,6 +1,6 @@
 ; LickitungPokedexEntry: ; 0x1b9210
 	db "LICKING@" ; species name
-	dw 311, 1440 ; height, width
+	dw 311, 1440 ; height, weight
 
 	db   "It has a tongue"
 	next "that is over 6'6''"
--- a/data/pokedex/entries/109.asm
+++ b/data/pokedex/entries/109.asm
@@ -1,6 +1,6 @@
 ; KoffingPokedexEntry: ; 0x1b9276
 	db "POISON GAS@" ; species name
-	dw 200, 20 ; height, width
+	dw 200, 20 ; height, weight
 
 	db   "If one gets close"
 	next "enough to it when"
--- a/data/pokedex/entries/110.asm
+++ b/data/pokedex/entries/110.asm
@@ -1,6 +1,6 @@
 ; WeezingPokedexEntry: ; 0x1b92ec
 	db "POISON GAS@" ; species name
-	dw 311, 210 ; height, width
+	dw 311, 210 ; height, weight
 
 	db   "When it inhales"
 	next "poisonous gases"
--- a/data/pokedex/entries/111.asm
+++ b/data/pokedex/entries/111.asm
@@ -1,6 +1,6 @@
 ; RhyhornPokedexEntry: ; 0x1b935d
 	db "SPIKES@" ; species name
-	dw 303, 2540 ; height, width
+	dw 303, 2540 ; height, weight
 
 	db   "It can remember"
 	next "only one thing at"
--- a/data/pokedex/entries/112.asm
+++ b/data/pokedex/entries/112.asm
@@ -1,6 +1,6 @@
 ; RhydonPokedexEntry: ; 0x1b93c5
 	db "DRILL@" ; species name
-	dw 603, 2650 ; height, width
+	dw 603, 2650 ; height, weight
 
 	db   "By lightly spin-"
 	next "ning its drill-"
--- a/data/pokedex/entries/113.asm
+++ b/data/pokedex/entries/113.asm
@@ -1,6 +1,6 @@
 ; ChanseyPokedexEntry: ; 0x1b942e
 	db "EGG@" ; species name
-	dw 307, 760 ; height, width
+	dw 307, 760 ; height, weight
 
 	db   "People try to"
 	next "catch it for its"
--- a/data/pokedex/entries/114.asm
+++ b/data/pokedex/entries/114.asm
@@ -1,6 +1,6 @@
 ; TangelaPokedexEntry: ; 0x1b948c
 	db "VINE@" ; species name
-	dw 303, 770 ; height, width
+	dw 303, 770 ; height, weight
 
 	db   "During battle, it"
 	next "constantly moves"
--- a/data/pokedex/entries/115.asm
+++ b/data/pokedex/entries/115.asm
@@ -1,6 +1,6 @@
 ; KangaskhanPokedexEntry: ; 0x1b94f6
 	db "PARENT@" ; species name
-	dw 703, 1760 ; height, width
+	dw 703, 1760 ; height, weight
 
 	db   "To avoid"
 	next "crushing the"
--- a/data/pokedex/entries/116.asm
+++ b/data/pokedex/entries/116.asm
@@ -1,6 +1,6 @@
 ; HorseaPokedexEntry: ; 0x1b9553
 	db "DRAGON@" ; species name
-	dw 104, 180 ; height, width
+	dw 104, 180 ; height, weight
 
 	db   "When they're in a"
 	next "safe location,"
--- a/data/pokedex/entries/117.asm
+++ b/data/pokedex/entries/117.asm
@@ -1,6 +1,6 @@
 ; SeadraPokedexEntry: ; 0x1b95b8
 	db "DRAGON@" ; species name
-	dw 311, 550 ; height, width
+	dw 311, 550 ; height, weight
 
 	db   "The male raises"
 	next "the young. If it"
--- a/data/pokedex/entries/118.asm
+++ b/data/pokedex/entries/118.asm
@@ -1,6 +1,6 @@
 ; GoldeenPokedexEntry: ; 0x1b9626
 	db "GOLDFISH@" ; species name
-	dw 200, 330 ; height, width
+	dw 200, 330 ; height, weight
 
 	db   "During spawning"
 	next "season, they swim"
--- a/data/pokedex/entries/119.asm
+++ b/data/pokedex/entries/119.asm
@@ -1,6 +1,6 @@
 ; SeakingPokedexEntry: ; 0x1b9690
 	db "GOLDFISH@" ; species name
-	dw 403, 860 ; height, width
+	dw 403, 860 ; height, weight
 
 	db   "When autumn comes,"
 	next "the males patrol"
--- a/data/pokedex/entries/120.asm
+++ b/data/pokedex/entries/120.asm
@@ -1,6 +1,6 @@
 ; StaryuPokedexEntry: ; 0x1b9702
 	db "STARSHAPE@" ; species name
-	dw 207, 760 ; height, width
+	dw 207, 760 ; height, weight
 
 	db   "When the stars"
 	next "twinkle at night,"
--- a/data/pokedex/entries/121.asm
+++ b/data/pokedex/entries/121.asm
@@ -1,6 +1,6 @@
 ; StarmiePokedexEntry: ; 0x1b9776
 	db "MYSTERIOUS@" ; species name
-	dw 307, 1760 ; height, width
+	dw 307, 1760 ; height, weight
 
 	db   "It is said that it"
 	next "uses the seven-"
--- a/data/pokedex/entries/122.asm
+++ b/data/pokedex/entries/122.asm
@@ -1,6 +1,6 @@
 ; MrMimePokedexEntry: ; 0x1b97ea
 	db "BARRIER@" ; species name
-	dw 403, 1200 ; height, width
+	dw 403, 1200 ; height, weight
 
 	db   "It uses the"
 	next "mysterious"
--- a/data/pokedex/entries/123.asm
+++ b/data/pokedex/entries/123.asm
@@ -1,6 +1,6 @@
 ; ScytherPokedexEntry: ; 0x1b9851
 	db "MANTIS@" ; species name
-	dw 411, 1230 ; height, width
+	dw 411, 1230 ; height, weight
 
 	db   "It's very proud of"
 	next "its speed. It"
--- a/data/pokedex/entries/124.asm
+++ b/data/pokedex/entries/124.asm
@@ -1,6 +1,6 @@
 ; JynxPokedexEntry: ; 0x1b98c5
 	db "HUMANSHAPE@" ; species name
-	dw 407, 900 ; height, width
+	dw 407, 900 ; height, weight
 
 	db   "It has several"
 	next "different cry pat-"
--- a/data/pokedex/entries/125.asm
+++ b/data/pokedex/entries/125.asm
@@ -1,6 +1,6 @@
 ; ElectabuzzPokedexEntry: ; 0x1b992a
 	db "ELECTRIC@" ; species name
-	dw 307, 660 ; height, width
+	dw 307, 660 ; height, weight
 
 	db   "When two"
 	next "ELECTABUZZ touch,"
--- a/data/pokedex/entries/126.asm
+++ b/data/pokedex/entries/126.asm
@@ -1,6 +1,6 @@
 ; MagmarPokedexEntry: ; 0x1b9994
 	db "SPITFIRE@" ; species name
-	dw 403, 980 ; height, width
+	dw 403, 980 ; height, weight
 
 	db   "It moves more"
 	next "frequently in hot"
--- a/data/pokedex/entries/127.asm
+++ b/data/pokedex/entries/127.asm
@@ -1,6 +1,6 @@
 ; PinsirPokedexEntry: ; 0x1b99fb
 	db "STAGBEETLE@" ; species name
-	dw 411, 1210 ; height, width
+	dw 411, 1210 ; height, weight
 
 	db   "When the tempera-"
 	next "ture drops at"
--- a/data/pokedex/entries/128.asm
+++ b/data/pokedex/entries/128.asm
@@ -1,6 +1,6 @@
 ; TaurosPokedexEntry: ; 0x1b9a6f
 	db "WILD BULL@" ; species name
-	dw 407, 1950 ; height, width
+	dw 407, 1950 ; height, weight
 
 	db   "These violent"
 	next "#MON fight"
--- a/data/pokedex/entries/129.asm
+++ b/data/pokedex/entries/129.asm
@@ -1,6 +1,6 @@
 ; MagikarpPokedexEntry: ; 0x1cc000
 	db "FISH@" ; species name
-	dw 211, 220 ; height, width
+	dw 211, 220 ; height, weight
 
 	db   "This weak and"
 	next "pathetic #MON"
--- a/data/pokedex/entries/130.asm
+++ b/data/pokedex/entries/130.asm
@@ -1,6 +1,6 @@
 ; GyaradosPokedexEntry: ; 0x1cc065
 	db "ATROCIOUS@" ; species name
-	dw 2104, 5180 ; height, width
+	dw 2104, 5180 ; height, weight
 
 	db   "It appears when-"
 	next "ever there is"
--- a/data/pokedex/entries/131.asm
+++ b/data/pokedex/entries/131.asm
@@ -1,6 +1,6 @@
 ; LaprasPokedexEntry: ; 0x1cc0cd
 	db "TRANSPORT@" ; species name
-	dw 802, 4850 ; height, width
+	dw 802, 4850 ; height, weight
 
 	db   "This gentle"
 	next "#MON loves to"
--- a/data/pokedex/entries/132.asm
+++ b/data/pokedex/entries/132.asm
@@ -1,6 +1,6 @@
 ; DittoPokedexEntry: ; 0x1cc13c
 	db "TRANSFORM@" ; species name
-	dw 100, 90 ; height, width
+	dw 100, 90 ; height, weight
 
 	db   "When it encount-"
 	next "ers another DITTO,"
--- a/data/pokedex/entries/133.asm
+++ b/data/pokedex/entries/133.asm
@@ -1,6 +1,6 @@
 ; EeveePokedexEntry: ; 0x1cc1b2
 	db "EVOLUTION@" ; species name
-	dw 100, 140 ; height, width
+	dw 100, 140 ; height, weight
 
 	db   "Its ability to"
 	next "evolve into many"
--- a/data/pokedex/entries/134.asm
+++ b/data/pokedex/entries/134.asm
@@ -1,6 +1,6 @@
 ; VaporeonPokedexEntry: ; 0x1cc224
 	db "BUBBLE JET@" ; species name
-	dw 303, 640 ; height, width
+	dw 303, 640 ; height, weight
 
 	db   "As it uses the"
 	next "fins on the tip"
--- a/data/pokedex/entries/135.asm
+++ b/data/pokedex/entries/135.asm
@@ -1,6 +1,6 @@
 ; JolteonPokedexEntry: ; 0x1cc28b
 	db "LIGHTNING@" ; species name
-	dw 207, 540 ; height, width
+	dw 207, 540 ; height, weight
 
 	db   "The negatively"
 	next "charged ions"
--- a/data/pokedex/entries/136.asm
+++ b/data/pokedex/entries/136.asm
@@ -1,6 +1,6 @@
 ; FlareonPokedexEntry: ; 0x1cc2ec
 	db "FLAME@" ; species name
-	dw 211, 550 ; height, width
+	dw 211, 550 ; height, weight
 
 	db   "Once it has stored"
 	next "up enough heat,"
--- a/data/pokedex/entries/137.asm
+++ b/data/pokedex/entries/137.asm
@@ -1,6 +1,6 @@
 ; PorygonPokedexEntry: ; 0x1cc353
 	db "VIRTUAL@" ; species name
-	dw 207, 800 ; height, width
+	dw 207, 800 ; height, weight
 
 	db   "An artificial"
 	next "#MON created"
--- a/data/pokedex/entries/138.asm
+++ b/data/pokedex/entries/138.asm
@@ -1,6 +1,6 @@
 ; OmanytePokedexEntry: ; 0x1cc3c1
 	db "SPIRAL@" ; species name
-	dw 104, 170 ; height, width
+	dw 104, 170 ; height, weight
 
 	db   "In prehistoric"
 	next "times, it swam on"
--- a/data/pokedex/entries/139.asm
+++ b/data/pokedex/entries/139.asm
@@ -1,6 +1,6 @@
 ; OmastarPokedexEntry: ; 0x1cc42e
 	db "SPIRAL@" ; species name
-	dw 303, 770 ; height, width
+	dw 303, 770 ; height, weight
 
 	db   "Its heavy shell"
 	next "allowed it to"
--- a/data/pokedex/entries/140.asm
+++ b/data/pokedex/entries/140.asm
@@ -1,6 +1,6 @@
 ; KabutoPokedexEntry: ; 0x1cc497
 	db "SHELLFISH@" ; species name
-	dw 108, 250 ; height, width
+	dw 108, 250 ; height, weight
 
 	db   "Three hundred"
 	next "million years ago,"
--- a/data/pokedex/entries/141.asm
+++ b/data/pokedex/entries/141.asm
@@ -1,6 +1,6 @@
 ; KabutopsPokedexEntry: ; 0x1cc507
 	db "SHELLFISH@" ; species name
-	dw 403, 890 ; height, width
+	dw 403, 890 ; height, weight
 
 	db   "It was able to"
 	next "swim quickly thro-"
--- a/data/pokedex/entries/142.asm
+++ b/data/pokedex/entries/142.asm
@@ -1,6 +1,6 @@
 ; AerodactylPokedexEntry: ; 0x1cc576
 	db "FOSSIL@" ; species name
-	dw 511, 1300 ; height, width
+	dw 511, 1300 ; height, weight
 
 	db   "In prehistoric"
 	next "times, this"
--- a/data/pokedex/entries/143.asm
+++ b/data/pokedex/entries/143.asm
@@ -1,6 +1,6 @@
 ; SnorlaxPokedexEntry: ; 0x1cc5cf
 	db "SLEEPING@" ; species name
-	dw 611, 10140 ; height, width
+	dw 611, 10140 ; height, weight
 
 	db   "This #MON's"
 	next "stomach is so"
--- a/data/pokedex/entries/144.asm
+++ b/data/pokedex/entries/144.asm
@@ -1,6 +1,6 @@
 ; ArticunoPokedexEntry: ; 0x1cc632
 	db "FREEZE@" ; species name
-	dw 507, 1220 ; height, width
+	dw 507, 1220 ; height, weight
 
 	db   "Legendary bird"
 	next "#MON. As it"
--- a/data/pokedex/entries/145.asm
+++ b/data/pokedex/entries/145.asm
@@ -1,6 +1,6 @@
 ; ZapdosPokedexEntry: ; 0x1cc697
 	db "ELECTRIC@" ; species name
-	dw 503, 1160 ; height, width
+	dw 503, 1160 ; height, weight
 
 	db   "Legendary bird"
 	next "#MON. They say"
--- a/data/pokedex/entries/146.asm
+++ b/data/pokedex/entries/146.asm
@@ -1,6 +1,6 @@
 ; MoltresPokedexEntry: ; 0x1cc706
 	db "FLAME@" ; species name
-	dw 607, 1320 ; height, width
+	dw 607, 1320 ; height, weight
 
 	db   "Legendary bird"
 	next "#MON. It is"
--- a/data/pokedex/entries/147.asm
+++ b/data/pokedex/entries/147.asm
@@ -1,6 +1,6 @@
 ; DratiniPokedexEntry: ; 0x1cc761
 	db "DRAGON@" ; species name
-	dw 511, 70 ; height, width
+	dw 511, 70 ; height, weight
 
 	db   "It sheds many lay-"
 	next "ers of skin as it"
--- a/data/pokedex/entries/148.asm
+++ b/data/pokedex/entries/148.asm
@@ -1,6 +1,6 @@
 ; DragonairPokedexEntry: ; 0x1cc7dc
 	db "DRAGON@" ; species name
-	dw 1301, 360 ; height, width
+	dw 1301, 360 ; height, weight
 
 	db   "It is called the"
 	next "divine #MON."
--- a/data/pokedex/entries/149.asm
+++ b/data/pokedex/entries/149.asm
@@ -1,6 +1,6 @@
 ; DragonitePokedexEntry: ; 0x1cc843
 	db "DRAGON@" ; species name
-	dw 703, 4630 ; height, width
+	dw 703, 4630 ; height, weight
 
 	db   "It is said that"
 	next "somewhere in the"
--- a/data/pokedex/entries/150.asm
+++ b/data/pokedex/entries/150.asm
@@ -1,6 +1,6 @@
 ; MewtwoPokedexEntry: ; 0x1cc8ae
 	db "GENETIC@" ; species name
-	dw 607, 2690 ; height, width
+	dw 607, 2690 ; height, weight
 
 	db   "Said to rest qui-"
 	next "etly in an"
--- a/data/pokedex/entries/151.asm
+++ b/data/pokedex/entries/151.asm
@@ -1,6 +1,6 @@
 ; MewPokedexEntry: ; 0x1cc915
 	db "NEW SPECIE@" ; species name
-	dw 104, 90 ; height, width
+	dw 104, 90 ; height, weight
 
 	db   "Because it can"
 	next "learn any move,"
--- a/data/pokedex/entries/152.asm
+++ b/data/pokedex/entries/152.asm
@@ -1,6 +1,6 @@
 ; ChikoritaPokedexEntry: ; 0x1cc988
 	db "LEAF@" ; species name
-	dw 211, 140 ; height, width
+	dw 211, 140 ; height, weight
 
 	db   "It loves to bask"
 	next "in the sunlight."
--- a/data/pokedex/entries/153.asm
+++ b/data/pokedex/entries/153.asm
@@ -1,6 +1,6 @@
 ; BayleefPokedexEntry: ; 0x1cc9e9
 	db "LEAF@" ; species name
-	dw 311, 350 ; height, width
+	dw 311, 350 ; height, weight
 
 	db   "The scent that"
 	next "wafts from the"
--- a/data/pokedex/entries/154.asm
+++ b/data/pokedex/entries/154.asm
@@ -1,6 +1,6 @@
 ; MeganiumPokedexEntry: ; 0x1cca54
 	db "HERB@" ; species name
-	dw 511, 2220 ; height, width
+	dw 511, 2220 ; height, weight
 
 	db   "Anyone who stands"
 	next "beside it becomes"
--- a/data/pokedex/entries/155.asm
+++ b/data/pokedex/entries/155.asm
@@ -1,6 +1,6 @@
 ; CyndaquilPokedexEntry: ; 0x1ccabd
 	db "FIRE MOUSE@" ; species name
-	dw 108, 170 ; height, width
+	dw 108, 170 ; height, weight
 
 	db   "The fire that"
 	next "spouts from its"
--- a/data/pokedex/entries/156.asm
+++ b/data/pokedex/entries/156.asm
@@ -1,6 +1,6 @@
 ; QuilavaPokedexEntry: ; 0x1ccb33
 	db "VOLCANO@" ; species name
-	dw 211, 420 ; height, width
+	dw 211, 420 ; height, weight
 
 	db   "Before battle, it"
 	next "turns its back on"
--- a/data/pokedex/entries/157.asm
+++ b/data/pokedex/entries/157.asm
@@ -1,6 +1,6 @@
 ; TyphlosionPokedexEntry: ; 0x1ccba0
 	db "VOLCANO@" ; species name
-	dw 507, 1750 ; height, width
+	dw 507, 1750 ; height, weight
 
 	db   "When heat from its"
 	next "body causes the"
--- a/data/pokedex/entries/158.asm
+++ b/data/pokedex/entries/158.asm
@@ -1,6 +1,6 @@
 ; TotodilePokedexEntry: ; 0x1ccc14
 	db "BIG JAW@" ; species name
-	dw 200, 210 ; height, width
+	dw 200, 210 ; height, weight
 
 	db   "This rough critter"
 	next "chomps at any"
--- a/data/pokedex/entries/159.asm
+++ b/data/pokedex/entries/159.asm
@@ -1,6 +1,6 @@
 ; CroconawPokedexEntry: ; 0x1ccc84
 	db "BIG JAW@" ; species name
-	dw 307, 550 ; height, width
+	dw 307, 550 ; height, weight
 
 	db   "The tips of its"
 	next "fangs are slanted"
--- a/data/pokedex/entries/160.asm
+++ b/data/pokedex/entries/160.asm
@@ -1,6 +1,6 @@
 ; FeraligatrPokedexEntry: ; 0x1cccf9
 	db "BIG JAW@" ; species name
-	dw 707, 1960 ; height, width
+	dw 707, 1960 ; height, weight
 
 	db   "Although it has a"
 	next "massive body, its"
--- a/data/pokedex/entries/161.asm
+++ b/data/pokedex/entries/161.asm
@@ -1,6 +1,6 @@
 ; SentretPokedexEntry: ; 0x1ccd6b
 	db "SCOUT@" ; species name
-	dw 207, 130 ; height, width
+	dw 207, 130 ; height, weight
 
 	db   "When acting as a"
 	next "lookout, it warns"
--- a/data/pokedex/entries/162.asm
+++ b/data/pokedex/entries/162.asm
@@ -1,6 +1,6 @@
 ; FurretPokedexEntry: ; 0x1ccddd
 	db "LONG BODY@" ; species name
-	dw 511, 720 ; height, width
+	dw 511, 720 ; height, weight
 
 	db   "It lives in narrow"
 	next "burrows that fit"
--- a/data/pokedex/entries/163.asm
+++ b/data/pokedex/entries/163.asm
@@ -1,6 +1,6 @@
 ; HoothootPokedexEntry: ; 0x1cce58
 	db "OWL@" ; species name
-	dw 204, 470 ; height, width
+	dw 204, 470 ; height, weight
 
 	db   "It begins to hoot"
 	next "at the same time"
--- a/data/pokedex/entries/164.asm
+++ b/data/pokedex/entries/164.asm
@@ -1,6 +1,6 @@
 ; NoctowlPokedexEntry: ; 0x1cceb9
 	db "OWL@" ; species name
-	dw 503, 900 ; height, width
+	dw 503, 900 ; height, weight
 
 	db   "Its extremely soft"
 	next "feathers make no"
--- a/data/pokedex/entries/165.asm
+++ b/data/pokedex/entries/165.asm
@@ -1,6 +1,6 @@
 ; LedybaPokedexEntry: ; 0x1ccf2c
 	db "FIVE STAR@" ; species name
-	dw 303, 240 ; height, width
+	dw 303, 240 ; height, weight
 
 	db   "It is timid and"
 	next "clusters together"
--- a/data/pokedex/entries/166.asm
+++ b/data/pokedex/entries/166.asm
@@ -1,6 +1,6 @@
 ; LedianPokedexEntry: ; 0x1ccfa0
 	db "FIVE STAR@" ; species name
-	dw 407, 780 ; height, width
+	dw 407, 780 ; height, weight
 
 	db   "In the daytime"
 	next "when it gets warm,"
--- a/data/pokedex/entries/167.asm
+++ b/data/pokedex/entries/167.asm
@@ -1,6 +1,6 @@
 ; SpinarakPokedexEntry: ; 0x1cd012
 	db "STRINGSPIT@" ; species name
-	dw 108, 190 ; height, width
+	dw 108, 190 ; height, weight
 
 	db   "If prey becomes"
 	next "ensnared in its"
--- a/data/pokedex/entries/168.asm
+++ b/data/pokedex/entries/168.asm
@@ -1,6 +1,6 @@
 ; AriadosPokedexEntry: ; 0x1cd083
 	db "LONG LEG@" ; species name
-	dw 307, 740 ; height, width
+	dw 307, 740 ; height, weight
 
 	db   "Rather than mak-"
 	next "ing a nest in one"
--- a/data/pokedex/entries/169.asm
+++ b/data/pokedex/entries/169.asm
@@ -1,6 +1,6 @@
 ; CrobatPokedexEntry: ; 0x1cd0f5
 	db "BAT@" ; species name
-	dw 511, 1650 ; height, width
+	dw 511, 1650 ; height, weight
 
 	db   "As a result of its"
 	next "pursuit of faster,"
--- a/data/pokedex/entries/170.asm
+++ b/data/pokedex/entries/170.asm
@@ -1,6 +1,6 @@
 ; ChinchouPokedexEntry: ; 0x1cd165
 	db "ANGLER@" ; species name
-	dw 108, 260 ; height, width
+	dw 108, 260 ; height, weight
 
 	db   "Its antennae, whi-"
 	next "ch evolved from a"
--- a/data/pokedex/entries/171.asm
+++ b/data/pokedex/entries/171.asm
@@ -1,6 +1,6 @@
 ; LanturnPokedexEntry: ; 0x1cd1de
 	db "LIGHT@" ; species name
-	dw 311, 500 ; height, width
+	dw 311, 500 ; height, weight
 
 	db   "This #MON uses"
 	next "the bright part of"
--- a/data/pokedex/entries/172.asm
+++ b/data/pokedex/entries/172.asm
@@ -1,6 +1,6 @@
 ; PichuPokedexEntry: ; 0x1cd243
 	db "TINY MOUSE@" ; species name
-	dw 100, 40 ; height, width
+	dw 100, 40 ; height, weight
 
 	db   "It is unskilled at"
 	next "storing electric"
--- a/data/pokedex/entries/173.asm
+++ b/data/pokedex/entries/173.asm
@@ -1,6 +1,6 @@
 ; CleffaPokedexEntry: ; 0x1cd2bc
 	db "STARSHAPE@" ; species name
-	dw 100, 70 ; height, width
+	dw 100, 70 ; height, weight
 
 	db   "If the impact site"
 	next "of a meteorite is"
--- a/data/pokedex/entries/174.asm
+++ b/data/pokedex/entries/174.asm
@@ -1,6 +1,6 @@
 ; IgglybuffPokedexEntry: ; 0x1cd32c
 	db "BALLOON@" ; species name
-	dw 100, 20 ; height, width
+	dw 100, 20 ; height, weight
 
 	db   "Instead of walking"
 	next "with its short"
--- a/data/pokedex/entries/175.asm
+++ b/data/pokedex/entries/175.asm
@@ -1,6 +1,6 @@
 ; TogepiPokedexEntry: ; 0x1cd396
 	db "SPIKE BALL@" ; species name
-	dw 100, 30 ; height, width
+	dw 100, 30 ; height, weight
 
 	db   "It is considered"
 	next "to be a symbol of"
--- a/data/pokedex/entries/176.asm
+++ b/data/pokedex/entries/176.asm
@@ -1,6 +1,6 @@
 ; TogeticPokedexEntry: ; 0x1cd402
 	db "HAPPINESS@" ; species name
-	dw 200, 70 ; height, width
+	dw 200, 70 ; height, weight
 
 	db   "Although it does"
 	next "not flap its wings"
--- a/data/pokedex/entries/177.asm
+++ b/data/pokedex/entries/177.asm
@@ -1,6 +1,6 @@
 ; NatuPokedexEntry: ; 0x1cd47d
 	db "LITTLE BIRD@" ; species name
-	dw 8, 40 ; height, width
+	dw 8, 40 ; height, weight
 
 	db   "It is extremely"
 	next "good at climbing"
--- a/data/pokedex/entries/178.asm
+++ b/data/pokedex/entries/178.asm
@@ -1,6 +1,6 @@
 ; XatuPokedexEntry: ; 0x1cd4e9
 	db "MYSTIC@" ; species name
-	dw 411, 330 ; height, width
+	dw 411, 330 ; height, weight
 
 	db   "Once it begins to"
 	next "meditate at sun-"
--- a/data/pokedex/entries/179.asm
+++ b/data/pokedex/entries/179.asm
@@ -1,6 +1,6 @@
 ; MareepPokedexEntry: ; 0x1cd551
 	db "WOOL@" ; species name
-	dw 200, 170 ; height, width
+	dw 200, 170 ; height, weight
 
 	db   "It stores lots of"
 	next "air in its soft"
--- a/data/pokedex/entries/180.asm
+++ b/data/pokedex/entries/180.asm
@@ -1,6 +1,6 @@
 ; FlaaffyPokedexEntry: ; 0x1cd5b8
 	db "WOOL@" ; species name
-	dw 207, 290 ; height, width
+	dw 207, 290 ; height, weight
 
 	db   "Because of its"
 	next "rubbery, electric-"
--- a/data/pokedex/entries/181.asm
+++ b/data/pokedex/entries/181.asm
@@ -1,6 +1,6 @@
 ; AmpharosPokedexEntry: ; 0x1cd626
 	db "LIGHT@" ; species name
-	dw 407, 1360 ; height, width
+	dw 407, 1360 ; height, weight
 
 	db   "When it gets dark,"
 	next "the light from its"
--- a/data/pokedex/entries/182.asm
+++ b/data/pokedex/entries/182.asm
@@ -1,6 +1,6 @@
 ; BellossomPokedexEntry: ; 0x1cd69a
 	db "FLOWER@" ; species name
-	dw 104, 130 ; height, width
+	dw 104, 130 ; height, weight
 
 	db   "When these dance"
 	next "together, their"
--- a/data/pokedex/entries/183.asm
+++ b/data/pokedex/entries/183.asm
@@ -1,6 +1,6 @@
 ; MarillPokedexEntry: ; 0x1cd705
 	db "AQUAMOUSE@" ; species name
-	dw 104, 190 ; height, width
+	dw 104, 190 ; height, weight
 
 	db   "The fur on its"
 	next "body naturally"
--- a/data/pokedex/entries/184.asm
+++ b/data/pokedex/entries/184.asm
@@ -1,6 +1,6 @@
 ; AzumarillPokedexEntry: ; 0x1cd771
 	db "AQUARABBIT@" ; species name
-	dw 207, 630 ; height, width
+	dw 207, 630 ; height, weight
 
 	db   "The bubble-like"
 	next "pattern on its"
--- a/data/pokedex/entries/185.asm
+++ b/data/pokedex/entries/185.asm
@@ -1,6 +1,6 @@
 ; SudowoodoPokedexEntry: ; 0x1cd7d9
 	db "IMITATION@" ; species name
-	dw 311, 840 ; height, width
+	dw 311, 840 ; height, weight
 
 	db   "If a tree branch"
 	next "shakes when there"
--- a/data/pokedex/entries/186.asm
+++ b/data/pokedex/entries/186.asm
@@ -1,6 +1,6 @@
 ; PolitoedPokedexEntry: ; 0x1cd84b
 	db "FROG@" ; species name
-	dw 307, 750 ; height, width
+	dw 307, 750 ; height, weight
 
 	db   "When it expands"
 	next "its throat to"
--- a/data/pokedex/entries/187.asm
+++ b/data/pokedex/entries/187.asm
@@ -1,6 +1,6 @@
 ; HoppipPokedexEntry: ; 0x1cd8b5
 	db "COTTONWEED@" ; species name
-	dw 104, 10 ; height, width
+	dw 104, 10 ; height, weight
 
 	db   "It can be carried"
 	next "away on even the"
--- a/data/pokedex/entries/188.asm
+++ b/data/pokedex/entries/188.asm
@@ -1,6 +1,6 @@
 ; SkiploomPokedexEntry: ; 0x1cd928
 	db "COTTONWEED@" ; species name
-	dw 200, 20 ; height, width
+	dw 200, 20 ; height, weight
 
 	db   "As soon as it"
 	next "rains, it closes"
--- a/data/pokedex/entries/189.asm
+++ b/data/pokedex/entries/189.asm
@@ -1,6 +1,6 @@
 ; JumpluffPokedexEntry: ; 0x1cd998
 	db "COTTONWEED@" ; species name
-	dw 207, 70 ; height, width
+	dw 207, 70 ; height, weight
 
 	db   "Even in the fierc-"
 	next "est wind, it can"
--- a/data/pokedex/entries/190.asm
+++ b/data/pokedex/entries/190.asm
@@ -1,6 +1,6 @@
 ; AipomPokedexEntry: ; 0x1cda11
 	db "LONG TAIL@" ; species name
-	dw 207, 250 ; height, width
+	dw 207, 250 ; height, weight
 
 	db   "It uses its tail"
 	next "to hang on to tree"
--- a/data/pokedex/entries/191.asm
+++ b/data/pokedex/entries/191.asm
@@ -1,6 +1,6 @@
 ; SunkernPokedexEntry: ; 0x1cda87
 	db "SEED@" ; species name
-	dw 100, 40 ; height, width
+	dw 100, 40 ; height, weight
 
 	db   "It is very weak."
 	next "Its only means of"
--- a/data/pokedex/entries/192.asm
+++ b/data/pokedex/entries/192.asm
@@ -1,6 +1,6 @@
 ; SunfloraPokedexEntry: ; 0x1cdaef
 	db "SUN@" ; species name
-	dw 207, 190 ; height, width
+	dw 207, 190 ; height, weight
 
 	db   "As the hot season"
 	next "approaches, the"
--- a/data/pokedex/entries/193.asm
+++ b/data/pokedex/entries/193.asm
@@ -1,6 +1,6 @@
 ; YanmaPokedexEntry: ; 0x1d0000
 	db "CLEAR WING@" ; species name
-	dw 311, 840 ; height, width
+	dw 311, 840 ; height, weight
 
 	db   "It can see in all"
 	next "directions without"
--- a/data/pokedex/entries/194.asm
+++ b/data/pokedex/entries/194.asm
@@ -1,6 +1,6 @@
 ; WooperPokedexEntry: ; 0x1d0078
 	db "WATER FISH@" ; species name
-	dw 104, 190 ; height, width
+	dw 104, 190 ; height, weight
 
 	db   "A mucous"
 	next "membrane covers"
--- a/data/pokedex/entries/195.asm
+++ b/data/pokedex/entries/195.asm
@@ -1,6 +1,6 @@
 ; QuagsirePokedexEntry: ; 0x1d00dd
 	db "WATER FISH@" ; species name
-	dw 407, 1650 ; height, width
+	dw 407, 1650 ; height, weight
 
 	db   "Its body is always"
 	next "slimy. It often"
--- a/data/pokedex/entries/196.asm
+++ b/data/pokedex/entries/196.asm
@@ -1,6 +1,6 @@
 ; EspeonPokedexEntry: ; 0x1d0155
 	db "SUN@" ; species name
-	dw 211, 580 ; height, width
+	dw 211, 580 ; height, weight
 
 	db   "The tip of its"
 	next "forked tail"
--- a/data/pokedex/entries/197.asm
+++ b/data/pokedex/entries/197.asm
@@ -1,6 +1,6 @@
 ; UmbreonPokedexEntry: ; 0x1d01af
 	db "MOONLIGHT@" ; species name
-	dw 303, 600 ; height, width
+	dw 303, 600 ; height, weight
 
 	db   "On the night of a"
 	next "full moon, or when"
--- a/data/pokedex/entries/198.asm
+++ b/data/pokedex/entries/198.asm
@@ -1,6 +1,6 @@
 ; MurkrowPokedexEntry: ; 0x1d021e
 	db "DARKNESS@" ; species name
-	dw 108, 50 ; height, width
+	dw 108, 50 ; height, weight
 
 	db   "It hides any shiny"
 	next "object it finds in"
--- a/data/pokedex/entries/199.asm
+++ b/data/pokedex/entries/199.asm
@@ -1,6 +1,6 @@
 ; SlowkingPokedexEntry: ; 0x1d0292
 	db "ROYAL@" ; species name
-	dw 607, 1750 ; height, width
+	dw 607, 1750 ; height, weight
 
 	db   "Every time it ya-"
 	next "wns, SHELLDER"
--- a/data/pokedex/entries/200.asm
+++ b/data/pokedex/entries/200.asm
@@ -1,6 +1,6 @@
 ; MisdreavusPokedexEntry: ; 0x1d0301
 	db "SCREECH@" ; species name
-	dw 204, 20 ; height, width
+	dw 204, 20 ; height, weight
 
 	db   "It loves to watch"
 	next "people it's scar-"
--- a/data/pokedex/entries/201.asm
+++ b/data/pokedex/entries/201.asm
@@ -1,6 +1,6 @@
 ; UnownPokedexEntry: ; 0x1d0373
 	db "SYMBOL@" ; species name
-	dw 108, 110 ; height, width
+	dw 108, 110 ; height, weight
 
 	db   "Because different"
 	next "types of UNOWN"
--- a/data/pokedex/entries/202.asm
+++ b/data/pokedex/entries/202.asm
@@ -1,6 +1,6 @@
 ; WobbuffetPokedexEntry: ; 0x1d03dd
 	db "PATIENT@" ; species name
-	dw 403, 630 ; height, width
+	dw 403, 630 ; height, weight
 
 	db   "In order to con-"
 	next "ceal its black"
--- a/data/pokedex/entries/203.asm
+++ b/data/pokedex/entries/203.asm
@@ -1,6 +1,6 @@
 ; GirafarigPokedexEntry: ; 0x1d0446
 	db "LONG NECK@" ; species name
-	dw 411, 910 ; height, width
+	dw 411, 910 ; height, weight
 
 	db   "When it is in"
 	next "danger, its tail"
--- a/data/pokedex/entries/204.asm
+++ b/data/pokedex/entries/204.asm
@@ -1,6 +1,6 @@
 ; PinecoPokedexEntry: ; 0x1d04b0
 	db "BAGWORM@" ; species name
-	dw 200, 160 ; height, width
+	dw 200, 160 ; height, weight
 
 	db   "It spits out a"
 	next "fluid that it uses"
--- a/data/pokedex/entries/205.asm
+++ b/data/pokedex/entries/205.asm
@@ -1,6 +1,6 @@
 ; ForretressPokedexEntry: ; 0x1d0524
 	db "BAGWORM@" ; species name
-	dw 311, 2770 ; height, width
+	dw 311, 2770 ; height, weight
 
 	db   "Usually found"
 	next "hanging on to a"
--- a/data/pokedex/entries/206.asm
+++ b/data/pokedex/entries/206.asm
@@ -1,6 +1,6 @@
 ; DunsparcePokedexEntry: ; 0x1d0593
 	db "LAND SNAKE@" ; species name
-	dw 411, 310 ; height, width
+	dw 411, 310 ; height, weight
 
 	db   "It hides deep"
 	next "inside caves where"
--- a/data/pokedex/entries/207.asm
+++ b/data/pokedex/entries/207.asm
@@ -1,6 +1,6 @@
 ; GligarPokedexEntry: ; 0x1d0604
 	db "FLYSCORPIO@" ; species name
-	dw 307, 1430 ; height, width
+	dw 307, 1430 ; height, weight
 
 	db   "It builds its nest"
 	next "on a steep cliff."
--- a/data/pokedex/entries/208.asm
+++ b/data/pokedex/entries/208.asm
@@ -1,6 +1,6 @@
 ; SteelixPokedexEntry: ; 0x1d067c
 	db "IRON SNAKE@" ; species name
-	dw 3002, 8820 ; height, width
+	dw 3002, 8820 ; height, weight
 
 	db   "The many small"
 	next "metal particles"
--- a/data/pokedex/entries/209.asm
+++ b/data/pokedex/entries/209.asm
@@ -1,6 +1,6 @@
 ; SnubbullPokedexEntry: ; 0x1d06e0
 	db "FAIRY@" ; species name
-	dw 200, 170 ; height, width
+	dw 200, 170 ; height, weight
 
 	db   "In truth, it is a"
 	next "cowardly #MON."
--- a/data/pokedex/entries/210.asm
+++ b/data/pokedex/entries/210.asm
@@ -1,6 +1,6 @@
 ; GranbullPokedexEntry: ; 0x1d074a
 	db "FAIRY@" ; species name
-	dw 407, 1070 ; height, width
+	dw 407, 1070 ; height, weight
 
 	db   "It can make most"
 	next "any #MON run"
--- a/data/pokedex/entries/211.asm
+++ b/data/pokedex/entries/211.asm
@@ -1,6 +1,6 @@
 ; QwilfishPokedexEntry: ; 0x1d07b1
 	db "BALLOON@" ; species name
-	dw 108, 90 ; height, width
+	dw 108, 90 ; height, weight
 
 	db   "When faced with a"
 	next "larger opponent,"
--- a/data/pokedex/entries/212.asm
+++ b/data/pokedex/entries/212.asm
@@ -1,6 +1,6 @@
 ; ScizorPokedexEntry: ; 0x1d0821
 	db "SCISSORS@" ; species name
-	dw 511, 2600 ; height, width
+	dw 511, 2600 ; height, weight
 
 	db   "This #MON's"
 	next "pincers, which"
--- a/data/pokedex/entries/213.asm
+++ b/data/pokedex/entries/213.asm
@@ -1,6 +1,6 @@
 ; ShucklePokedexEntry: ; 0x1d088e
 	db "MOLD@" ; species name
-	dw 200, 450 ; height, width
+	dw 200, 450 ; height, weight
 
 	db   "The fluid secreted"
 	next "by its toes carves"
--- a/data/pokedex/entries/214.asm
+++ b/data/pokedex/entries/214.asm
@@ -1,6 +1,6 @@
 ; HeracrossPokedexEntry: ; 0x1d0907
 	db "SINGLEHORN@" ; species name
-	dw 411, 1190 ; height, width
+	dw 411, 1190 ; height, weight
 
 	db   "With its Herculean"
 	next "powers, it can"
--- a/data/pokedex/entries/215.asm
+++ b/data/pokedex/entries/215.asm
@@ -1,6 +1,6 @@
 ; SneaselPokedexEntry: ; 0x1d097a
 	db "SHARP CLAW@" ; species name
-	dw 211, 620 ; height, width
+	dw 211, 620 ; height, weight
 
 	db   "This cunning"
 	next "#MON hides"
--- a/data/pokedex/entries/216.asm
+++ b/data/pokedex/entries/216.asm
@@ -1,6 +1,6 @@
 ; TeddiursaPokedexEntry: ; 0x1d09da
 	db "LITTLE BEAR@" ; species name
-	dw 200, 190 ; height, width
+	dw 200, 190 ; height, weight
 
 	db   "It always licks"
 	next "honey. Its palm"
--- a/data/pokedex/entries/217.asm
+++ b/data/pokedex/entries/217.asm
@@ -1,6 +1,6 @@
 ; UrsaringPokedexEntry: ; 0x1d0a41
 	db "HIBERNANT@" ; species name
-	dw 511, 2770 ; height, width
+	dw 511, 2770 ; height, weight
 
 	db   "Although it has a"
 	next "large body, it is"
--- a/data/pokedex/entries/218.asm
+++ b/data/pokedex/entries/218.asm
@@ -1,6 +1,6 @@
 ; SlugmaPokedexEntry: ; 0x1d0ab8
 	db "LAVA@" ; species name
-	dw 204, 770 ; height, width
+	dw 204, 770 ; height, weight
 
 	db   "These group to-"
 	next "gether in areas"
--- a/data/pokedex/entries/219.asm
+++ b/data/pokedex/entries/219.asm
@@ -1,6 +1,6 @@
 ; MagcargoPokedexEntry: ; 0x1d0b21
 	db "LAVA@" ; species name
-	dw 207, 1210 ; height, width
+	dw 207, 1210 ; height, weight
 
 	db   "Its body is as hot"
 	next "as lava and is"
--- a/data/pokedex/entries/220.asm
+++ b/data/pokedex/entries/220.asm
@@ -1,6 +1,6 @@
 ; SwinubPokedexEntry: ; 0x1d0b8d
 	db "PIG@" ; species name
-	dw 104, 140 ; height, width
+	dw 104, 140 ; height, weight
 
 	db   "It uses the tip of"
 	next "its nose to dig"
--- a/data/pokedex/entries/221.asm
+++ b/data/pokedex/entries/221.asm
@@ -1,6 +1,6 @@
 ; PiloswinePokedexEntry: ; 0x1d0c01
 	db "SWINE@" ; species name
-	dw 307, 1230 ; height, width
+	dw 307, 1230 ; height, weight
 
 	db   "Although its legs"
 	next "are short, its"
--- a/data/pokedex/entries/222.asm
+++ b/data/pokedex/entries/222.asm
@@ -1,6 +1,6 @@
 ; CorsolaPokedexEntry: ; 0x1d0c68
 	db "CORAL@" ; species name
-	dw 200, 110 ; height, width
+	dw 200, 110 ; height, weight
 
 	db   "The points on its"
 	next "head absorb"
--- a/data/pokedex/entries/223.asm
+++ b/data/pokedex/entries/223.asm
@@ -1,6 +1,6 @@
 ; RemoraidPokedexEntry: ; 0x1d0cd3
 	db "JET@" ; species name
-	dw 200, 260 ; height, width
+	dw 200, 260 ; height, weight
 
 	db   "To escape from an"
 	next "attacker, it may"
--- a/data/pokedex/entries/224.asm
+++ b/data/pokedex/entries/224.asm
@@ -1,6 +1,6 @@
 ; OctilleryPokedexEntry: ; 0x1d0d42
 	db "JET@" ; species name
-	dw 211, 630 ; height, width
+	dw 211, 630 ; height, weight
 
 	db   "Its instinct is to"
 	next "bury itself in"
--- a/data/pokedex/entries/225.asm
+++ b/data/pokedex/entries/225.asm
@@ -1,6 +1,6 @@
 ; DelibirdPokedexEntry: ; 0x1d0db1
 	db "DELIVERY@" ; species name
-	dw 211, 350 ; height, width
+	dw 211, 350 ; height, weight
 
 	db   "It always carries"
 	next "its food with it,"
--- a/data/pokedex/entries/226.asm
+++ b/data/pokedex/entries/226.asm
@@ -1,6 +1,6 @@
 ; MantinePokedexEntry: ; 0x1d0e25
 	db "KITE@" ; species name
-	dw 611, 4850 ; height, width
+	dw 611, 4850 ; height, weight
 
 	db   "It swims along"
 	next "freely, eating"
--- a/data/pokedex/entries/227.asm
+++ b/data/pokedex/entries/227.asm
@@ -1,6 +1,6 @@
 ; SkarmoryPokedexEntry: ; 0x1d0e8c
 	db "ARMOR BIRD@" ; species name
-	dw 507, 1110 ; height, width
+	dw 507, 1110 ; height, weight
 
 	db   "The feathers that"
 	next "it sheds are very"
--- a/data/pokedex/entries/228.asm
+++ b/data/pokedex/entries/228.asm
@@ -1,6 +1,6 @@
 ; HoundourPokedexEntry: ; 0x1d0eff
 	db "DARK@" ; species name
-	dw 200, 240 ; height, width
+	dw 200, 240 ; height, weight
 
 	db   "Around dawn, its"
 	next "ominous howl"
--- a/data/pokedex/entries/229.asm
+++ b/data/pokedex/entries/229.asm
@@ -1,6 +1,6 @@
 ; HoundoomPokedexEntry: ; 0x1d0f66
 	db "DARK@" ; species name
-	dw 407, 770 ; height, width
+	dw 407, 770 ; height, weight
 
 	db   "The pungent-"
 	next "smelling flame"
--- a/data/pokedex/entries/230.asm
+++ b/data/pokedex/entries/230.asm
@@ -1,6 +1,6 @@
 ; KingdraPokedexEntry: ; 0x1d0fd1
 	db "DRAGON@" ; species name
-	dw 511, 3350 ; height, width
+	dw 511, 3350 ; height, weight
 
 	db   "It stores energy"
 	next "by sleeping at"
--- a/data/pokedex/entries/231.asm
+++ b/data/pokedex/entries/231.asm
@@ -1,6 +1,6 @@
 ; PhanpyPokedexEntry: ; 0x1d1038
 	db "LONG NOSE@" ; species name
-	dw 108, 740 ; height, width
+	dw 108, 740 ; height, weight
 
 	db   "During the desert-"
 	next "ed morning hours,"
--- a/data/pokedex/entries/232.asm
+++ b/data/pokedex/entries/232.asm
@@ -1,6 +1,6 @@
 ; DonphanPokedexEntry: ; 0x1d10ac
 	db "ARMOR@" ; species name
-	dw 307, 2650 ; height, width
+	dw 307, 2650 ; height, weight
 
 	db   "Because this"
 	next "#MON's skin is"
--- a/data/pokedex/entries/233.asm
+++ b/data/pokedex/entries/233.asm
@@ -1,6 +1,6 @@
 ; Porygon2PokedexEntry: ; 0x1d110c
 	db "VIRTUAL@" ; species name
-	dw 200, 720 ; height, width
+	dw 200, 720 ; height, weight
 
 	db   "This manmade"
 	next "#MON evolved"
--- a/data/pokedex/entries/234.asm
+++ b/data/pokedex/entries/234.asm
@@ -1,6 +1,6 @@
 ; StantlerPokedexEntry: ; 0x1d1174
 	db "BIG HORN@" ; species name
-	dw 407, 1570 ; height, width
+	dw 407, 1570 ; height, weight
 
 	db   "The round balls"
 	next "found on the"
--- a/data/pokedex/entries/235.asm
+++ b/data/pokedex/entries/235.asm
@@ -1,6 +1,6 @@
 ; SmearglePokedexEntry: ; 0x1d11e0
 	db "PAINTER@" ; species name
-	dw 311, 1280 ; height, width
+	dw 311, 1280 ; height, weight
 
 	db   "The color of the"
 	next "mysterious fluid"
--- a/data/pokedex/entries/236.asm
+++ b/data/pokedex/entries/236.asm
@@ -1,6 +1,6 @@
 ; TyroguePokedexEntry: ; 0x1d124b
 	db "SCUFFLE@" ; species name
-	dw 204, 460 ; height, width
+	dw 204, 460 ; height, weight
 
 	db   "To brush up on its"
 	next "fighting skills,"
--- a/data/pokedex/entries/237.asm
+++ b/data/pokedex/entries/237.asm
@@ -1,6 +1,6 @@
 ; HitmontopPokedexEntry: ; 0x1d12c0
 	db "HANDSTAND@" ; species name
-	dw 407, 1060 ; height, width
+	dw 407, 1060 ; height, weight
 
 	db   "After doing a"
 	next "handstand to"
--- a/data/pokedex/entries/238.asm
+++ b/data/pokedex/entries/238.asm
@@ -1,6 +1,6 @@
 ; SmoochumPokedexEntry: ; 0x1d132b
 	db "KISS@" ; species name
-	dw 104, 130 ; height, width
+	dw 104, 130 ; height, weight
 
 	db   "The sensitivity of"
 	next "its lips develops"
--- a/data/pokedex/entries/239.asm
+++ b/data/pokedex/entries/239.asm
@@ -1,6 +1,6 @@
 ; ElekidPokedexEntry: ; 0x1d1398
 	db "ELECTRIC@" ; species name
-	dw 200, 520 ; height, width
+	dw 200, 520 ; height, weight
 
 	db   "It loves violent"
 	next "thunder. The space"
--- a/data/pokedex/entries/240.asm
+++ b/data/pokedex/entries/240.asm
@@ -1,6 +1,6 @@
 ; MagbyPokedexEntry: ; 0x1d140e
 	db "LIVE COAL@" ; species name
-	dw 204, 470 ; height, width
+	dw 204, 470 ; height, weight
 
 	db   "It naturally spits"
 	next "an 1100-degree"
--- a/data/pokedex/entries/241.asm
+++ b/data/pokedex/entries/241.asm
@@ -1,6 +1,6 @@
 ; MiltankPokedexEntry: ; 0x1d1482
 	db "MILK COW@" ; species name
-	dw 311, 1660 ; height, width
+	dw 311, 1660 ; height, weight
 
 	db   "In order to milk a"
 	next "MILTANK, one must"
--- a/data/pokedex/entries/242.asm
+++ b/data/pokedex/entries/242.asm
@@ -1,6 +1,6 @@
 ; BlisseyPokedexEntry: ; 0x1d14f7
 	db "HAPPINESS@" ; species name
-	dw 411, 1030 ; height, width
+	dw 411, 1030 ; height, weight
 
 	db   "Biting into one"
 	next "of the delicious"
--- a/data/pokedex/entries/243.asm
+++ b/data/pokedex/entries/243.asm
@@ -1,6 +1,6 @@
 ; RaikouPokedexEntry: ; 0x1d156b
 	db "THUNDER@" ; species name
-	dw 603, 3920 ; height, width
+	dw 603, 3920 ; height, weight
 
 	db   "This rough #MON"
 	next "stores energy"
--- a/data/pokedex/entries/244.asm
+++ b/data/pokedex/entries/244.asm
@@ -1,6 +1,6 @@
 ; EnteiPokedexEntry: ; 0x1d15dd
 	db "VOLCANO@" ; species name
-	dw 607, 4370 ; height, width
+	dw 607, 4370 ; height, weight
 
 	db   "This brawny"
 	next "#MON courses"
--- a/data/pokedex/entries/245.asm
+++ b/data/pokedex/entries/245.asm
@@ -1,6 +1,6 @@
 ; SuicunePokedexEntry: ; 0x1d1642
 	db "AURORA@" ; species name
-	dw 607, 4120 ; height, width
+	dw 607, 4120 ; height, weight
 
 	db   "This divine"
 	next "#MON blows"
--- a/data/pokedex/entries/246.asm
+++ b/data/pokedex/entries/246.asm
@@ -1,6 +1,6 @@
 ; LarvitarPokedexEntry: ; 0x1d169c
 	db "ROCK SKIN@" ; species name
-	dw 200, 1590 ; height, width
+	dw 200, 1590 ; height, weight
 
 	db   "Born deep under-"
 	next "ground, this"
--- a/data/pokedex/entries/247.asm
+++ b/data/pokedex/entries/247.asm
@@ -1,6 +1,6 @@
 ; PupitarPokedexEntry: ; 0x1d1709
 	db "HARD SHELL@" ; species name
-	dw 311, 3350 ; height, width
+	dw 311, 3350 ; height, weight
 
 	db   "It will not stay"
 	next "still, even while"
--- a/data/pokedex/entries/248.asm
+++ b/data/pokedex/entries/248.asm
@@ -1,6 +1,6 @@
 ; TyranitarPokedexEntry: ; 0x1d177b
 	db "ARMOR@" ; species name
-	dw 607, 4450 ; height, width
+	dw 607, 4450 ; height, weight
 
 	db   "In just one of its"
 	next "mighty hands, it"
--- a/data/pokedex/entries/249.asm
+++ b/data/pokedex/entries/249.asm
@@ -1,6 +1,6 @@
 ; LugiaPokedexEntry: ; 0x1d17e9
 	db "DIVING@" ; species name
-	dw 1701, 4760 ; height, width
+	dw 1701, 4760 ; height, weight
 
 	db   "It has an incred-"
 	next "ible ability to"
--- a/data/pokedex/entries/250.asm
+++ b/data/pokedex/entries/250.asm
@@ -1,6 +1,6 @@
 ; HoOhPokedexEntry: ; 0x1d185d
 	db "RAINBOW@" ; species name
-	dw 1206, 4390 ; height, width
+	dw 1206, 4390 ; height, weight
 
 	db   "It will reveal"
 	next "itself before a"
--- a/data/pokedex/entries/251.asm
+++ b/data/pokedex/entries/251.asm
@@ -1,6 +1,6 @@
 ; CelebiPokedexEntry: ; 0x1d18cc
 	db "TIMETRAVEL@" ; species name
-	dw 200, 110 ; height, width
+	dw 200, 110 ; height, weight
 
 	db   "Revered as a"
 	next "guardian of the"