From 03332bd5f2a388622f47ec01fee99ec835b9bc9e Mon Sep 17 00:00:00 2001 From: Misty Cass Date: Wed, 10 Jul 2024 00:02:17 -0400 Subject: [PATCH] A Bunch of Cool Dex Entriesgit add --a! --- data/pokemon/dex_entries/bonsly.asm | 10 ++++++++++ data/pokemon/dex_entries/caretorker.asm | 10 ++++++++++ data/pokemon/dex_entries/elebebi.asm | 10 ++++++++++ data/pokemon/dex_entries/electivire.asm | 10 ++++++++++ data/pokemon/dex_entries/guardia.asm | 10 ++++++++++ data/pokemon/dex_entries/happiny.asm | 10 ++++++++++ data/pokemon/dex_entries/honchkrow.asm | 10 ++++++++++ data/pokemon/dex_entries/iguanarch.asm | 10 ++++++++++ data/pokemon/dex_entries/magmortar.asm | 10 ++++++++++ data/pokemon/dex_entries/mime_jr_.asm | 10 ++++++++++ data/pokemon/dex_entries/mimmeo.asm | 10 ++++++++++ data/pokemon/dex_entries/ministare.asm | 10 ++++++++++ data/pokemon/dex_entries/porygon_z.asm | 10 ++++++++++ data/pokemon/dex_entries/smujj.asm | 10 ++++++++++ data/pokemon/dex_entries/squeamata.asm | 10 ++++++++++ data/pokemon/dex_entries/wyrdeer.asm | 10 ++++++++++ 16 files changed, 160 insertions(+) create mode 100644 data/pokemon/dex_entries/bonsly.asm create mode 100644 data/pokemon/dex_entries/caretorker.asm create mode 100644 data/pokemon/dex_entries/elebebi.asm create mode 100644 data/pokemon/dex_entries/electivire.asm create mode 100644 data/pokemon/dex_entries/guardia.asm create mode 100644 data/pokemon/dex_entries/happiny.asm create mode 100644 data/pokemon/dex_entries/honchkrow.asm create mode 100644 data/pokemon/dex_entries/iguanarch.asm create mode 100644 data/pokemon/dex_entries/magmortar.asm create mode 100644 data/pokemon/dex_entries/mime_jr_.asm create mode 100644 data/pokemon/dex_entries/mimmeo.asm create mode 100644 data/pokemon/dex_entries/ministare.asm create mode 100644 data/pokemon/dex_entries/porygon_z.asm create mode 100644 data/pokemon/dex_entries/smujj.asm create mode 100644 data/pokemon/dex_entries/squeamata.asm create mode 100644 data/pokemon/dex_entries/wyrdeer.asm diff --git a/data/pokemon/dex_entries/bonsly.asm b/data/pokemon/dex_entries/bonsly.asm new file mode 100644 index 0000000..a511bad --- /dev/null +++ b/data/pokemon/dex_entries/bonsly.asm @@ -0,0 +1,10 @@ + db "BONSAI@" ; species name + dw 18, 331 ; height, weight + + db "Young BONSLY" + next "must be bottle-fed" + next "before eating" + + page "solid food." + next "It cries to expel" + next "excess moisture.@" diff --git a/data/pokemon/dex_entries/caretorker.asm b/data/pokemon/dex_entries/caretorker.asm new file mode 100644 index 0000000..1872fe3 --- /dev/null +++ b/data/pokemon/dex_entries/caretorker.asm @@ -0,0 +1,10 @@ + db "STORK@" ; species name + dw 48, 1056 ; height, weight + + db "It carries its" + next "young in a bundle" + next "made of its own" + + page "down. It is close" + next "with GUARDIA and" + next "KANGASKHAN.@" diff --git a/data/pokemon/dex_entries/elebebi.asm b/data/pokemon/dex_entries/elebebi.asm new file mode 100644 index 0000000..a706d8d --- /dev/null +++ b/data/pokemon/dex_entries/elebebi.asm @@ -0,0 +1,10 @@ + db "BATTERY@" ; species name + dw 10, 167 ; height, weight + + db "TEACHERs use it" + next "to demonstrate" + next "tesla coils," + + page "but it tires" + next "quickly, making" + next "it impractical.@" diff --git a/data/pokemon/dex_entries/electivire.asm b/data/pokemon/dex_entries/electivire.asm new file mode 100644 index 0000000..d8b2710 --- /dev/null +++ b/data/pokemon/dex_entries/electivire.asm @@ -0,0 +1,10 @@ + db "THUNDERBOLT@" ; species name + dw 511, 3056 ; height, weight + + db "Before man-made" + next "electricity, it" + next "would live on" + + page "mountains, drawing" + next "in lightning bolts" + next "with its tails.@" diff --git a/data/pokemon/dex_entries/guardia.asm b/data/pokemon/dex_entries/guardia.asm new file mode 100644 index 0000000..8febcb9 --- /dev/null +++ b/data/pokemon/dex_entries/guardia.asm @@ -0,0 +1,10 @@ + db "PROTECTIVE@" ; species name + dw 611, 3260 ; height, weight + + db "GUARDIA and" + next "KANGASKHAN are" + next "perfect partners," + + page "taking in and" + next "raising orphaned" + next "#MON together.@" diff --git a/data/pokemon/dex_entries/happiny.asm b/data/pokemon/dex_entries/happiny.asm new file mode 100644 index 0000000..9569757 --- /dev/null +++ b/data/pokemon/dex_entries/happiny.asm @@ -0,0 +1,10 @@ + db "PLAYHOUSE@" ; species name + dw 20, 538 ; height, weight + + db "When it finds the" + next "perfect stone," + next "it sleeps holding" + + page "it tight, hoping" + next "it will evolve" + next "come morning.@" diff --git a/data/pokemon/dex_entries/honchkrow.asm b/data/pokemon/dex_entries/honchkrow.asm new file mode 100644 index 0000000..a3a3a9f --- /dev/null +++ b/data/pokemon/dex_entries/honchkrow.asm @@ -0,0 +1,10 @@ + db "BIG BOSS@" ; species name + dw 211, 602 ; height, weight + + db "Despite its" + next "merciless nature," + next "it always seeks a" + + page "worthy foe," + next "showing surprising" + next "grace in defeat.@" diff --git a/data/pokemon/dex_entries/iguanarch.asm b/data/pokemon/dex_entries/iguanarch.asm new file mode 100644 index 0000000..c6dab22 --- /dev/null +++ b/data/pokemon/dex_entries/iguanarch.asm @@ -0,0 +1,10 @@ + db "HOSTILE@" ; species name + dw 86, 3130 ; height, weight + + db "Feared for its" + next "vicious temper." + next "A strike from its" + + page "whip-like tail can" + next "send smaller" + next "#MON flying.@" diff --git a/data/pokemon/dex_entries/magmortar.asm b/data/pokemon/dex_entries/magmortar.asm new file mode 100644 index 0000000..50ec763 --- /dev/null +++ b/data/pokemon/dex_entries/magmortar.asm @@ -0,0 +1,10 @@ + db "BLAST@" ; species name + dw 503, 1499 ; height, weight + + db "MAGMORTAR lord" + next "over volcanoes," + next "seen as avatars" + + page "or servants of" + next "the legendary" + next "beast of flame.@" diff --git a/data/pokemon/dex_entries/mime_jr_.asm b/data/pokemon/dex_entries/mime_jr_.asm new file mode 100644 index 0000000..54c0829 --- /dev/null +++ b/data/pokemon/dex_entries/mime_jr_.asm @@ -0,0 +1,10 @@ + db "MIME@" ; species name + dw 20, 287 ; height, weight + + db "It studies the" + next "cries of other" + next "#MON closely," + + page "allowing it to" + next "perform a litany" + next "of calls.@" diff --git a/data/pokemon/dex_entries/mimmeo.asm b/data/pokemon/dex_entries/mimmeo.asm new file mode 100644 index 0000000..9220ba7 --- /dev/null +++ b/data/pokemon/dex_entries/mimmeo.asm @@ -0,0 +1,10 @@ + db "TRANSFORM@" ; species name + dw 20, 360 ; height, weight + + db "Its body is" + next "largely composed" + next "of magnesium." + + page "It can instantly" + next "copy the visage" + next "of any #MON.@" diff --git a/data/pokemon/dex_entries/ministare.asm b/data/pokemon/dex_entries/ministare.asm new file mode 100644 index 0000000..924f8e2 --- /dev/null +++ b/data/pokemon/dex_entries/ministare.asm @@ -0,0 +1,10 @@ + db "IGUANA@" ; species name + dw 47, 550 ; height, weight + + db "It loves to" + next "climb with its" + next "sharp claws," + + page "able to scale" + next "massive trees" + next "and even houses.@" diff --git a/data/pokemon/dex_entries/porygon_z.asm b/data/pokemon/dex_entries/porygon_z.asm new file mode 100644 index 0000000..2004d51 --- /dev/null +++ b/data/pokemon/dex_entries/porygon_z.asm @@ -0,0 +1,10 @@ + db "VIRTUAL@" ; species name + dw 211, 750 ; height, weight + + db "It loves to invade" + next "computers, but" + next "its corrupted" + + page "data can often" + next "cause severe errors" + next "or glitches.@" diff --git a/data/pokemon/dex_entries/smujj.asm b/data/pokemon/dex_entries/smujj.asm new file mode 100644 index 0000000..b203bdb --- /dev/null +++ b/data/pokemon/dex_entries/smujj.asm @@ -0,0 +1,10 @@ + db "SLUDGE@" ; species name + dw 6, 17 ; height, weight + + db "It's often" + next "mistaken for a" + next "wad of chewing gum" + + page "and stepped on," + next "releasing a foul" + next "odor.@" diff --git a/data/pokemon/dex_entries/squeamata.asm b/data/pokemon/dex_entries/squeamata.asm new file mode 100644 index 0000000..a2a9484 --- /dev/null +++ b/data/pokemon/dex_entries/squeamata.asm @@ -0,0 +1,10 @@ + db "IGUANA@" ; species name + dw 20, 120 ; height, weight + + db "Its population" + next "once dwindled" + next "due to poaching," + + page "but repopulation" + next "efforts hope to" + next "reverse this.@" diff --git a/data/pokemon/dex_entries/wyrdeer.asm b/data/pokemon/dex_entries/wyrdeer.asm new file mode 100644 index 0000000..1d7246a --- /dev/null +++ b/data/pokemon/dex_entries/wyrdeer.asm @@ -0,0 +1,10 @@ + db "BIG HORN@" ; species name + dw 511, 2097 ; height, weight + + db "Treasured in" + next "ancient times, and" + next "prized for its" + + page "warm fur. Its" + next "PSI abilities can" + next "distort space.@"