暫無描述

pokedex_data.s 318KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336
  1. .align 2
  2. .thumb
  3. .text
  4. .global pokedex_data
  5. pokedex_data:
  6. .string LAN_DE "Unbekannt", 12
  7. .string LAN_EN "Unknown", 12
  8. .hword 1, 1
  9. .word str_pokedex_eintraege_0
  10. .word str_pokedex_eintraege_0
  11. .hword 0, 0, 0, 0, 0, 0
  12. .string LAN_DE "Samen", 12
  13. .string LAN_EN "Seed", 12
  14. .hword 7,69
  15. .word str_pokedex_eintraege_1
  16. .word str_pokedex_eintraege_1
  17. .hword 0, 0, 0, 0, 0, 0
  18. .string LAN_DE "Samen", 12
  19. .string LAN_EN "Seed", 12
  20. .hword 10, 130
  21. .word str_pokedex_eintraege_2
  22. .word str_pokedex_eintraege_2
  23. .hword 0, 0, 0, 0, 0, 0
  24. .string LAN_DE "Samen", 12
  25. .string LAN_EN "Seed", 12
  26. .hword 20, 1000
  27. .word str_pokedex_eintraege_3
  28. .word str_pokedex_eintraege_3
  29. .hword 0, 0, 0, 0, 0, 0
  30. .string LAN_DE "Echse", 12
  31. .string LAN_EN "Lizard", 12
  32. .hword 6, 85
  33. .word str_pokedex_eintraege_4
  34. .word str_pokedex_eintraege_4
  35. .hword 0, 0, 0, 0, 0, 0
  36. .string LAN_DE "Flamme", 12
  37. .string LAN_EN "Flame", 12
  38. .hword 11, 190
  39. .word str_pokedex_eintraege_5
  40. .word str_pokedex_eintraege_5
  41. .hword 0, 0, 0, 0, 0, 0
  42. .string LAN_DE "Flamme", 12
  43. .string LAN_EN "Flame", 12
  44. .hword 17, 905
  45. .word str_pokedex_eintraege_6
  46. .word str_pokedex_eintraege_6
  47. .hword 0, 0, 0, 0, 0, 0
  48. .string LAN_DE "Minikröte", 12
  49. .string LAN_EN "Tiny Turtle", 12
  50. .hword 5, 90
  51. .word str_pokedex_eintraege_7
  52. .word str_pokedex_eintraege_7
  53. .hword 0, 0, 0, 0, 0, 0
  54. .string LAN_DE "Kröte", 12
  55. .string LAN_EN "Turtle", 12
  56. .hword 10, 225
  57. .word str_pokedex_eintraege_8
  58. .word str_pokedex_eintraege_8
  59. .hword 0, 0, 0, 0, 0, 0
  60. .string LAN_DE "Panzertier", 12
  61. .string LAN_EN "Shellfish", 12
  62. .hword 16, 855
  63. .word str_pokedex_eintraege_9
  64. .word str_pokedex_eintraege_9
  65. .hword 0, 0, 0, 0, 0, 0
  66. .string LAN_DE "Wurm", 12
  67. .string LAN_EN "Worm", 12
  68. .hword 3, 29
  69. .word str_pokedex_eintraege_10
  70. .word str_pokedex_eintraege_10
  71. .hword 0, 0, 0, 0, 0, 0
  72. .string LAN_DE "Kokon", 12
  73. .string LAN_EN "Cocoon", 12
  74. .hword 7, 99
  75. .word str_pokedex_eintraege_11
  76. .word str_pokedex_eintraege_11
  77. .hword 0, 0, 0, 0, 0, 0
  78. .string LAN_DE "Falter", 12
  79. .string LAN_EN "Butterfly", 12
  80. .hword 11, 320
  81. .word str_pokedex_eintraege_12
  82. .word str_pokedex_eintraege_12
  83. .hword 0, 0, 0, 0, 0, 0
  84. .string LAN_DE "Raupe", 12
  85. .string LAN_EN "Hairy Bug", 12
  86. .hword 3, 32
  87. .word str_pokedex_eintraege_13
  88. .word str_pokedex_eintraege_13
  89. .hword 0, 0, 0, 0, 0, 0
  90. .string LAN_DE "Kokon", 12
  91. .string LAN_EN "Cocoon", 12
  92. .hword 6, 100
  93. .word str_pokedex_eintraege_14
  94. .word str_pokedex_eintraege_14
  95. .hword 0, 0, 0, 0, 0, 0
  96. .string LAN_DE "Giftbiene", 12
  97. .string LAN_EN "Poison Bee", 12
  98. .hword 10, 295
  99. .word str_pokedex_eintraege_15
  100. .word str_pokedex_eintraege_15
  101. .hword 0, 0, 0, 0, 0, 0
  102. .string LAN_DE "Kleinvogel", 12
  103. .string LAN_EN "Tiny Bird", 12
  104. .hword 3, 18
  105. .word str_pokedex_eintraege_16
  106. .word str_pokedex_eintraege_16
  107. .hword 0, 0, 0, 0, 0, 0
  108. .string LAN_DE "Vogel", 12
  109. .string LAN_EN "Bird", 12
  110. .hword 11, 300
  111. .word str_pokedex_eintraege_17
  112. .word str_pokedex_eintraege_17
  113. .hword 0, 0, 0, 0, 0, 0
  114. .string LAN_DE "Vogel", 12
  115. .string LAN_EN "Bird", 12
  116. .hword 15, 395
  117. .word str_pokedex_eintraege_18
  118. .word str_pokedex_eintraege_18
  119. .hword 0, 0, 0, 0, 0, 0
  120. .string LAN_DE "Maus", 12
  121. .string LAN_EN "Mouse", 12
  122. .hword 3, 35
  123. .word str_pokedex_eintraege_19
  124. .word str_pokedex_eintraege_19
  125. .hword 0, 0, 0, 0, 0, 0
  126. .string LAN_DE "Maus", 12
  127. .string LAN_EN "Mouse", 12
  128. .hword 7, 185
  129. .word str_pokedex_eintraege_20
  130. .word str_pokedex_eintraege_20
  131. .hword 0, 0, 0, 0, 0, 0
  132. .string LAN_DE "Kleinvogel", 12
  133. .string LAN_EN "Tiny Bird", 12
  134. .hword 3, 20
  135. .word str_pokedex_eintraege_21
  136. .word str_pokedex_eintraege_21
  137. .hword 0, 0, 0, 0, 0, 0
  138. .string LAN_DE "Pickvogel", 12
  139. .string LAN_EN "Beak", 12
  140. .hword 12, 380
  141. .word str_pokedex_eintraege_22
  142. .word str_pokedex_eintraege_22
  143. .hword 0, 0, 0, 0, 0, 0
  144. .string LAN_DE "Schlange", 12
  145. .string LAN_EN "Snake", 12
  146. .hword 20, 69
  147. .word str_pokedex_eintraege_23
  148. .word str_pokedex_eintraege_23
  149. .hword 0, 0, 0, 0, 0, 0
  150. .string LAN_DE "Kobra", 12
  151. .string LAN_EN "Cobra", 12
  152. .hword 35, 650
  153. .word str_pokedex_eintraege_24
  154. .word str_pokedex_eintraege_24
  155. .hword 0, 0, 0, 0, 0, 0
  156. .string LAN_DE "Maus", 12
  157. .string LAN_EN "Mouse", 12
  158. .hword 4, 60
  159. .word str_pokedex_eintraege_25
  160. .word str_pokedex_eintraege_25
  161. .hword 0, 0, 0, 0, 0, 0
  162. .string LAN_DE "Maus", 12
  163. .string LAN_EN "Mouse", 12
  164. .hword 8, 300
  165. .word str_pokedex_eintraege_26
  166. .word str_pokedex_eintraege_26
  167. .hword 0, 0, 0, 0, 0, 0
  168. .string LAN_DE "Maus", 12
  169. .string LAN_EN "Mouse", 12
  170. .hword 6, 120
  171. .word str_pokedex_eintraege_27
  172. .word str_pokedex_eintraege_27
  173. .hword 0, 0, 0, 0, 0, 0
  174. .string LAN_DE "Maus", 12
  175. .string LAN_EN "Mouse", 12
  176. .hword 10, 295
  177. .word str_pokedex_eintraege_28
  178. .word str_pokedex_eintraege_28
  179. .hword 0, 0, 0, 0, 0, 0
  180. .string LAN_DE "Giftdorn", 12
  181. .string LAN_EN "Poison Pin", 12
  182. .hword 4, 70
  183. .word str_pokedex_eintraege_29
  184. .word str_pokedex_eintraege_29
  185. .hword 0, 0, 0, 0, 0, 0
  186. .string LAN_DE "Giftdorn", 12
  187. .string LAN_EN "Poison Pin", 12
  188. .hword 8, 200
  189. .word str_pokedex_eintraege_30
  190. .word str_pokedex_eintraege_30
  191. .hword 0, 0, 0, 0, 0, 0
  192. .string LAN_DE "Bohrer", 12
  193. .string LAN_EN "Drill", 12
  194. .hword 13, 600
  195. .word str_pokedex_eintraege_31
  196. .word str_pokedex_eintraege_31
  197. .hword 0, 0, 0, 0, 0, 0
  198. .string LAN_DE "Giftdorn", 12
  199. .string LAN_EN "Poison Pin", 12
  200. .hword 5, 90
  201. .word str_pokedex_eintraege_32
  202. .word str_pokedex_eintraege_32
  203. .hword 0, 0, 0, 0, 0, 0
  204. .string LAN_DE "Giftdorn", 12
  205. .string LAN_EN "Poison Pin", 12
  206. .hword 9, 195
  207. .word str_pokedex_eintraege_33
  208. .word str_pokedex_eintraege_33
  209. .hword 0, 0, 0, 0, 0, 0
  210. .string LAN_DE "Bohrer", 12
  211. .string LAN_EN "Drill", 12
  212. .hword 14, 620
  213. .word str_pokedex_eintraege_34
  214. .word str_pokedex_eintraege_34
  215. .hword 0, 0, 0, 0, 0, 0
  216. .string LAN_DE "Fee", 12
  217. .string LAN_EN "Fairy", 12
  218. .hword 6, 75
  219. .word str_pokedex_eintraege_35
  220. .word str_pokedex_eintraege_35
  221. .hword 0, 0, 0, 0, 0, 0
  222. .string LAN_DE "Fee", 12
  223. .string LAN_EN "Fairy", 12
  224. .hword 13, 400
  225. .word str_pokedex_eintraege_36
  226. .word str_pokedex_eintraege_36
  227. .hword 0, 0, 0, 0, 0, 0
  228. .string LAN_DE "Fuchs", 12
  229. .string LAN_EN "Fox", 12
  230. .hword 6, 99
  231. .word str_pokedex_eintraege_37
  232. .word str_pokedex_eintraege_37
  233. .hword 0, 0, 0, 0, 0, 0
  234. .string LAN_DE "Fuchs", 12
  235. .string LAN_EN "Fox", 12
  236. .hword 11, 199
  237. .word str_pokedex_eintraege_38
  238. .word str_pokedex_eintraege_38
  239. .hword 0, 0, 0, 0, 0, 0
  240. .string LAN_DE "Ballon", 12
  241. .string LAN_EN "Balloon", 12
  242. .hword 5, 55
  243. .word str_pokedex_eintraege_39
  244. .word str_pokedex_eintraege_39
  245. .hword 0, 0, 0, 0, 0, 0
  246. .string LAN_DE "Ballon", 12
  247. .string LAN_EN "Balloon", 12
  248. .hword 10, 120
  249. .word str_pokedex_eintraege_40
  250. .word str_pokedex_eintraege_40
  251. .hword 0, 0, 0, 0, 0, 0
  252. .string LAN_DE "Fledermaus", 12
  253. .string LAN_EN "Bat", 12
  254. .hword 8, 75
  255. .word str_pokedex_eintraege_41
  256. .word str_pokedex_eintraege_41
  257. .hword 0, 0, 0, 0, 0, 0
  258. .string LAN_DE "Fledermaus", 12
  259. .string LAN_EN "Bat", 12
  260. .hword 16, 550
  261. .word str_pokedex_eintraege_42
  262. .word str_pokedex_eintraege_42
  263. .hword 0, 0, 0, 0, 0, 0
  264. .string LAN_DE "Unkraut", 12
  265. .string LAN_EN "Weed", 12
  266. .hword 5, 54
  267. .word str_pokedex_eintraege_43
  268. .word str_pokedex_eintraege_43
  269. .hword 0, 0, 0, 0, 0, 0
  270. .string LAN_DE "Unkraut", 12
  271. .string LAN_EN "Weed", 12
  272. .hword 8, 86
  273. .word str_pokedex_eintraege_44
  274. .word str_pokedex_eintraege_44
  275. .hword 0, 0, 0, 0, 0, 0
  276. .string LAN_DE "Blume", 12
  277. .string LAN_EN "Flower", 12
  278. .hword 12, 186
  279. .word str_pokedex_eintraege_45
  280. .word str_pokedex_eintraege_45
  281. .hword 0, 0, 0, 0, 0, 0
  282. .string LAN_DE "Pilz", 12
  283. .string LAN_EN "Mushroom", 12
  284. .hword 3, 54
  285. .word str_pokedex_eintraege_46
  286. .word str_pokedex_eintraege_46
  287. .hword 0, 0, 0, 0, 0, 0
  288. .string LAN_DE "Pilz", 12
  289. .string LAN_EN "Mushroom", 12
  290. .hword 10, 295
  291. .word str_pokedex_eintraege_47
  292. .word str_pokedex_eintraege_47
  293. .hword 0, 0, 0, 0, 0, 0
  294. .string LAN_DE "Insekt", 12
  295. .string LAN_EN "Insect", 12
  296. .hword 10, 300
  297. .word str_pokedex_eintraege_48
  298. .word str_pokedex_eintraege_48
  299. .hword 0, 0, 0, 0, 0, 0
  300. .string LAN_DE "Giftmotte", 12
  301. .string LAN_EN "Poison Moth", 12
  302. .hword 15, 125
  303. .word str_pokedex_eintraege_49
  304. .word str_pokedex_eintraege_49
  305. .hword 0, 0, 0, 0, 0, 0
  306. .string LAN_DE "Maulwurf", 12
  307. .string LAN_EN "Mole", 12
  308. .hword 2, 8
  309. .word str_pokedex_eintraege_50
  310. .word str_pokedex_eintraege_50
  311. .hword 0, 0, 0, 0, 0, 0
  312. .string LAN_DE "Maulwurf", 12
  313. .string LAN_EN "Mole", 12
  314. .hword 7, 333
  315. .word str_pokedex_eintraege_51
  316. .word str_pokedex_eintraege_51
  317. .hword 0, 0, 0, 0, 0, 0
  318. .string LAN_DE "Katze", 12
  319. .string LAN_EN "Scratch Cat", 12
  320. .hword 4, 42
  321. .word str_pokedex_eintraege_52
  322. .word str_pokedex_eintraege_52
  323. .hword 0, 0, 0, 0, 0, 0
  324. .string LAN_DE "Rassekatze", 12
  325. .string LAN_EN "Classy Cat", 12
  326. .hword 10, 320
  327. .word str_pokedex_eintraege_53
  328. .word str_pokedex_eintraege_53
  329. .hword 0, 0, 0, 0, 0, 0
  330. .string LAN_DE "Ente", 12
  331. .string LAN_EN "Duck", 12
  332. .hword 8, 196
  333. .word str_pokedex_eintraege_54
  334. .word str_pokedex_eintraege_54
  335. .hword 0, 0, 0, 0, 0, 0
  336. .string LAN_DE "Ente", 12
  337. .string LAN_EN "Duck", 12
  338. .hword 17, 766
  339. .word str_pokedex_eintraege_55
  340. .word str_pokedex_eintraege_55
  341. .hword 0, 0, 0, 0, 0, 0
  342. .string LAN_DE "Schw./ Affe", 12
  343. .string LAN_EN "Pig Monkey", 12
  344. .hword 5, 280
  345. .word str_pokedex_eintraege_56
  346. .word str_pokedex_eintraege_56
  347. .hword 0, 0, 0, 0, 0, 0
  348. .string LAN_DE "Schw./ Affe", 12
  349. .string LAN_EN "Pig Monkey", 12
  350. .hword 10, 320
  351. .word str_pokedex_eintraege_57
  352. .word str_pokedex_eintraege_57
  353. .hword 0, 0, 0, 0, 0, 0
  354. .string LAN_DE "Hund", 12
  355. .string LAN_EN "Puppy", 12
  356. .hword 7, 190
  357. .word str_pokedex_eintraege_58
  358. .word str_pokedex_eintraege_58
  359. .hword 0, 0, 0, 0, 0, 0
  360. .string LAN_DE "Legendär", 12
  361. .string LAN_EN "Legendary", 12
  362. .hword 19, 1550
  363. .word str_pokedex_eintraege_59
  364. .word str_pokedex_eintraege_59
  365. .hword 0, 0, 0, 0, 0, 0
  366. .string LAN_DE "Kaulquappe", 12
  367. .string LAN_EN "Tadpole", 12
  368. .hword 6, 124
  369. .word str_pokedex_eintraege_60
  370. .word str_pokedex_eintraege_60
  371. .hword 0, 0, 0, 0, 0, 0
  372. .string LAN_DE "Kaulquappe", 12
  373. .string LAN_EN "Tadpole", 12
  374. .hword 10, 200
  375. .word str_pokedex_eintraege_61
  376. .word str_pokedex_eintraege_61
  377. .hword 0, 0, 0, 0, 0, 0
  378. .string LAN_DE "Kaulquappe", 12
  379. .string LAN_EN "Tadpole", 12
  380. .hword 13, 540
  381. .word str_pokedex_eintraege_62
  382. .word str_pokedex_eintraege_62
  383. .hword 0, 0, 0, 0, 0, 0
  384. .string LAN_DE "Psi", 12
  385. .string LAN_EN "Psi", 12
  386. .hword 9, 195
  387. .word str_pokedex_eintraege_63
  388. .word str_pokedex_eintraege_63
  389. .hword 0, 0, 0, 0, 0, 0
  390. .string LAN_DE "Psi", 12
  391. .string LAN_EN "Psi", 12
  392. .hword 13, 565
  393. .word str_pokedex_eintraege_64
  394. .word str_pokedex_eintraege_64
  395. .hword 0, 0, 0, 0, 0, 0
  396. .string LAN_DE "Psi", 12
  397. .string LAN_EN "Psi", 12
  398. .hword 15, 480
  399. .word str_pokedex_eintraege_65
  400. .word str_pokedex_eintraege_65
  401. .hword 0, 0, 0, 0, 0, 0
  402. .string LAN_DE "Kraftprotz", 12
  403. .string LAN_EN "Superpower", 12
  404. .hword 8, 195
  405. .word str_pokedex_eintraege_66
  406. .word str_pokedex_eintraege_66
  407. .hword 0, 0, 0, 0, 0, 0
  408. .string LAN_DE "Kraftprotz", 12
  409. .string LAN_EN "Superpower", 12
  410. .hword 15, 705
  411. .word str_pokedex_eintraege_67
  412. .word str_pokedex_eintraege_67
  413. .hword 0, 0, 0, 0, 0, 0
  414. .string LAN_DE "Kraftprotz", 12
  415. .string LAN_EN "Superpower", 12
  416. .hword 16, 1300
  417. .word str_pokedex_eintraege_68
  418. .word str_pokedex_eintraege_68
  419. .hword 0, 0, 0, 0, 0, 0
  420. .string LAN_DE "Blume", 12
  421. .string LAN_EN "Flower", 12
  422. .hword 7, 40
  423. .word str_pokedex_eintraege_69
  424. .word str_pokedex_eintraege_69
  425. .hword 0, 0, 0, 0, 0, 0
  426. .string LAN_DE "Fliegentot", 12
  427. .string LAN_EN "Flycatcher", 12
  428. .hword 10, 64
  429. .word str_pokedex_eintraege_70
  430. .word str_pokedex_eintraege_70
  431. .hword 0, 0, 0, 0, 0, 0
  432. .string LAN_DE "Fliegentot", 12
  433. .string LAN_EN "Flycatcher", 12
  434. .hword 17, 155
  435. .word str_pokedex_eintraege_71
  436. .word str_pokedex_eintraege_71
  437. .hword 0, 0, 0, 0, 0, 0
  438. .string LAN_DE "Qualle", 12
  439. .string LAN_EN "Jellyfish", 12
  440. .hword 9, 455
  441. .word str_pokedex_eintraege_72
  442. .word str_pokedex_eintraege_72
  443. .hword 0, 0, 0, 0, 0, 0
  444. .string LAN_DE "Qualle", 12
  445. .string LAN_EN "Jellyfish", 12
  446. .hword 16, 550
  447. .word str_pokedex_eintraege_73
  448. .word str_pokedex_eintraege_73
  449. .hword 0, 0, 0, 0, 0, 0
  450. .string LAN_DE "Gestein", 12
  451. .string LAN_EN "Rock", 12
  452. .hword 4, 200
  453. .word str_pokedex_eintraege_74
  454. .word str_pokedex_eintraege_74
  455. .hword 0, 0, 0, 0, 0, 0
  456. .string LAN_DE "Gestein", 12
  457. .string LAN_EN "Rock", 12
  458. .hword 10, 1050
  459. .word str_pokedex_eintraege_75
  460. .word str_pokedex_eintraege_75
  461. .hword 0, 0, 0, 0, 0, 0
  462. .string LAN_DE "Urgestein", 12
  463. .string LAN_EN "Megaton", 12
  464. .hword 14, 3000
  465. .word str_pokedex_eintraege_76
  466. .word str_pokedex_eintraege_76
  467. .hword 0, 0, 0, 0, 0, 0
  468. .string LAN_DE "Feuerpferd", 12
  469. .string LAN_EN "Fire Horse", 12
  470. .hword 10, 300
  471. .word str_pokedex_eintraege_77
  472. .word str_pokedex_eintraege_77
  473. .hword 0, 0, 0, 0, 0, 0
  474. .string LAN_DE "Feuerpferd", 12
  475. .string LAN_EN "Fire Horse", 12
  476. .hword 17, 950
  477. .word str_pokedex_eintraege_78
  478. .word str_pokedex_eintraege_78
  479. .hword 0, 0, 0, 0, 0, 0
  480. .string LAN_DE "Schnarcher", 12
  481. .string LAN_EN "Dopey", 12
  482. .hword 12, 360
  483. .word str_pokedex_eintraege_79
  484. .word str_pokedex_eintraege_79
  485. .hword 0, 0, 0, 0, 0, 0
  486. .string LAN_DE "Symbiose", 12
  487. .string LAN_EN "Hermit Crab", 12
  488. .hword 16, 785
  489. .word str_pokedex_eintraege_80
  490. .word str_pokedex_eintraege_80
  491. .hword 0, 0, 0, 0, 0, 0
  492. .string LAN_DE "Magnet", 12
  493. .string LAN_EN "Magnet", 12
  494. .hword 3, 60
  495. .word str_pokedex_eintraege_81
  496. .word str_pokedex_eintraege_81
  497. .hword 0, 0, 0, 0, 0, 0
  498. .string LAN_DE "Magnet", 12
  499. .string LAN_EN "Magnet", 12
  500. .hword 10, 600
  501. .word str_pokedex_eintraege_82
  502. .word str_pokedex_eintraege_82
  503. .hword 0, 0, 0, 0, 0, 0
  504. .string LAN_DE "Wildente", 12
  505. .string LAN_EN "Wild Duck", 12
  506. .hword 8, 150
  507. .word str_pokedex_eintraege_83
  508. .word str_pokedex_eintraege_83
  509. .hword 0, 0, 0, 0, 0, 0
  510. .string LAN_DE "Duovogel", 12
  511. .string LAN_EN "Twin Bird", 12
  512. .hword 14, 392
  513. .word str_pokedex_eintraege_84
  514. .word str_pokedex_eintraege_84
  515. .hword 0, 0, 0, 0, 0, 0
  516. .string LAN_DE "Trivogel", 12
  517. .string LAN_EN "Triple Bird", 12
  518. .hword 18, 852
  519. .word str_pokedex_eintraege_85
  520. .word str_pokedex_eintraege_85
  521. .hword 0, 0, 0, 0, 0, 0
  522. .string LAN_DE "Seehund", 12
  523. .string LAN_EN "Sea Lion", 12
  524. .hword 11, 900
  525. .word str_pokedex_eintraege_86
  526. .word str_pokedex_eintraege_86
  527. .hword 0, 0, 0, 0, 0, 0
  528. .string LAN_DE "Seehund", 12
  529. .string LAN_EN "Sea Lion", 12
  530. .hword 17, 1200
  531. .word str_pokedex_eintraege_87
  532. .word str_pokedex_eintraege_87
  533. .hword 0, 0, 0, 0, 0, 0
  534. .string LAN_DE "Schlamm", 12
  535. .string LAN_EN "Sludge", 12
  536. .hword 9, 300
  537. .word str_pokedex_eintraege_88
  538. .word str_pokedex_eintraege_88
  539. .hword 0, 0, 0, 0, 0, 0
  540. .string LAN_DE "Schlamm", 12
  541. .string LAN_EN "Sludge", 12
  542. .hword 12, 300
  543. .word str_pokedex_eintraege_89
  544. .word str_pokedex_eintraege_89
  545. .hword 0, 0, 0, 0, 0, 0
  546. .string LAN_DE "Muschel", 12
  547. .string LAN_EN "Bivalve", 12
  548. .hword 3, 40
  549. .word str_pokedex_eintraege_90
  550. .word str_pokedex_eintraege_90
  551. .hword 0, 0, 0, 0, 0, 0
  552. .string LAN_DE "Muschel", 12
  553. .string LAN_EN "Bivalve", 12
  554. .hword 15, 1325
  555. .word str_pokedex_eintraege_91
  556. .word str_pokedex_eintraege_91
  557. .hword 0, 0, 0, 0, 0, 0
  558. .string LAN_DE "Gas", 12
  559. .string LAN_EN "Gas", 12
  560. .hword 13, 1
  561. .word str_pokedex_eintraege_92
  562. .word str_pokedex_eintraege_92
  563. .hword 0, 0, 0, 0, 0, 0
  564. .string LAN_DE "Gas", 12
  565. .string LAN_EN "Gas", 12
  566. .hword 16, 1
  567. .word str_pokedex_eintraege_93
  568. .word str_pokedex_eintraege_93
  569. .hword 0, 0, 0, 0, 0, 0
  570. .string LAN_DE "Schatten", 12
  571. .string LAN_EN "Shadow", 12
  572. .hword 15, 405
  573. .word str_pokedex_eintraege_94
  574. .word str_pokedex_eintraege_94
  575. .hword 0, 0, 0, 0, 0, 0
  576. .string LAN_DE "Felsnatter", 12
  577. .string LAN_EN "Rock Snake", 12
  578. .hword 88, 2100
  579. .word str_pokedex_eintraege_95
  580. .word str_pokedex_eintraege_95
  581. .hword 0, 0, 0, 0, 0, 0
  582. .string LAN_DE "Hypnose", 12
  583. .string LAN_EN "Hypnosis", 12
  584. .hword 10, 324
  585. .word str_pokedex_eintraege_96
  586. .word str_pokedex_eintraege_96
  587. .hword 0, 0, 0, 0, 0, 0
  588. .string LAN_DE "Hypnose", 12
  589. .string LAN_EN "Hypnosis", 12
  590. .hword 16, 756
  591. .word str_pokedex_eintraege_97
  592. .word str_pokedex_eintraege_97
  593. .hword 0, 0, 0, 0, 0, 0
  594. .string LAN_DE "Krabbe", 12
  595. .string LAN_EN "River Crab", 12
  596. .hword 4, 65
  597. .word str_pokedex_eintraege_98
  598. .word str_pokedex_eintraege_98
  599. .hword 0, 0, 0, 0, 0, 0
  600. .string LAN_DE "Kneifer", 12
  601. .string LAN_EN "Pincer", 12
  602. .hword 13, 600
  603. .word str_pokedex_eintraege_99
  604. .word str_pokedex_eintraege_99
  605. .hword 0, 0, 0, 0, 0, 0
  606. .string LAN_DE "Ball", 12
  607. .string LAN_EN "Ball", 12
  608. .hword 5, 104
  609. .word str_pokedex_eintraege_100
  610. .word str_pokedex_eintraege_100
  611. .hword 0, 0, 0, 0, 0, 0
  612. .string LAN_DE "Ball", 12
  613. .string LAN_EN "Ball", 12
  614. .hword 12, 666
  615. .word str_pokedex_eintraege_101
  616. .word str_pokedex_eintraege_101
  617. .hword 0, 0, 0, 0, 0, 0
  618. .string LAN_DE "Ei", 12
  619. .string LAN_EN "Egg", 12
  620. .hword 4, 25
  621. .word str_pokedex_eintraege_102
  622. .word str_pokedex_eintraege_102
  623. .hword 0, 0, 0, 0, 0, 0
  624. .string LAN_DE "Palmfrucht", 12
  625. .string LAN_EN "Coconut", 12
  626. .hword 20, 1200
  627. .word str_pokedex_eintraege_103
  628. .word str_pokedex_eintraege_103
  629. .hword 0, 0, 0, 0, 0, 0
  630. .string LAN_DE "Einsam", 12
  631. .string LAN_EN "Lonely", 12
  632. .hword 4, 65
  633. .word str_pokedex_eintraege_104
  634. .word str_pokedex_eintraege_104
  635. .hword 0, 0, 0, 0, 0, 0
  636. .string LAN_DE "Knochenfan", 12
  637. .string LAN_EN "Bone Keeper", 12
  638. .hword 10, 450
  639. .word str_pokedex_eintraege_105
  640. .word str_pokedex_eintraege_105
  641. .hword 0, 0, 0, 0, 0, 0
  642. .string LAN_DE "Kicker", 12
  643. .string LAN_EN "Kicking", 12
  644. .hword 15, 498
  645. .word str_pokedex_eintraege_106
  646. .word str_pokedex_eintraege_106
  647. .hword 0, 0, 0, 0, 0, 0
  648. .string LAN_DE "Puncher", 12
  649. .string LAN_EN "Punching", 12
  650. .hword 14, 502
  651. .word str_pokedex_eintraege_107
  652. .word str_pokedex_eintraege_107
  653. .hword 0, 0, 0, 0, 0, 0
  654. .string LAN_DE "Schlecker", 12
  655. .string LAN_EN "Licking", 12
  656. .hword 12, 655
  657. .word str_pokedex_eintraege_108
  658. .word str_pokedex_eintraege_108
  659. .hword 0, 0, 0, 0, 0, 0
  660. .string LAN_DE "Giftwolke", 12
  661. .string LAN_EN "Poison Gas", 12
  662. .hword 6, 10
  663. .word str_pokedex_eintraege_109
  664. .word str_pokedex_eintraege_109
  665. .hword 0, 0, 0, 0, 0, 0
  666. .string LAN_DE "Giftwolke", 12
  667. .string LAN_EN "Poison Gas", 12
  668. .hword 12, 95
  669. .word str_pokedex_eintraege_110
  670. .word str_pokedex_eintraege_110
  671. .hword 0, 0, 0, 0, 0, 0
  672. .string LAN_DE "Stachler", 12
  673. .string LAN_EN "Spikes", 12
  674. .hword 10, 1150
  675. .word str_pokedex_eintraege_111
  676. .word str_pokedex_eintraege_111
  677. .hword 0, 0, 0, 0, 0, 0
  678. .string LAN_DE "Bohrer", 12
  679. .string LAN_EN "Drill", 12
  680. .hword 19, 1200
  681. .word str_pokedex_eintraege_112
  682. .word str_pokedex_eintraege_112
  683. .hword 0, 0, 0, 0, 0, 0
  684. .string LAN_DE "Ei", 12
  685. .string LAN_EN "Egg", 12
  686. .hword 11, 346
  687. .word str_pokedex_eintraege_113
  688. .word str_pokedex_eintraege_113
  689. .hword 0, 0, 0, 0, 0, 0
  690. .string LAN_DE "Ranke", 12
  691. .string LAN_EN "Vine", 12
  692. .hword 10, 350
  693. .word str_pokedex_eintraege_114
  694. .word str_pokedex_eintraege_114
  695. .hword 0, 0, 0, 0, 0, 0
  696. .string LAN_DE "Muttertier", 12
  697. .string LAN_EN "Parent", 12
  698. .hword 22, 800
  699. .word str_pokedex_eintraege_115
  700. .word str_pokedex_eintraege_115
  701. .hword 0, 0, 0, 0, 0, 0
  702. .string LAN_DE "Drache", 12
  703. .string LAN_EN "Dragon", 12
  704. .hword 4, 80
  705. .word str_pokedex_eintraege_116
  706. .word str_pokedex_eintraege_116
  707. .hword 0, 0, 0, 0, 0, 0
  708. .string LAN_DE "Drache", 12
  709. .string LAN_EN "Dragon", 12
  710. .hword 12, 250
  711. .word str_pokedex_eintraege_117
  712. .word str_pokedex_eintraege_117
  713. .hword 0, 0, 0, 0, 0, 0
  714. .string LAN_DE "Goldfisch", 12
  715. .string LAN_EN "Goldfish", 12
  716. .hword 6, 150
  717. .word str_pokedex_eintraege_118
  718. .word str_pokedex_eintraege_118
  719. .hword 0, 0, 0, 0, 0, 0
  720. .string LAN_DE "Goldfisch", 12
  721. .string LAN_EN "Goldfish", 12
  722. .hword 13, 390
  723. .word str_pokedex_eintraege_119
  724. .word str_pokedex_eintraege_119
  725. .hword 0, 0, 0, 0, 0, 0
  726. .string LAN_DE "Sternform", 12
  727. .string LAN_EN "Star Shape", 12
  728. .hword 8, 345
  729. .word str_pokedex_eintraege_120
  730. .word str_pokedex_eintraege_120
  731. .hword 0, 0, 0, 0, 0, 0
  732. .string LAN_DE "Mysteriös", 12
  733. .string LAN_EN "Mysterious", 12
  734. .hword 11, 800
  735. .word str_pokedex_eintraege_121
  736. .word str_pokedex_eintraege_121
  737. .hword 0, 0, 0, 0, 0, 0
  738. .string LAN_DE "Sperre", 12
  739. .string LAN_EN "Barrier", 12
  740. .hword 13, 545
  741. .word str_pokedex_eintraege_122
  742. .word str_pokedex_eintraege_122
  743. .hword 0, 0, 0, 0, 0, 0
  744. .string LAN_DE "Mantis", 12
  745. .string LAN_EN "Mantis", 12
  746. .hword 15, 560
  747. .word str_pokedex_eintraege_123
  748. .word str_pokedex_eintraege_123
  749. .hword 0, 0, 0, 0, 0, 0
  750. .string LAN_DE "Humanotyp", 12
  751. .string LAN_EN "Human Shape", 12
  752. .hword 14, 406
  753. .word str_pokedex_eintraege_124
  754. .word str_pokedex_eintraege_124
  755. .hword 0, 0, 0, 0, 0, 0
  756. .string LAN_DE "Elektro", 12
  757. .string LAN_EN "Electric", 12
  758. .hword 11, 300
  759. .word str_pokedex_eintraege_125
  760. .word str_pokedex_eintraege_125
  761. .hword 0, 0, 0, 0, 0, 0
  762. .string LAN_DE "Brenner", 12
  763. .string LAN_EN "Spitfire", 12
  764. .hword 13, 445
  765. .word str_pokedex_eintraege_126
  766. .word str_pokedex_eintraege_126
  767. .hword 0, 0, 0, 0, 0, 0
  768. .string LAN_DE "Kneifkäfer", 12
  769. .string LAN_EN "Stag Beetle", 12
  770. .hword 15, 550
  771. .word str_pokedex_eintraege_127
  772. .word str_pokedex_eintraege_127
  773. .hword 0, 0, 0, 0, 0, 0
  774. .string LAN_DE "Wildbulle", 12
  775. .string LAN_EN "Wild Bull", 12
  776. .hword 14, 884
  777. .word str_pokedex_eintraege_128
  778. .word str_pokedex_eintraege_128
  779. .hword 0, 0, 0, 0, 0, 0
  780. .string LAN_DE "Fisch", 12
  781. .string LAN_EN "Fish", 12
  782. .hword 9, 100
  783. .word str_pokedex_eintraege_129
  784. .word str_pokedex_eintraege_129
  785. .hword 0, 0, 0, 0, 0, 0
  786. .string LAN_DE "Grausam", 12
  787. .string LAN_EN "Atrocious", 12
  788. .hword 65, 2350
  789. .word str_pokedex_eintraege_130
  790. .word str_pokedex_eintraege_130
  791. .hword 0, 0, 0, 0, 0, 0
  792. .string LAN_DE "Transport", 12
  793. .string LAN_EN "Transport", 12
  794. .hword 25, 2200
  795. .word str_pokedex_eintraege_131
  796. .word str_pokedex_eintraege_131
  797. .hword 0, 0, 0, 0, 0, 0
  798. .string LAN_DE "Transform", 12
  799. .string LAN_EN "Transform", 12
  800. .hword 3, 40
  801. .word str_pokedex_eintraege_132
  802. .word str_pokedex_eintraege_132
  803. .hword 0, 0, 0, 0, 0, 0
  804. .string LAN_DE "Evolution", 12
  805. .string LAN_EN "Evolution", 12
  806. .hword 3, 65
  807. .word str_pokedex_eintraege_133
  808. .word str_pokedex_eintraege_133
  809. .hword 0, 0, 0, 0, 0, 0
  810. .string LAN_DE "Blubblase", 12
  811. .string LAN_EN "Bubble Jet", 12
  812. .hword 10, 290
  813. .word str_pokedex_eintraege_134
  814. .word str_pokedex_eintraege_134
  815. .hword 0, 0, 0, 0, 0, 0
  816. .string LAN_DE "Blitz", 12
  817. .string LAN_EN "Lightning", 12
  818. .hword 8, 245
  819. .word str_pokedex_eintraege_135
  820. .word str_pokedex_eintraege_135
  821. .hword 0, 0, 0, 0, 0, 0
  822. .string LAN_DE "Feuer", 12
  823. .string LAN_EN "Flame", 12
  824. .hword 9, 250
  825. .word str_pokedex_eintraege_136
  826. .word str_pokedex_eintraege_136
  827. .hword 0, 0, 0, 0, 0, 0
  828. .string LAN_DE "Virtuell", 12
  829. .string LAN_EN "Virtual", 12
  830. .hword 8, 365
  831. .word str_pokedex_eintraege_137
  832. .word str_pokedex_eintraege_137
  833. .hword 0, 0, 0, 0, 0, 0
  834. .string LAN_DE "Spirale", 12
  835. .string LAN_EN "Spiral", 12
  836. .hword 4, 75
  837. .word str_pokedex_eintraege_138
  838. .word str_pokedex_eintraege_138
  839. .hword 0, 0, 0, 0, 0, 0
  840. .string LAN_DE "Spirale", 12
  841. .string LAN_EN "Spiral", 12
  842. .hword 10, 350
  843. .word str_pokedex_eintraege_139
  844. .word str_pokedex_eintraege_139
  845. .hword 0, 0, 0, 0, 0, 0
  846. .string LAN_DE "Schaltier", 12
  847. .string LAN_EN "Shellfish", 12
  848. .hword 5, 115
  849. .word str_pokedex_eintraege_140
  850. .word str_pokedex_eintraege_140
  851. .hword 0, 0, 0, 0, 0, 0
  852. .string LAN_DE "Schaltier", 12
  853. .string LAN_EN "Shellfish", 12
  854. .hword 13, 405
  855. .word str_pokedex_eintraege_141
  856. .word str_pokedex_eintraege_141
  857. .hword 0, 0, 0, 0, 0, 0
  858. .string LAN_DE "Fossil", 12
  859. .string LAN_EN "Fossil", 12
  860. .hword 18, 590
  861. .word str_pokedex_eintraege_142
  862. .word str_pokedex_eintraege_142
  863. .hword 0, 0, 0, 0, 0, 0
  864. .string LAN_DE "Tagträumer", 12
  865. .string LAN_EN "Sleeping", 12
  866. .hword 21, 4600
  867. .word str_pokedex_eintraege_143
  868. .word str_pokedex_eintraege_143
  869. .hword 0, 0, 0, 0, 0, 0
  870. .string LAN_DE "Eis", 12
  871. .string LAN_EN "Freeze", 12
  872. .hword 17, 554
  873. .word str_pokedex_eintraege_144
  874. .word str_pokedex_eintraege_144
  875. .hword 0, 0, 0, 0, 0, 0
  876. .string LAN_DE "Elektro", 12
  877. .string LAN_EN "Electric", 12
  878. .hword 16, 526
  879. .word str_pokedex_eintraege_145
  880. .word str_pokedex_eintraege_145
  881. .hword 0, 0, 0, 0, 0, 0
  882. .string LAN_DE "Flamme", 12
  883. .string LAN_EN "Flame", 12
  884. .hword 20, 600
  885. .word str_pokedex_eintraege_146
  886. .word str_pokedex_eintraege_146
  887. .hword 0, 0, 0, 0, 0, 0
  888. .string LAN_DE "Drache", 12
  889. .string LAN_EN "Dragon", 12
  890. .hword 18, 33
  891. .word str_pokedex_eintraege_147
  892. .word str_pokedex_eintraege_147
  893. .hword 0, 0, 0, 0, 0, 0
  894. .string LAN_DE "Drache", 12
  895. .string LAN_EN "Dragon", 12
  896. .hword 40, 165
  897. .word str_pokedex_eintraege_148
  898. .word str_pokedex_eintraege_148
  899. .hword 0, 0, 0, 0, 0, 0
  900. .string LAN_DE "Drache", 12
  901. .string LAN_EN "Dragon", 12
  902. .hword 22, 2100
  903. .word str_pokedex_eintraege_149
  904. .word str_pokedex_eintraege_149
  905. .hword 0, 0, 0, 0, 0, 0
  906. .string LAN_DE "Genmutant", 12
  907. .string LAN_EN "Genetic", 12
  908. .hword 20, 1220
  909. .word str_pokedex_eintraege_150
  910. .word str_pokedex_eintraege_150
  911. .hword 0, 0, 0, 0, 0, 0
  912. .string LAN_DE "Neue Art", 12
  913. .string LAN_EN "New Species", 12
  914. .hword 4, 40
  915. .word str_pokedex_eintraege_151
  916. .word str_pokedex_eintraege_151
  917. .hword 0, 0, 0, 0, 0, 0
  918. .string LAN_DE "Laub", 12
  919. .string LAN_EN "Leaf", 12
  920. .hword 9, 64
  921. .word str_pokedex_eintraege_152
  922. .word str_pokedex_eintraege_152
  923. .hword 0, 0, 0, 0, 0, 0
  924. .string LAN_DE "Laub", 12
  925. .string LAN_EN "Leaf", 12
  926. .hword 12, 158
  927. .word str_pokedex_eintraege_153
  928. .word str_pokedex_eintraege_153
  929. .hword 0, 0, 0, 0, 0, 0
  930. .string LAN_DE "Kräuter", 12
  931. .string LAN_EN "Herb", 12
  932. .hword 18, 1005
  933. .word str_pokedex_eintraege_154
  934. .word str_pokedex_eintraege_154
  935. .hword 0, 0, 0, 0, 0, 0
  936. .string LAN_DE "Feuermaus", 12
  937. .string LAN_EN "Fire Mouse", 12
  938. .hword 5, 79
  939. .word str_pokedex_eintraege_155
  940. .word str_pokedex_eintraege_155
  941. .hword 0, 0, 0, 0, 0, 0
  942. .string LAN_DE "Vulkan", 12
  943. .string LAN_EN "Volcano", 12
  944. .hword 9, 190
  945. .word str_pokedex_eintraege_156
  946. .word str_pokedex_eintraege_156
  947. .hword 0, 0, 0, 0, 0, 0
  948. .string LAN_DE "Vulkan", 12
  949. .string LAN_EN "Volcano", 12
  950. .hword 17, 795
  951. .word str_pokedex_eintraege_157
  952. .word str_pokedex_eintraege_157
  953. .hword 0, 0, 0, 0, 0, 0
  954. .string LAN_DE "Großmaul", 12
  955. .string LAN_EN "Big Jaw", 12
  956. .hword 6, 95
  957. .word str_pokedex_eintraege_158
  958. .word str_pokedex_eintraege_158
  959. .hword 0, 0, 0, 0, 0, 0
  960. .string LAN_DE "Großmaul", 12
  961. .string LAN_EN "Big Jaw", 12
  962. .hword 11, 250
  963. .word str_pokedex_eintraege_159
  964. .word str_pokedex_eintraege_159
  965. .hword 0, 0, 0, 0, 0, 0
  966. .string LAN_DE "Großmaul", 12
  967. .string LAN_EN "Big Jaw", 12
  968. .hword 23, 888
  969. .word str_pokedex_eintraege_160
  970. .word str_pokedex_eintraege_160
  971. .hword 0, 0, 0, 0, 0, 0
  972. .string LAN_DE "Späher", 12
  973. .string LAN_EN "Scout", 12
  974. .hword 8, 60
  975. .word str_pokedex_eintraege_161
  976. .word str_pokedex_eintraege_161
  977. .hword 0, 0, 0, 0, 0, 0
  978. .string LAN_DE "Langleib", 12
  979. .string LAN_EN "Long Body", 12
  980. .hword 18, 325
  981. .word str_pokedex_eintraege_162
  982. .word str_pokedex_eintraege_162
  983. .hword 0, 0, 0, 0, 0, 0
  984. .string LAN_DE "Eule", 12
  985. .string LAN_EN "Owl", 12
  986. .hword 7, 212
  987. .word str_pokedex_eintraege_163
  988. .word str_pokedex_eintraege_163
  989. .hword 0, 0, 0, 0, 0, 0
  990. .string LAN_DE "Eule", 12
  991. .string LAN_EN "Owl", 12
  992. .hword 16, 408
  993. .word str_pokedex_eintraege_164
  994. .word str_pokedex_eintraege_164
  995. .hword 0, 0, 0, 0, 0, 0
  996. .string LAN_DE "Fünf-Punkt", 12
  997. .string LAN_EN "Five Star", 12
  998. .hword 10, 108
  999. .word str_pokedex_eintraege_165
  1000. .word str_pokedex_eintraege_165
  1001. .hword 0, 0, 0, 0, 0, 0
  1002. .string LAN_DE "Fünf-Punkt", 12
  1003. .string LAN_EN "Five Star", 12
  1004. .hword 14, 356
  1005. .word str_pokedex_eintraege_166
  1006. .word str_pokedex_eintraege_166
  1007. .hword 0, 0, 0, 0, 0, 0
  1008. .string LAN_DE "Fadenwurf", 12
  1009. .string LAN_EN "String Spit", 12
  1010. .hword 5, 85
  1011. .word str_pokedex_eintraege_167
  1012. .word str_pokedex_eintraege_167
  1013. .hword 0, 0, 0, 0, 0, 0
  1014. .string LAN_DE "Langbein", 12
  1015. .string LAN_EN "Long Leg", 12
  1016. .hword 11, 335
  1017. .word str_pokedex_eintraege_168
  1018. .word str_pokedex_eintraege_168
  1019. .hword 0, 0, 0, 0, 0, 0
  1020. .string LAN_DE "Fledermaus", 12
  1021. .string LAN_EN "Bat", 12
  1022. .hword 18, 750
  1023. .word str_pokedex_eintraege_169
  1024. .word str_pokedex_eintraege_169
  1025. .hword 0, 0, 0, 0, 0, 0
  1026. .string LAN_DE "Angler", 12
  1027. .string LAN_EN "Angler", 12
  1028. .hword 5, 120
  1029. .word str_pokedex_eintraege_170
  1030. .word str_pokedex_eintraege_170
  1031. .hword 0, 0, 0, 0, 0, 0
  1032. .string LAN_DE "Leuchte", 12
  1033. .string LAN_EN "Light", 12
  1034. .hword 12, 225
  1035. .word str_pokedex_eintraege_171
  1036. .word str_pokedex_eintraege_171
  1037. .hword 0, 0, 0, 0, 0, 0
  1038. .string LAN_DE "Babymaus", 12
  1039. .string LAN_EN "Tiny Mouse", 12
  1040. .hword 3, 20
  1041. .word str_pokedex_eintraege_172
  1042. .word str_pokedex_eintraege_172
  1043. .hword 0, 0, 0, 0, 0, 0
  1044. .string LAN_DE "Sternform", 12
  1045. .string LAN_EN "Star Shape", 12
  1046. .hword 3, 30
  1047. .word str_pokedex_eintraege_173
  1048. .word str_pokedex_eintraege_173
  1049. .hword 0, 0, 0, 0, 0, 0
  1050. .string LAN_DE "Ballon", 12
  1051. .string LAN_EN "Balloon", 12
  1052. .hword 3, 10
  1053. .word str_pokedex_eintraege_174
  1054. .word str_pokedex_eintraege_174
  1055. .hword 0, 0, 0, 0, 0, 0
  1056. .string LAN_DE "Zackenball", 12
  1057. .string LAN_EN "Spike Ball", 12
  1058. .hword 3, 15
  1059. .word str_pokedex_eintraege_175
  1060. .word str_pokedex_eintraege_175
  1061. .hword 0, 0, 0, 0, 0, 0
  1062. .string LAN_DE "Freude", 12
  1063. .string LAN_EN "Happiness", 12
  1064. .hword 6, 32
  1065. .word str_pokedex_eintraege_176
  1066. .word str_pokedex_eintraege_176
  1067. .hword 0, 0, 0, 0, 0, 0
  1068. .string LAN_DE "Kleinvogel", 12
  1069. .string LAN_EN "Tiny Bird", 12
  1070. .hword 2, 20
  1071. .word str_pokedex_eintraege_177
  1072. .word str_pokedex_eintraege_177
  1073. .hword 0, 0, 0, 0, 0, 0
  1074. .string LAN_DE "Mystik", 12
  1075. .string LAN_EN "Mystic", 12
  1076. .hword 15, 150
  1077. .word str_pokedex_eintraege_178
  1078. .word str_pokedex_eintraege_178
  1079. .hword 0, 0, 0, 0, 0, 0
  1080. .string LAN_DE "Wolle", 12
  1081. .string LAN_EN "Wool", 12
  1082. .hword 6, 78
  1083. .word str_pokedex_eintraege_179
  1084. .word str_pokedex_eintraege_179
  1085. .hword 0, 0, 0, 0, 0, 0
  1086. .string LAN_DE "Wolle", 12
  1087. .string LAN_EN "Wool", 12
  1088. .hword 8, 133
  1089. .word str_pokedex_eintraege_180
  1090. .word str_pokedex_eintraege_180
  1091. .hword 0, 0, 0, 0, 0, 0
  1092. .string LAN_DE "Leuchte", 12
  1093. .string LAN_EN "Light", 12
  1094. .hword 14, 615
  1095. .word str_pokedex_eintraege_181
  1096. .word str_pokedex_eintraege_181
  1097. .hword 0, 0, 0, 0, 0, 0
  1098. .string LAN_DE "Blume", 12
  1099. .string LAN_EN "Flower", 12
  1100. .hword 4, 58
  1101. .word str_pokedex_eintraege_182
  1102. .word str_pokedex_eintraege_182
  1103. .hword 0, 0, 0, 0, 0, 0
  1104. .string LAN_DE "Aquamaus", 12
  1105. .string LAN_EN "Aqua Mouse", 12
  1106. .hword 4, 85
  1107. .word str_pokedex_eintraege_183
  1108. .word str_pokedex_eintraege_183
  1109. .hword 0, 0, 0, 0, 0, 0
  1110. .string LAN_DE "Aquahase", 12
  1111. .string LAN_EN "Aqua Rabbit", 12
  1112. .hword 8, 285
  1113. .word str_pokedex_eintraege_184
  1114. .word str_pokedex_eintraege_184
  1115. .hword 0, 0, 0, 0, 0, 0
  1116. .string LAN_DE "Imitation", 12
  1117. .string LAN_EN "Imitation", 12
  1118. .hword 12, 380
  1119. .word str_pokedex_eintraege_185
  1120. .word str_pokedex_eintraege_185
  1121. .hword 0, 0, 0, 0, 0, 0
  1122. .string LAN_DE "Frosch", 12
  1123. .string LAN_EN "Frog", 12
  1124. .hword 11, 339
  1125. .word str_pokedex_eintraege_186
  1126. .word str_pokedex_eintraege_186
  1127. .hword 0, 0, 0, 0, 0, 0
  1128. .string LAN_DE "Löwenzahn", 12
  1129. .string LAN_EN "Cottonweed", 12
  1130. .hword 4, 5
  1131. .word str_pokedex_eintraege_187
  1132. .word str_pokedex_eintraege_187
  1133. .hword 0, 0, 0, 0, 0, 0
  1134. .string LAN_DE "Löwenzahn", 12
  1135. .string LAN_EN "Cottonweed", 12
  1136. .hword 6, 10
  1137. .word str_pokedex_eintraege_188
  1138. .word str_pokedex_eintraege_188
  1139. .hword 0, 0, 0, 0, 0, 0
  1140. .string LAN_DE "Löwenzahn", 12
  1141. .string LAN_EN "Cottonweed", 12
  1142. .hword 8, 30
  1143. .word str_pokedex_eintraege_189
  1144. .word str_pokedex_eintraege_189
  1145. .hword 0, 0, 0, 0, 0, 0
  1146. .string LAN_DE "Langschweif", 12
  1147. .string LAN_EN "Long Tail", 12
  1148. .hword 8, 115
  1149. .word str_pokedex_eintraege_190
  1150. .word str_pokedex_eintraege_190
  1151. .hword 0, 0, 0, 0, 0, 0
  1152. .string LAN_DE "Samen", 12
  1153. .string LAN_EN "Seed", 12
  1154. .hword 3, 18
  1155. .word str_pokedex_eintraege_191
  1156. .word str_pokedex_eintraege_191
  1157. .hword 0, 0, 0, 0, 0, 0
  1158. .string LAN_DE "Sonne", 12
  1159. .string LAN_EN "Sun", 12
  1160. .hword 8, 85
  1161. .word str_pokedex_eintraege_192
  1162. .word str_pokedex_eintraege_192
  1163. .hword 0, 0, 0, 0, 0, 0
  1164. .string LAN_DE "Libelle", 12
  1165. .string LAN_EN "Clear Wing", 12
  1166. .hword 12, 380
  1167. .word str_pokedex_eintraege_193
  1168. .word str_pokedex_eintraege_193
  1169. .hword 0, 0, 0, 0, 0, 0
  1170. .string LAN_DE "Fisch", 12
  1171. .string LAN_EN "Water Fish", 12
  1172. .hword 4, 85
  1173. .word str_pokedex_eintraege_194
  1174. .word str_pokedex_eintraege_194
  1175. .hword 0, 0, 0, 0, 0, 0
  1176. .string LAN_DE "Fisch", 12
  1177. .string LAN_EN "Water Fish", 12
  1178. .hword 14, 750
  1179. .word str_pokedex_eintraege_195
  1180. .word str_pokedex_eintraege_195
  1181. .hword 0, 0, 0, 0, 0, 0
  1182. .string LAN_DE "Sonne", 12
  1183. .string LAN_EN "Sun", 12
  1184. .hword 9, 265
  1185. .word str_pokedex_eintraege_196
  1186. .word str_pokedex_eintraege_196
  1187. .hword 0, 0, 0, 0, 0, 0
  1188. .string LAN_DE "Mondschein", 12
  1189. .string LAN_EN "Moonlight", 12
  1190. .hword 10, 270
  1191. .word str_pokedex_eintraege_197
  1192. .word str_pokedex_eintraege_197
  1193. .hword 0, 0, 0, 0, 0, 0
  1194. .string LAN_DE "Finsternis", 12
  1195. .string LAN_EN "Darkness", 12
  1196. .hword 5, 21
  1197. .word str_pokedex_eintraege_198
  1198. .word str_pokedex_eintraege_198
  1199. .hword 0, 0, 0, 0, 0, 0
  1200. .string LAN_DE "Monarch", 12
  1201. .string LAN_EN "Royal", 12
  1202. .hword 20, 795
  1203. .word str_pokedex_eintraege_199
  1204. .word str_pokedex_eintraege_199
  1205. .hword 0, 0, 0, 0, 0, 0
  1206. .string LAN_DE "Kreischer", 12
  1207. .string LAN_EN "Screech", 12
  1208. .hword 7, 10
  1209. .word str_pokedex_eintraege_200
  1210. .word str_pokedex_eintraege_200
  1211. .hword 0, 0, 0, 0, 0, 0
  1212. .string LAN_DE "Symbol", 12
  1213. .string LAN_EN "Symbol", 12
  1214. .hword 5, 50
  1215. .word str_pokedex_eintraege_201
  1216. .word str_pokedex_eintraege_201
  1217. .hword 0, 0, 0, 0, 0, 0
  1218. .string LAN_DE "Geduld", 12
  1219. .string LAN_EN "Patient", 12
  1220. .hword 13, 285
  1221. .word str_pokedex_eintraege_202
  1222. .word str_pokedex_eintraege_202
  1223. .hword 0, 0, 0, 0, 0, 0
  1224. .string LAN_DE "Langhals", 12
  1225. .string LAN_EN "Long Neck", 12
  1226. .hword 15, 415
  1227. .word str_pokedex_eintraege_203
  1228. .word str_pokedex_eintraege_203
  1229. .hword 0, 0, 0, 0, 0, 0
  1230. .string LAN_DE "Beutelwurm", 12
  1231. .string LAN_EN "Bagworm", 12
  1232. .hword 6, 72
  1233. .word str_pokedex_eintraege_204
  1234. .word str_pokedex_eintraege_204
  1235. .hword 0, 0, 0, 0, 0, 0
  1236. .string LAN_DE "Beutelwurm", 12
  1237. .string LAN_EN "Bagworm", 12
  1238. .hword 12, 1258
  1239. .word str_pokedex_eintraege_205
  1240. .word str_pokedex_eintraege_205
  1241. .hword 0, 0, 0, 0, 0, 0
  1242. .string LAN_DE "Schlange", 12
  1243. .string LAN_EN "Land Snake", 12
  1244. .hword 15, 140
  1245. .word str_pokedex_eintraege_206
  1246. .word str_pokedex_eintraege_206
  1247. .hword 0, 0, 0, 0, 0, 0
  1248. .string LAN_DE "Flugskorpi", 12
  1249. .string LAN_EN "Fly Scorp.", 12
  1250. .hword 11, 648
  1251. .word str_pokedex_eintraege_207
  1252. .word str_pokedex_eintraege_207
  1253. .hword 0, 0, 0, 0, 0, 0
  1254. .string LAN_DE "Stahlboa", 12
  1255. .string LAN_EN "Iron Snake", 12
  1256. .hword 92, 4000
  1257. .word str_pokedex_eintraege_208
  1258. .word str_pokedex_eintraege_208
  1259. .hword 0, 0, 0, 0, 0, 0
  1260. .string LAN_DE "Fee", 12
  1261. .string LAN_EN "Fairy", 12
  1262. .hword 6, 78
  1263. .word str_pokedex_eintraege_209
  1264. .word str_pokedex_eintraege_209
  1265. .hword 0, 0, 0, 0, 0, 0
  1266. .string LAN_DE "Fee", 12
  1267. .string LAN_EN "Fairy", 12
  1268. .hword 14, 487
  1269. .word str_pokedex_eintraege_210
  1270. .word str_pokedex_eintraege_210
  1271. .hword 0, 0, 0, 0, 0, 0
  1272. .string LAN_DE "Ballon", 12
  1273. .string LAN_EN "Balloon", 12
  1274. .hword 5, 39
  1275. .word str_pokedex_eintraege_211
  1276. .word str_pokedex_eintraege_211
  1277. .hword 0, 0, 0, 0, 0, 0
  1278. .string LAN_DE "Kneifer", 12
  1279. .string LAN_EN "Pincer", 12
  1280. .hword 18, 1180
  1281. .word str_pokedex_eintraege_212
  1282. .word str_pokedex_eintraege_212
  1283. .hword 0, 0, 0, 0, 0, 0
  1284. .string LAN_DE "Schimmel", 12
  1285. .string LAN_EN "Mold", 12
  1286. .hword 6, 205
  1287. .word str_pokedex_eintraege_213
  1288. .word str_pokedex_eintraege_213
  1289. .hword 0, 0, 0, 0, 0, 0
  1290. .string LAN_DE "Einzelhorn", 12
  1291. .string LAN_EN "Single Horn", 12
  1292. .hword 15, 540
  1293. .word str_pokedex_eintraege_214
  1294. .word str_pokedex_eintraege_214
  1295. .hword 0, 0, 0, 0, 0, 0
  1296. .string LAN_DE "Stichklaue", 12
  1297. .string LAN_EN "Sharp Claw", 12
  1298. .hword 9, 280
  1299. .word str_pokedex_eintraege_215
  1300. .word str_pokedex_eintraege_215
  1301. .hword 0, 0, 0, 0, 0, 0
  1302. .string LAN_DE "Kleinbär", 12
  1303. .string LAN_EN "Little Bear", 12
  1304. .hword 6, 88
  1305. .word str_pokedex_eintraege_216
  1306. .word str_pokedex_eintraege_216
  1307. .hword 0, 0, 0, 0, 0, 0
  1308. .string LAN_DE "Schläfer", 12
  1309. .string LAN_EN "Hibernator", 12
  1310. .hword 18, 1258
  1311. .word str_pokedex_eintraege_217
  1312. .word str_pokedex_eintraege_217
  1313. .hword 0, 0, 0, 0, 0, 0
  1314. .string LAN_DE "Lava", 12
  1315. .string LAN_EN "Lava", 12
  1316. .hword 7, 350
  1317. .word str_pokedex_eintraege_218
  1318. .word str_pokedex_eintraege_218
  1319. .hword 0, 0, 0, 0, 0, 0
  1320. .string LAN_DE "Lava", 12
  1321. .string LAN_EN "Lava", 12
  1322. .hword 8, 550
  1323. .word str_pokedex_eintraege_219
  1324. .word str_pokedex_eintraege_219
  1325. .hword 0, 0, 0, 0, 0, 0
  1326. .string LAN_DE "Ferkel", 12
  1327. .string LAN_EN "Pig", 12
  1328. .hword 4, 65
  1329. .word str_pokedex_eintraege_220
  1330. .word str_pokedex_eintraege_220
  1331. .hword 0, 0, 0, 0, 0, 0
  1332. .string LAN_DE "Schwein", 12
  1333. .string LAN_EN "Swine", 12
  1334. .hword 11, 558
  1335. .word str_pokedex_eintraege_221
  1336. .word str_pokedex_eintraege_221
  1337. .hword 0, 0, 0, 0, 0, 0
  1338. .string LAN_DE "Koralle", 12
  1339. .string LAN_EN "Coral", 12
  1340. .hword 6, 50
  1341. .word str_pokedex_eintraege_222
  1342. .word str_pokedex_eintraege_222
  1343. .hword 0, 0, 0, 0, 0, 0
  1344. .string LAN_DE "Hochdruck", 12
  1345. .string LAN_EN "Jet", 12
  1346. .hword 6, 120
  1347. .word str_pokedex_eintraege_223
  1348. .word str_pokedex_eintraege_223
  1349. .hword 0, 0, 0, 0, 0, 0
  1350. .string LAN_DE "Hochdruck", 12
  1351. .string LAN_EN "Jet", 12
  1352. .hword 9, 285
  1353. .word str_pokedex_eintraege_224
  1354. .word str_pokedex_eintraege_224
  1355. .hword 0, 0, 0, 0, 0, 0
  1356. .string LAN_DE "Lieferant", 12
  1357. .string LAN_EN "Delivery", 12
  1358. .hword 9, 160
  1359. .word str_pokedex_eintraege_225
  1360. .word str_pokedex_eintraege_225
  1361. .hword 0, 0, 0, 0, 0, 0
  1362. .string LAN_DE "Flugrochen", 12
  1363. .string LAN_EN "Kite", 12
  1364. .hword 21, 2200
  1365. .word str_pokedex_eintraege_226
  1366. .word str_pokedex_eintraege_226
  1367. .hword 0, 0, 0, 0, 0, 0
  1368. .string LAN_DE "Flugstahl", 12
  1369. .string LAN_EN "Armor Bird", 12
  1370. .hword 17, 505
  1371. .word str_pokedex_eintraege_227
  1372. .word str_pokedex_eintraege_227
  1373. .hword 0, 0, 0, 0, 0, 0
  1374. .string LAN_DE "Hades", 12
  1375. .string LAN_EN "Dark", 12
  1376. .hword 6, 108
  1377. .word str_pokedex_eintraege_228
  1378. .word str_pokedex_eintraege_228
  1379. .hword 0, 0, 0, 0, 0, 0
  1380. .string LAN_DE "Hades", 12
  1381. .string LAN_EN "Dark", 12
  1382. .hword 14, 350
  1383. .word str_pokedex_eintraege_229
  1384. .word str_pokedex_eintraege_229
  1385. .hword 0, 0, 0, 0, 0, 0
  1386. .string LAN_DE "Drache", 12
  1387. .string LAN_EN "Dragon", 12
  1388. .hword 18, 1520
  1389. .word str_pokedex_eintraege_230
  1390. .word str_pokedex_eintraege_230
  1391. .hword 0, 0, 0, 0, 0, 0
  1392. .string LAN_DE "Langrüssel", 12
  1393. .string LAN_EN "Long Nose", 12
  1394. .hword 5, 335
  1395. .word str_pokedex_eintraege_231
  1396. .word str_pokedex_eintraege_231
  1397. .hword 0, 0, 0, 0, 0, 0
  1398. .string LAN_DE "Panzer", 12
  1399. .string LAN_EN "Armor", 12
  1400. .hword 11, 1200
  1401. .word str_pokedex_eintraege_232
  1402. .word str_pokedex_eintraege_232
  1403. .hword 0, 0, 0, 0, 0, 0
  1404. .string LAN_DE "Virtuell", 12
  1405. .string LAN_EN "Virtual", 12
  1406. .hword 6, 325
  1407. .word str_pokedex_eintraege_233
  1408. .word str_pokedex_eintraege_233
  1409. .hword 0, 0, 0, 0, 0, 0
  1410. .string LAN_DE "Vielender", 12
  1411. .string LAN_EN "Big Horn", 12
  1412. .hword 14, 712
  1413. .word str_pokedex_eintraege_234
  1414. .word str_pokedex_eintraege_234
  1415. .hword 0, 0, 0, 0, 0, 0
  1416. .string LAN_DE "Maler", 12
  1417. .string LAN_EN "Painter", 12
  1418. .hword 12, 580
  1419. .word str_pokedex_eintraege_235
  1420. .word str_pokedex_eintraege_235
  1421. .hword 0, 0, 0, 0, 0, 0
  1422. .string LAN_DE "Racker", 12
  1423. .string LAN_EN "Scuffle", 12
  1424. .hword 7, 210
  1425. .word str_pokedex_eintraege_236
  1426. .word str_pokedex_eintraege_236
  1427. .hword 0, 0, 0, 0, 0, 0
  1428. .string LAN_DE "Kopfstand", 12
  1429. .string LAN_EN "Handstand", 12
  1430. .hword 14, 480
  1431. .word str_pokedex_eintraege_237
  1432. .word str_pokedex_eintraege_237
  1433. .hword 0, 0, 0, 0, 0, 0
  1434. .string LAN_DE "Kuss", 12
  1435. .string LAN_EN "Kiss", 12
  1436. .hword 4, 60
  1437. .word str_pokedex_eintraege_238
  1438. .word str_pokedex_eintraege_238
  1439. .hword 0, 0, 0, 0, 0, 0
  1440. .string LAN_DE "Elektro", 12
  1441. .string LAN_EN "Electric", 12
  1442. .hword 6, 235
  1443. .word str_pokedex_eintraege_239
  1444. .word str_pokedex_eintraege_239
  1445. .hword 0, 0, 0, 0, 0, 0
  1446. .string LAN_DE "Glutherd", 12
  1447. .string LAN_EN "Live Coal", 12
  1448. .hword 7, 214
  1449. .word str_pokedex_eintraege_240
  1450. .word str_pokedex_eintraege_240
  1451. .hword 0, 0, 0, 0, 0, 0
  1452. .string LAN_DE "Milchkuh", 12
  1453. .string LAN_EN "Milk Cow", 12
  1454. .hword 12, 755
  1455. .word str_pokedex_eintraege_241
  1456. .word str_pokedex_eintraege_241
  1457. .hword 0, 0, 0, 0, 0, 0
  1458. .string LAN_DE "Freude", 12
  1459. .string LAN_EN "Happiness", 12
  1460. .hword 15, 468
  1461. .word str_pokedex_eintraege_242
  1462. .word str_pokedex_eintraege_242
  1463. .hword 0, 0, 0, 0, 0, 0
  1464. .string LAN_DE "Donner", 12
  1465. .string LAN_EN "Thunder", 12
  1466. .hword 19, 1780
  1467. .word str_pokedex_eintraege_243
  1468. .word str_pokedex_eintraege_243
  1469. .hword 0, 0, 0, 0, 0, 0
  1470. .string LAN_DE "Vulkan", 12
  1471. .string LAN_EN "Volcano", 12
  1472. .hword 21, 1980
  1473. .word str_pokedex_eintraege_244
  1474. .word str_pokedex_eintraege_244
  1475. .hword 0, 0, 0, 0, 0, 0
  1476. .string LAN_DE "Polarlicht", 12
  1477. .string LAN_EN "Aurora", 12
  1478. .hword 20, 1870
  1479. .word str_pokedex_eintraege_245
  1480. .word str_pokedex_eintraege_245
  1481. .hword 0, 0, 0, 0, 0, 0
  1482. .string LAN_DE "Felshaut", 12
  1483. .string LAN_EN "Rock Skin", 12
  1484. .hword 6, 720
  1485. .word str_pokedex_eintraege_246
  1486. .word str_pokedex_eintraege_246
  1487. .hword 0, 0, 0, 0, 0, 0
  1488. .string LAN_DE "Hartschale", 12
  1489. .string LAN_EN "Hard Shell", 12
  1490. .hword 12, 1520
  1491. .word str_pokedex_eintraege_247
  1492. .word str_pokedex_eintraege_247
  1493. .hword 0, 0, 0, 0, 0, 0
  1494. .string LAN_DE "Panzer", 12
  1495. .string LAN_EN "Armor", 12
  1496. .hword 20, 2020
  1497. .word str_pokedex_eintraege_248
  1498. .word str_pokedex_eintraege_248
  1499. .hword 0, 0, 0, 0, 0, 0
  1500. .string LAN_DE "Taucher", 12
  1501. .string LAN_EN "Diving", 12
  1502. .hword 52, 2160
  1503. .word str_pokedex_eintraege_249
  1504. .word str_pokedex_eintraege_249
  1505. .hword 0, 0, 0, 0, 0, 0
  1506. .string LAN_DE "Regenbogen", 12
  1507. .string LAN_EN "Rainbow", 12
  1508. .hword 38, 1990
  1509. .word str_pokedex_eintraege_250
  1510. .word str_pokedex_eintraege_250
  1511. .hword 0, 0, 0, 0, 0, 0
  1512. .string LAN_DE "Zeitreise", 12
  1513. .string LAN_EN "Time Travel", 12
  1514. .hword 6, 50
  1515. .word str_pokedex_eintraege_251
  1516. .word str_pokedex_eintraege_251
  1517. .hword 0, 0, 0, 0, 0, 0
  1518. .string LAN_DE "Waldgecko", 12
  1519. .string LAN_EN "Wood Gecko", 12
  1520. .hword 3, 38
  1521. .word str_pokedex_eintraege_252
  1522. .word str_pokedex_eintraege_252
  1523. .hword 0, 0, 0, 0, 0, 0
  1524. .string LAN_DE "Waldgecko", 12
  1525. .string LAN_EN "Wood Gecko", 12
  1526. .hword 7, 255
  1527. .word str_pokedex_eintraege_253
  1528. .word str_pokedex_eintraege_253
  1529. .hword 0, 0, 0, 0, 0, 0
  1530. .string LAN_DE "Dschungel", 12
  1531. .string LAN_EN "Forest", 12
  1532. .hword 7, 210
  1533. .word str_pokedex_eintraege_254
  1534. .word str_pokedex_eintraege_254
  1535. .hword 0, 0, 0, 0, 0, 0
  1536. .string LAN_DE "Küken", 12
  1537. .string LAN_EN "Chick", 12
  1538. .hword 7, 400
  1539. .word str_pokedex_eintraege_255
  1540. .word str_pokedex_eintraege_255
  1541. .hword 0, 0, 0, 0, 0, 0
  1542. .string LAN_DE "Kleinhahn", 12
  1543. .string LAN_EN "Young Fowl", 12
  1544. .hword 12, 550
  1545. .word str_pokedex_eintraege_256
  1546. .word str_pokedex_eintraege_256
  1547. .hword 0, 0, 0, 0, 0, 0
  1548. .string LAN_DE "Großbrand", 12
  1549. .string LAN_EN "Blaze", 12
  1550. .hword 6, 99
  1551. .word str_pokedex_eintraege_257
  1552. .word str_pokedex_eintraege_257
  1553. .hword 0, 0, 0, 0, 0, 0
  1554. .string LAN_DE "Lehmhüpfer", 12
  1555. .string LAN_EN "Mud Fish", 12
  1556. .hword 11, 199
  1557. .word str_pokedex_eintraege_258
  1558. .word str_pokedex_eintraege_258
  1559. .hword 0, 0, 0, 0, 0, 0
  1560. .string LAN_DE "Lehmhüpfer", 12
  1561. .string LAN_EN "Mud Fish", 12
  1562. .hword 2, 10
  1563. .word str_pokedex_eintraege_259
  1564. .word str_pokedex_eintraege_259
  1565. .hword 0, 0, 0, 0, 0, 0
  1566. .string LAN_DE "Lehmhüpfer", 12
  1567. .string LAN_EN "Mud Fish", 12
  1568. .hword 7, 666
  1569. .word str_pokedex_eintraege_260
  1570. .word str_pokedex_eintraege_260
  1571. .hword 0, 0, 0, 0, 0, 0
  1572. .string LAN_DE "Biss", 12
  1573. .string LAN_EN "Bite", 12
  1574. .hword 4, 42
  1575. .word str_pokedex_eintraege_261
  1576. .word str_pokedex_eintraege_261
  1577. .hword 0, 0, 0, 0, 0, 0
  1578. .string LAN_DE "Biss", 12
  1579. .string LAN_EN "Bite", 12
  1580. .hword 11, 330
  1581. .word str_pokedex_eintraege_262
  1582. .word str_pokedex_eintraege_262
  1583. .hword 0, 0, 0, 0, 0, 0
  1584. .string LAN_DE "Kleindachs", 12
  1585. .string LAN_EN "Tiny Racco.", 12
  1586. .hword 4, 203
  1587. .word str_pokedex_eintraege_263
  1588. .word str_pokedex_eintraege_263
  1589. .hword 0, 0, 0, 0, 0, 0
  1590. .string LAN_DE "Sprinter", 12
  1591. .string LAN_EN "Rushing", 12
  1592. .hword 10, 1100
  1593. .word str_pokedex_eintraege_264
  1594. .word str_pokedex_eintraege_264
  1595. .hword 0, 0, 0, 0, 0, 0
  1596. .string LAN_DE "Wurm", 12
  1597. .string LAN_EN "Worm", 12
  1598. .hword 17, 3160
  1599. .word str_pokedex_eintraege_265
  1600. .word str_pokedex_eintraege_265
  1601. .hword 0, 0, 0, 0, 0, 0
  1602. .string LAN_DE "Kokon", 12
  1603. .string LAN_EN "Cocoon", 12
  1604. .hword 7, 420
  1605. .word str_pokedex_eintraege_266
  1606. .word str_pokedex_eintraege_266
  1607. .hword 0, 0, 0, 0, 0, 0
  1608. .string LAN_DE "Falter", 12
  1609. .string LAN_EN "Butterfly", 12
  1610. .hword 10, 520
  1611. .word str_pokedex_eintraege_267
  1612. .word str_pokedex_eintraege_267
  1613. .hword 0, 0, 0, 0, 0, 0
  1614. .string LAN_DE "Kokon", 12
  1615. .string LAN_EN "Cocoon", 12
  1616. .hword 109, 4156
  1617. .word str_pokedex_eintraege_268
  1618. .word str_pokedex_eintraege_268
  1619. .hword 0, 0, 0, 0, 0, 0
  1620. .string LAN_DE "Giftmotte", 12
  1621. .string LAN_EN "Poison Moth", 12
  1622. .hword 10, 340
  1623. .word str_pokedex_eintraege_269
  1624. .word str_pokedex_eintraege_269
  1625. .hword 0, 0, 0, 0, 0, 0
  1626. .string LAN_DE "Wasserlinse", 12
  1627. .string LAN_EN "Water Weed", 12
  1628. .hword 1, 10
  1629. .word str_pokedex_eintraege_270
  1630. .word str_pokedex_eintraege_270
  1631. .hword 0, 0, 0, 0, 0, 0
  1632. .string LAN_DE "Frohmut", 12
  1633. .string LAN_EN "Jolly", 12
  1634. .hword 3, 20
  1635. .word str_pokedex_eintraege_271
  1636. .word str_pokedex_eintraege_271
  1637. .hword 0, 0, 0, 0, 0, 0
  1638. .string LAN_DE "Sorglos", 12
  1639. .string LAN_EN "Carefree", 12
  1640. .hword 9, 35
  1641. .word str_pokedex_eintraege_272
  1642. .word str_pokedex_eintraege_272
  1643. .hword 0, 0, 0, 0, 0, 0
  1644. .string LAN_DE "Eichelnuss", 12
  1645. .string LAN_EN "Acorn", 12
  1646. .hword 1, 10
  1647. .word str_pokedex_eintraege_273
  1648. .word str_pokedex_eintraege_273
  1649. .hword 0, 0, 0, 0, 0, 0
  1650. .string LAN_DE "Hinterlist", 12
  1651. .string LAN_EN "Wily", 12
  1652. .hword 3, 20
  1653. .word str_pokedex_eintraege_274
  1654. .word str_pokedex_eintraege_274
  1655. .hword 0, 0, 0, 0, 0, 0
  1656. .string LAN_DE "Verschlagen", 12
  1657. .string LAN_EN "Wicked", 12
  1658. .hword 9, 35
  1659. .word str_pokedex_eintraege_275
  1660. .word str_pokedex_eintraege_275
  1661. .hword 0, 0, 0, 0, 0, 0
  1662. .string LAN_DE "Schwälblein", 12
  1663. .string LAN_EN "Tiny Swall.", 12
  1664. .hword 6, 85
  1665. .word str_pokedex_eintraege_276
  1666. .word str_pokedex_eintraege_276
  1667. .hword 0, 0, 0, 0, 0, 0
  1668. .string LAN_DE "Schwalbe", 12
  1669. .string LAN_EN "Swallow", 12
  1670. .hword 5, 50
  1671. .word str_pokedex_eintraege_277
  1672. .word str_pokedex_eintraege_277
  1673. .hword 0, 0, 0, 0, 0, 0
  1674. .string LAN_DE "Seemöwe", 12
  1675. .string LAN_EN "Seagull", 12
  1676. .hword 9, 216
  1677. .word str_pokedex_eintraege_278
  1678. .word str_pokedex_eintraege_278
  1679. .hword 0, 0, 0, 0, 0, 0
  1680. .string LAN_DE "Wasservogel", 12
  1681. .string LAN_EN "Water Bird", 12
  1682. .hword 17, 522
  1683. .word str_pokedex_eintraege_279
  1684. .word str_pokedex_eintraege_279
  1685. .hword 0, 0, 0, 0, 0, 0
  1686. .string LAN_DE "Gefühl", 12
  1687. .string LAN_EN "Feeling", 12
  1688. .hword 4, 25
  1689. .word str_pokedex_eintraege_280
  1690. .word str_pokedex_eintraege_280
  1691. .hword 0, 0, 0, 0, 0, 0
  1692. .string LAN_DE "Emotion", 12
  1693. .string LAN_EN "Emotion", 12
  1694. .hword 9, 195
  1695. .word str_pokedex_eintraege_281
  1696. .word str_pokedex_eintraege_281
  1697. .hword 0, 0, 0, 0, 0, 0
  1698. .string LAN_DE "Umarmung", 12
  1699. .string LAN_EN "Embrace", 12
  1700. .hword 19, 520
  1701. .word str_pokedex_eintraege_282
  1702. .word str_pokedex_eintraege_282
  1703. .hword 0, 0, 0, 0, 0, 0
  1704. .string LAN_DE "Wassergeher", 12
  1705. .string LAN_EN "Pond Skater", 12
  1706. .hword 4, 76
  1707. .word str_pokedex_eintraege_283
  1708. .word str_pokedex_eintraege_283
  1709. .hword 0, 0, 0, 0, 0, 0
  1710. .string LAN_DE "Auge", 12
  1711. .string LAN_EN "Eyeball", 12
  1712. .hword 7, 280
  1713. .word str_pokedex_eintraege_284
  1714. .word str_pokedex_eintraege_284
  1715. .hword 0, 0, 0, 0, 0, 0
  1716. .string LAN_DE "Pilz", 12
  1717. .string LAN_EN "Mushroom", 12
  1718. .hword 15, 819
  1719. .word str_pokedex_eintraege_285
  1720. .word str_pokedex_eintraege_285
  1721. .hword 0, 0, 0, 0, 0, 0
  1722. .string LAN_DE "Pilz", 12
  1723. .string LAN_EN "Mushroom", 12
  1724. .hword 5, 136
  1725. .word str_pokedex_eintraege_286
  1726. .word str_pokedex_eintraege_286
  1727. .hword 0, 0, 0, 0, 0, 0
  1728. .string LAN_DE "Faulpelz", 12
  1729. .string LAN_EN "Slacker", 12
  1730. .hword 10, 370
  1731. .word str_pokedex_eintraege_287
  1732. .word str_pokedex_eintraege_287
  1733. .hword 0, 0, 0, 0, 0, 0
  1734. .string LAN_DE "Wildaffe", 12
  1735. .string LAN_EN "Wild Monkey", 12
  1736. .hword 4, 175
  1737. .word str_pokedex_eintraege_288
  1738. .word str_pokedex_eintraege_288
  1739. .hword 0, 0, 0, 0, 0, 0
  1740. .string LAN_DE "Müßig", 12
  1741. .string LAN_EN "Lazy", 12
  1742. .hword 5, 325
  1743. .word str_pokedex_eintraege_289
  1744. .word str_pokedex_eintraege_289
  1745. .hword 0, 0, 0, 0, 0, 0
  1746. .string LAN_DE "Vorbereiter", 12
  1747. .string LAN_EN "Trainee", 12
  1748. .hword 3, 36
  1749. .word str_pokedex_eintraege_290
  1750. .word str_pokedex_eintraege_290
  1751. .hword 0, 0, 0, 0, 0, 0
  1752. .string LAN_DE "Ninja", 12
  1753. .string LAN_EN "Ninja", 12
  1754. .hword 6, 100
  1755. .word str_pokedex_eintraege_291
  1756. .word str_pokedex_eintraege_291
  1757. .hword 0, 0, 0, 0, 0, 0
  1758. .string LAN_DE "Häutung", 12
  1759. .string LAN_EN "Shed", 12
  1760. .hword 10, 284
  1761. .word str_pokedex_eintraege_292
  1762. .word str_pokedex_eintraege_292
  1763. .hword 0, 0, 0, 0, 0, 0
  1764. .string LAN_DE "Flüster", 12
  1765. .string LAN_EN "Whisper", 12
  1766. .hword 7, 115
  1767. .word str_pokedex_eintraege_293
  1768. .word str_pokedex_eintraege_293
  1769. .hword 0, 0, 0, 0, 0, 0
  1770. .string LAN_DE "Lauthals", 12
  1771. .string LAN_EN "Big Voice", 12
  1772. .hword 12, 316
  1773. .word str_pokedex_eintraege_294
  1774. .word str_pokedex_eintraege_294
  1775. .hword 0, 0, 0, 0, 0, 0
  1776. .string LAN_DE "Krach", 12
  1777. .string LAN_EN "Loud Noise", 12
  1778. .hword 5, 26
  1779. .word str_pokedex_eintraege_295
  1780. .word str_pokedex_eintraege_295
  1781. .hword 0, 0, 0, 0, 0, 0
  1782. .string LAN_DE "Courage", 12
  1783. .string LAN_EN "Guts", 12
  1784. .hword 12, 325
  1785. .word str_pokedex_eintraege_296
  1786. .word str_pokedex_eintraege_296
  1787. .hword 0, 0, 0, 0, 0, 0
  1788. .string LAN_DE "Armwurf", 12
  1789. .string LAN_EN "Arm Thrust", 12
  1790. .hword 15, 550
  1791. .word str_pokedex_eintraege_297
  1792. .word str_pokedex_eintraege_297
  1793. .hword 0, 0, 0, 0, 0, 0
  1794. .string LAN_DE "Gepunktet", 12
  1795. .string LAN_EN "Polka Dot", 12
  1796. .hword 5, 40
  1797. .word str_pokedex_eintraege_298
  1798. .word str_pokedex_eintraege_298
  1799. .hword 0, 0, 0, 0, 0, 0
  1800. .string LAN_DE "Kompass", 12
  1801. .string LAN_EN "Compass", 12
  1802. .hword 10, 280
  1803. .word str_pokedex_eintraege_299
  1804. .word str_pokedex_eintraege_299
  1805. .hword 0, 0, 0, 0, 0, 0
  1806. .string LAN_DE "Kätzchen", 12
  1807. .string LAN_EN "Kitten", 12
  1808. .hword 13, 596
  1809. .word str_pokedex_eintraege_300
  1810. .word str_pokedex_eintraege_300
  1811. .hword 0, 0, 0, 0, 0, 0
  1812. .string LAN_DE "Eingebildet", 12
  1813. .string LAN_EN "Prim", 12
  1814. .hword 5, 55
  1815. .word str_pokedex_eintraege_301
  1816. .word str_pokedex_eintraege_301
  1817. .hword 0, 0, 0, 0, 0, 0
  1818. .string LAN_DE "Finsternis", 12
  1819. .string LAN_EN "Darkness", 12
  1820. .hword 8, 120
  1821. .word str_pokedex_eintraege_302
  1822. .word str_pokedex_eintraege_302
  1823. .hword 0, 0, 0, 0, 0, 0
  1824. .string LAN_DE "Schwindel", 12
  1825. .string LAN_EN "Deceiver", 12
  1826. .hword 8, 12
  1827. .word str_pokedex_eintraege_303
  1828. .word str_pokedex_eintraege_303
  1829. .hword 0, 0, 0, 0, 0, 0
  1830. .string LAN_DE "Eisenpanzer", 12
  1831. .string LAN_EN "Iron Armor", 12
  1832. .hword 3, 23
  1833. .word str_pokedex_eintraege_304
  1834. .word str_pokedex_eintraege_304
  1835. .hword 0, 0, 0, 0, 0, 0
  1836. .string LAN_DE "Eisenpanzer", 12
  1837. .string LAN_EN "Iron Armor", 12
  1838. .hword 7, 198
  1839. .word str_pokedex_eintraege_305
  1840. .word str_pokedex_eintraege_305
  1841. .hword 0, 0, 0, 0, 0, 0
  1842. .string LAN_DE "Eisenpanzer", 12
  1843. .string LAN_EN "Iron Armor", 12
  1844. .hword 4, 45
  1845. .word str_pokedex_eintraege_306
  1846. .word str_pokedex_eintraege_306
  1847. .hword 0, 0, 0, 0, 0, 0
  1848. .string LAN_DE "Meditation", 12
  1849. .string LAN_EN "Meditate", 12
  1850. .hword 12, 392
  1851. .word str_pokedex_eintraege_307
  1852. .word str_pokedex_eintraege_307
  1853. .hword 0, 0, 0, 0, 0, 0
  1854. .string LAN_DE "Meditation", 12
  1855. .string LAN_EN "Meditate", 12
  1856. .hword 11, 50
  1857. .word str_pokedex_eintraege_308
  1858. .word str_pokedex_eintraege_308
  1859. .hword 0, 0, 0, 0, 0, 0
  1860. .string LAN_DE "Gewitter", 12
  1861. .string LAN_EN "Lightning", 12
  1862. .hword 6, 95
  1863. .word str_pokedex_eintraege_309
  1864. .word str_pokedex_eintraege_309
  1865. .hword 0, 0, 0, 0, 0, 0
  1866. .string LAN_DE "Entladung", 12
  1867. .string LAN_EN "Discharge", 12
  1868. .hword 12, 280
  1869. .word str_pokedex_eintraege_310
  1870. .word str_pokedex_eintraege_310
  1871. .hword 0, 0, 0, 0, 0, 0
  1872. .string LAN_DE "Jubel", 12
  1873. .string LAN_EN "Cheering", 12
  1874. .hword 5, 17
  1875. .word str_pokedex_eintraege_311
  1876. .word str_pokedex_eintraege_311
  1877. .hword 0, 0, 0, 0, 0, 0
  1878. .string LAN_DE "Jubel", 12
  1879. .string LAN_EN "Cheering", 12
  1880. .hword 8, 36
  1881. .word str_pokedex_eintraege_312
  1882. .word str_pokedex_eintraege_312
  1883. .hword 0, 0, 0, 0, 0, 0
  1884. .string LAN_DE "Libelle", 12
  1885. .string LAN_EN "Firefly", 12
  1886. .hword 20, 1300
  1887. .word str_pokedex_eintraege_313
  1888. .word str_pokedex_eintraege_313
  1889. .hword 0, 0, 0, 0, 0, 0
  1890. .string LAN_DE "Libelle", 12
  1891. .string LAN_EN "Firefly", 12
  1892. .hword 145, 3980
  1893. .word str_pokedex_eintraege_314
  1894. .word str_pokedex_eintraege_314
  1895. .hword 0, 0, 0, 0, 0, 0
  1896. .string LAN_DE "Dorn", 12
  1897. .string LAN_EN "Thorn", 12
  1898. .hword 6, 110
  1899. .word str_pokedex_eintraege_315
  1900. .word str_pokedex_eintraege_315
  1901. .hword 0, 0, 0, 0, 0, 0
  1902. .string LAN_DE "Magen", 12
  1903. .string LAN_EN "Stomach", 12
  1904. .hword 11, 326
  1905. .word str_pokedex_eintraege_316
  1906. .word str_pokedex_eintraege_316
  1907. .hword 0, 0, 0, 0, 0, 0
  1908. .string LAN_DE "Giftbeutel", 12
  1909. .string LAN_EN "Poison Bag", 12
  1910. .hword 10, 220
  1911. .word str_pokedex_eintraege_317
  1912. .word str_pokedex_eintraege_317
  1913. .hword 0, 0, 0, 0, 0, 0
  1914. .string LAN_DE "Gnadenlos", 12
  1915. .string LAN_EN "Savage", 12
  1916. .hword 5, 215
  1917. .word str_pokedex_eintraege_318
  1918. .word str_pokedex_eintraege_318
  1919. .hword 0, 0, 0, 0, 0, 0
  1920. .string LAN_DE "Brutal", 12
  1921. .string LAN_EN "Brutal", 12
  1922. .hword 15, 1080
  1923. .word str_pokedex_eintraege_319
  1924. .word str_pokedex_eintraege_319
  1925. .hword 0, 0, 0, 0, 0, 0
  1926. .string LAN_DE "Kugelwal", 12
  1927. .string LAN_EN "Ball Whale", 12
  1928. .hword 10, 970
  1929. .word str_pokedex_eintraege_320
  1930. .word str_pokedex_eintraege_320
  1931. .hword 0, 0, 0, 0, 0, 0
  1932. .string LAN_DE "Flutwal", 12
  1933. .string LAN_EN "Float Whale", 12
  1934. .hword 5, 804
  1935. .word str_pokedex_eintraege_321
  1936. .word str_pokedex_eintraege_321
  1937. .hword 0, 0, 0, 0, 0, 0
  1938. .string LAN_DE "Taubheit", 12
  1939. .string LAN_EN "Numb", 12
  1940. .hword 5, 110
  1941. .word str_pokedex_eintraege_322
  1942. .word str_pokedex_eintraege_322
  1943. .hword 0, 0, 0, 0, 0, 0
  1944. .string LAN_DE "Ausbruch", 12
  1945. .string LAN_EN "Eruption", 12
  1946. .hword 4, 19
  1947. .word str_pokedex_eintraege_323
  1948. .word str_pokedex_eintraege_323
  1949. .hword 0, 0, 0, 0, 0, 0
  1950. .string LAN_DE "Kohle", 12
  1951. .string LAN_EN "Coal", 12
  1952. .hword 9, 236
  1953. .word str_pokedex_eintraege_324
  1954. .word str_pokedex_eintraege_324
  1955. .hword 0, 0, 0, 0, 0, 0
  1956. .string LAN_DE "Sprungfeder", 12
  1957. .string LAN_EN "Bounce", 12
  1958. .hword 6, 87
  1959. .word str_pokedex_eintraege_325
  1960. .word str_pokedex_eintraege_325
  1961. .hword 0, 0, 0, 0, 0, 0
  1962. .string LAN_DE "Manipulator", 12
  1963. .string LAN_EN "Manipulate", 12
  1964. .hword 6, 115
  1965. .word str_pokedex_eintraege_326
  1966. .word str_pokedex_eintraege_326
  1967. .hword 0, 0, 0, 0, 0, 0
  1968. .string LAN_DE "Punkt-Panda", 12
  1969. .string LAN_EN "Spot Panda", 12
  1970. .hword 11, 328
  1971. .word str_pokedex_eintraege_327
  1972. .word str_pokedex_eintraege_327
  1973. .hword 0, 0, 0, 0, 0, 0
  1974. .string LAN_DE "Ameisenlöwe", 12
  1975. .string LAN_EN "Ant Pit", 12
  1976. .hword 6, 74
  1977. .word str_pokedex_eintraege_328
  1978. .word str_pokedex_eintraege_328
  1979. .hword 0, 0, 0, 0, 0, 0
  1980. .string LAN_DE "Vibration", 12
  1981. .string LAN_EN "Vibration", 12
  1982. .hword 62, 1620
  1983. .word str_pokedex_eintraege_329
  1984. .word str_pokedex_eintraege_329
  1985. .hword 0, 0, 0, 0, 0, 0
  1986. .string LAN_DE "Mystik", 12
  1987. .string LAN_EN "Mystic", 12
  1988. .hword 8, 208
  1989. .word str_pokedex_eintraege_330
  1990. .word str_pokedex_eintraege_330
  1991. .hword 0, 0, 0, 0, 0, 0
  1992. .string LAN_DE "Kaktus", 12
  1993. .string LAN_EN "Cactus", 12
  1994. .hword 18, 888
  1995. .word str_pokedex_eintraege_331
  1996. .word str_pokedex_eintraege_331
  1997. .hword 0, 0, 0, 0, 0, 0
  1998. .string LAN_DE "Vogelschock", 12
  1999. .string LAN_EN "Scarecrow", 12
  2000. .hword 7, 150
  2001. .word str_pokedex_eintraege_332
  2002. .word str_pokedex_eintraege_332
  2003. .hword 0, 0, 0, 0, 0, 0
  2004. .string LAN_DE "Wollvogel", 12
  2005. .string LAN_EN "Cotton Bird", 12
  2006. .hword 11, 153
  2007. .word str_pokedex_eintraege_333
  2008. .word str_pokedex_eintraege_333
  2009. .hword 0, 0, 0, 0, 0, 0
  2010. .string LAN_DE "Summsel", 12
  2011. .string LAN_EN "Humming", 12
  2012. .hword 20, 820
  2013. .word str_pokedex_eintraege_334
  2014. .word str_pokedex_eintraege_334
  2015. .hword 0, 0, 0, 0, 0, 0
  2016. .string LAN_DE "Frettkatz", 12
  2017. .string LAN_EN "Cat Ferret", 12
  2018. .hword 10, 864
  2019. .word str_pokedex_eintraege_335
  2020. .word str_pokedex_eintraege_335
  2021. .hword 0, 0, 0, 0, 0, 0
  2022. .string LAN_DE "Reißzahn", 12
  2023. .string LAN_EN "Fang Snake", 12
  2024. .hword 23, 2538
  2025. .word str_pokedex_eintraege_336
  2026. .word str_pokedex_eintraege_336
  2027. .hword 0, 0, 0, 0, 0, 0
  2028. .string LAN_DE "Meteorit", 12
  2029. .string LAN_EN "Meteorite", 12
  2030. .hword 6, 152
  2031. .word str_pokedex_eintraege_337
  2032. .word str_pokedex_eintraege_337
  2033. .hword 0, 0, 0, 0, 0, 0
  2034. .string LAN_DE "Meteorit", 12
  2035. .string LAN_EN "Meteorite", 12
  2036. .hword 15, 402
  2037. .word str_pokedex_eintraege_338
  2038. .word str_pokedex_eintraege_338
  2039. .hword 0, 0, 0, 0, 0, 0
  2040. .string LAN_DE "Barthaar", 12
  2041. .string LAN_EN "Whiskers", 12
  2042. .hword 7, 240
  2043. .word str_pokedex_eintraege_339
  2044. .word str_pokedex_eintraege_339
  2045. .hword 0, 0, 0, 0, 0, 0
  2046. .string LAN_DE "Barthaar", 12
  2047. .string LAN_EN "Whiskers", 12
  2048. .hword 19, 2200
  2049. .word str_pokedex_eintraege_340
  2050. .word str_pokedex_eintraege_340
  2051. .hword 0, 0, 0, 0, 0, 0
  2052. .string LAN_DE "Grobian", 12
  2053. .string LAN_EN "Ruffian", 12
  2054. .hword 8, 395
  2055. .word str_pokedex_eintraege_341
  2056. .word str_pokedex_eintraege_341
  2057. .hword 0, 0, 0, 0, 0, 0
  2058. .string LAN_DE "Schlingel", 12
  2059. .string LAN_EN "Rogue", 12
  2060. .hword 11, 876
  2061. .word str_pokedex_eintraege_342
  2062. .word str_pokedex_eintraege_342
  2063. .hword 0, 0, 0, 0, 0, 0
  2064. .string LAN_DE "Lehmpuppe", 12
  2065. .string LAN_EN "Clay Doll", 12
  2066. .hword 14, 1506
  2067. .word str_pokedex_eintraege_343
  2068. .word str_pokedex_eintraege_343
  2069. .hword 0, 0, 0, 0, 0, 0
  2070. .string LAN_DE "Lehmpuppe", 12
  2071. .string LAN_EN "Clay Doll", 12
  2072. .hword 4, 513
  2073. .word str_pokedex_eintraege_344
  2074. .word str_pokedex_eintraege_344
  2075. .hword 0, 0, 0, 0, 0, 0
  2076. .string LAN_DE "Seeanemone", 12
  2077. .string LAN_EN "Sea Lily", 12
  2078. .hword 13, 774
  2079. .word str_pokedex_eintraege_345
  2080. .word str_pokedex_eintraege_345
  2081. .hword 0, 0, 0, 0, 0, 0
  2082. .string LAN_DE "Rankfüßer", 12
  2083. .string LAN_EN "Barnacle", 12
  2084. .hword 7, 168
  2085. .word str_pokedex_eintraege_346
  2086. .word str_pokedex_eintraege_346
  2087. .hword 0, 0, 0, 0, 0, 0
  2088. .string LAN_DE "Krebssenior", 12
  2089. .string LAN_EN "Old Shrimp", 12
  2090. .hword 15, 2565
  2091. .word str_pokedex_eintraege_347
  2092. .word str_pokedex_eintraege_347
  2093. .hword 0, 0, 0, 0, 0, 0
  2094. .string LAN_DE "Schild", 12
  2095. .string LAN_EN "Plate", 12
  2096. .hword 10, 1680
  2097. .word str_pokedex_eintraege_348
  2098. .word str_pokedex_eintraege_348
  2099. .hword 0, 0, 0, 0, 0, 0
  2100. .string LAN_DE "Fisch", 12
  2101. .string LAN_EN "Fish", 12
  2102. .hword 12, 1540
  2103. .word str_pokedex_eintraege_349
  2104. .word str_pokedex_eintraege_349
  2105. .hword 0, 0, 0, 0, 0, 0
  2106. .string LAN_DE "Zartheit", 12
  2107. .string LAN_EN "Tender", 12
  2108. .hword 2, 20
  2109. .word str_pokedex_eintraege_350
  2110. .word str_pokedex_eintraege_350
  2111. .hword 0, 0, 0, 0, 0, 0
  2112. .string LAN_DE "Wetter", 12
  2113. .string LAN_EN "Weather", 12
  2114. .hword 7, 306
  2115. .word str_pokedex_eintraege_351
  2116. .word str_pokedex_eintraege_351
  2117. .hword 0, 0, 0, 0, 0, 0
  2118. .string LAN_DE "Farbenspiel", 12
  2119. .string LAN_EN "Color Swap", 12
  2120. .hword 9, 715
  2121. .word str_pokedex_eintraege_352
  2122. .word str_pokedex_eintraege_352
  2123. .hword 0, 0, 0, 0, 0, 0
  2124. .string LAN_DE "Puppe", 12
  2125. .string LAN_EN "Puppet", 12
  2126. .hword 4, 42
  2127. .word str_pokedex_eintraege_353
  2128. .word str_pokedex_eintraege_353
  2129. .hword 0, 0, 0, 0, 0, 0
  2130. .string LAN_DE "Marionette", 12
  2131. .string LAN_EN "Marionette", 12
  2132. .hword 4, 42
  2133. .word str_pokedex_eintraege_354
  2134. .word str_pokedex_eintraege_354
  2135. .hword 0, 0, 0, 0, 0, 0
  2136. .string LAN_DE "Requiem", 12
  2137. .string LAN_EN "Requiem", 12
  2138. .hword 6, 115
  2139. .word str_pokedex_eintraege_355
  2140. .word str_pokedex_eintraege_355
  2141. .hword 0, 0, 0, 0, 0, 0
  2142. .string LAN_DE "Wink", 12
  2143. .string LAN_EN "Beckon", 12
  2144. .hword 6, 112
  2145. .word str_pokedex_eintraege_356
  2146. .word str_pokedex_eintraege_356
  2147. .hword 0, 0, 0, 0, 0, 0
  2148. .string LAN_DE "Obst", 12
  2149. .string LAN_EN "Fruit", 12
  2150. .hword 13, 315
  2151. .word str_pokedex_eintraege_357
  2152. .word str_pokedex_eintraege_357
  2153. .hword 0, 0, 0, 0, 0, 0
  2154. .string LAN_DE "Windspiel", 12
  2155. .string LAN_EN "Wind Chime", 12
  2156. .hword 4, 12
  2157. .word str_pokedex_eintraege_358
  2158. .word str_pokedex_eintraege_358
  2159. .hword 0, 0, 0, 0, 0, 0
  2160. .string LAN_DE "Desaster", 12
  2161. .string LAN_EN "Disaster", 12
  2162. .hword 11, 206
  2163. .word str_pokedex_eintraege_359
  2164. .word str_pokedex_eintraege_359
  2165. .hword 0, 0, 0, 0, 0, 0
  2166. .string LAN_DE "Strahlekind", 12
  2167. .string LAN_EN "Bright", 12
  2168. .hword 6, 140
  2169. .word str_pokedex_eintraege_360
  2170. .word str_pokedex_eintraege_360
  2171. .hword 0, 0, 0, 0, 0, 0
  2172. .string LAN_DE "Schneehut", 12
  2173. .string LAN_EN "Snow Hat", 12
  2174. .hword 8, 150
  2175. .word str_pokedex_eintraege_361
  2176. .word str_pokedex_eintraege_361
  2177. .hword 0, 0, 0, 0, 0, 0
  2178. .string LAN_DE "Antlitz", 12
  2179. .string LAN_EN "Face", 12
  2180. .hword 16, 306
  2181. .word str_pokedex_eintraege_362
  2182. .word str_pokedex_eintraege_362
  2183. .hword 0, 0, 0, 0, 0, 0
  2184. .string LAN_DE "Applaus", 12
  2185. .string LAN_EN "Clap", 12
  2186. .hword 3, 20
  2187. .word str_pokedex_eintraege_363
  2188. .word str_pokedex_eintraege_363
  2189. .hword 0, 0, 0, 0, 0, 0
  2190. .string LAN_DE "Spielball", 12
  2191. .string LAN_EN "Ball Roll", 12
  2192. .hword 8, 240
  2193. .word str_pokedex_eintraege_364
  2194. .word str_pokedex_eintraege_364
  2195. .hword 0, 0, 0, 0, 0, 0
  2196. .string LAN_DE "Eisbrecher", 12
  2197. .string LAN_EN "Ice Break", 12
  2198. .hword 14, 465
  2199. .word str_pokedex_eintraege_365
  2200. .word str_pokedex_eintraege_365
  2201. .hword 0, 0, 0, 0, 0, 0
  2202. .string LAN_DE "Muschel", 12
  2203. .string LAN_EN "Bivalve", 12
  2204. .hword 20, 1305
  2205. .word str_pokedex_eintraege_366
  2206. .word str_pokedex_eintraege_366
  2207. .hword 0, 0, 0, 0, 0, 0
  2208. .string LAN_DE "Tiefsee", 12
  2209. .string LAN_EN "Deep Sea", 12
  2210. .hword 4, 103
  2211. .word str_pokedex_eintraege_367
  2212. .word str_pokedex_eintraege_367
  2213. .hword 0, 0, 0, 0, 0, 0
  2214. .string LAN_DE "Südsee", 12
  2215. .string LAN_EN "South Sea", 12
  2216. .hword 17, 800
  2217. .word str_pokedex_eintraege_368
  2218. .word str_pokedex_eintraege_368
  2219. .hword 0, 0, 0, 0, 0, 0
  2220. .string LAN_DE "Bestand", 12
  2221. .string LAN_EN "Longevity", 12
  2222. .hword 20, 1000
  2223. .word str_pokedex_eintraege_369
  2224. .word str_pokedex_eintraege_369
  2225. .hword 0, 0, 0, 0, 0, 0
  2226. .string LAN_DE "Rendezvous", 12
  2227. .string LAN_EN "Rendezvous", 12
  2228. .hword 6, 163
  2229. .word str_pokedex_eintraege_370
  2230. .word str_pokedex_eintraege_370
  2231. .hword 0, 0, 0, 0, 0, 0
  2232. .string LAN_DE "Steinhaupt", 12
  2233. .string LAN_EN "Rock Head", 12
  2234. .hword 10, 405
  2235. .word str_pokedex_eintraege_371
  2236. .word str_pokedex_eintraege_371
  2237. .hword 0, 0, 0, 0, 0, 0
  2238. .string LAN_DE "Durchsteher", 12
  2239. .string LAN_EN "Endurance", 12
  2240. .hword 15, 840
  2241. .word str_pokedex_eintraege_372
  2242. .word str_pokedex_eintraege_372
  2243. .hword 0, 0, 0, 0, 0, 0
  2244. .string LAN_DE "Drache", 12
  2245. .string LAN_EN "Dragon", 12
  2246. .hword 4, 525
  2247. .word str_pokedex_eintraege_373
  2248. .word str_pokedex_eintraege_373
  2249. .hword 0, 0, 0, 0, 0, 0
  2250. .string LAN_DE "Eisenkugel", 12
  2251. .string LAN_EN "Iron Ball", 12
  2252. .hword 17, 270
  2253. .word str_pokedex_eintraege_374
  2254. .word str_pokedex_eintraege_374
  2255. .hword 0, 0, 0, 0, 0, 0
  2256. .string LAN_DE "Eisenklaue", 12
  2257. .string LAN_EN "Iron Claw", 12
  2258. .hword 18, 226
  2259. .word str_pokedex_eintraege_375
  2260. .word str_pokedex_eintraege_375
  2261. .hword 0, 0, 0, 0, 0, 0
  2262. .string LAN_DE "Eisenfuß", 12
  2263. .string LAN_EN "Iron Leg", 12
  2264. .hword 12, 470
  2265. .word str_pokedex_eintraege_376
  2266. .word str_pokedex_eintraege_376
  2267. .hword 0, 0, 0, 0, 0, 0
  2268. .string LAN_DE "Steingipfel", 12
  2269. .string LAN_EN "Rock Peak", 12
  2270. .hword 6, 23
  2271. .word str_pokedex_eintraege_377
  2272. .word str_pokedex_eintraege_377
  2273. .hword 0, 0, 0, 0, 0, 0
  2274. .string LAN_DE "Eisberg", 12
  2275. .string LAN_EN "Iceberg", 12
  2276. .hword 11, 125
  2277. .word str_pokedex_eintraege_378
  2278. .word str_pokedex_eintraege_378
  2279. .hword 0, 0, 0, 0, 0, 0
  2280. .string LAN_DE "Eisen", 12
  2281. .string LAN_EN "Iron", 12
  2282. .hword 27, 525
  2283. .word str_pokedex_eintraege_379
  2284. .word str_pokedex_eintraege_379
  2285. .hword 0, 0, 0, 0, 0, 0
  2286. .string LAN_DE "Äon", 12
  2287. .string LAN_EN "Eon", 12
  2288. .hword 13, 403
  2289. .word str_pokedex_eintraege_380
  2290. .word str_pokedex_eintraege_380
  2291. .hword 0, 0, 0, 0, 0, 0
  2292. .string LAN_DE "Äon", 12
  2293. .string LAN_EN "Eon", 12
  2294. .hword 10, 234
  2295. .word str_pokedex_eintraege_381
  2296. .word str_pokedex_eintraege_381
  2297. .hword 0, 0, 0, 0, 0, 0
  2298. .string LAN_DE "Äon", 12
  2299. .string LAN_EN "Eon", 12
  2300. .hword 4, 600
  2301. .word str_pokedex_eintraege_382
  2302. .word str_pokedex_eintraege_382
  2303. .hword 0, 0, 0, 0, 0, 0
  2304. .string LAN_DE "Äon", 12
  2305. .string LAN_EN "Eon", 12
  2306. .hword 9, 1200
  2307. .word str_pokedex_eintraege_383
  2308. .word str_pokedex_eintraege_383
  2309. .hword 0, 0, 0, 0, 0, 0
  2310. .string LAN_DE "Äon", 12
  2311. .string LAN_EN "Eon", 12
  2312. .hword 21, 3600
  2313. .word str_pokedex_eintraege_384
  2314. .word str_pokedex_eintraege_384
  2315. .hword 0, 0, 0, 0, 0, 0
  2316. .string LAN_DE "Äon", 12
  2317. .string LAN_EN "Eon", 12
  2318. .hword 3, 8
  2319. .word str_pokedex_eintraege_385
  2320. .word str_pokedex_eintraege_385
  2321. .hword 0, 0, 0, 0, 0, 0
  2322. .string LAN_DE "Äon", 12
  2323. .string LAN_EN "Eon", 12
  2324. .hword 7, 177
  2325. .word str_pokedex_eintraege_386
  2326. .word str_pokedex_eintraege_386
  2327. .hword 0, 0, 0, 0, 0, 0
  2328. .string LAN_DE "Äon", 12
  2329. .string LAN_EN "Eon", 12
  2330. .hword 6, 177
  2331. .word str_pokedex_eintraege_387
  2332. .word str_pokedex_eintraege_387
  2333. .hword 0, 0, 0, 0, 0, 0
  2334. .string LAN_DE "Seegründler", 12
  2335. .string LAN_EN "Sea Basin", 12
  2336. .hword 10, 238
  2337. .word str_pokedex_eintraege_388
  2338. .word str_pokedex_eintraege_388
  2339. .hword 0, 0, 0, 0, 0, 0
  2340. .string LAN_DE "Kontinent", 12
  2341. .string LAN_EN "Continent", 12
  2342. .hword 15, 604
  2343. .word str_pokedex_eintraege_389
  2344. .word str_pokedex_eintraege_389
  2345. .hword 0, 0, 0, 0, 0, 0
  2346. .string LAN_DE "Himmelhoch", 12
  2347. .string LAN_EN "Sky High", 12
  2348. .hword 7, 125
  2349. .word str_pokedex_eintraege_390
  2350. .word str_pokedex_eintraege_390
  2351. .hword 0, 0, 0, 0, 0, 0
  2352. .string LAN_DE "Wünscher", 12
  2353. .string LAN_EN "Wish", 12
  2354. .hword 15, 682
  2355. .word str_pokedex_eintraege_391
  2356. .word str_pokedex_eintraege_391
  2357. .hword 0, 0, 0, 0, 0, 0
  2358. .string LAN_DE "DNS", 12
  2359. .string LAN_EN "DNA", 12
  2360. .hword 4, 66
  2361. .word str_pokedex_eintraege_392
  2362. .word str_pokedex_eintraege_392
  2363. .hword 0, 0, 0, 0, 0, 0
  2364. .string LAN_DE "Winziglaub", 12
  2365. .string LAN_EN "Tiny Leaf", 12
  2366. .hword 8, 202
  2367. .word str_pokedex_eintraege_393
  2368. .word str_pokedex_eintraege_393
  2369. .hword 0, 0, 0, 0, 0, 0
  2370. .string LAN_DE "Hain", 12
  2371. .string LAN_EN "Grove", 12
  2372. .hword 16, 484
  2373. .word str_pokedex_eintraege_394
  2374. .word str_pokedex_eintraege_394
  2375. .hword 0, 0, 0, 0, 0, 0
  2376. .string LAN_DE "Kontinent", 12
  2377. .string LAN_EN "Continent", 12
  2378. .hword 6, 421
  2379. .word str_pokedex_eintraege_395
  2380. .word str_pokedex_eintraege_395
  2381. .hword 0, 0, 0, 0, 0, 0
  2382. .string LAN_DE "Schimpanse", 12
  2383. .string LAN_EN "Chimp", 12
  2384. .hword 11, 1105
  2385. .word str_pokedex_eintraege_396
  2386. .word str_pokedex_eintraege_396
  2387. .hword 0, 0, 0, 0, 0, 0
  2388. .string LAN_DE "Verspielt", 12
  2389. .string LAN_EN "Playful", 12
  2390. .hword 15, 1026
  2391. .word str_pokedex_eintraege_397
  2392. .word str_pokedex_eintraege_397
  2393. .hword 0, 0, 0, 0, 0, 0
  2394. .string LAN_DE "Flamme", 12
  2395. .string LAN_EN "Flame", 12
  2396. .hword 6, 952
  2397. .word str_pokedex_eintraege_398
  2398. .word str_pokedex_eintraege_398
  2399. .hword 0, 0, 0, 0, 0, 0
  2400. .string LAN_DE "Pinguin", 12
  2401. .string LAN_EN "Penguin", 12
  2402. .hword 12, 2025
  2403. .word str_pokedex_eintraege_399
  2404. .word str_pokedex_eintraege_399
  2405. .hword 0, 0, 0, 0, 0, 0
  2406. .string LAN_DE "Pinguin", 12
  2407. .string LAN_EN "Penguin", 12
  2408. .hword 16, 5500
  2409. .word str_pokedex_eintraege_400
  2410. .word str_pokedex_eintraege_400
  2411. .hword 0, 0, 0, 0, 0, 0
  2412. .string LAN_DE "Kaiser", 12
  2413. .string LAN_EN "Emperor", 12
  2414. .hword 17, 2300
  2415. .word str_pokedex_eintraege_401
  2416. .word str_pokedex_eintraege_401
  2417. .hword 0, 0, 0, 0, 0, 0
  2418. .string LAN_DE "Star", 12
  2419. .string LAN_EN "Starling", 12
  2420. .hword 18, 1750
  2421. .word str_pokedex_eintraege_402
  2422. .word str_pokedex_eintraege_402
  2423. .hword 0, 0, 0, 0, 0, 0
  2424. .string LAN_DE "Star", 12
  2425. .string LAN_EN "Starling", 12
  2426. .hword 19, 2050
  2427. .word str_pokedex_eintraege_403
  2428. .word str_pokedex_eintraege_403
  2429. .hword 0, 0, 0, 0, 0, 0
  2430. .string LAN_DE "Raubtier", 12
  2431. .string LAN_EN "Predator", 12
  2432. .hword 45, 3520
  2433. .word str_pokedex_eintraege_404
  2434. .word str_pokedex_eintraege_404
  2435. .hword 0, 0, 0, 0, 0, 0
  2436. .string LAN_DE "Dickmaus", 12
  2437. .string LAN_EN "Plump Mouse", 12
  2438. .hword 35, 9500
  2439. .word str_pokedex_eintraege_405
  2440. .word str_pokedex_eintraege_405
  2441. .hword 0, 0, 0, 0, 0, 0
  2442. .string LAN_DE "Biber", 12
  2443. .string LAN_EN "Beaver", 12
  2444. .hword 70, 2065
  2445. .word str_pokedex_eintraege_406
  2446. .word str_pokedex_eintraege_406
  2447. .hword 0, 0, 0, 0, 0, 0
  2448. .string LAN_DE "Zirper", 12
  2449. .string LAN_EN "Cricket", 12
  2450. .hword 14, 400
  2451. .word str_pokedex_eintraege_407
  2452. .word str_pokedex_eintraege_407
  2453. .hword 0, 0, 0, 0, 0, 0
  2454. .string LAN_DE "Zirper", 12
  2455. .string LAN_EN "Cricket", 12
  2456. .hword 20, 600
  2457. .word str_pokedex_eintraege_408
  2458. .word str_pokedex_eintraege_408
  2459. .hword 0, 0, 0, 0, 0, 0
  2460. .string LAN_DE "Flacker", 12
  2461. .string LAN_EN "Flash", 12
  2462. .hword 3, 11
  2463. .word str_pokedex_eintraege_409
  2464. .word str_pokedex_eintraege_409
  2465. .hword 0, 0, 0, 0, 0, 0
  2466. .string LAN_DE "Funken", 12
  2467. .string LAN_EN "Spark", 12
  2468. .hword 17, 608
  2469. .word str_pokedex_eintraege_410
  2470. .word str_pokedex_eintraege_410
  2471. .hword 0, 0, 0, 0, 0, 0
  2472. .string LAN_DE "Glühauge", 12
  2473. .string LAN_EN "Gleam Eyes", 12
  2474. .hword 6, 10
  2475. .word str_pokedex_eintraege_411
  2476. .word str_pokedex_eintraege_411
  2477. .hword 0, 0, 0, 0, 0, 0
  2478. .string LAN_DE "Knospe", 12
  2479. .string LAN_EN "Bud", 12
  2480. .hword 1, 1
  2481. .word str_pokedex_eintraege_412
  2482. .word str_pokedex_eintraege_412
  2483. .hword 0, 0, 0, 0, 0, 0
  2484. .string LAN_DE "Strauß", 12
  2485. .string LAN_EN "Bouquet", 12
  2486. .hword 5, 50
  2487. .word str_pokedex_eintraege_413
  2488. .word str_pokedex_eintraege_413
  2489. .hword 0, 0, 0, 0, 0, 0
  2490. .string LAN_DE "Kopfstoß", 12
  2491. .string LAN_EN "Head Butt", 12
  2492. .hword 5, 50
  2493. .word str_pokedex_eintraege_414
  2494. .word str_pokedex_eintraege_414
  2495. .hword 0, 0, 0, 0, 0, 0
  2496. .string LAN_DE "Kopfstoß", 12
  2497. .string LAN_EN "Head Butt", 12
  2498. .hword 5, 50
  2499. .word str_pokedex_eintraege_415
  2500. .word str_pokedex_eintraege_415
  2501. .hword 0, 0, 0, 0, 0, 0
  2502. .string LAN_DE "Schild", 12
  2503. .string LAN_EN "Shield", 12
  2504. .hword 5, 50
  2505. .word str_pokedex_eintraege_416
  2506. .word str_pokedex_eintraege_416
  2507. .hword 0, 0, 0, 0, 0, 0
  2508. .string LAN_DE "Schild", 12
  2509. .string LAN_EN "Shield", 12
  2510. .hword 5, 50
  2511. .word str_pokedex_eintraege_417
  2512. .word str_pokedex_eintraege_417
  2513. .hword 0, 0, 0, 0, 0, 0
  2514. .string LAN_DE "Beutelwurm", 12
  2515. .string LAN_EN "Bagworm", 12
  2516. .hword 5, 50
  2517. .word str_pokedex_eintraege_418
  2518. .word str_pokedex_eintraege_418
  2519. .hword 0, 0, 0, 0, 0, 0
  2520. .string LAN_DE "Beutelwurm", 12
  2521. .string LAN_EN "Bagworm", 12
  2522. .hword 5, 50
  2523. .word str_pokedex_eintraege_419
  2524. .word str_pokedex_eintraege_419
  2525. .hword 0, 0, 0, 0, 0, 0
  2526. .string LAN_DE "Fruchtmotte", 12
  2527. .string LAN_EN "Moth", 12
  2528. .hword 5, 50
  2529. .word str_pokedex_eintraege_420
  2530. .word str_pokedex_eintraege_420
  2531. .hword 0, 0, 0, 0, 0, 0
  2532. .string LAN_DE "Baby-Biene", 12
  2533. .string LAN_EN "Tiny Bee", 12
  2534. .hword 5, 50
  2535. .word str_pokedex_eintraege_421
  2536. .word str_pokedex_eintraege_421
  2537. .hword 0, 0, 0, 0, 0, 0
  2538. .string LAN_DE "Bienenstock", 12
  2539. .string LAN_EN "Beehive", 12
  2540. .hword 5, 50
  2541. .word str_pokedex_eintraege_422
  2542. .word str_pokedex_eintraege_422
  2543. .hword 0, 0, 0, 0, 0, 0
  2544. .string LAN_DE "Elektromaus", 12
  2545. .string LAN_EN "EleSquirrel", 12
  2546. .hword 5, 50
  2547. .word str_pokedex_eintraege_423
  2548. .word str_pokedex_eintraege_423
  2549. .hword 0, 0, 0, 0, 0, 0
  2550. .string LAN_DE "Meerwiesel", 12
  2551. .string LAN_EN "Sea Weasel", 12
  2552. .hword 5, 50
  2553. .word str_pokedex_eintraege_424
  2554. .word str_pokedex_eintraege_424
  2555. .hword 0, 0, 0, 0, 0, 0
  2556. .string LAN_DE "Meerwiesel", 12
  2557. .string LAN_EN "Sea Weasel", 12
  2558. .hword 5, 50
  2559. .word str_pokedex_eintraege_425
  2560. .word str_pokedex_eintraege_425
  2561. .hword 0, 0, 0, 0, 0, 0
  2562. .string LAN_DE "Kirsche", 12
  2563. .string LAN_EN "Cherry", 12
  2564. .hword 5, 50
  2565. .word str_pokedex_eintraege_426
  2566. .word str_pokedex_eintraege_426
  2567. .hword 0, 0, 0, 0, 0, 0
  2568. .string LAN_DE "Blüte", 12
  2569. .string LAN_EN "Blossom", 12
  2570. .hword 5, 50
  2571. .word str_pokedex_eintraege_427
  2572. .word str_pokedex_eintraege_427
  2573. .hword 0, 0, 0, 0, 0, 0
  2574. .string LAN_DE "Seeschnecke", 12
  2575. .string LAN_EN "Sea Slug", 12
  2576. .hword 5, 50
  2577. .word str_pokedex_eintraege_428
  2578. .word str_pokedex_eintraege_428
  2579. .hword 0, 0, 0, 0, 0, 0
  2580. .string LAN_DE "Seeschnecke", 12
  2581. .string LAN_EN "Sea Slug", 12
  2582. .hword 5, 50
  2583. .word str_pokedex_eintraege_429
  2584. .word str_pokedex_eintraege_429
  2585. .hword 0, 0, 0, 0, 0, 0
  2586. .string LAN_DE "Langschweif", 12
  2587. .string LAN_EN "Long Tail", 12
  2588. .hword 5, 50
  2589. .word str_pokedex_eintraege_430
  2590. .word str_pokedex_eintraege_430
  2591. .hword 0, 0, 0, 0, 0, 0
  2592. .string LAN_DE "Ballon", 12
  2593. .string LAN_EN "Balloon", 12
  2594. .hword 5, 50
  2595. .word str_pokedex_eintraege_431
  2596. .word str_pokedex_eintraege_431
  2597. .hword 0, 0, 0, 0, 0, 0
  2598. .string LAN_DE "Luftschiff", 12
  2599. .string LAN_EN "Blimp", 12
  2600. .hword 5, 50
  2601. .word str_pokedex_eintraege_432
  2602. .word str_pokedex_eintraege_432
  2603. .hword 0, 0, 0, 0, 0, 0
  2604. .string LAN_DE "Hase", 12
  2605. .string LAN_EN "Rabbit", 12
  2606. .hword 5, 50
  2607. .word str_pokedex_eintraege_433
  2608. .word str_pokedex_eintraege_433
  2609. .hword 0, 0, 0, 0, 0, 0
  2610. .string LAN_DE "Kaninchen", 12
  2611. .string LAN_EN "Rabbit", 12
  2612. .hword 5, 50
  2613. .word str_pokedex_eintraege_434
  2614. .word str_pokedex_eintraege_434
  2615. .hword 0, 0, 0, 0, 0, 0
  2616. .string LAN_DE "Magisch", 12
  2617. .string LAN_EN "Magical", 12
  2618. .hword 5, 50
  2619. .word str_pokedex_eintraege_435
  2620. .word str_pokedex_eintraege_435
  2621. .hword 0, 0, 0, 0, 0, 0
  2622. .string LAN_DE "Anführer", 12
  2623. .string LAN_EN "Big Boss", 12
  2624. .hword 5, 50
  2625. .word str_pokedex_eintraege_436
  2626. .word str_pokedex_eintraege_436
  2627. .hword 0, 0, 0, 0, 0, 0
  2628. .string LAN_DE "Fies", 12
  2629. .string LAN_EN "Catty", 12
  2630. .hword 5, 50
  2631. .word str_pokedex_eintraege_437
  2632. .word str_pokedex_eintraege_437
  2633. .hword 0, 0, 0, 0, 0, 0
  2634. .string LAN_DE "Tigerkatze", 12
  2635. .string LAN_EN "Tiger Cat", 12
  2636. .hword 5, 50
  2637. .word str_pokedex_eintraege_438
  2638. .word str_pokedex_eintraege_438
  2639. .hword 0, 0, 0, 0, 0, 0
  2640. .string LAN_DE "Glöckchen", 12
  2641. .string LAN_EN "Bell", 12
  2642. .hword 5, 50
  2643. .word str_pokedex_eintraege_439
  2644. .word str_pokedex_eintraege_439
  2645. .hword 0, 0, 0, 0, 0, 0
  2646. .string LAN_DE "Stinktier", 12
  2647. .string LAN_EN "Skunk", 12
  2648. .hword 4, 102
  2649. .word str_pokedex_eintraege_440
  2650. .word str_pokedex_eintraege_440
  2651. .hword 0, 0, 0, 0, 0, 0
  2652. .string LAN_DE "Stinktier", 12
  2653. .string LAN_EN "Skunk", 12
  2654. .hword 11, 970
  2655. .word str_pokedex_eintraege_441
  2656. .word str_pokedex_eintraege_441
  2657. .hword 0, 0, 0, 0, 0, 0
  2658. .string LAN_DE "Bronze", 12
  2659. .string LAN_EN "Bronze", 12
  2660. .hword 22, 3100
  2661. .word str_pokedex_eintraege_442
  2662. .word str_pokedex_eintraege_442
  2663. .hword 0, 0, 0, 0, 0, 0
  2664. .string LAN_DE "Glocke", 12
  2665. .string LAN_EN "Bronze Bell", 12
  2666. .hword 5, 65
  2667. .word str_pokedex_eintraege_443
  2668. .word str_pokedex_eintraege_443
  2669. .hword 0, 0, 0, 0, 0, 0
  2670. .string LAN_DE "Bonsai", 12
  2671. .string LAN_EN "Bonsai", 12
  2672. .hword 9, 220
  2673. .word str_pokedex_eintraege_444
  2674. .word str_pokedex_eintraege_444
  2675. .hword 0, 0, 0, 0, 0, 0
  2676. .string LAN_DE "Mime", 12
  2677. .string LAN_EN "Mime", 12
  2678. .hword 12, 550
  2679. .word str_pokedex_eintraege_445
  2680. .word str_pokedex_eintraege_445
  2681. .hword 0, 0, 0, 0, 0, 0
  2682. .string LAN_DE "Spielhaus", 12
  2683. .string LAN_EN "Playhouse", 12
  2684. .hword 4, 52
  2685. .word str_pokedex_eintraege_446
  2686. .word str_pokedex_eintraege_446
  2687. .hword 0, 0, 0, 0, 0, 0
  2688. .string LAN_DE "Musiknote", 12
  2689. .string LAN_EN "Music Note", 12
  2690. .hword 8, 230
  2691. .word str_pokedex_eintraege_447
  2692. .word str_pokedex_eintraege_447
  2693. .hword 0, 0, 0, 0, 0, 0
  2694. .string LAN_DE "Verboten", 12
  2695. .string LAN_EN "Forbidden", 12
  2696. .hword 17, 845
  2697. .word str_pokedex_eintraege_448
  2698. .word str_pokedex_eintraege_448
  2699. .hword 0, 0, 0, 0, 0, 0
  2700. .string LAN_DE "Landhai", 12
  2701. .string LAN_EN "Land Shark", 12
  2702. .hword 3, 20
  2703. .word str_pokedex_eintraege_449
  2704. .word str_pokedex_eintraege_449
  2705. .hword 0, 0, 0, 0, 0, 0
  2706. .string LAN_DE "Höhle", 12
  2707. .string LAN_EN "Cave", 12
  2708. .hword 6, 155
  2709. .word str_pokedex_eintraege_450
  2710. .word str_pokedex_eintraege_450
  2711. .hword 0, 0, 0, 0, 0, 0
  2712. .string LAN_DE "Rasanz", 12
  2713. .string LAN_EN "Mach", 12
  2714. .hword 12, 249
  2715. .word str_pokedex_eintraege_451
  2716. .word str_pokedex_eintraege_451
  2717. .hword 0, 0, 0, 0, 0, 0
  2718. .string LAN_DE "Nimmersatt", 12
  2719. .string LAN_EN "Big Eater", 12
  2720. .hword 5, 200
  2721. .word str_pokedex_eintraege_452
  2722. .word str_pokedex_eintraege_452
  2723. .hword 0, 0, 0, 0, 0, 0
  2724. .string LAN_DE "Wellenspiel", 12
  2725. .string LAN_EN "Emanation", 12
  2726. .hword 10, 315
  2727. .word str_pokedex_eintraege_453
  2728. .word str_pokedex_eintraege_453
  2729. .hword 0, 0, 0, 0, 0, 0
  2730. .string LAN_DE "Aura", 12
  2731. .string LAN_EN "Aura", 12
  2732. .hword 3, 22
  2733. .word str_pokedex_eintraege_454
  2734. .word str_pokedex_eintraege_454
  2735. .hword 0, 0, 0, 0, 0, 0
  2736. .string LAN_DE "Flusspferd", 12
  2737. .string LAN_EN "Hippo", 12
  2738. .hword 10, 255
  2739. .word str_pokedex_eintraege_455
  2740. .word str_pokedex_eintraege_455
  2741. .hword 0, 0, 0, 0, 0, 0
  2742. .string LAN_DE "Schwergew.", 12
  2743. .string LAN_EN "Heavyweight", 12
  2744. .hword 5, 95
  2745. .word str_pokedex_eintraege_456
  2746. .word str_pokedex_eintraege_456
  2747. .hword 0, 0, 0, 0, 0, 0
  2748. .string LAN_DE "Skorpion", 12
  2749. .string LAN_EN "Scorpion", 12
  2750. .hword 9, 305
  2751. .word str_pokedex_eintraege_457
  2752. .word str_pokedex_eintraege_457
  2753. .hword 0, 0, 0, 0, 0, 0
  2754. .string LAN_DE "Ogerskorp.", 12
  2755. .string LAN_EN "Ogre Scorp.", 12
  2756. .hword 14, 420
  2757. .word str_pokedex_eintraege_458
  2758. .word str_pokedex_eintraege_458
  2759. .hword 0, 0, 0, 0, 0, 0
  2760. .string LAN_DE "Giftmund", 12
  2761. .string LAN_EN "Toxic Mouth", 12
  2762. .hword 2, 12
  2763. .word str_pokedex_eintraege_459
  2764. .word str_pokedex_eintraege_459
  2765. .hword 0, 0, 0, 0, 0, 0
  2766. .string LAN_DE "Giftmund", 12
  2767. .string LAN_EN "Toxic Mouth", 12
  2768. .hword 9, 145
  2769. .word str_pokedex_eintraege_460
  2770. .word str_pokedex_eintraege_460
  2771. .hword 0, 0, 0, 0, 0, 0
  2772. .string LAN_DE "Käfertot", 12
  2773. .string LAN_EN "Bug Catcher", 12
  2774. .hword 9, 315
  2775. .word str_pokedex_eintraege_461
  2776. .word str_pokedex_eintraege_461
  2777. .hword 0, 0, 0, 0, 0, 0
  2778. .string LAN_DE "Flügelfisch", 12
  2779. .string LAN_EN "Wing Fish", 12
  2780. .hword 16, 1025
  2781. .word str_pokedex_eintraege_462
  2782. .word str_pokedex_eintraege_462
  2783. .hword 0, 0, 0, 0, 0, 0
  2784. .string LAN_DE "Neon", 12
  2785. .string LAN_EN "Neon", 12
  2786. .hword 5, 570
  2787. .word str_pokedex_eintraege_463
  2788. .word str_pokedex_eintraege_463
  2789. .hword 0, 0, 0, 0, 0, 0
  2790. .string LAN_DE "Flugrochen", 12
  2791. .string LAN_EN "Kite", 12
  2792. .hword 13, 1495
  2793. .word str_pokedex_eintraege_464
  2794. .word str_pokedex_eintraege_464
  2795. .hword 0, 0, 0, 0, 0, 0
  2796. .string LAN_DE "Frostbaum", 12
  2797. .string LAN_EN "Frost Tree", 12
  2798. .hword 2, 34
  2799. .word str_pokedex_eintraege_465
  2800. .word str_pokedex_eintraege_465
  2801. .hword 0, 0, 0, 0, 0, 0
  2802. .string LAN_DE "Frostbaum", 12
  2803. .string LAN_EN "Frost Tree", 12
  2804. .hword 5, 65
  2805. .word str_pokedex_eintraege_466
  2806. .word str_pokedex_eintraege_466
  2807. .hword 0, 0, 0, 0, 0, 0
  2808. .string LAN_DE "Stichklaue", 12
  2809. .string LAN_EN "Sharp Claw", 12
  2810. .hword 9, 233
  2811. .word str_pokedex_eintraege_467
  2812. .word str_pokedex_eintraege_467
  2813. .hword 0, 0, 0, 0, 0, 0
  2814. .string LAN_DE "Magnetgeb.", 12
  2815. .string LAN_EN "Magnet Area", 12
  2816. .hword 3, 55
  2817. .word str_pokedex_eintraege_468
  2818. .word str_pokedex_eintraege_468
  2819. .hword 0, 0, 0, 0, 0, 0
  2820. .string LAN_DE "Schlecker", 12
  2821. .string LAN_EN "Licking", 12
  2822. .hword 12, 385
  2823. .word str_pokedex_eintraege_469
  2824. .word str_pokedex_eintraege_469
  2825. .hword 0, 0, 0, 0, 0, 0
  2826. .string LAN_DE "Bohrer", 12
  2827. .string LAN_EN "Drill", 12
  2828. .hword 4, 39
  2829. .word str_pokedex_eintraege_470
  2830. .word str_pokedex_eintraege_470
  2831. .hword 0, 0, 0, 0, 0, 0
  2832. .string LAN_DE "Ranke", 12
  2833. .string LAN_EN "Vine", 12
  2834. .hword 7, 295
  2835. .word str_pokedex_eintraege_471
  2836. .word str_pokedex_eintraege_471
  2837. .hword 0, 0, 0, 0, 0, 0
  2838. .string LAN_DE "Donnerkeil", 12
  2839. .string LAN_EN "Thunderbolt", 12
  2840. .hword 11, 335
  2841. .word str_pokedex_eintraege_472
  2842. .word str_pokedex_eintraege_472
  2843. .hword 0, 0, 0, 0, 0, 0
  2844. .string LAN_DE "Detonation", 12
  2845. .string LAN_EN "Blast", 12
  2846. .hword 4, 33
  2847. .word str_pokedex_eintraege_473
  2848. .word str_pokedex_eintraege_473
  2849. .hword 0, 0, 0, 0, 0, 0
  2850. .string LAN_DE "Jubilierer", 12
  2851. .string LAN_EN "Jubilee", 12
  2852. .hword 5, 93
  2853. .word str_pokedex_eintraege_474
  2854. .word str_pokedex_eintraege_474
  2855. .hword 0, 0, 0, 0, 0, 0
  2856. .string LAN_DE "Agrion", 12
  2857. .string LAN_EN "Ogre Darner", 12
  2858. .hword 3, 63
  2859. .word str_pokedex_eintraege_475
  2860. .word str_pokedex_eintraege_475
  2861. .hword 0, 0, 0, 0, 0, 0
  2862. .string LAN_DE "Unreif", 12
  2863. .string LAN_EN "Verdant", 12
  2864. .hword 9, 299
  2865. .word str_pokedex_eintraege_476
  2866. .word str_pokedex_eintraege_476
  2867. .hword 0, 0, 0, 0, 0, 0
  2868. .string LAN_DE "Neuschnee", 12
  2869. .string LAN_EN "Fresh Snow", 12
  2870. .hword 12, 200
  2871. .word str_pokedex_eintraege_477
  2872. .word str_pokedex_eintraege_477
  2873. .hword 0, 0, 0, 0, 0, 0
  2874. .string LAN_DE "Zahnskorpi", 12
  2875. .string LAN_EN "Fang Scorp.", 12
  2876. .hword 4, 12
  2877. .word str_pokedex_eintraege_478
  2878. .word str_pokedex_eintraege_478
  2879. .hword 0, 0, 0, 0, 0, 0
  2880. .string LAN_DE "Stoßzahn", 12
  2881. .string LAN_EN "Twin Tusk", 12
  2882. .hword 12, 150
  2883. .word str_pokedex_eintraege_479
  2884. .word str_pokedex_eintraege_479
  2885. .hword 0, 0, 0, 0, 0, 0
  2886. .string LAN_DE "Virtuell", 12
  2887. .string LAN_EN "Virtual", 12
  2888. .hword 4, 55
  2889. .word str_pokedex_eintraege_480
  2890. .word str_pokedex_eintraege_480
  2891. .hword 0, 0, 0, 0, 0, 0
  2892. .string LAN_DE "Klinge", 12
  2893. .string LAN_EN "Blade", 12
  2894. .hword 12, 332
  2895. .word str_pokedex_eintraege_481
  2896. .word str_pokedex_eintraege_481
  2897. .hword 0, 0, 0, 0, 0, 0
  2898. .string LAN_DE "Kompass", 12
  2899. .string LAN_EN "Compass", 12
  2900. .hword 9, 44
  2901. .word str_pokedex_eintraege_482
  2902. .word str_pokedex_eintraege_482
  2903. .hword 0, 0, 0, 0, 0, 0
  2904. .string LAN_DE "Greifer", 12
  2905. .string LAN_EN "Gripper", 12
  2906. .hword 9, 273
  2907. .word str_pokedex_eintraege_483
  2908. .word str_pokedex_eintraege_483
  2909. .hword 0, 0, 0, 0, 0, 0
  2910. .string LAN_DE "Eisgebiet", 12
  2911. .string LAN_EN "Snow Land", 12
  2912. .hword 5, 39
  2913. .word str_pokedex_eintraege_484
  2914. .word str_pokedex_eintraege_484
  2915. .hword 0, 0, 0, 0, 0, 0
  2916. .string LAN_DE "Plasma", 12
  2917. .string LAN_EN "Plasma", 12
  2918. .hword 10, 432
  2919. .word str_pokedex_eintraege_485
  2920. .word str_pokedex_eintraege_485
  2921. .hword 0, 0, 0, 0, 0, 0
  2922. .string LAN_DE "Wissen", 12
  2923. .string LAN_EN "Knowledge", 12
  2924. .hword 2, 6
  2925. .word str_pokedex_eintraege_486
  2926. .word str_pokedex_eintraege_486
  2927. .hword 0, 0, 0, 0, 0, 0
  2928. .string LAN_DE "Emotion", 12
  2929. .string LAN_EN "Emotion", 12
  2930. .hword 4, 192
  2931. .word str_pokedex_eintraege_487
  2932. .word str_pokedex_eintraege_487
  2933. .hword 0, 0, 0, 0, 0, 0
  2934. .string LAN_DE "Dynamik", 12
  2935. .string LAN_EN "Willpower", 12
  2936. .hword 10, 380
  2937. .word str_pokedex_eintraege_488
  2938. .word str_pokedex_eintraege_488
  2939. .hword 0, 0, 0, 0, 0, 0
  2940. .string LAN_DE "Zeitweilig", 12
  2941. .string LAN_EN "Temporal", 12
  2942. .hword 5, 605
  2943. .word str_pokedex_eintraege_489
  2944. .word str_pokedex_eintraege_489
  2945. .hword 0, 0, 0, 0, 0, 0
  2946. .string LAN_DE "Räumlich", 12
  2947. .string LAN_EN "Spatial", 12
  2948. .hword 13, 1870
  2949. .word str_pokedex_eintraege_490
  2950. .word str_pokedex_eintraege_490
  2951. .hword 0, 0, 0, 0, 0, 0
  2952. .string LAN_DE "Lavadom", 12
  2953. .string LAN_EN "Lava Dome", 12
  2954. .hword 5, 150
  2955. .word str_pokedex_eintraege_491
  2956. .word str_pokedex_eintraege_491
  2957. .hword 0, 0, 0, 0, 0, 0
  2958. .string LAN_DE "Kolossal", 12
  2959. .string LAN_EN "Colossal", 12
  2960. .hword 6, 130
  2961. .word str_pokedex_eintraege_492
  2962. .word str_pokedex_eintraege_492
  2963. .hword 0, 0, 0, 0, 0, 0
  2964. .string LAN_DE "Rebell", 12
  2965. .string LAN_EN "Renegade", 12
  2966. .hword 6, 244
  2967. .word str_pokedex_eintraege_493
  2968. .word str_pokedex_eintraege_493
  2969. .hword 0, 0, 0, 0, 0, 0
  2970. .string LAN_DE "Lunar", 12
  2971. .string LAN_EN "Lunar", 12
  2972. .hword 5, 19
  2973. .word str_pokedex_eintraege_494
  2974. .word str_pokedex_eintraege_494
  2975. .hword 0, 0, 0, 0, 0, 0
  2976. .string LAN_DE "Seedrift", 12
  2977. .string LAN_EN "Sea Drifter", 12
  2978. .hword 10, 1080
  2979. .word str_pokedex_eintraege_495
  2980. .word str_pokedex_eintraege_495
  2981. .hword 0, 0, 0, 0, 0, 0
  2982. .string LAN_DE "Seefahrer", 12
  2983. .string LAN_EN "Seafaring", 12
  2984. .hword 7, 205
  2985. .word str_pokedex_eintraege_496
  2986. .word str_pokedex_eintraege_496
  2987. .hword 0, 0, 0, 0, 0, 0
  2988. .string LAN_DE "Dunkelnacht", 12
  2989. .string LAN_EN "Pitch-Black", 12
  2990. .hword 14, 560
  2991. .word str_pokedex_eintraege_497
  2992. .word str_pokedex_eintraege_497
  2993. .hword 0, 0, 0, 0, 0, 0
  2994. .string LAN_DE "Dankbarkeit", 12
  2995. .string LAN_EN "Gratitude", 12
  2996. .hword 19, 950
  2997. .word str_pokedex_eintraege_498
  2998. .word str_pokedex_eintraege_498
  2999. .hword 0, 0, 0, 0, 0, 0
  3000. .string LAN_DE "Alpha", 12
  3001. .string LAN_EN "Alpha", 12
  3002. .hword 6, 1050
  3003. .word str_pokedex_eintraege_499
  3004. .word str_pokedex_eintraege_499
  3005. .hword 0, 0, 0, 0, 0, 0
  3006. .string LAN_DE "Triumph", 12
  3007. .string LAN_EN "Victory", 12
  3008. .hword 7, 202
  3009. .word str_pokedex_eintraege_500
  3010. .word str_pokedex_eintraege_500
  3011. .hword 0, 0, 0, 0, 0, 0
  3012. .string LAN_DE "Grasschlan.", 12
  3013. .string LAN_EN "Grass Snake", 12
  3014. .hword 12, 540
  3015. .word str_pokedex_eintraege_501
  3016. .word str_pokedex_eintraege_501
  3017. .hword 0, 0, 0, 0, 0, 0
  3018. .string LAN_DE "Grasschlan.", 12
  3019. .string LAN_EN "Grass Snake", 12
  3020. .hword 8, 495
  3021. .word str_pokedex_eintraege_502
  3022. .word str_pokedex_eintraege_502
  3023. .hword 0, 0, 0, 0, 0, 0
  3024. .string LAN_DE "Hoheit", 12
  3025. .string LAN_EN "Regal", 12
  3026. .hword 20, 3000
  3027. .word str_pokedex_eintraege_503
  3028. .word str_pokedex_eintraege_503
  3029. .hword 0, 0, 0, 0, 0, 0
  3030. .string LAN_DE "Feuerferkel", 12
  3031. .string LAN_EN "Fire Pig", 12
  3032. .hword 8, 120
  3033. .word str_pokedex_eintraege_504
  3034. .word str_pokedex_eintraege_504
  3035. .hword 0, 0, 0, 0, 0, 0
  3036. .string LAN_DE "Feuerferkel", 12
  3037. .string LAN_EN "Fire Pig", 12
  3038. .hword 18, 615
  3039. .word str_pokedex_eintraege_505
  3040. .word str_pokedex_eintraege_505
  3041. .hword 0, 0, 0, 0, 0, 0
  3042. .string LAN_DE "Feuerferkel", 12
  3043. .string LAN_EN "Mega F. Pig", 12
  3044. .hword 7, 230
  3045. .word str_pokedex_eintraege_506
  3046. .word str_pokedex_eintraege_506
  3047. .hword 0, 0, 0, 0, 0, 0
  3048. .string LAN_DE "Otter", 12
  3049. .string LAN_EN "Sea Otter", 12
  3050. .hword 13, 444
  3051. .word str_pokedex_eintraege_507
  3052. .word str_pokedex_eintraege_507
  3053. .hword 0, 0, 0, 0, 0, 0
  3054. .string LAN_DE "Schulung", 12
  3055. .string LAN_EN "Discipline", 12
  3056. .hword 14, 270
  3057. .word str_pokedex_eintraege_508
  3058. .word str_pokedex_eintraege_508
  3059. .hword 0, 0, 0, 0, 0, 0
  3060. .string LAN_DE "Würde", 12
  3061. .string LAN_EN "Formidable", 12
  3062. .hword 4, 70
  3063. .word str_pokedex_eintraege_509
  3064. .word str_pokedex_eintraege_509
  3065. .hword 0, 0, 0, 0, 0, 0
  3066. .string LAN_DE "Späher", 12
  3067. .string LAN_EN "Scout", 12
  3068. .hword 12, 335
  3069. .word str_pokedex_eintraege_510
  3070. .word str_pokedex_eintraege_510
  3071. .hword 0, 0, 0, 0, 0, 0
  3072. .string LAN_DE "Wachsamkeit", 12
  3073. .string LAN_EN "Lookout", 12
  3074. .hword 10, 650
  3075. .word str_pokedex_eintraege_511
  3076. .word str_pokedex_eintraege_511
  3077. .hword 0, 0, 0, 0, 0, 0
  3078. .string LAN_DE "Hund", 12
  3079. .string LAN_EN "Puppy", 12
  3080. .hword 10, 505
  3081. .word str_pokedex_eintraege_512
  3082. .word str_pokedex_eintraege_512
  3083. .hword 0, 0, 0, 0, 0, 0
  3084. .string LAN_DE "Treuhund", 12
  3085. .string LAN_EN "Loyal Dog", 12
  3086. .hword 22, 1355
  3087. .word str_pokedex_eintraege_513
  3088. .word str_pokedex_eintraege_513
  3089. .hword 0, 0, 0, 0, 0, 0
  3090. .string LAN_DE "Großmut", 12
  3091. .string LAN_EN "Big-Hearted", 12
  3092. .hword 11, 340
  3093. .word str_pokedex_eintraege_514
  3094. .word str_pokedex_eintraege_514
  3095. .hword 0, 0, 0, 0, 0, 0
  3096. .string LAN_DE "Schelm", 12
  3097. .string LAN_EN "Devious", 12
  3098. .hword 12, 1800
  3099. .word str_pokedex_eintraege_515
  3100. .word str_pokedex_eintraege_515
  3101. .hword 0, 0, 0, 0, 0, 0
  3102. .string LAN_DE "Gefühlskäl.", 12
  3103. .string LAN_EN "Cruel", 12
  3104. .hword 17, 1400
  3105. .word str_pokedex_eintraege_516
  3106. .word str_pokedex_eintraege_516
  3107. .hword 0, 0, 0, 0, 0, 0
  3108. .string LAN_DE "Grasaffe", 12
  3109. .string LAN_EN "Grass Monk.", 12
  3110. .hword 24, 2828
  3111. .word str_pokedex_eintraege_517
  3112. .word str_pokedex_eintraege_517
  3113. .hword 0, 0, 0, 0, 0, 0
  3114. .string LAN_DE "Stachelaffe", 12
  3115. .string LAN_EN "Thorn Monk.", 12
  3116. .hword 20, 1286
  3117. .word str_pokedex_eintraege_518
  3118. .word str_pokedex_eintraege_518
  3119. .hword 0, 0, 0, 0, 0, 0
  3120. .string LAN_DE "Hitze", 12
  3121. .string LAN_EN "High Temp", 12
  3122. .hword 18, 1386
  3123. .word str_pokedex_eintraege_519
  3124. .word str_pokedex_eintraege_519
  3125. .hword 0, 0, 0, 0, 0, 0
  3126. .string LAN_DE "Funkenregen", 12
  3127. .string LAN_EN "Ember", 12
  3128. .hword 16, 680
  3129. .word str_pokedex_eintraege_520
  3130. .word str_pokedex_eintraege_520
  3131. .hword 0, 0, 0, 0, 0, 0
  3132. .string LAN_DE "Wasserstra.", 12
  3133. .string LAN_EN "Spray", 12
  3134. .hword 15, 380
  3135. .word str_pokedex_eintraege_521
  3136. .word str_pokedex_eintraege_521
  3137. .hword 0, 0, 0, 0, 0, 0
  3138. .string LAN_DE "Drainage", 12
  3139. .string LAN_EN "Geyser", 12
  3140. .hword 19, 515
  3141. .word str_pokedex_eintraege_522
  3142. .word str_pokedex_eintraege_522
  3143. .hword 0, 0, 0, 0, 0, 0
  3144. .string LAN_DE "Traumfress.", 12
  3145. .string LAN_EN "Dream Eater", 12
  3146. .hword 10, 255
  3147. .word str_pokedex_eintraege_523
  3148. .word str_pokedex_eintraege_523
  3149. .hword 0, 0, 0, 0, 0, 0
  3150. .string LAN_DE "Halbschlaf", 12
  3151. .string LAN_EN "Drowsing", 12
  3152. .hword 8, 259
  3153. .word str_pokedex_eintraege_524
  3154. .word str_pokedex_eintraege_524
  3155. .hword 0, 0, 0, 0, 0, 0
  3156. .string LAN_DE "Täubchen", 12
  3157. .string LAN_EN "Tiny Pigeon", 12
  3158. .hword 20, 425
  3159. .word str_pokedex_eintraege_525
  3160. .word str_pokedex_eintraege_525
  3161. .hword 0, 0, 0, 0, 0, 0
  3162. .string LAN_DE "Wildtaube", 12
  3163. .string LAN_EN "Wild Pigeon", 12
  3164. .hword 25, 2910
  3165. .word str_pokedex_eintraege_526
  3166. .word str_pokedex_eintraege_526
  3167. .hword 0, 0, 0, 0, 0, 0
  3168. .string LAN_DE "Stolz", 12
  3169. .string LAN_EN "Proud", 12
  3170. .hword 9, 340
  3171. .word str_pokedex_eintraege_527
  3172. .word str_pokedex_eintraege_527
  3173. .hword 0, 0, 0, 0, 0, 0
  3174. .string LAN_DE "Hochspann.", 12
  3175. .string LAN_EN "Electrified", 12
  3176. .hword 16, 520
  3177. .word str_pokedex_eintraege_528
  3178. .word str_pokedex_eintraege_528
  3179. .hword 0, 0, 0, 0, 0, 0
  3180. .string LAN_DE "Donnerkeil", 12
  3181. .string LAN_EN "Thunderbolt", 12
  3182. .hword 14, 3400
  3183. .word str_pokedex_eintraege_529
  3184. .word str_pokedex_eintraege_529
  3185. .hword 0, 0, 0, 0, 0, 0
  3186. .string LAN_DE "Erdmantel", 12
  3187. .string LAN_EN "Mantle", 12
  3188. .hword 22, 1066
  3189. .word str_pokedex_eintraege_530
  3190. .word str_pokedex_eintraege_530
  3191. .hword 0, 0, 0, 0, 0, 0
  3192. .string LAN_DE "Erz", 12
  3193. .string LAN_EN "Ore", 12
  3194. .hword 13, 266
  3195. .word str_pokedex_eintraege_531
  3196. .word str_pokedex_eintraege_531
  3197. .hword 0, 0, 0, 0, 0, 0
  3198. .string LAN_DE "Kompression", 12
  3199. .string LAN_EN "Compressed", 12
  3200. .hword 3, 3
  3201. .word str_pokedex_eintraege_532
  3202. .word str_pokedex_eintraege_532
  3203. .hword 0, 0, 0, 0, 0, 0
  3204. .string LAN_DE "Fledermaus", 12
  3205. .string LAN_EN "Bat", 12
  3206. .hword 3, 3
  3207. .word str_pokedex_eintraege_533
  3208. .word str_pokedex_eintraege_533
  3209. .hword 0, 0, 0, 0, 0, 0
  3210. .string LAN_DE "Balz", 12
  3211. .string LAN_EN "Courting", 12
  3212. .hword 3, 3
  3213. .word str_pokedex_eintraege_534
  3214. .word str_pokedex_eintraege_534
  3215. .hword 0, 0, 0, 0, 0, 0
  3216. .string LAN_DE "Maulwurf", 12
  3217. .string LAN_EN "Mole", 12
  3218. .hword 3, 3
  3219. .word str_pokedex_eintraege_535
  3220. .word str_pokedex_eintraege_535
  3221. .hword 0, 0, 0, 0, 0, 0
  3222. .string LAN_DE "Untergrund", 12
  3223. .string LAN_EN "Subterrene", 12
  3224. .hword 54, 6830
  3225. .word str_pokedex_eintraege_536
  3226. .word str_pokedex_eintraege_536
  3227. .hword 0, 0, 0, 0, 0, 0
  3228. .string LAN_DE "Gehör", 12
  3229. .string LAN_EN "Hearing", 12
  3230. .hword 42, 3360
  3231. .word str_pokedex_eintraege_537
  3232. .word str_pokedex_eintraege_537
  3233. .hword 0, 0, 0, 0, 0, 0
  3234. .string LAN_DE "Muskel", 12
  3235. .string LAN_EN "Muscular", 12
  3236. .hword 17, 4300
  3237. .word str_pokedex_eintraege_538
  3238. .word str_pokedex_eintraege_538
  3239. .hword 0, 0, 0, 0, 0, 0
  3240. .string LAN_DE "Muskel", 12
  3241. .string LAN_EN "Muscular", 12
  3242. .hword 37, 4200
  3243. .word str_pokedex_eintraege_539
  3244. .word str_pokedex_eintraege_539
  3245. .hword 0, 0, 0, 0, 0, 0
  3246. .string LAN_DE "Muskel", 12
  3247. .string LAN_EN "Muscular", 12
  3248. .hword 45, 7500
  3249. .word str_pokedex_eintraege_540
  3250. .word str_pokedex_eintraege_540
  3251. .hword 0, 0, 0, 0, 0, 0
  3252. .string LAN_DE "Kaulquappe", 12
  3253. .string LAN_EN "Tadpole", 12
  3254. .hword 15, 856
  3255. .word str_pokedex_eintraege_541
  3256. .word str_pokedex_eintraege_541
  3257. .hword 0, 0, 0, 0, 0, 0
  3258. .string LAN_DE "Vibration", 12
  3259. .string LAN_EN "Vibration", 12
  3260. .hword 4, 31
  3261. .word str_pokedex_eintraege_542
  3262. .word str_pokedex_eintraege_542
  3263. .hword 0, 0, 0, 0, 0, 0
  3264. .string LAN_DE "Vibration", 12
  3265. .string LAN_EN "Vibration", 12
  3266. .hword 3, 14
  3267. .word str_pokedex_eintraege_543
  3268. .word str_pokedex_eintraege_543
  3269. .hword 0, 0, 0, 0, 0, 0
  3270. .string LAN_DE "Judo", 12
  3271. .string LAN_EN "Judo", 12
  3272. .hword 15, 505
  3273. .word str_pokedex_eintraege_544
  3274. .word str_pokedex_eintraege_544
  3275. .hword 0, 0, 0, 0, 0, 0
  3276. .string LAN_DE "Karate", 12
  3277. .string LAN_EN "Karate", 12
  3278. .hword 2, 21
  3279. .word str_pokedex_eintraege_545
  3280. .word str_pokedex_eintraege_545
  3281. .hword 0, 0, 0, 0, 0, 0
  3282. .string LAN_DE "Schneider", 12
  3283. .string LAN_EN "Sewing", 12
  3284. .hword 32, 3200
  3285. .word str_pokedex_eintraege_546
  3286. .word str_pokedex_eintraege_546
  3287. .hword 0, 0, 0, 0, 0, 0
  3288. .string LAN_DE "Wickelblatt", 12
  3289. .string LAN_EN "Leaf-Wrapp.", 12
  3290. .hword 4, 40
  3291. .word str_pokedex_eintraege_547
  3292. .word str_pokedex_eintraege_547
  3293. .hword 0, 0, 0, 0, 0, 0
  3294. .string LAN_DE "Kinderpfl.", 12
  3295. .string LAN_EN "Nurturing", 12
  3296. .hword 6, 81
  3297. .word str_pokedex_eintraege_548
  3298. .word str_pokedex_eintraege_548
  3299. .hword 0, 0, 0, 0, 0, 0
  3300. .string LAN_DE "Tausendfüß.", 12
  3301. .string LAN_EN "Centipede", 12
  3302. .hword 8, 160
  3303. .word str_pokedex_eintraege_549
  3304. .word str_pokedex_eintraege_549
  3305. .hword 0, 0, 0, 0, 0, 0
  3306. .string LAN_DE "Kokonfüßer", 12
  3307. .string LAN_EN "Curlipede", 12
  3308. .hword 33, 630
  3309. .word str_pokedex_eintraege_550
  3310. .word str_pokedex_eintraege_550
  3311. .hword 0, 0, 0, 0, 0, 0
  3312. .string LAN_DE "Riesenfüßer", 12
  3313. .string LAN_EN "Megapede", 12
  3314. .hword 5, 99
  3315. .word str_pokedex_eintraege_551
  3316. .word str_pokedex_eintraege_551
  3317. .hword 0, 0, 0, 0, 0, 0
  3318. .string LAN_DE "Wattebausch", 12
  3319. .string LAN_EN "Cotton Puff", 12
  3320. .hword 10, 550
  3321. .word str_pokedex_eintraege_552
  3322. .word str_pokedex_eintraege_552
  3323. .hword 0, 0, 0, 0, 0, 0
  3324. .string LAN_DE "Windschatt.", 12
  3325. .string LAN_EN "Windveiled", 12
  3326. .hword 16, 1500
  3327. .word str_pokedex_eintraege_553
  3328. .word str_pokedex_eintraege_553
  3329. .hword 0, 0, 0, 0, 0, 0
  3330. .string LAN_DE "Wurzel", 12
  3331. .string LAN_EN "Bulb", 12
  3332. .hword 5, 59
  3333. .word str_pokedex_eintraege_554
  3334. .word str_pokedex_eintraege_554
  3335. .hword 0, 0, 0, 0, 0, 0
  3336. .string LAN_DE "Blumenzier", 12
  3337. .string LAN_EN "Flowering", 12
  3338. .hword 8, 245
  3339. .word str_pokedex_eintraege_555
  3340. .word str_pokedex_eintraege_555
  3341. .hword 0, 0, 0, 0, 0, 0
  3342. .string LAN_DE "Grobheit", 12
  3343. .string LAN_EN "Hostile", 12
  3344. .hword 15, 946
  3345. .word str_pokedex_eintraege_556
  3346. .word str_pokedex_eintraege_556
  3347. .hword 0, 0, 0, 0, 0, 0
  3348. .string LAN_DE "Wüstenkro.", 12
  3349. .string LAN_EN "Desert Croc", 12
  3350. .hword 5, 116
  3351. .word str_pokedex_eintraege_557
  3352. .word str_pokedex_eintraege_557
  3353. .hword 0, 0, 0, 0, 0, 0
  3354. .string LAN_DE "Wüstenkrok.", 12
  3355. .string LAN_EN "Desert Croc", 12
  3356. .hword 11, 270
  3357. .word str_pokedex_eintraege_558
  3358. .word str_pokedex_eintraege_558
  3359. .hword 0, 0, 0, 0, 0, 0
  3360. .string LAN_DE "Abschreck.", 12
  3361. .string LAN_EN "Intimidat.", 12
  3362. .hword 4, 41
  3363. .word str_pokedex_eintraege_559
  3364. .word str_pokedex_eintraege_559
  3365. .hword 0, 0, 0, 0, 0, 0
  3366. .string LAN_DE "Lampion", 12
  3367. .string LAN_EN "Zen Charm", 12
  3368. .hword 9, 147
  3369. .word str_pokedex_eintraege_560
  3370. .word str_pokedex_eintraege_560
  3371. .hword 0, 0, 0, 0, 0, 0
  3372. .string LAN_DE "Lichterloh", 12
  3373. .string LAN_EN "Blazing", 12
  3374. .hword 12, 610
  3375. .word str_pokedex_eintraege_561
  3376. .word str_pokedex_eintraege_561
  3377. .hword 0, 0, 0, 0, 0, 0
  3378. .string LAN_DE "Kaktus", 12
  3379. .string LAN_EN "Cactus", 12
  3380. .hword 4, 101
  3381. .word str_pokedex_eintraege_562
  3382. .word str_pokedex_eintraege_562
  3383. .hword 0, 0, 0, 0, 0, 0
  3384. .string LAN_DE "Steinhaus", 12
  3385. .string LAN_EN "Rock Inn", 12
  3386. .hword 11, 375
  3387. .word str_pokedex_eintraege_563
  3388. .word str_pokedex_eintraege_563
  3389. .hword 0, 0, 0, 0, 0, 0
  3390. .string LAN_DE "Felshaus", 12
  3391. .string LAN_EN "Stone Home", 12
  3392. .hword 6, 105
  3393. .word str_pokedex_eintraege_564
  3394. .word str_pokedex_eintraege_564
  3395. .hword 0, 0, 0, 0, 0, 0
  3396. .string LAN_DE "Hautwechsel", 12
  3397. .string LAN_EN "Shedding", 12
  3398. .hword 11, 305
  3399. .word str_pokedex_eintraege_565
  3400. .word str_pokedex_eintraege_565
  3401. .hword 0, 0, 0, 0, 0, 0
  3402. .string LAN_DE "Halunke", 12
  3403. .string LAN_EN "Hoodlum", 12
  3404. .hword 6, 110
  3405. .word str_pokedex_eintraege_566
  3406. .word str_pokedex_eintraege_566
  3407. .hword 0, 0, 0, 0, 0, 0
  3408. .string LAN_DE "Vogelgleich", 12
  3409. .string LAN_EN "Avianoid", 12
  3410. .hword 10, 280
  3411. .word str_pokedex_eintraege_567
  3412. .word str_pokedex_eintraege_567
  3413. .hword 0, 0, 0, 0, 0, 0
  3414. .string LAN_DE "Seele", 12
  3415. .string LAN_EN "Spirit", 12
  3416. .hword 6, 150
  3417. .word str_pokedex_eintraege_568
  3418. .word str_pokedex_eintraege_568
  3419. .hword 0, 0, 0, 0, 0, 0
  3420. .string LAN_DE "Sarkophag", 12
  3421. .string LAN_EN "Coffin", 12
  3422. .hword 10, 290
  3423. .word str_pokedex_eintraege_569
  3424. .word str_pokedex_eintraege_569
  3425. .hword 0, 0, 0, 0, 0, 0
  3426. .string LAN_DE "Urzeitkröte", 12
  3427. .string LAN_EN "Prototurtle", 12
  3428. .hword 6, 233
  3429. .word str_pokedex_eintraege_570
  3430. .word str_pokedex_eintraege_570
  3431. .hword 0, 0, 0, 0, 0, 0
  3432. .string LAN_DE "Urzeitkröte", 12
  3433. .string LAN_EN "Prototurtle", 12
  3434. .hword 11, 605
  3435. .word str_pokedex_eintraege_571
  3436. .word str_pokedex_eintraege_571
  3437. .hword 0, 0, 0, 0, 0, 0
  3438. .string LAN_DE "Urzeitvogel", 12
  3439. .string LAN_EN "First Bird", 12
  3440. .hword 3, 21
  3441. .word str_pokedex_eintraege_572
  3442. .word str_pokedex_eintraege_572
  3443. .hword 0, 0, 0, 0, 0, 0
  3444. .string LAN_DE "Urzeitvogel", 12
  3445. .string LAN_EN "First Bird", 12
  3446. .hword 6, 150
  3447. .word str_pokedex_eintraege_573
  3448. .word str_pokedex_eintraege_573
  3449. .hword 0, 0, 0, 0, 0, 0
  3450. .string LAN_DE "Mülltüte", 12
  3451. .string LAN_EN "Trash Bag", 12
  3452. .hword 12, 290
  3453. .word str_pokedex_eintraege_574
  3454. .word str_pokedex_eintraege_574
  3455. .hword 0, 0, 0, 0, 0, 0
  3456. .string LAN_DE "Müllhalde", 12
  3457. .string LAN_EN "Trash Heap", 12
  3458. .hword 8, 298
  3459. .word str_pokedex_eintraege_575
  3460. .word str_pokedex_eintraege_575
  3461. .hword 0, 0, 0, 0, 0, 0
  3462. .string LAN_DE "Lausefuchs", 12
  3463. .string LAN_EN "Tricky Fox", 12
  3464. .hword 16, 795
  3465. .word str_pokedex_eintraege_576
  3466. .word str_pokedex_eintraege_576
  3467. .hword 0, 0, 0, 0, 0, 0
  3468. .string LAN_DE "Polymorfu.", 12
  3469. .string LAN_EN "Illus. Fox", 12
  3470. .hword 4, 180
  3471. .word str_pokedex_eintraege_577
  3472. .word str_pokedex_eintraege_577
  3473. .hword 0, 0, 0, 0, 0, 0
  3474. .string LAN_DE "Chinchilla", 12
  3475. .string LAN_EN "Chinchilla", 12
  3476. .hword 9, 1020
  3477. .word str_pokedex_eintraege_578
  3478. .word str_pokedex_eintraege_578
  3479. .hword 0, 0, 0, 0, 0, 0
  3480. .string LAN_DE "Schal", 12
  3481. .string LAN_EN "Scarf", 12
  3482. .hword 17, 2600
  3483. .word str_pokedex_eintraege_579
  3484. .word str_pokedex_eintraege_579
  3485. .hword 0, 0, 0, 0, 0, 0
  3486. .string LAN_DE "Glotz", 12
  3487. .string LAN_EN "Fixation", 12
  3488. .hword 4, 21
  3489. .word str_pokedex_eintraege_580
  3490. .word str_pokedex_eintraege_580
  3491. .hword 0, 0, 0, 0, 0, 0
  3492. .string LAN_DE "Manipulator", 12
  3493. .string LAN_EN "Manipulate", 12
  3494. .hword 9, 105
  3495. .word str_pokedex_eintraege_581
  3496. .word str_pokedex_eintraege_581
  3497. .hword 0, 0, 0, 0, 0, 0
  3498. .string LAN_DE "Gestirn", 12
  3499. .string LAN_EN "Astral Body", 12
  3500. .hword 3, 85
  3501. .word str_pokedex_eintraege_582
  3502. .word str_pokedex_eintraege_582
  3503. .hword 0, 0, 0, 0, 0, 0
  3504. .string LAN_DE "Zelle", 12
  3505. .string LAN_EN "Cell", 12
  3506. .hword 7, 404
  3507. .word str_pokedex_eintraege_583
  3508. .word str_pokedex_eintraege_583
  3509. .hword 0, 0, 0, 0, 0, 0
  3510. .string LAN_DE "Zellteilung", 12
  3511. .string LAN_EN "Mitosis", 12
  3512. .hword 11, 310
  3513. .word str_pokedex_eintraege_584
  3514. .word str_pokedex_eintraege_584
  3515. .hword 0, 0, 0, 0, 0, 0
  3516. .string LAN_DE "Vermehrung", 12
  3517. .string LAN_EN "Multiplying", 12
  3518. .hword 6, 125
  3519. .word str_pokedex_eintraege_585
  3520. .word str_pokedex_eintraege_585
  3521. .hword 0, 0, 0, 0, 0, 0
  3522. .string LAN_DE "Wasservogel", 12
  3523. .string LAN_EN "Water Bird", 12
  3524. .hword 12, 400
  3525. .word str_pokedex_eintraege_586
  3526. .word str_pokedex_eintraege_586
  3527. .hword 0, 0, 0, 0, 0, 0
  3528. .string LAN_DE "Schwan", 12
  3529. .string LAN_EN "White Bird", 12
  3530. .hword 14, 870
  3531. .word str_pokedex_eintraege_587
  3532. .word str_pokedex_eintraege_587
  3533. .hword 0, 0, 0, 0, 0, 0
  3534. .string LAN_DE "Neuschnee", 12
  3535. .string LAN_EN "Fresh Snow", 12
  3536. .hword 5, 45
  3537. .word str_pokedex_eintraege_588
  3538. .word str_pokedex_eintraege_588
  3539. .hword 0, 0, 0, 0, 0, 0
  3540. .string LAN_DE "Firn", 12
  3541. .string LAN_EN "Icy Snow", 12
  3542. .hword 8, 170
  3543. .word str_pokedex_eintraege_589
  3544. .word str_pokedex_eintraege_589
  3545. .hword 0, 0, 0, 0, 0, 0
  3546. .string LAN_DE "Schneesturm", 12
  3547. .string LAN_EN "Snowstorm", 12
  3548. .hword 15, 620
  3549. .word str_pokedex_eintraege_590
  3550. .word str_pokedex_eintraege_590
  3551. .hword 0, 0, 0, 0, 0, 0
  3552. .string LAN_DE "Jahreszeit", 12
  3553. .string LAN_EN "Season", 12
  3554. .hword 13, 555
  3555. .word str_pokedex_eintraege_591
  3556. .word str_pokedex_eintraege_591
  3557. .hword 0, 0, 0, 0, 0, 0
  3558. .string LAN_DE "Jahreszeit", 12
  3559. .string LAN_EN "Season", 12
  3560. .hword 14, 510
  3561. .word str_pokedex_eintraege_592
  3562. .word str_pokedex_eintraege_592
  3563. .hword 0, 0, 0, 0, 0, 0
  3564. .string LAN_DE "Flughörnch.", 12
  3565. .string LAN_EN "Sky Squir.", 12
  3566. .hword 3, 25
  3567. .word str_pokedex_eintraege_593
  3568. .word str_pokedex_eintraege_593
  3569. .hword 0, 0, 0, 0, 0, 0
  3570. .string LAN_DE "Schnappbiss", 12
  3571. .string LAN_EN "Clamping", 12
  3572. .hword 5, 73
  3573. .word str_pokedex_eintraege_594
  3574. .word str_pokedex_eintraege_594
  3575. .hword 0, 0, 0, 0, 0, 0
  3576. .string LAN_DE "Kavallerie", 12
  3577. .string LAN_EN "Cavalry", 12
  3578. .hword 12, 205
  3579. .word str_pokedex_eintraege_595
  3580. .word str_pokedex_eintraege_595
  3581. .hword 0, 0, 0, 0, 0, 0
  3582. .string LAN_DE "Pilz", 12
  3583. .string LAN_EN "Mushroom", 12
  3584. .hword 4, 53
  3585. .word str_pokedex_eintraege_596
  3586. .word str_pokedex_eintraege_596
  3587. .hword 0, 0, 0, 0, 0, 0
  3588. .string LAN_DE "Pilz", 12
  3589. .string LAN_EN "Mushroom", 12
  3590. .hword 12, 585
  3591. .word str_pokedex_eintraege_597
  3592. .word str_pokedex_eintraege_597
  3593. .hword 0, 0, 0, 0, 0, 0
  3594. .string LAN_DE "Gleit", 12
  3595. .string LAN_EN "Floating", 12
  3596. .hword 25, 2005
  3597. .word str_pokedex_eintraege_598
  3598. .word str_pokedex_eintraege_598
  3599. .hword 0, 0, 0, 0, 0, 0
  3600. .string LAN_DE "Gleit", 12
  3601. .string LAN_EN "Floating", 12
  3602. .hword 3, 6
  3603. .word str_pokedex_eintraege_599
  3604. .word str_pokedex_eintraege_599
  3605. .hword 0, 0, 0, 0, 0, 0
  3606. .string LAN_DE "Fürsorge", 12
  3607. .string LAN_EN "Caring", 12
  3608. .hword 7, 66
  3609. .word str_pokedex_eintraege_600
  3610. .word str_pokedex_eintraege_600
  3611. .hword 0, 0, 0, 0, 0, 0
  3612. .string LAN_DE "Kleben", 12
  3613. .string LAN_EN "Attaching", 12
  3614. .hword 5, 66
  3615. .word str_pokedex_eintraege_601
  3616. .word str_pokedex_eintraege_601
  3617. .hword 0, 0, 0, 0, 0, 0
  3618. .string LAN_DE "Stromspinne", 12
  3619. .string LAN_EN "EleSpider", 12
  3620. .hword 11, 163
  3621. .word str_pokedex_eintraege_602
  3622. .word str_pokedex_eintraege_602
  3623. .hword 0, 0, 0, 0, 0, 0
  3624. .string LAN_DE "Dornfrucht", 12
  3625. .string LAN_EN "Thorn Seed", 12
  3626. .hword 10, 180
  3627. .word str_pokedex_eintraege_603
  3628. .word str_pokedex_eintraege_603
  3629. .hword 0, 0, 0, 0, 0, 0
  3630. .string LAN_DE "Dornkugel", 12
  3631. .string LAN_EN "Thorn Pod", 12
  3632. .hword 7, 152
  3633. .word str_pokedex_eintraege_604
  3634. .word str_pokedex_eintraege_604
  3635. .hword 0, 0, 0, 0, 0, 0
  3636. .string LAN_DE "Getriebe", 12
  3637. .string LAN_EN "Gear", 12
  3638. .hword 10, 334
  3639. .word str_pokedex_eintraege_605
  3640. .word str_pokedex_eintraege_605
  3641. .hword 0, 0, 0, 0, 0, 0
  3642. .string LAN_DE "Getriebe", 12
  3643. .string LAN_EN "Gear", 12
  3644. .hword 15, 963
  3645. .word str_pokedex_eintraege_606
  3646. .word str_pokedex_eintraege_606
  3647. .hword 0, 0, 0, 0, 0, 0
  3648. .string LAN_DE "Getriebe", 12
  3649. .string LAN_EN "Gear", 12
  3650. .hword 6, 375
  3651. .word str_pokedex_eintraege_607
  3652. .word str_pokedex_eintraege_607
  3653. .hword 0, 0, 0, 0, 0, 0
  3654. .string LAN_DE "Stromfisch", 12
  3655. .string LAN_EN "EleFish", 12
  3656. .hword 13, 929
  3657. .word str_pokedex_eintraege_608
  3658. .word str_pokedex_eintraege_608
  3659. .hword 0, 0, 0, 0, 0, 0
  3660. .string LAN_DE "Stromfisch", 12
  3661. .string LAN_EN "EleFish", 12
  3662. .hword 10, 280
  3663. .word str_pokedex_eintraege_609
  3664. .word str_pokedex_eintraege_609
  3665. .hword 0, 0, 0, 0, 0, 0
  3666. .string LAN_DE "Stromfisch", 12
  3667. .string LAN_EN "EleFish", 12
  3668. .hword 3, 145
  3669. .word str_pokedex_eintraege_610
  3670. .word str_pokedex_eintraege_610
  3671. .hword 0, 0, 0, 0, 0, 0
  3672. .string LAN_DE "Grips", 12
  3673. .string LAN_EN "Cerebral", 12
  3674. .hword 14, 2000
  3675. .word str_pokedex_eintraege_611
  3676. .word str_pokedex_eintraege_611
  3677. .hword 0, 0, 0, 0, 0, 0
  3678. .string LAN_DE "Grips", 12
  3679. .string LAN_EN "Cerebral", 12
  3680. .hword 6, 128
  3681. .word str_pokedex_eintraege_612
  3682. .word str_pokedex_eintraege_612
  3683. .hword 0, 0, 0, 0, 0, 0
  3684. .string LAN_DE "Kerze", 12
  3685. .string LAN_EN "Candle", 12
  3686. .hword 11, 300
  3687. .word str_pokedex_eintraege_613
  3688. .word str_pokedex_eintraege_613
  3689. .hword 0, 0, 0, 0, 0, 0
  3690. .string LAN_DE "Lampe", 12
  3691. .string LAN_EN "Lamp", 12
  3692. .hword 14, 140
  3693. .word str_pokedex_eintraege_614
  3694. .word str_pokedex_eintraege_614
  3695. .hword 0, 0, 0, 0, 0, 0
  3696. .string LAN_DE "Geleit", 12
  3697. .string LAN_EN "Luring", 12
  3698. .hword 5, 15
  3699. .word str_pokedex_eintraege_615
  3700. .word str_pokedex_eintraege_615
  3701. .hword 0, 0, 0, 0, 0, 0
  3702. .string LAN_DE "Stoßzahn", 12
  3703. .string LAN_EN "Tusk", 12
  3704. .hword 17, 765
  3705. .word str_pokedex_eintraege_616
  3706. .word str_pokedex_eintraege_616
  3707. .hword 0, 0, 0, 0, 0, 0
  3708. .string LAN_DE "Beilkiefer", 12
  3709. .string LAN_EN "Axe Jaw", 12
  3710. .hword 7, 165
  3711. .word str_pokedex_eintraege_617
  3712. .word str_pokedex_eintraege_617
  3713. .hword 0, 0, 0, 0, 0, 0
  3714. .string LAN_DE "Beilkiefer", 12
  3715. .string LAN_EN "Axe Jaw", 12
  3716. .hword 12, 810
  3717. .word str_pokedex_eintraege_618
  3718. .word str_pokedex_eintraege_618
  3719. .hword 0, 0, 0, 0, 0, 0
  3720. .string LAN_DE "Eisscholle", 12
  3721. .string LAN_EN "Chill", 12
  3722. .hword 5, 95
  3723. .word str_pokedex_eintraege_619
  3724. .word str_pokedex_eintraege_619
  3725. .hword 0, 0, 0, 0, 0, 0
  3726. .string LAN_DE "Packeis", 12
  3727. .string LAN_EN "Freezing", 12
  3728. .hword 14, 320
  3729. .word str_pokedex_eintraege_620
  3730. .word str_pokedex_eintraege_620
  3731. .hword 0, 0, 0, 0, 0, 0
  3732. .string LAN_DE "Kristall", 12
  3733. .string LAN_EN "Crystal.", 12
  3734. .hword 6, 310
  3735. .word str_pokedex_eintraege_621
  3736. .word str_pokedex_eintraege_621
  3737. .hword 0, 0, 0, 0, 0, 0
  3738. .string LAN_DE "Schnecke", 12
  3739. .string LAN_EN "Snail", 12
  3740. .hword 19, 1073
  3741. .word str_pokedex_eintraege_622
  3742. .word str_pokedex_eintraege_622
  3743. .hword 0, 0, 0, 0, 0, 0
  3744. .string LAN_DE "Entschalung", 12
  3745. .string LAN_EN "Shell Out", 12
  3746. .hword 7, 126
  3747. .word str_pokedex_eintraege_623
  3748. .word str_pokedex_eintraege_623
  3749. .hword 0, 0, 0, 0, 0, 0
  3750. .string LAN_DE "Falle", 12
  3751. .string LAN_EN "Trap", 12
  3752. .hword 16, 811
  3753. .word str_pokedex_eintraege_624
  3754. .word str_pokedex_eintraege_624
  3755. .hword 0, 0, 0, 0, 0, 0
  3756. .string LAN_DE "Kampfkünste", 12
  3757. .string LAN_EN "Mart. Arts", 12
  3758. .hword 4, 58
  3759. .word str_pokedex_eintraege_625
  3760. .word str_pokedex_eintraege_625
  3761. .hword 0, 0, 0, 0, 0, 0
  3762. .string LAN_DE "Kampfkünste", 12
  3763. .string LAN_EN "Mart. Arts", 12
  3764. .hword 5, 75
  3765. .word str_pokedex_eintraege_626
  3766. .word str_pokedex_eintraege_626
  3767. .hword 0, 0, 0, 0, 0, 0
  3768. .string LAN_DE "Höhle", 12
  3769. .string LAN_EN "Cave", 12
  3770. .hword 4, 58
  3771. .word str_pokedex_eintraege_627
  3772. .word str_pokedex_eintraege_627
  3773. .hword 0, 0, 0, 0, 0, 0
  3774. .string LAN_DE "Urgolem", 12
  3775. .string LAN_EN "Automaton", 12
  3776. .hword 7, 180
  3777. .word str_pokedex_eintraege_628
  3778. .word str_pokedex_eintraege_628
  3779. .hword 0, 0, 0, 0, 0, 0
  3780. .string LAN_DE "Urgolem", 12
  3781. .string LAN_EN "Automaton", 12
  3782. .hword 15, 440
  3783. .word str_pokedex_eintraege_629
  3784. .word str_pokedex_eintraege_629
  3785. .hword 0, 0, 0, 0, 0, 0
  3786. .string LAN_DE "Stahlklinge", 12
  3787. .string LAN_EN "Sharp Blade", 12
  3788. .hword 3, 10
  3789. .word str_pokedex_eintraege_630
  3790. .word str_pokedex_eintraege_630
  3791. .hword 0, 0, 0, 0, 0, 0
  3792. .string LAN_DE "Schwertkl.", 12
  3793. .string LAN_EN "Sword Blade", 12
  3794. .hword 6, 80
  3795. .word str_pokedex_eintraege_631
  3796. .word str_pokedex_eintraege_631
  3797. .hword 0, 0, 0, 0, 0, 0
  3798. .string LAN_DE "Kopfstoßr.", 12
  3799. .string LAN_EN "Bash Buff.", 12
  3800. .hword 10, 201
  3801. .word str_pokedex_eintraege_632
  3802. .word str_pokedex_eintraege_632
  3803. .hword 0, 0, 0, 0, 0, 0
  3804. .string LAN_DE "Adlerküken", 12
  3805. .string LAN_EN "Eaglet", 12
  3806. .hword 5, 55
  3807. .word str_pokedex_eintraege_633
  3808. .word str_pokedex_eintraege_633
  3809. .hword 0, 0, 0, 0, 0, 0
  3810. .string LAN_DE "Kühnheit", 12
  3811. .string LAN_EN "Valiant", 12
  3812. .hword 13, 242
  3813. .word str_pokedex_eintraege_634
  3814. .word str_pokedex_eintraege_634
  3815. .hword 0, 0, 0, 0, 0, 0
  3816. .string LAN_DE "Windel", 12
  3817. .string LAN_EN "Diapered", 12
  3818. .hword 4, 57
  3819. .word str_pokedex_eintraege_635
  3820. .word str_pokedex_eintraege_635
  3821. .hword 0, 0, 0, 0, 0, 0
  3822. .string LAN_DE "Knochenad.", 12
  3823. .string LAN_EN "Bone Vult.", 12
  3824. .hword 11, 410
  3825. .word str_pokedex_eintraege_636
  3826. .word str_pokedex_eintraege_636
  3827. .hword 0, 0, 0, 0, 0, 0
  3828. .string LAN_DE "Ameisenbär", 12
  3829. .string LAN_EN "Anteater", 12
  3830. .hword 15, 575
  3831. .word str_pokedex_eintraege_637
  3832. .word str_pokedex_eintraege_637
  3833. .hword 0, 0, 0, 0, 0, 0
  3834. .string LAN_DE "Eisenameise", 12
  3835. .string LAN_EN "Iron Ant", 12
  3836. .hword 6, 195
  3837. .word str_pokedex_eintraege_638
  3838. .word str_pokedex_eintraege_638
  3839. .hword 0, 0, 0, 0, 0, 0
  3840. .string LAN_DE "Haudrauf", 12
  3841. .string LAN_EN "Irate", 12
  3842. .hword 19, 925
  3843. .word str_pokedex_eintraege_639
  3844. .word str_pokedex_eintraege_639
  3845. .hword 0, 0, 0, 0, 0, 0
  3846. .string LAN_DE "Grobheit", 12
  3847. .string LAN_EN "Hostile", 12
  3848. .hword 4, 50
  3849. .word str_pokedex_eintraege_640
  3850. .word str_pokedex_eintraege_640
  3851. .hword 0, 0, 0, 0, 0, 0
  3852. .string LAN_DE "Brutal", 12
  3853. .string LAN_EN "Brutal", 12
  3854. .hword 5, 59
  3855. .word str_pokedex_eintraege_641
  3856. .word str_pokedex_eintraege_641
  3857. .hword 0, 0, 0, 0, 0, 0
  3858. .string LAN_DE "Fackel", 12
  3859. .string LAN_EN "Torch", 12
  3860. .hword 10, 330
  3861. .word str_pokedex_eintraege_642
  3862. .word str_pokedex_eintraege_642
  3863. .hword 0, 0, 0, 0, 0, 0
  3864. .string LAN_DE "Sonne", 12
  3865. .string LAN_EN "Sun", 12
  3866. .hword 2, 10
  3867. .word str_pokedex_eintraege_643
  3868. .word str_pokedex_eintraege_643
  3869. .hword 0, 0, 0, 0, 0, 0
  3870. .string LAN_DE "Eisenkern", 12
  3871. .string LAN_EN "Iron Will", 12
  3872. .hword 6, 105
  3873. .word str_pokedex_eintraege_644
  3874. .word str_pokedex_eintraege_644
  3875. .hword 0, 0, 0, 0, 0, 0
  3876. .string LAN_DE "Felsenhöhle", 12
  3877. .string LAN_EN "Cavern", 12
  3878. .hword 12, 330
  3879. .word str_pokedex_eintraege_645
  3880. .word str_pokedex_eintraege_645
  3881. .hword 0, 0, 0, 0, 0, 0
  3882. .string LAN_DE "Wiese", 12
  3883. .string LAN_EN "Grassland", 12
  3884. .hword 22, 1350
  3885. .word str_pokedex_eintraege_646
  3886. .word str_pokedex_eintraege_646
  3887. .hword 0, 0, 0, 0, 0, 0
  3888. .string LAN_DE "Wirbelsturm", 12
  3889. .string LAN_EN "Cyclone", 12
  3890. .hword 12, 316
  3891. .word str_pokedex_eintraege_647
  3892. .word str_pokedex_eintraege_647
  3893. .hword 0, 0, 0, 0, 0, 0
  3894. .string LAN_DE "Torpedo", 12
  3895. .string LAN_EN "Bolt Strike", 12
  3896. .hword 1, 6
  3897. .word str_pokedex_eintraege_648
  3898. .word str_pokedex_eintraege_648
  3899. .hword 0, 0, 0, 0, 0, 0
  3900. .string LAN_DE "Wahres Weiß", 12
  3901. .string LAN_EN "Vast White", 12
  3902. .hword 8, 143
  3903. .word str_pokedex_eintraege_649
  3904. .word str_pokedex_eintraege_649
  3905. .hword 0, 0, 0, 0, 0, 0
  3906. .string LAN_DE "Reines Sch.", 12
  3907. .string LAN_EN "Deep Black", 12
  3908. .hword 6, 188
  3909. .word str_pokedex_eintraege_650
  3910. .word str_pokedex_eintraege_650
  3911. .hword 0, 0, 0, 0, 0, 0
  3912. .string LAN_DE "Reichtum", 12
  3913. .string LAN_EN "Abundant", 12
  3914. .hword 10, 1100
  3915. .word str_pokedex_eintraege_651
  3916. .word str_pokedex_eintraege_651
  3917. .hword 0, 0, 0, 0, 0, 0
  3918. .string LAN_DE "Schwelle", 12
  3919. .string LAN_EN "Boundary", 12
  3920. .hword 3, 233
  3921. .word str_pokedex_eintraege_652
  3922. .word str_pokedex_eintraege_652
  3923. .hword 0, 0, 0, 0, 0, 0
  3924. .string LAN_DE "Fohlen", 12
  3925. .string LAN_EN "Colt", 12
  3926. .hword 6, 510
  3927. .word str_pokedex_eintraege_653
  3928. .word str_pokedex_eintraege_653
  3929. .hword 0, 0, 0, 0, 0, 0
  3930. .string LAN_DE "Melodie", 12
  3931. .string LAN_EN "Melody", 12
  3932. .hword 6, 810
  3933. .word str_pokedex_eintraege_654
  3934. .word str_pokedex_eintraege_654
  3935. .hword 0, 0, 0, 0, 0, 0
  3936. .string LAN_DE "Paläozoikum", 12
  3937. .string LAN_EN "Paleozoic", 12
  3938. .hword 2, 3
  3939. .word str_pokedex_eintraege_655
  3940. .word str_pokedex_eintraege_655
  3941. .hword 0, 0, 0, 0, 0, 0
  3942. .string LAN_DE "Stachelkopf", 12
  3943. .string LAN_EN "Spiny Nut", 12
  3944. .hword 12, 220
  3945. .word str_pokedex_eintraege_656
  3946. .word str_pokedex_eintraege_656
  3947. .hword 0, 0, 0, 0, 0, 0
  3948. .string LAN_DE "Spitzpanzer", 12
  3949. .string LAN_EN "Spiny Armor", 12
  3950. .hword 21, 805
  3951. .word str_pokedex_eintraege_657
  3952. .word str_pokedex_eintraege_657
  3953. .hword 0, 0, 0, 0, 0, 0
  3954. .string LAN_DE "Spitzpanzer", 12
  3955. .string LAN_EN "Spiny Armor", 12
  3956. .hword 5, 95
  3957. .word str_pokedex_eintraege_658
  3958. .word str_pokedex_eintraege_658
  3959. .hword 0, 0, 0, 0, 0, 0
  3960. .string LAN_DE "Fuchs", 12
  3961. .string LAN_EN "Fox", 12
  3962. .hword 10, 345
  3963. .word str_pokedex_eintraege_659
  3964. .word str_pokedex_eintraege_659
  3965. .hword 0, 0, 0, 0, 0, 0
  3966. .string LAN_DE "Fuchs", 12
  3967. .string LAN_EN "Fox", 12
  3968. .hword 3, 31
  3969. .word str_pokedex_eintraege_660
  3970. .word str_pokedex_eintraege_660
  3971. .hword 0, 0, 0, 0, 0, 0
  3972. .string LAN_DE "Fuchs", 12
  3973. .string LAN_EN "Fox", 12
  3974. .hword 6, 130
  3975. .word str_pokedex_eintraege_661
  3976. .word str_pokedex_eintraege_661
  3977. .hword 0, 0, 0, 0, 0, 0
  3978. .string LAN_DE "Blubbfrosch", 12
  3979. .string LAN_EN "Bubble Frog", 12
  3980. .hword 10, 343
  3981. .word str_pokedex_eintraege_662
  3982. .word str_pokedex_eintraege_662
  3983. .hword 0, 0, 0, 0, 0, 0
  3984. .string LAN_DE "Blubbfrosch", 12
  3985. .string LAN_EN "Bubble Frog", 12
  3986. .hword 6, 180
  3987. .word str_pokedex_eintraege_663
  3988. .word str_pokedex_eintraege_663
  3989. .hword 0, 0, 0, 0, 0, 0
  3990. .string LAN_DE "Ninja", 12
  3991. .string LAN_EN "Ninja", 12
  3992. .hword 10, 360
  3993. .word str_pokedex_eintraege_664
  3994. .word str_pokedex_eintraege_664
  3995. .hword 0, 0, 0, 0, 0, 0
  3996. .string LAN_DE "Baugräber", 12
  3997. .string LAN_EN "Digging", 12
  3998. .hword 18, 1055
  3999. .word str_pokedex_eintraege_665
  4000. .word str_pokedex_eintraege_665
  4001. .hword 0, 0, 0, 0, 0, 0
  4002. .string LAN_DE "Baugräber", 12
  4003. .string LAN_EN "Digging", 12
  4004. .hword 5, 85
  4005. .word str_pokedex_eintraege_666
  4006. .word str_pokedex_eintraege_666
  4007. .hword 0, 0, 0, 0, 0, 0
  4008. .string LAN_DE "Rotkehlchen", 12
  4009. .string LAN_EN "Tiny Robin", 12
  4010. .hword 26, 2600
  4011. .word str_pokedex_eintraege_667
  4012. .word str_pokedex_eintraege_667
  4013. .hword 0, 0, 0, 0, 0, 0
  4014. .string LAN_DE "Funkenregen", 12
  4015. .string LAN_EN "Ember", 12
  4016. .hword 11, 1480
  4017. .word str_pokedex_eintraege_668
  4018. .word str_pokedex_eintraege_668
  4019. .hword 0, 0, 0, 0, 0, 0
  4020. .string LAN_DE "Stichflamme", 12
  4021. .string LAN_EN "Scorching", 12
  4022. .hword 4, 77
  4023. .word str_pokedex_eintraege_669
  4024. .word str_pokedex_eintraege_669
  4025. .hword 0, 0, 0, 0, 0, 0
  4026. .string LAN_DE "Puderinsekt", 12
  4027. .string LAN_EN "Scatterdust", 12
  4028. .hword 8, 253
  4029. .word str_pokedex_eintraege_670
  4030. .word str_pokedex_eintraege_670
  4031. .hword 0, 0, 0, 0, 0, 0
  4032. .string LAN_DE "Puderinsekt", 12
  4033. .string LAN_EN "Scatterdust", 12
  4034. .hword 7, 110
  4035. .word str_pokedex_eintraege_671
  4036. .word str_pokedex_eintraege_671
  4037. .hword 0, 0, 0, 0, 0, 0
  4038. .string LAN_DE "Flügelstaub", 12
  4039. .string LAN_EN "Scale", 12
  4040. .hword 9, 200
  4041. .word str_pokedex_eintraege_672
  4042. .word str_pokedex_eintraege_672
  4043. .hword 0, 0, 0, 0, 0, 0
  4044. .string LAN_DE "Junglöwe", 12
  4045. .string LAN_EN "Lion Cub", 12
  4046. .hword 14, 355
  4047. .word str_pokedex_eintraege_673
  4048. .word str_pokedex_eintraege_673
  4049. .hword 0, 0, 0, 0, 0, 0
  4050. .string LAN_DE "Monarch", 12
  4051. .string LAN_EN "Royal", 12
  4052. .hword 16, 1390
  4053. .word str_pokedex_eintraege_674
  4054. .word str_pokedex_eintraege_674
  4055. .hword 0, 0, 0, 0, 0, 0
  4056. .string LAN_DE "Einblütler", 12
  4057. .string LAN_EN "Sing. Bloom", 12
  4058. .hword 10, 920
  4059. .word str_pokedex_eintraege_675
  4060. .word str_pokedex_eintraege_675
  4061. .hword 0, 0, 0, 0, 0, 0
  4062. .string LAN_DE "Einblütler", 12
  4063. .string LAN_EN "Sing. Bloom", 12
  4064. .hword 22, 3300
  4065. .word str_pokedex_eintraege_676
  4066. .word str_pokedex_eintraege_676
  4067. .hword 0, 0, 0, 0, 0, 0
  4068. .string LAN_DE "Garten", 12
  4069. .string LAN_EN "Garden", 12
  4070. .hword 5, 102
  4071. .word str_pokedex_eintraege_677
  4072. .word str_pokedex_eintraege_677
  4073. .hword 0, 0, 0, 0, 0, 0
  4074. .string LAN_DE "Ritt", 12
  4075. .string LAN_EN "Mount", 12
  4076. .hword 16, 700
  4077. .word str_pokedex_eintraege_678
  4078. .word str_pokedex_eintraege_678
  4079. .hword 0, 0, 0, 0, 0, 0
  4080. .string LAN_DE "Ritt", 12
  4081. .string LAN_EN "Mount", 12
  4082. .hword 16, 945
  4083. .word str_pokedex_eintraege_679
  4084. .word str_pokedex_eintraege_679
  4085. .hword 0, 0, 0, 0, 0, 0
  4086. .string LAN_DE "Verspielt", 12
  4087. .string LAN_EN "Playful", 12
  4088. .hword 5, 105
  4089. .word str_pokedex_eintraege_680
  4090. .word str_pokedex_eintraege_680
  4091. .hword 0, 0, 0, 0, 0, 0
  4092. .string LAN_DE "Gaunerblick", 12
  4093. .string LAN_EN "Daunting", 12
  4094. .hword 15, 410
  4095. .word str_pokedex_eintraege_681
  4096. .word str_pokedex_eintraege_681
  4097. .hword 0, 0, 0, 0, 0, 0
  4098. .string LAN_DE "Pudel", 12
  4099. .string LAN_EN "Poodle", 12
  4100. .hword 5, 90
  4101. .word str_pokedex_eintraege_682
  4102. .word str_pokedex_eintraege_682
  4103. .hword 0, 0, 0, 0, 0, 0
  4104. .string LAN_DE "Zügelung", 12
  4105. .string LAN_EN "Restraint", 12
  4106. .hword 12, 395
  4107. .word str_pokedex_eintraege_683
  4108. .word str_pokedex_eintraege_683
  4109. .hword 0, 0, 0, 0, 0, 0
  4110. .string LAN_DE "Fassung", 12
  4111. .string LAN_EN "Constraint", 12
  4112. .hword 14, 580
  4113. .word str_pokedex_eintraege_684
  4114. .word str_pokedex_eintraege_684
  4115. .hword 0, 0, 0, 0, 0, 0
  4116. .string LAN_DE "Fassung", 12
  4117. .string LAN_EN "Constraint", 12
  4118. .hword 3, 330
  4119. .word str_pokedex_eintraege_685
  4120. .word str_pokedex_eintraege_685
  4121. .hword 0, 0, 0, 0, 0, 0
  4122. .string LAN_DE "Klingenkr.", 12
  4123. .string LAN_EN "Sword", 12
  4124. .hword 8, 173
  4125. .word str_pokedex_eintraege_686
  4126. .word str_pokedex_eintraege_686
  4127. .hword 0, 0, 0, 0, 0, 0
  4128. .string LAN_DE "Königsklin.", 12
  4129. .string LAN_EN "Royal Sword", 12
  4130. .hword 14, 500
  4131. .word str_pokedex_eintraege_687
  4132. .word str_pokedex_eintraege_687
  4133. .hword 0, 0, 0, 0, 0, 0
  4134. .string LAN_DE "Parfüm", 12
  4135. .string LAN_EN "Perfume", 12
  4136. .hword 18, 1600
  4137. .word str_pokedex_eintraege_688
  4138. .word str_pokedex_eintraege_688
  4139. .hword 0, 0, 0, 0, 0, 0
  4140. .string LAN_DE "Duft", 12
  4141. .string LAN_EN "Fragrance", 12
  4142. .hword 11, 288
  4143. .word str_pokedex_eintraege_689
  4144. .word str_pokedex_eintraege_689
  4145. .hword 0, 0, 0, 0, 0, 0
  4146. .string LAN_DE "Zuckerwatte", 12
  4147. .string LAN_EN "Cott. Candy", 12
  4148. .hword 16, 460
  4149. .word str_pokedex_eintraege_690
  4150. .word str_pokedex_eintraege_690
  4151. .hword 0, 0, 0, 0, 0, 0
  4152. .string LAN_DE "Schlagsahne", 12
  4153. .string LAN_EN "Meringue", 12
  4154. .hword 21, 2500
  4155. .word str_pokedex_eintraege_691
  4156. .word str_pokedex_eintraege_691
  4157. .hword 0, 0, 0, 0, 0, 0
  4158. .string LAN_DE "Rotation", 12
  4159. .string LAN_EN "Revolving", 12
  4160. .hword 19, 2600
  4161. .word str_pokedex_eintraege_692
  4162. .word str_pokedex_eintraege_692
  4163. .hword 0, 0, 0, 0, 0, 0
  4164. .string LAN_DE "Inversion", 12
  4165. .string LAN_EN "Overturning", 12
  4166. .hword 20, 2000
  4167. .word str_pokedex_eintraege_693
  4168. .word str_pokedex_eintraege_693
  4169. .hword 0, 0, 0, 0, 0, 0
  4170. .string LAN_DE "Krallenduo", 12
  4171. .string LAN_EN "Two-Handed", 12
  4172. .hword 15, 630
  4173. .word str_pokedex_eintraege_694
  4174. .word str_pokedex_eintraege_694
  4175. .hword 0, 0, 0, 0, 0, 0
  4176. .string LAN_DE "Ballung", 12
  4177. .string LAN_EN "Collective", 12
  4178. .hword 15, 610
  4179. .word str_pokedex_eintraege_695
  4180. .word str_pokedex_eintraege_695
  4181. .hword 0, 0, 0, 0, 0, 0
  4182. .string LAN_DE "Tangmimikry", 12
  4183. .string LAN_EN "Mock Kelp", 12
  4184. .hword 32, 3300
  4185. .word str_pokedex_eintraege_696
  4186. .word str_pokedex_eintraege_696
  4187. .hword 0, 0, 0, 0, 0, 0
  4188. .string LAN_DE "Tangmimikry", 12
  4189. .string LAN_EN "Mock Kelp", 12
  4190. .hword 29, 3450
  4191. .word str_pokedex_eintraege_697
  4192. .word str_pokedex_eintraege_697
  4193. .hword 0, 0, 0, 0, 0, 0
  4194. .string LAN_DE "Aquapistole", 12
  4195. .string LAN_EN "Water Gun", 12
  4196. .hword 15, 680
  4197. .word str_pokedex_eintraege_698
  4198. .word str_pokedex_eintraege_698
  4199. .hword 0, 0, 0, 0, 0, 0
  4200. .string LAN_DE "Aquawumme", 12
  4201. .string LAN_EN "Howitzer", 12
  4202. .hword 30, 3250
  4203. .word str_pokedex_eintraege_699
  4204. .word str_pokedex_eintraege_699
  4205. .hword 0, 0, 0, 0, 0, 0
  4206. .string LAN_DE "Generator", 12
  4207. .string LAN_EN "Generator", 12
  4208. .hword 14, 485
  4209. .word str_pokedex_eintraege_700
  4210. .word str_pokedex_eintraege_700
  4211. .hword 0, 0, 0, 0, 0, 0
  4212. .string LAN_DE "Generator", 12
  4213. .string LAN_EN "Generator", 12
  4214. .hword 6, 65
  4215. .word str_pokedex_eintraege_701
  4216. .word str_pokedex_eintraege_701
  4217. .hword 0, 0, 0, 0, 0, 0
  4218. .string LAN_DE "Kronprinz", 12
  4219. .string LAN_EN "Royal Heir", 12
  4220. .hword 15, 825
  4221. .word str_pokedex_eintraege_702
  4222. .word str_pokedex_eintraege_702
  4223. .hword 0, 0, 0, 0, 0, 0
  4224. .string LAN_DE "Tyrann", 12
  4225. .string LAN_EN "Despot", 12
  4226. .hword 4, 9
  4227. .word str_pokedex_eintraege_703
  4228. .word str_pokedex_eintraege_703
  4229. .hword 0, 0, 0, 0, 0, 0
  4230. .string LAN_DE "Tundra", 12
  4231. .string LAN_EN "Tundra", 12
  4232. .hword 7, 29
  4233. .word str_pokedex_eintraege_704
  4234. .word str_pokedex_eintraege_704
  4235. .hword 0, 0, 0, 0, 0, 0
  4236. .string LAN_DE "Tundra", 12
  4237. .string LAN_EN "Tundra", 12
  4238. .hword 16, 90
  4239. .word str_pokedex_eintraege_705
  4240. .word str_pokedex_eintraege_705
  4241. .hword 0, 0, 0, 0, 0, 0
  4242. .string LAN_DE "Bindung", 12
  4243. .string LAN_EN "Intertwin.", 12
  4244. .hword 4, 94
  4245. .word str_pokedex_eintraege_706
  4246. .word str_pokedex_eintraege_706
  4247. .hword 0, 0, 0, 0, 0, 0
  4248. .string LAN_DE "Wrestling", 12
  4249. .string LAN_EN "Wrestling", 12
  4250. .hword 1, 145
  4251. .word str_pokedex_eintraege_707
  4252. .word str_pokedex_eintraege_707
  4253. .hword 0, 0, 0, 0, 0, 0
  4254. .string LAN_DE "Antennen", 12
  4255. .string LAN_EN "Antenna", 12
  4256. .hword 15, 39
  4257. .word str_pokedex_eintraege_708
  4258. .word str_pokedex_eintraege_708
  4259. .hword 0, 0, 0, 0, 0, 0
  4260. .string LAN_DE "Edelstein", 12
  4261. .string LAN_EN "Jewel", 12
  4262. .hword 3, 7
  4263. .word str_pokedex_eintraege_709
  4264. .word str_pokedex_eintraege_709
  4265. .hword 0, 0, 0, 0, 0, 0
  4266. .string LAN_DE "Schneckedei", 12
  4267. .string LAN_EN "Soft Tissue", 12
  4268. .hword 6, 109
  4269. .word str_pokedex_eintraege_710
  4270. .word str_pokedex_eintraege_710
  4271. .hword 0, 0, 0, 0, 0, 0
  4272. .string LAN_DE "Schneckedei", 12
  4273. .string LAN_EN "Soft Tissue", 12
  4274. .hword 15, 40
  4275. .word str_pokedex_eintraege_711
  4276. .word str_pokedex_eintraege_711
  4277. .hword 0, 0, 0, 0, 0, 0
  4278. .string LAN_DE "Drache", 12
  4279. .string LAN_EN "Dragon", 12
  4280. .hword 4, 5
  4281. .word str_pokedex_eintraege_712
  4282. .word str_pokedex_eintraege_712
  4283. .hword 0, 0, 0, 0, 0, 0
  4284. .string LAN_DE "Schlüssel", 12
  4285. .string LAN_EN "Key Ring", 12
  4286. .hword 1, 424
  4287. .word str_pokedex_eintraege_713
  4288. .word str_pokedex_eintraege_713
  4289. .hword 0, 0, 0, 0, 0, 0
  4290. .string LAN_DE "Baumstumpf", 12
  4291. .string LAN_EN "Stump", 12
  4292. .hword 3, 17
  4293. .word str_pokedex_eintraege_714
  4294. .word str_pokedex_eintraege_714
  4295. .hword 0, 0, 0, 0, 0, 0
  4296. .string LAN_DE "Urgehölz", 12
  4297. .string LAN_EN "Elder Tree", 12
  4298. .hword 7, 16
  4299. .word str_pokedex_eintraege_715
  4300. .word str_pokedex_eintraege_715
  4301. .hword 0, 0, 0, 0, 0, 0
  4302. .string LAN_DE "Kürbis", 12
  4303. .string LAN_EN "Pumpkin", 12
  4304. .hword 12, 245
  4305. .word str_pokedex_eintraege_716
  4306. .word str_pokedex_eintraege_716
  4307. .hword 0, 0, 0, 0, 0, 0
  4308. .string LAN_DE "Kürbis", 12
  4309. .string LAN_EN "Pumpkin", 12
  4310. .hword 3, 35
  4311. .word str_pokedex_eintraege_717
  4312. .word str_pokedex_eintraege_717
  4313. .hword 0, 0, 0, 0, 0, 0
  4314. .string LAN_DE "Eisklumpen", 12
  4315. .string LAN_EN "Ice Chunk", 12
  4316. .hword 9, 95
  4317. .word str_pokedex_eintraege_718
  4318. .word str_pokedex_eintraege_718
  4319. .hword 0, 0, 0, 0, 0, 0
  4320. .string LAN_DE "Eisberg", 12
  4321. .string LAN_EN "Iceberg", 12
  4322. .hword 12, 17
  4323. .word str_pokedex_eintraege_719
  4324. .word str_pokedex_eintraege_719
  4325. .hword 0, 0, 0, 0, 0, 0
  4326. .string LAN_DE "Schallwell.", 12
  4327. .string LAN_EN "Sound Wave", 12
  4328. .hword 6, 135
  4329. .word str_pokedex_eintraege_720
  4330. .word str_pokedex_eintraege_720
  4331. .hword 0, 0, 0, 0, 0, 0
  4332. .string LAN_DE "Schallwell.", 12
  4333. .string LAN_EN "Sound Wave", 12
  4334. .hword 15, 815
  4335. .word str_pokedex_eintraege_721
  4336. .word str_pokedex_eintraege_721
  4337. .hword 0, 0, 0, 0, 0, 0
  4338. .string LAN_DE "Leben", 12
  4339. .string LAN_EN "Life", 12
  4340. .hword 1, 1
  4341. .word str_pokedex_eintraege_722
  4342. .word str_pokedex_eintraege_722
  4343. .hword 0, 0, 0, 0, 0, 0
  4344. .string LAN_DE "Zerstörung", 12
  4345. .string LAN_EN "Destruction", 12
  4346. .hword 2, 9
  4347. .word str_pokedex_eintraege_723
  4348. .word str_pokedex_eintraege_723
  4349. .hword 0, 0, 0, 0, 0, 0
  4350. .string LAN_DE "Ordnung", 12
  4351. .string LAN_EN "Order", 12
  4352. .hword 11, 10
  4353. .word str_pokedex_eintraege_724
  4354. .word str_pokedex_eintraege_724
  4355. .hword 0, 0, 0, 0, 0, 0
  4356. .string LAN_DE "Edelstein", 12
  4357. .string LAN_EN "Jewel", 12
  4358. .hword 9, 31
  4359. .word str_pokedex_eintraege_725
  4360. .word str_pokedex_eintraege_725
  4361. .hword 0, 0, 0, 0, 0, 0
  4362. .string LAN_DE "Unheil", 12
  4363. .string LAN_EN "Mischief", 12
  4364. .hword 17, 91
  4365. .word str_pokedex_eintraege_726
  4366. .word str_pokedex_eintraege_726
  4367. .hword 0, 0, 0, 0, 0, 0
  4368. .string LAN_DE "Dampf", 12
  4369. .string LAN_EN "Steam", 12
  4370. .hword 6, 8
  4371. .word str_pokedex_eintraege_727
  4372. .word str_pokedex_eintraege_727
  4373. .hword 0, 0, 0, 0, 0, 0
  4374. .string LAN_DE "Laubflügel", 12
  4375. .string LAN_EN "Grass Quill", 12
  4376. .hword 21, 136
  4377. .word str_pokedex_eintraege_728
  4378. .word str_pokedex_eintraege_728
  4379. .hword 0, 0, 0, 0, 0, 0
  4380. .string LAN_DE "Flügelklin.", 12
  4381. .string LAN_EN "Blade Quill", 12
  4382. .hword 12, 28
  4383. .word str_pokedex_eintraege_729
  4384. .word str_pokedex_eintraege_729
  4385. .hword 0, 0, 0, 0, 0, 0
  4386. .string LAN_DE "Pfeilflügel", 12
  4387. .string LAN_EN "Arrow Quill", 12
  4388. .hword 3, 35
  4389. .word str_pokedex_eintraege_730
  4390. .word str_pokedex_eintraege_730
  4391. .hword 0, 0, 0, 0, 0, 0
  4392. .string LAN_DE "Feuerkatze", 12
  4393. .string LAN_EN "Fire Cat", 12
  4394. .hword 6, 85
  4395. .word str_pokedex_eintraege_731
  4396. .word str_pokedex_eintraege_731
  4397. .hword 0, 0, 0, 0, 0, 0
  4398. .string LAN_DE "Feuerkatze", 12
  4399. .string LAN_EN "Fire Cat", 12
  4400. .hword 8, 2
  4401. .word str_pokedex_eintraege_732
  4402. .word str_pokedex_eintraege_732
  4403. .hword 0, 0, 0, 0, 0, 0
  4404. .string LAN_DE "Fiesling", 12
  4405. .string LAN_EN "Heel", 12
  4406. .hword 8, 45
  4407. .word str_pokedex_eintraege_733
  4408. .word str_pokedex_eintraege_733
  4409. .hword 0, 0, 0, 0, 0, 0
  4410. .string LAN_DE "Seehund", 12
  4411. .string LAN_EN "Sea Lion", 12
  4412. .hword 17, 53
  4413. .word str_pokedex_eintraege_734
  4414. .word str_pokedex_eintraege_734
  4415. .hword 0, 0, 0, 0, 0, 0
  4416. .string LAN_DE "Popstern.", 12
  4417. .string LAN_EN "Pop Star", 12
  4418. .hword 2, 5
  4419. .word str_pokedex_eintraege_735
  4420. .word str_pokedex_eintraege_735
  4421. .hword 0, 0, 0, 0, 0, 0
  4422. .string LAN_DE "Solist", 12
  4423. .string LAN_EN "Soloist", 12
  4424. .hword 8, 155
  4425. .word str_pokedex_eintraege_736
  4426. .word str_pokedex_eintraege_736
  4427. .hword 0, 0, 0, 0, 0, 0
  4428. .string LAN_DE "Specht", 12
  4429. .string LAN_EN "Woodpecker", 12
  4430. .hword 4, 35
  4431. .word str_pokedex_eintraege_737
  4432. .word str_pokedex_eintraege_737
  4433. .hword 0, 0, 0, 0, 0, 0
  4434. .string LAN_DE "Trompete", 12
  4435. .string LAN_EN "Bugle Beak", 12
  4436. .hword 8, 5
  4437. .word str_pokedex_eintraege_738
  4438. .word str_pokedex_eintraege_738
  4439. .hword 0, 0, 0, 0, 0, 0
  4440. .string LAN_DE "Kanone", 12
  4441. .string LAN_EN "Cannon", 12
  4442. .hword 4, 35
  4443. .word str_pokedex_eintraege_739
  4444. .word str_pokedex_eintraege_739
  4445. .hword 0, 0, 0, 0, 0, 0
  4446. .string LAN_DE "Patrouille", 12
  4447. .string LAN_EN "Loitering", 12
  4448. .hword 15, 47
  4449. .word str_pokedex_eintraege_740
  4450. .word str_pokedex_eintraege_740
  4451. .hword 0, 0, 0, 0, 0, 0
  4452. .string LAN_DE "Beschattung", 12
  4453. .string LAN_EN "Stakeout", 12
  4454. .hword 5, 31
  4455. .word str_pokedex_eintraege_741
  4456. .word str_pokedex_eintraege_741
  4457. .hword 0, 0, 0, 0, 0, 0
  4458. .string LAN_DE "Larve", 12
  4459. .string LAN_EN "Larva", 12
  4460. .hword 13, 96
  4461. .word str_pokedex_eintraege_742
  4462. .word str_pokedex_eintraege_742
  4463. .hword 0, 0, 0, 0, 0, 0
  4464. .string LAN_DE "Batterie", 12
  4465. .string LAN_EN "Battery", 12
  4466. .hword 5, 73
  4467. .word str_pokedex_eintraege_743
  4468. .word str_pokedex_eintraege_743
  4469. .hword 0, 0, 0, 0, 0, 0
  4470. .string LAN_DE "Kneifkäfer", 12
  4471. .string LAN_EN "Stag Beetle", 12
  4472. .hword 18, 815
  4473. .word str_pokedex_eintraege_744
  4474. .word str_pokedex_eintraege_744
  4475. .hword 0, 0, 0, 0, 0, 0
  4476. .string LAN_DE "Boxkampf", 12
  4477. .string LAN_EN "Boxing", 12
  4478. .hword 5, 83
  4479. .word str_pokedex_eintraege_745
  4480. .word str_pokedex_eintraege_745
  4481. .hword 0, 0, 0, 0, 0, 0
  4482. .string LAN_DE "Fellkrabbe", 12
  4483. .string LAN_EN "Woolly Crab", 12
  4484. .hword 13, 353
  4485. .word str_pokedex_eintraege_746
  4486. .word str_pokedex_eintraege_746
  4487. .hword 0, 0, 0, 0, 0, 0
  4488. .string LAN_DE "Tanz", 12
  4489. .string LAN_EN "Dancing", 12
  4490. .hword 5, 6
  4491. .word str_pokedex_eintraege_747
  4492. .word str_pokedex_eintraege_747
  4493. .hword 0, 0, 0, 0, 0, 0
  4494. .string LAN_DE "Hummel", 12
  4495. .string LAN_EN "Bee Fly", 12
  4496. .hword 1, 21
  4497. .word str_pokedex_eintraege_748
  4498. .word str_pokedex_eintraege_748
  4499. .hword 0, 0, 0, 0, 0, 0
  4500. .string LAN_DE "Hummel", 12
  4501. .string LAN_EN "Bee Fly", 12
  4502. .hword 8, 26
  4503. .word str_pokedex_eintraege_749
  4504. .word str_pokedex_eintraege_749
  4505. .hword 0, 0, 0, 0, 0, 0
  4506. .string LAN_DE "Hund", 12
  4507. .string LAN_EN "Puppy", 12
  4508. .hword 25, 270
  4509. .word str_pokedex_eintraege_750
  4510. .word str_pokedex_eintraege_750
  4511. .hword 0, 0, 0, 0, 0, 0
  4512. .string LAN_DE "Wolf", 12
  4513. .string LAN_EN "Wolf", 12
  4514. .hword 13, 252
  4515. .word str_pokedex_eintraege_751
  4516. .word str_pokedex_eintraege_751
  4517. .hword 0, 0, 0, 0, 0, 0
  4518. .string LAN_DE "Kleinfisch", 12
  4519. .string LAN_EN "Small Fry", 12
  4520. .hword 27, 225
  4521. .word str_pokedex_eintraege_752
  4522. .word str_pokedex_eintraege_752
  4523. .hword 0, 0, 0, 0, 0, 0
  4524. .string LAN_DE "Quäl-Stern", 12
  4525. .string LAN_EN "Brutal Star", 12
  4526. .hword 1, 235
  4527. .word str_pokedex_eintraege_753
  4528. .word str_pokedex_eintraege_753
  4529. .hword 0, 0, 0, 0, 0, 0
  4530. .string LAN_DE "Quäl-Stern", 12
  4531. .string LAN_EN "Brutal Star", 12
  4532. .hword 8, 215
  4533. .word str_pokedex_eintraege_754
  4534. .word str_pokedex_eintraege_754
  4535. .hword 0, 0, 0, 0, 0, 0
  4536. .string LAN_DE "Packesel", 12
  4537. .string LAN_EN "Donkey", 12
  4538. .hword 2, 22
  4539. .word str_pokedex_eintraege_755
  4540. .word str_pokedex_eintraege_755
  4541. .hword 0, 0, 0, 0, 0, 0
  4542. .string LAN_DE "Zugpferd", 12
  4543. .string LAN_EN "Draft Horse", 12
  4544. .hword 3, 57
  4545. .word str_pokedex_eintraege_756
  4546. .word str_pokedex_eintraege_756
  4547. .hword 0, 0, 0, 0, 0, 0
  4548. .string LAN_DE "Wasserblase", 12
  4549. .string LAN_EN "Wat. Bubble", 12
  4550. .hword 3, 28
  4551. .word str_pokedex_eintraege_757
  4552. .word str_pokedex_eintraege_757
  4553. .hword 0, 0, 0, 0, 0, 0
  4554. .string LAN_DE "Wasserblase", 12
  4555. .string LAN_EN "Wat. Bubble", 12
  4556. .hword 8, 175
  4557. .word str_pokedex_eintraege_758
  4558. .word str_pokedex_eintraege_758
  4559. .hword 0, 0, 0, 0, 0, 0
  4560. .string LAN_DE "Grassichel", 12
  4561. .string LAN_EN "Si. Grass", 12
  4562. .hword 2, 1505
  4563. .word str_pokedex_eintraege_759
  4564. .word str_pokedex_eintraege_759
  4565. .hword 0, 0, 0, 0, 0, 0
  4566. .string LAN_DE "Blumensich.", 12
  4567. .string LAN_EN "Blo. Sickle", 12
  4568. .hword 2, 3
  4569. .word str_pokedex_eintraege_760
  4570. .word str_pokedex_eintraege_760
  4571. .hword 0, 0, 0, 0, 0, 0
  4572. .string LAN_DE "Lumineszenz", 12
  4573. .string LAN_EN "Illuminat.", 12
  4574. .hword 4, 7
  4575. .word str_pokedex_eintraege_761
  4576. .word str_pokedex_eintraege_761
  4577. .hword 0, 0, 0, 0, 0, 0
  4578. .string LAN_DE "Lumineszenz", 12
  4579. .string LAN_EN "Illuminat.", 12
  4580. .hword 15, 71
  4581. .word str_pokedex_eintraege_762
  4582. .word str_pokedex_eintraege_762
  4583. .hword 0, 0, 0, 0, 0, 0
  4584. .string LAN_DE "Giftechse", 12
  4585. .string LAN_EN "Tox. Lizard", 12
  4586. .hword 4, 5
  4587. .word str_pokedex_eintraege_763
  4588. .word str_pokedex_eintraege_763
  4589. .hword 0, 0, 0, 0, 0, 0
  4590. .string LAN_DE "Giftechse", 12
  4591. .string LAN_EN "Tox. Lizard", 12
  4592. .hword 17, 39
  4593. .word str_pokedex_eintraege_764
  4594. .word str_pokedex_eintraege_764
  4595. .hword 0, 0, 0, 0, 0, 0
  4596. .string LAN_DE "Wildfang", 12
  4597. .string LAN_EN "Flailing", 12
  4598. .hword 1, 995
  4599. .word str_pokedex_eintraege_765
  4600. .word str_pokedex_eintraege_765
  4601. .hword 0, 0, 0, 0, 0, 0
  4602. .string LAN_DE "Kraftarme", 12
  4603. .string LAN_EN "Strong Arm", 12
  4604. .hword 2, 505
  4605. .word str_pokedex_eintraege_766
  4606. .word str_pokedex_eintraege_766
  4607. .hword 0, 0, 0, 0, 0, 0
  4608. .string LAN_DE "Obst", 12
  4609. .string LAN_EN "Fruit", 12
  4610. .hword 5, 8
  4611. .word str_pokedex_eintraege_767
  4612. .word str_pokedex_eintraege_767
  4613. .hword 0, 0, 0, 0, 0, 0
  4614. .string LAN_DE "Obst", 12
  4615. .string LAN_EN "Fruit", 12
  4616. .hword 15, 85
  4617. .word str_pokedex_eintraege_768
  4618. .word str_pokedex_eintraege_768
  4619. .hword 0, 0, 0, 0, 0, 0
  4620. .string LAN_DE "Obst", 12
  4621. .string LAN_EN "Fruit", 12
  4622. .hword 3, 215
  4623. .word str_pokedex_eintraege_769
  4624. .word str_pokedex_eintraege_769
  4625. .hword 0, 0, 0, 0, 0, 0
  4626. .string LAN_DE "Blumenkranz", 12
  4627. .string LAN_EN "Posy Picker", 12
  4628. .hword 58, 203
  4629. .word str_pokedex_eintraege_770
  4630. .word str_pokedex_eintraege_770
  4631. .hword 0, 0, 0, 0, 0, 0
  4632. .string LAN_DE "Weisheit", 12
  4633. .string LAN_EN "Sage", 12
  4634. .hword 5, 305
  4635. .word str_pokedex_eintraege_771
  4636. .word str_pokedex_eintraege_771
  4637. .hword 0, 0, 0, 0, 0, 0
  4638. .string LAN_DE "Teamwork", 12
  4639. .string LAN_EN "Teamwork", 12
  4640. .hword 7, 88
  4641. .word str_pokedex_eintraege_772
  4642. .word str_pokedex_eintraege_772
  4643. .hword 0, 0, 0, 0, 0, 0
  4644. .string LAN_DE "Laufschritt", 12
  4645. .string LAN_EN "Turn Tail", 12
  4646. .hword 5, 9
  4647. .word str_pokedex_eintraege_773
  4648. .word str_pokedex_eintraege_773
  4649. .hword 0, 0, 0, 0, 0, 0
  4650. .string LAN_DE "Rüstung", 12
  4651. .string LAN_EN "Hard Scale", 12
  4652. .hword 17, 195
  4653. .word str_pokedex_eintraege_774
  4654. .word str_pokedex_eintraege_774
  4655. .hword 0, 0, 0, 0, 0, 0
  4656. .string LAN_DE "Sandhaufen", 12
  4657. .string LAN_EN "Sand Heap", 12
  4658. .hword 3, 15
  4659. .word str_pokedex_eintraege_775
  4660. .word str_pokedex_eintraege_775
  4661. .hword 0, 0, 0, 0, 0, 0
  4662. .string LAN_DE "Sandschloss", 12
  4663. .string LAN_EN "Sand Castle", 12
  4664. .hword 7, 16
  4665. .word str_pokedex_eintraege_776
  4666. .word str_pokedex_eintraege_776
  4667. .hword 0, 0, 0, 0, 0, 0
  4668. .string LAN_DE "Seegurke", 12
  4669. .string LAN_EN "Sea Cucum.", 12
  4670. .hword 16, 366
  4671. .word str_pokedex_eintraege_777
  4672. .word str_pokedex_eintraege_777
  4673. .hword 0, 0, 0, 0, 0, 0
  4674. .string LAN_DE "Modifikat.", 12
  4675. .string LAN_EN "Synthetic", 12
  4676. .hword 4, 43
  4677. .word str_pokedex_eintraege_778
  4678. .word str_pokedex_eintraege_778
  4679. .hword 0, 0, 0, 0, 0, 0
  4680. .string LAN_DE "Modifikat.", 12
  4681. .string LAN_EN "Synthetic", 12
  4682. .hword 7, 25
  4683. .word str_pokedex_eintraege_779
  4684. .word str_pokedex_eintraege_779
  4685. .hword 0, 0, 0, 0, 0, 0
  4686. .string LAN_DE "Meteor", 12
  4687. .string LAN_EN "Meteor", 12
  4688. .hword 18, 83
  4689. .word str_pokedex_eintraege_780
  4690. .word str_pokedex_eintraege_780
  4691. .hword 0, 0, 0, 0, 0, 0
  4692. .string LAN_DE "Halbschlaf", 12
  4693. .string LAN_EN "Drowsing", 12
  4694. .hword 4, 75
  4695. .word str_pokedex_eintraege_781
  4696. .word str_pokedex_eintraege_781
  4697. .hword 0, 0, 0, 0, 0, 0
  4698. .string LAN_DE "Knallkröte", 12
  4699. .string LAN_EN "Blast Turt.", 12
  4700. .hword 6, 175
  4701. .word str_pokedex_eintraege_782
  4702. .word str_pokedex_eintraege_782
  4703. .hword 0, 0, 0, 0, 0, 0
  4704. .string LAN_DE "Einigler", 12
  4705. .string LAN_EN "Roly-Poly", 12
  4706. .hword 18, 44
  4707. .word str_pokedex_eintraege_783
  4708. .word str_pokedex_eintraege_783
  4709. .hword 0, 0, 0, 0, 0, 0
  4710. .string LAN_DE "Kostümspuk", 12
  4711. .string LAN_EN "Disguise", 12
  4712. .hword 3, 12
  4713. .word str_pokedex_eintraege_784
  4714. .word str_pokedex_eintraege_784
  4715. .hword 0, 0, 0, 0, 0, 0
  4716. .string LAN_DE "Knirschzahn", 12
  4717. .string LAN_EN "Gnash Teeth", 12
  4718. .hword 6, 148
  4719. .word str_pokedex_eintraege_785
  4720. .word str_pokedex_eintraege_785
  4721. .hword 0, 0, 0, 0, 0, 0
  4722. .string LAN_DE "Gelassenh.", 12
  4723. .string LAN_EN "Placid", 12
  4724. .hword 11, 26
  4725. .word str_pokedex_eintraege_786
  4726. .word str_pokedex_eintraege_786
  4727. .hword 0, 0, 0, 0, 0, 0
  4728. .string LAN_DE "Seetang", 12
  4729. .string LAN_EN "Sea Creeper", 12
  4730. .hword 4, 6
  4731. .word str_pokedex_eintraege_787
  4732. .word str_pokedex_eintraege_787
  4733. .hword 0, 0, 0, 0, 0, 0
  4734. .string LAN_DE "Schuppent.", 12
  4735. .string LAN_EN "Scaly", 12
  4736. .hword 7, 142
  4737. .word str_pokedex_eintraege_788
  4738. .word str_pokedex_eintraege_788
  4739. .hword 0, 0, 0, 0, 0, 0
  4740. .string LAN_DE "Schuppent.", 12
  4741. .string LAN_EN "Scaly", 12
  4742. .hword 4, 44
  4743. .word str_pokedex_eintraege_789
  4744. .word str_pokedex_eintraege_789
  4745. .hword 0, 0, 0, 0, 0, 0
  4746. .string LAN_DE "Schuppent.", 12
  4747. .string LAN_EN "Scaly", 12
  4748. .hword 5, 105
  4749. .word str_pokedex_eintraege_790
  4750. .word str_pokedex_eintraege_790
  4751. .hword 0, 0, 0, 0, 0, 0
  4752. .string LAN_DE "Patron", 12
  4753. .string LAN_EN "Land Spirit", 12
  4754. .hword 15, 45
  4755. .word str_pokedex_eintraege_791
  4756. .word str_pokedex_eintraege_791
  4757. .hword 0, 0, 0, 0, 0, 0
  4758. .string LAN_DE "Patron", 12
  4759. .string LAN_EN "Land Spirit", 12
  4760. .hword 6, 7
  4761. .word str_pokedex_eintraege_792
  4762. .word str_pokedex_eintraege_792
  4763. .hword 0, 0, 0, 0, 0, 0
  4764. .string LAN_DE "Patron", 12
  4765. .string LAN_EN "Land Spirit", 12
  4766. .hword 17, 180
  4767. .word str_pokedex_eintraege_793
  4768. .word str_pokedex_eintraege_793
  4769. .hword 0, 0, 0, 0, 0, 0
  4770. .string LAN_DE "Patron", 12
  4771. .string LAN_EN "Land Spirit", 12
  4772. .hword 6, 34
  4773. .word str_pokedex_eintraege_794
  4774. .word str_pokedex_eintraege_794
  4775. .hword 0, 0, 0, 0, 0, 0
  4776. .string LAN_DE "Nebula", 12
  4777. .string LAN_EN "Nebula", 12
  4778. .hword 1, 2
  4779. .word str_pokedex_eintraege_795
  4780. .word str_pokedex_eintraege_795
  4781. .hword 0, 0, 0, 0, 0, 0
  4782. .string LAN_DE "Urgestirn", 12
  4783. .string LAN_EN "Protostar", 12
  4784. .hword 2, 5
  4785. .word str_pokedex_eintraege_796
  4786. .word str_pokedex_eintraege_796
  4787. .hword 0, 0, 0, 0, 0, 0
  4788. .string LAN_DE "Sonnenkreis", 12
  4789. .string LAN_EN "Sunne", 12
  4790. .hword 5, 92
  4791. .word str_pokedex_eintraege_797
  4792. .word str_pokedex_eintraege_797
  4793. .hword 0, 0, 0, 0, 0, 0
  4794. .string LAN_DE "Mondscheibe", 12
  4795. .string LAN_EN "Moone", 12
  4796. .hword 8, 25
  4797. .word str_pokedex_eintraege_798
  4798. .word str_pokedex_eintraege_798
  4799. .hword 0, 0, 0, 0, 0, 0
  4800. .string LAN_DE "Parasit", 12
  4801. .string LAN_EN "Parasite", 12
  4802. .hword 2, 3
  4803. .word str_pokedex_eintraege_799
  4804. .word str_pokedex_eintraege_799
  4805. .hword 0, 0, 0, 0, 0, 0
  4806. .string LAN_DE "Ausdehnung", 12
  4807. .string LAN_EN "Swollen", 12
  4808. .hword 4, 8
  4809. .word str_pokedex_eintraege_800
  4810. .word str_pokedex_eintraege_800
  4811. .hword 0, 0, 0, 0, 0, 0
  4812. .string LAN_DE "Eleganz", 12
  4813. .string LAN_EN "Lissome", 12
  4814. .hword 7, 145
  4815. .word str_pokedex_eintraege_801
  4816. .word str_pokedex_eintraege_801
  4817. .hword 0, 0, 0, 0, 0, 0
  4818. .string LAN_DE "Illuminat.", 12
  4819. .string LAN_EN "Glowing", 12
  4820. .hword 1, 110
  4821. .word str_pokedex_eintraege_802
  4822. .word str_pokedex_eintraege_802
  4823. .hword 0, 0, 0, 0, 0, 0
  4824. .string LAN_DE "Raketenst.", 12
  4825. .string LAN_EN "Launch", 12
  4826. .hword 25, 920
  4827. .word str_pokedex_eintraege_803
  4828. .word str_pokedex_eintraege_803
  4829. .hword 0, 0, 0, 0, 0, 0
  4830. .string LAN_DE "Schwertk.", 12
  4831. .string LAN_EN "Drawn Sword", 12
  4832. .hword 3, 4
  4833. .word str_pokedex_eintraege_804
  4834. .word str_pokedex_eintraege_804
  4835. .hword 0, 0, 0, 0, 0, 0
  4836. .string LAN_DE "Gaumenfol.", 12
  4837. .string LAN_EN "Junkivore", 12
  4838. .hword 18, 82
  4839. .word str_pokedex_eintraege_805
  4840. .word str_pokedex_eintraege_805
  4841. .hword 0, 0, 0, 0, 0, 0
  4842. .string LAN_DE "Prisma", 12
  4843. .string LAN_EN "Prism", 12
  4844. .hword 3, 15
  4845. .word str_pokedex_eintraege_806
  4846. .word str_pokedex_eintraege_806
  4847. .hword 0, 0, 0, 0, 0, 0
  4848. .string LAN_DE "Fabrikat", 12
  4849. .string LAN_EN "Artificial", 12
  4850. .hword 9, 185
  4851. .word str_pokedex_eintraege_807
  4852. .word str_pokedex_eintraege_807
  4853. .hword 0, 0, 0, 0, 0, 0
  4854. .string LAN_DE "Düsterniss", 12
  4855. .string LAN_EN "Gloomdwell.", 12
  4856. .hword 2, 15
  4857. .word str_pokedex_eintraege_808
  4858. .word str_pokedex_eintraege_808
  4859. .hword 0, 0, 0, 0, 0, 0
  4860. .string LAN_DE "Giftdorn", 12
  4861. .string LAN_EN "Poison Pin", 12
  4862. .hword 1, 115
  4863. .word str_pokedex_eintraege_809
  4864. .word str_pokedex_eintraege_809
  4865. .hword 0, 0, 0, 0, 0, 0
  4866. .string LAN_DE "Giftdorn", 12
  4867. .string LAN_EN "Poison Pin", 12
  4868. .hword 6, 48
  4869. .word str_pokedex_eintraege_810
  4870. .word str_pokedex_eintraege_810
  4871. .hword 0, 0, 0, 0, 0, 0
  4872. .string LAN_DE "Steinmauer", 12
  4873. .string LAN_EN "Rampart", 12
  4874. .hword 12, 222
  4875. .word str_pokedex_eintraege_811
  4876. .word str_pokedex_eintraege_811
  4877. .hword 0, 0, 0, 0, 0, 0
  4878. .string LAN_DE "Feuerwerk", 12
  4879. .string LAN_EN "Fireworks", 12
  4880. .hword 5, 68
  4881. .word str_pokedex_eintraege_812
  4882. .word str_pokedex_eintraege_812
  4883. .hword 0, 0, 0, 0, 0, 0
  4884. .string LAN_DE "Donner", 12
  4885. .string LAN_EN "Thunderclap", 12
  4886. .hword 21, 135
  4887. .word str_pokedex_eintraege_813
  4888. .word str_pokedex_eintraege_813
  4889. .hword 0, 0, 0, 0, 0, 0
  4890. .string LAN_DE "Maus", 12
  4891. .string LAN_EN "Thunderclap", 12
  4892. .hword 3, 32
  4893. .word str_pokedex_eintraege_814
  4894. .word str_pokedex_eintraege_814
  4895. .hword 0, 0, 0, 0, 0, 0
  4896. .string LAN_DE "Maus", 12
  4897. .string LAN_EN "0", 12
  4898. .hword 7, 82
  4899. .word str_pokedex_eintraege_815
  4900. .word str_pokedex_eintraege_815
  4901. .hword 0, 0, 0, 0, 0, 0
  4902. .string LAN_DE "Maus", 12
  4903. .string LAN_EN "0", 12
  4904. .hword 11, 214
  4905. .word str_pokedex_eintraege_816
  4906. .word str_pokedex_eintraege_816
  4907. .hword 0, 0, 0, 0, 0, 0
  4908. .string LAN_DE "Maus", 12
  4909. .string LAN_EN "0", 12
  4910. .hword 1, 3
  4911. .word str_pokedex_eintraege_817
  4912. .word str_pokedex_eintraege_817
  4913. .hword 0, 0, 0, 0, 0, 0
  4914. .string LAN_DE "Maus", 12
  4915. .string LAN_EN "0", 12
  4916. .hword 15, 76
  4917. .word str_pokedex_eintraege_818
  4918. .word str_pokedex_eintraege_818
  4919. .hword 0, 0, 0, 0, 0, 0
  4920. .string LAN_DE "Fuchs", 12
  4921. .string LAN_EN "0", 12
  4922. .hword 2, 828
  4923. .word str_pokedex_eintraege_819
  4924. .word str_pokedex_eintraege_819
  4925. .hword 0, 0, 0, 0, 0, 0
  4926. .string LAN_DE "Fuchs", 12
  4927. .string LAN_EN "0", 12
  4928. .hword 5, 12
  4929. .word str_pokedex_eintraege_820
  4930. .word str_pokedex_eintraege_820
  4931. .hword 0, 0, 0, 0, 0, 0
  4932. .string LAN_DE "Maulwurf", 12
  4933. .string LAN_EN "0", 12
  4934. .hword 2, 108
  4935. .word str_pokedex_eintraege_821
  4936. .word str_pokedex_eintraege_821
  4937. .hword 0, 0, 0, 0, 0, 0
  4938. .string LAN_DE "Maulwurf", 12
  4939. .string LAN_EN "0", 12
  4940. .hword 5, 70
  4941. .word str_pokedex_eintraege_822
  4942. .word str_pokedex_eintraege_822
  4943. .hword 0, 0, 0, 0, 0, 0
  4944. .string LAN_DE "Katze", 12
  4945. .string LAN_EN "0", 12
  4946. .hword 13, 250
  4947. .word str_pokedex_eintraege_823
  4948. .word str_pokedex_eintraege_823
  4949. .hword 0, 0, 0, 0, 0, 0
  4950. .string LAN_DE "Rassekatze", 12
  4951. .string LAN_EN "0", 12
  4952. .hword 3, 12
  4953. .word str_pokedex_eintraege_824
  4954. .word str_pokedex_eintraege_824
  4955. .hword 0, 0, 0, 0, 0, 0
  4956. .string LAN_DE "Gestein", 12
  4957. .string LAN_EN "0", 12
  4958. .hword 19, 1205
  4959. .word str_pokedex_eintraege_825
  4960. .word str_pokedex_eintraege_825
  4961. .hword 0, 0, 0, 0, 0, 0
  4962. .string LAN_DE "Gestein", 12
  4963. .string LAN_EN "0", 12
  4964. .hword 23, 1005
  4965. .word str_pokedex_eintraege_826
  4966. .word str_pokedex_eintraege_826
  4967. .hword 0, 0, 0, 0, 0, 0
  4968. .string LAN_DE "Urgestein", 12
  4969. .string LAN_EN "0", 12
  4970. .hword 3, 40
  4971. .word str_pokedex_eintraege_827
  4972. .word str_pokedex_eintraege_827
  4973. .hword 0, 0, 0, 0, 0, 0
  4974. .string LAN_DE "Schlamm", 12
  4975. .string LAN_EN "0", 12
  4976. .hword 4, 199
  4977. .word str_pokedex_eintraege_828
  4978. .word str_pokedex_eintraege_828
  4979. .hword 0, 0, 0, 0, 0, 0
  4980. .string LAN_DE "Schlamm", 12
  4981. .string LAN_EN "0", 12
  4982. .hword 2, 212
  4983. .word str_pokedex_eintraege_829
  4984. .word str_pokedex_eintraege_829
  4985. .hword 0, 0, 0, 0, 0, 0
  4986. .string LAN_DE "Palmfrucht", 12
  4987. .string LAN_EN "0", 12
  4988. .hword 3, 33
  4989. .word str_pokedex_eintraege_830
  4990. .word str_pokedex_eintraege_830
  4991. .hword 0, 0, 0, 0, 0, 0
  4992. .string LAN_DE "Knochenfan", 12
  4993. .string LAN_EN "0", 12
  4994. .hword 2, 7
  4995. .word str_pokedex_eintraege_831
  4996. .word str_pokedex_eintraege_831
  4997. .hword 0, 0, 0, 0, 0, 0
  4998. .string LAN_DE "Fassung", 12
  4999. .string LAN_EN "Constraint", 12
  5000. .hword 9, 19
  5001. .word str_pokedex_eintraege_684
  5002. .word str_pokedex_eintraege_684
  5003. .hword 0, 0, 0, 0, 0, 0
  5004. .string LAN_DE "Unbekannt", 12
  5005. .string LAN_EN "Unknown", 12
  5006. .hword 3, 185
  5007. .word str_pokedex_eintraege_0
  5008. .word str_pokedex_eintraege_0
  5009. .hword 0, 0, 0, 0, 0, 0
  5010. .string LAN_DE "Symbol", 12
  5011. .string LAN_EN "Symbol", 12
  5012. .hword 39, 210
  5013. .word str_pokedex_eintraege_201
  5014. .word str_pokedex_eintraege_201
  5015. .hword 0, 0, 0, 0, 0, 0
  5016. .string LAN_DE "Symbol", 12
  5017. .string LAN_EN "Symbol", 12
  5018. .hword 6, 297
  5019. .word str_pokedex_eintraege_201
  5020. .word str_pokedex_eintraege_201
  5021. .hword 0, 0, 0, 0, 0, 0
  5022. .string LAN_DE "Symbol", 12
  5023. .string LAN_EN "Symbol", 12
  5024. .hword 11, 47
  5025. .word str_pokedex_eintraege_201
  5026. .word str_pokedex_eintraege_201
  5027. .hword 0, 0, 0, 0, 0, 0
  5028. .string LAN_DE "Symbol", 12
  5029. .string LAN_EN "Symbol", 12
  5030. .hword 16, 782
  5031. .word str_pokedex_eintraege_201
  5032. .word str_pokedex_eintraege_201
  5033. .hword 0, 0, 0, 0, 0, 0
  5034. .string LAN_DE "Symbol", 12
  5035. .string LAN_EN "Symbol", 12
  5036. .hword 18, 205
  5037. .word str_pokedex_eintraege_201
  5038. .word str_pokedex_eintraege_201
  5039. .hword 0, 0, 0, 0, 0, 0
  5040. .string LAN_DE "Symbol", 12
  5041. .string LAN_EN "Symbol", 12
  5042. .hword 12, 186
  5043. .word str_pokedex_eintraege_201
  5044. .word str_pokedex_eintraege_201
  5045. .hword 0, 0, 0, 0, 0, 0
  5046. .string LAN_DE "Symbol", 12
  5047. .string LAN_EN "Symbol", 12
  5048. .hword 19, 455
  5049. .word str_pokedex_eintraege_201
  5050. .word str_pokedex_eintraege_201
  5051. .hword 0, 0, 0, 0, 0, 0
  5052. .string LAN_DE "Symbol", 12
  5053. .string LAN_EN "Symbol", 12
  5054. .hword 13, 212
  5055. .word str_pokedex_eintraege_201
  5056. .word str_pokedex_eintraege_201
  5057. .hword 0, 0, 0, 0, 0, 0
  5058. .string LAN_DE "Symbol", 12
  5059. .string LAN_EN "Symbol", 12
  5060. .hword 2, 1
  5061. .word str_pokedex_eintraege_201
  5062. .word str_pokedex_eintraege_201
  5063. .hword 0, 0, 0, 0, 0, 0
  5064. .string LAN_DE "Symbol", 12
  5065. .string LAN_EN "Symbol", 12
  5066. .hword 1, 9999
  5067. .word str_pokedex_eintraege_201
  5068. .word str_pokedex_eintraege_201
  5069. .hword 0, 0, 0, 0, 0, 0
  5070. .string LAN_DE "Symbol", 12
  5071. .string LAN_EN "Symbol", 12
  5072. .hword 34, 230
  5073. .word str_pokedex_eintraege_201
  5074. .word str_pokedex_eintraege_201
  5075. .hword 0, 0, 0, 0, 0, 0
  5076. .string LAN_DE "Symbol", 12
  5077. .string LAN_EN "Symbol", 12
  5078. .hword 4, 120
  5079. .word str_pokedex_eintraege_201
  5080. .word str_pokedex_eintraege_201
  5081. .hword 0, 0, 0, 0, 0, 0
  5082. .string LAN_DE "Symbol", 12
  5083. .string LAN_EN "Symbol", 12
  5084. .hword 12, 555
  5085. .word str_pokedex_eintraege_201
  5086. .word str_pokedex_eintraege_201
  5087. .hword 0, 0, 0, 0, 0, 0
  5088. .string LAN_DE "Symbol", 12
  5089. .string LAN_EN "Symbol", 12
  5090. .hword 24, 3336
  5091. .word str_pokedex_eintraege_201
  5092. .word str_pokedex_eintraege_201
  5093. .hword 0, 0, 0, 0, 0, 0
  5094. .string LAN_DE "Symbol", 12
  5095. .string LAN_EN "Symbol", 12
  5096. .hword 18, 25
  5097. .word str_pokedex_eintraege_201
  5098. .word str_pokedex_eintraege_201
  5099. .hword 0, 0, 0, 0, 0, 0
  5100. .string LAN_DE "Symbol", 12
  5101. .string LAN_EN "Symbol", 12
  5102. .hword 38, 100
  5103. .word str_pokedex_eintraege_201
  5104. .word str_pokedex_eintraege_201
  5105. .hword 0, 0, 0, 0, 0, 0
  5106. .string LAN_DE "Symbol", 12
  5107. .string LAN_EN "Symbol", 12
  5108. .hword 92, 9999
  5109. .word str_pokedex_eintraege_201
  5110. .word str_pokedex_eintraege_201
  5111. .hword 0, 0, 0, 0, 0, 0
  5112. .string LAN_DE "Symbol", 12
  5113. .string LAN_EN "Symbol", 12
  5114. .hword 3, 1
  5115. .word str_pokedex_eintraege_201
  5116. .word str_pokedex_eintraege_201
  5117. .hword 0, 0, 0, 0, 0, 0
  5118. .string LAN_DE "Symbol", 12
  5119. .string LAN_EN "Symbol", 12
  5120. .hword 55, 888
  5121. .word str_pokedex_eintraege_201
  5122. .word str_pokedex_eintraege_201
  5123. .hword 0, 0, 0, 0, 0, 0
  5124. .string LAN_DE "Symbol", 12
  5125. .string LAN_EN "Symbol", 12
  5126. .hword 24, 230
  5127. .word str_pokedex_eintraege_201
  5128. .word str_pokedex_eintraege_201
  5129. .hword 0, 0, 0, 0, 0, 0
  5130. .string LAN_DE "Symbol", 12
  5131. .string LAN_EN "Symbol", 12
  5132. .hword 1, 805
  5133. .word str_pokedex_eintraege_201
  5134. .word str_pokedex_eintraege_201
  5135. .hword 0, 0, 0, 0, 0, 0
  5136. .string LAN_DE "Symbol", 12
  5137. .string LAN_EN "Symbol", 12
  5138. .hword 7, 222
  5139. .word str_pokedex_eintraege_201
  5140. .word str_pokedex_eintraege_201
  5141. .hword 0, 0, 0, 0, 0, 0
  5142. .string LAN_DE "Symbol", 12
  5143. .string LAN_EN "Symbol", 12
  5144. .hword 6, 18
  5145. .word str_pokedex_eintraege_201
  5146. .word str_pokedex_eintraege_201
  5147. .hword 0, 0, 0, 0, 0, 0
  5148. .string LAN_DE "Symbol", 12
  5149. .string LAN_EN "Symbol", 12
  5150. .hword 36, 150
  5151. .word str_pokedex_eintraege_201
  5152. .word str_pokedex_eintraege_201
  5153. .hword 0, 0, 0, 0, 0, 0
  5154. .string LAN_DE "Symbol", 12
  5155. .string LAN_EN "Symbol", 12
  5156. .hword 55, 820
  5157. .word str_pokedex_eintraege_201
  5158. .word str_pokedex_eintraege_201
  5159. .hword 0, 0, 0, 0, 0, 0
  5160. .string LAN_DE "Symbol", 12
  5161. .string LAN_EN "Symbol", 12
  5162. .hword 18, 130
  5163. .word str_pokedex_eintraege_201
  5164. .word str_pokedex_eintraege_201
  5165. .hword 0, 0, 0, 0, 0, 0
  5166. .string LAN_DE "Symbol", 12
  5167. .string LAN_EN "Symbol", 12
  5168. .hword 15, 445
  5169. .word str_pokedex_eintraege_201
  5170. .word str_pokedex_eintraege_201
  5171. .hword 0, 0, 0, 0, 0, 0
  5172. .string LAN_DE "DNS", 12
  5173. .string LAN_EN "DNA", 12
  5174. .hword 17, 608
  5175. .word str_pokedex_eintraege_392
  5176. .word str_pokedex_eintraege_392
  5177. .hword 0, 0, 0, 0, 0, 0
  5178. .string LAN_DE "DNS", 12
  5179. .string LAN_EN "DNA", 12
  5180. .hword 17, 608
  5181. .word str_pokedex_eintraege_392
  5182. .word str_pokedex_eintraege_392
  5183. .hword 0, 0, 0, 0, 0, 0
  5184. .string LAN_DE "DNS", 12
  5185. .string LAN_EN "DNA", 12
  5186. .hword 17, 608
  5187. .word str_pokedex_eintraege_392
  5188. .word str_pokedex_eintraege_392
  5189. .hword 0, 0, 0, 0, 0, 0
  5190. .string LAN_DE "Beutelwurm", 12
  5191. .string LAN_EN "Bagworm", 12
  5192. .hword 2, 34
  5193. .word str_pokedex_eintraege_418
  5194. .word str_pokedex_eintraege_418
  5195. .hword 0, 0, 0, 0, 0, 0
  5196. .string LAN_DE "Beutelwurm", 12
  5197. .string LAN_EN "Bagworm", 12
  5198. .hword 5, 65
  5199. .word str_pokedex_eintraege_419
  5200. .word str_pokedex_eintraege_419
  5201. .hword 0, 0, 0, 0, 0, 0
  5202. .string LAN_DE "Beutelwurm", 12
  5203. .string LAN_EN "Bagworm", 12
  5204. .hword 2, 34
  5205. .word str_pokedex_eintraege_418
  5206. .word str_pokedex_eintraege_418
  5207. .hword 0, 0, 0, 0, 0, 0
  5208. .string LAN_DE "Beutelwurm", 12
  5209. .string LAN_EN "Bagworm", 12
  5210. .hword 5, 65
  5211. .word str_pokedex_eintraege_419
  5212. .word str_pokedex_eintraege_419
  5213. .hword 0, 0, 0, 0, 0, 0
  5214. .string LAN_DE "Seeschnecke", 12
  5215. .string LAN_EN "Sea Slug", 12
  5216. .hword 3, 63
  5217. .word str_pokedex_eintraege_428
  5218. .word str_pokedex_eintraege_428
  5219. .hword 0, 0, 0, 0, 0, 0
  5220. .string LAN_DE "Seeschnecke", 12
  5221. .string LAN_EN "Sea Slug", 12
  5222. .hword 9, 299
  5223. .word str_pokedex_eintraege_429
  5224. .word str_pokedex_eintraege_429
  5225. .hword 0, 0, 0, 0, 0, 0
  5226. .string LAN_DE "Blüte", 12
  5227. .string LAN_EN "Blossom", 12
  5228. .hword 5, 93
  5229. .word str_pokedex_eintraege_427
  5230. .word str_pokedex_eintraege_427
  5231. .hword 0, 0, 0, 0, 0, 0
  5232. .string LAN_DE "Plasma", 12
  5233. .string LAN_EN "Plasma", 12
  5234. .hword 3, 3
  5235. .word str_pokedex_eintraege_485
  5236. .word str_pokedex_eintraege_485
  5237. .hword 0, 0, 0, 0, 0, 0
  5238. .string LAN_DE "Plasma", 12
  5239. .string LAN_EN "Plasma", 12
  5240. .hword 3, 3
  5241. .word str_pokedex_eintraege_485
  5242. .word str_pokedex_eintraege_485
  5243. .hword 0, 0, 0, 0, 0, 0
  5244. .string LAN_DE "Plasma", 12
  5245. .string LAN_EN "Plasma", 12
  5246. .hword 3, 3
  5247. .word str_pokedex_eintraege_485
  5248. .word str_pokedex_eintraege_485
  5249. .hword 0, 0, 0, 0, 0, 0
  5250. .string LAN_DE "Plasma", 12
  5251. .string LAN_EN "Plasma", 12
  5252. .hword 3, 3
  5253. .word str_pokedex_eintraege_485
  5254. .word str_pokedex_eintraege_485
  5255. .hword 0, 0, 0, 0, 0, 0
  5256. .string LAN_DE "Plasma", 12
  5257. .string LAN_EN "Plasma", 12
  5258. .hword 3, 3
  5259. .word str_pokedex_eintraege_485
  5260. .word str_pokedex_eintraege_485
  5261. .hword 0, 0, 0, 0, 0, 0
  5262. .string LAN_DE "Rebell", 12
  5263. .string LAN_EN "Renegade", 12
  5264. .hword 69, 6500
  5265. .word str_pokedex_eintraege_493
  5266. .word str_pokedex_eintraege_493
  5267. .hword 0, 0, 0, 0, 0, 0
  5268. .string LAN_DE "Dankbarkeit", 12
  5269. .string LAN_EN "Gratitude", 12
  5270. .hword 4, 52
  5271. .word str_pokedex_eintraege_498
  5272. .word str_pokedex_eintraege_498
  5273. .hword 0, 0, 0, 0, 0, 0
  5274. .string LAN_DE "Alpha", 12
  5275. .string LAN_EN "Alpha", 12
  5276. .hword 32, 3200
  5277. .word str_pokedex_eintraege_499
  5278. .word str_pokedex_eintraege_499
  5279. .hword 0, 0, 0, 0, 0, 0
  5280. .string LAN_DE "Alpha", 12
  5281. .string LAN_EN "Alpha", 12
  5282. .hword 32, 3200
  5283. .word str_pokedex_eintraege_499
  5284. .word str_pokedex_eintraege_499
  5285. .hword 0, 0, 0, 0, 0, 0
  5286. .string LAN_DE "Alpha", 12
  5287. .string LAN_EN "Alpha", 12
  5288. .hword 32, 3200
  5289. .word str_pokedex_eintraege_499
  5290. .word str_pokedex_eintraege_499
  5291. .hword 0, 0, 0, 0, 0, 0
  5292. .string LAN_DE "Alpha", 12
  5293. .string LAN_EN "Alpha", 12
  5294. .hword 32, 3200
  5295. .word str_pokedex_eintraege_499
  5296. .word str_pokedex_eintraege_499
  5297. .hword 0, 0, 0, 0, 0, 0
  5298. .string LAN_DE "Alpha", 12
  5299. .string LAN_EN "Alpha", 12
  5300. .hword 32, 3200
  5301. .word str_pokedex_eintraege_499
  5302. .word str_pokedex_eintraege_499
  5303. .hword 0, 0, 0, 0, 0, 0
  5304. .string LAN_DE "Alpha", 12
  5305. .string LAN_EN "Alpha", 12
  5306. .hword 32, 3200
  5307. .word str_pokedex_eintraege_499
  5308. .word str_pokedex_eintraege_499
  5309. .hword 0, 0, 0, 0, 0, 0
  5310. .string LAN_DE "Alpha", 12
  5311. .string LAN_EN "Alpha", 12
  5312. .hword 32, 3200
  5313. .word str_pokedex_eintraege_499
  5314. .word str_pokedex_eintraege_499
  5315. .hword 0, 0, 0, 0, 0, 0
  5316. .string LAN_DE "Alpha", 12
  5317. .string LAN_EN "Alpha", 12
  5318. .hword 32, 3200
  5319. .word str_pokedex_eintraege_499
  5320. .word str_pokedex_eintraege_499
  5321. .hword 0, 0, 0, 0, 0, 0
  5322. .string LAN_DE "Alpha", 12
  5323. .string LAN_EN "Alpha", 12
  5324. .hword 32, 3200
  5325. .word str_pokedex_eintraege_499
  5326. .word str_pokedex_eintraege_499
  5327. .hword 0, 0, 0, 0, 0, 0
  5328. .string LAN_DE "Alpha", 12
  5329. .string LAN_EN "Alpha", 12
  5330. .hword 32, 3200
  5331. .word str_pokedex_eintraege_499
  5332. .word str_pokedex_eintraege_499
  5333. .hword 0, 0, 0, 0, 0, 0
  5334. .string LAN_DE "Alpha", 12
  5335. .string LAN_EN "Alpha", 12
  5336. .hword 32, 3200
  5337. .word str_pokedex_eintraege_499
  5338. .word str_pokedex_eintraege_499
  5339. .hword 0, 0, 0, 0, 0, 0
  5340. .string LAN_DE "Alpha", 12
  5341. .string LAN_EN "Alpha", 12
  5342. .hword 32, 3200
  5343. .word str_pokedex_eintraege_499
  5344. .word str_pokedex_eintraege_499
  5345. .hword 0, 0, 0, 0, 0, 0
  5346. .string LAN_DE "Alpha", 12
  5347. .string LAN_EN "Alpha", 12
  5348. .hword 32, 3200
  5349. .word str_pokedex_eintraege_499
  5350. .word str_pokedex_eintraege_499
  5351. .hword 0, 0, 0, 0, 0, 0
  5352. .string LAN_DE "Alpha", 12
  5353. .string LAN_EN "Alpha", 12
  5354. .hword 32, 3200
  5355. .word str_pokedex_eintraege_499
  5356. .word str_pokedex_eintraege_499
  5357. .hword 0, 0, 0, 0, 0, 0
  5358. .string LAN_DE "Alpha", 12
  5359. .string LAN_EN "Alpha", 12
  5360. .hword 32, 3200
  5361. .word str_pokedex_eintraege_499
  5362. .word str_pokedex_eintraege_499
  5363. .hword 0, 0, 0, 0, 0, 0
  5364. .string LAN_DE "Alpha", 12
  5365. .string LAN_EN "Alpha", 12
  5366. .hword 32, 3200
  5367. .word str_pokedex_eintraege_499
  5368. .word str_pokedex_eintraege_499
  5369. .hword 0, 0, 0, 0, 0, 0
  5370. .string LAN_DE "Alpha", 12
  5371. .string LAN_EN "Alpha", 12
  5372. .hword 32, 3200
  5373. .word str_pokedex_eintraege_499
  5374. .word str_pokedex_eintraege_499
  5375. .hword 0, 0, 0, 0, 0, 0
  5376. .string LAN_DE "Grobheit", 12
  5377. .string LAN_EN "Hostile", 12
  5378. .hword 10, 180
  5379. .word str_pokedex_eintraege_556
  5380. .word str_pokedex_eintraege_556
  5381. .hword 0, 0, 0, 0, 0, 0
  5382. .string LAN_DE "Lichterloh", 12
  5383. .string LAN_EN "Blazing", 12
  5384. .hword 13, 929
  5385. .word str_pokedex_eintraege_561
  5386. .word str_pokedex_eintraege_561
  5387. .hword 0, 0, 0, 0, 0, 0
  5388. .string LAN_DE "Jahreszeit", 12
  5389. .string LAN_EN "Season", 12
  5390. .hword 6, 195
  5391. .word str_pokedex_eintraege_591
  5392. .word str_pokedex_eintraege_591
  5393. .hword 0, 0, 0, 0, 0, 0
  5394. .string LAN_DE "Jahreszeit", 12
  5395. .string LAN_EN "Season", 12
  5396. .hword 19, 925
  5397. .word str_pokedex_eintraege_592
  5398. .word str_pokedex_eintraege_592
  5399. .hword 0, 0, 0, 0, 0, 0
  5400. .string LAN_DE "Jahreszeit", 12
  5401. .string LAN_EN "Season", 12
  5402. .hword 6, 195
  5403. .word str_pokedex_eintraege_591
  5404. .word str_pokedex_eintraege_591
  5405. .hword 0, 0, 0, 0, 0, 0
  5406. .string LAN_DE "Jahreszeit", 12
  5407. .string LAN_EN "Season", 12
  5408. .hword 19, 925
  5409. .word str_pokedex_eintraege_592
  5410. .word str_pokedex_eintraege_592
  5411. .hword 0, 0, 0, 0, 0, 0
  5412. .string LAN_DE "Jahreszeit", 12
  5413. .string LAN_EN "Season", 12
  5414. .hword 6, 195
  5415. .word str_pokedex_eintraege_591
  5416. .word str_pokedex_eintraege_591
  5417. .hword 0, 0, 0, 0, 0, 0
  5418. .string LAN_DE "Jahreszeit", 12
  5419. .string LAN_EN "Season", 12
  5420. .hword 19, 925
  5421. .word str_pokedex_eintraege_592
  5422. .word str_pokedex_eintraege_592
  5423. .hword 0, 0, 0, 0, 0, 0
  5424. .string LAN_DE "Schwelle", 12
  5425. .string LAN_EN "Boundary", 12
  5426. .hword 30, 3250
  5427. .word str_pokedex_eintraege_652
  5428. .word str_pokedex_eintraege_652
  5429. .hword 0, 0, 0, 0, 0, 0
  5430. .string LAN_DE "Schwelle", 12
  5431. .string LAN_EN "Boundary", 12
  5432. .hword 30, 3250
  5433. .word str_pokedex_eintraege_652
  5434. .word str_pokedex_eintraege_652
  5435. .hword 0, 0, 0, 0, 0, 0
  5436. .string LAN_DE "Melodie", 12
  5437. .string LAN_EN "Melody", 12
  5438. .hword 6, 65
  5439. .word str_pokedex_eintraege_654
  5440. .word str_pokedex_eintraege_654
  5441. .hword 0, 0, 0, 0, 0, 0
  5442. .string LAN_DE "Paläozoikum", 12
  5443. .string LAN_EN "Paleozoic", 12
  5444. .hword 15, 825
  5445. .word str_pokedex_eintraege_655
  5446. .word str_pokedex_eintraege_655
  5447. .hword 0, 0, 0, 0, 0, 0
  5448. .string LAN_DE "Paläozoikum", 12
  5449. .string LAN_EN "Paleozoic", 12
  5450. .hword 15, 825
  5451. .word str_pokedex_eintraege_655
  5452. .word str_pokedex_eintraege_655
  5453. .hword 0, 0, 0, 0, 0, 0
  5454. .string LAN_DE "Paläozoikum", 12
  5455. .string LAN_EN "Paleozoic", 12
  5456. .hword 15, 825
  5457. .word str_pokedex_eintraege_655
  5458. .word str_pokedex_eintraege_655
  5459. .hword 0, 0, 0, 0, 0, 0
  5460. .string LAN_DE "Paläozoikum", 12
  5461. .string LAN_EN "Paleozoic", 12
  5462. .hword 15, 825
  5463. .word str_pokedex_eintraege_655
  5464. .word str_pokedex_eintraege_655
  5465. .hword 0, 0, 0, 0, 0, 0
  5466. .string LAN_DE "Wirbelsturm", 12
  5467. .string LAN_EN "Cyclone", 12
  5468. .hword 14, 630
  5469. .word str_pokedex_eintraege_647
  5470. .word str_pokedex_eintraege_647
  5471. .hword 0, 0, 0, 0, 0, 0
  5472. .string LAN_DE "Torpedo", 12
  5473. .string LAN_EN "Bolt Strike", 12
  5474. .hword 30, 610
  5475. .word str_pokedex_eintraege_648
  5476. .word str_pokedex_eintraege_648
  5477. .hword 0, 0, 0, 0, 0, 0
  5478. .string LAN_DE "Reichtum", 12
  5479. .string LAN_EN "Abundant", 12
  5480. .hword 13, 680
  5481. .word str_pokedex_eintraege_651
  5482. .word str_pokedex_eintraege_651
  5483. .hword 0, 0, 0, 0, 0, 0
  5484. .string LAN_DE "Fohlen", 12
  5485. .string LAN_EN "Colt", 12
  5486. .hword 14, 485
  5487. .word str_pokedex_eintraege_653
  5488. .word str_pokedex_eintraege_653
  5489. .hword 0, 0, 0, 0, 0, 0
  5490. .string LAN_DE "Einblütler", 12
  5491. .string LAN_EN "Sing. Bloom", 12
  5492. .hword 1, 1
  5493. .word str_pokedex_eintraege_675
  5494. .word str_pokedex_eintraege_675
  5495. .hword 0, 0, 0, 0, 0, 0
  5496. .string LAN_DE "Einblütler", 12
  5497. .string LAN_EN "Sing. Bloom", 12
  5498. .hword 2, 9
  5499. .word str_pokedex_eintraege_676
  5500. .word str_pokedex_eintraege_676
  5501. .hword 0, 0, 0, 0, 0, 0
  5502. .string LAN_DE "Garten", 12
  5503. .string LAN_EN "Garden", 12
  5504. .hword 11, 10
  5505. .word str_pokedex_eintraege_677
  5506. .word str_pokedex_eintraege_677
  5507. .hword 0, 0, 0, 0, 0, 0
  5508. .string LAN_DE "Einblütler", 12
  5509. .string LAN_EN "Sing. Bloom", 12
  5510. .hword 1, 1
  5511. .word str_pokedex_eintraege_675
  5512. .word str_pokedex_eintraege_675
  5513. .hword 0, 0, 0, 0, 0, 0
  5514. .string LAN_DE "Einblütler", 12
  5515. .string LAN_EN "Sing. Bloom", 12
  5516. .hword 2, 9
  5517. .word str_pokedex_eintraege_676
  5518. .word str_pokedex_eintraege_676
  5519. .hword 0, 0, 0, 0, 0, 0
  5520. .string LAN_DE "Garten", 12
  5521. .string LAN_EN "Garden", 12
  5522. .hword 11, 10
  5523. .word str_pokedex_eintraege_677
  5524. .word str_pokedex_eintraege_677
  5525. .hword 0, 0, 0, 0, 0, 0
  5526. .string LAN_DE "Einblütler", 12
  5527. .string LAN_EN "Sing. Bloom", 12
  5528. .hword 1, 1
  5529. .word str_pokedex_eintraege_675
  5530. .word str_pokedex_eintraege_675
  5531. .hword 0, 0, 0, 0, 0, 0
  5532. .string LAN_DE "Einblütler", 12
  5533. .string LAN_EN "Sing. Bloom", 12
  5534. .hword 2, 9
  5535. .word str_pokedex_eintraege_676
  5536. .word str_pokedex_eintraege_676
  5537. .hword 0, 0, 0, 0, 0, 0
  5538. .string LAN_DE "Garten", 12
  5539. .string LAN_EN "Garden", 12
  5540. .hword 11, 10
  5541. .word str_pokedex_eintraege_677
  5542. .word str_pokedex_eintraege_677
  5543. .hword 0, 0, 0, 0, 0, 0
  5544. .string LAN_DE "Einblütler", 12
  5545. .string LAN_EN "Sing. Bloom", 12
  5546. .hword 1, 1
  5547. .word str_pokedex_eintraege_675
  5548. .word str_pokedex_eintraege_675
  5549. .hword 0, 0, 0, 0, 0, 0
  5550. .string LAN_DE "Einblütler", 12
  5551. .string LAN_EN "Sing. Bloom", 12
  5552. .hword 2, 9
  5553. .word str_pokedex_eintraege_676
  5554. .word str_pokedex_eintraege_676
  5555. .hword 0, 0, 0, 0, 0, 0
  5556. .string LAN_DE "Garten", 12
  5557. .string LAN_EN "Garden", 12
  5558. .hword 11, 10
  5559. .word str_pokedex_eintraege_677
  5560. .word str_pokedex_eintraege_677
  5561. .hword 0, 0, 0, 0, 0, 0
  5562. .string LAN_DE "Kürbis", 12
  5563. .string LAN_EN "Pumpkin", 12
  5564. .hword 4, 5
  5565. .word str_pokedex_eintraege_716
  5566. .word str_pokedex_eintraege_716
  5567. .hword 0, 0, 0, 0, 0, 0
  5568. .string LAN_DE "Kürbis", 12
  5569. .string LAN_EN "Pumpkin", 12
  5570. .hword 17, 39
  5571. .word str_pokedex_eintraege_717
  5572. .word str_pokedex_eintraege_717
  5573. .hword 0, 0, 0, 0, 0, 0
  5574. .string LAN_DE "Kürbis", 12
  5575. .string LAN_EN "Pumpkin", 12
  5576. .hword 4, 5
  5577. .word str_pokedex_eintraege_716
  5578. .word str_pokedex_eintraege_716
  5579. .hword 0, 0, 0, 0, 0, 0
  5580. .string LAN_DE "Kürbis", 12
  5581. .string LAN_EN "Pumpkin", 12
  5582. .hword 17, 39
  5583. .word str_pokedex_eintraege_717
  5584. .word str_pokedex_eintraege_717
  5585. .hword 0, 0, 0, 0, 0, 0
  5586. .string LAN_DE "Kürbis", 12
  5587. .string LAN_EN "Pumpkin", 12
  5588. .hword 4, 5
  5589. .word str_pokedex_eintraege_716
  5590. .word str_pokedex_eintraege_716
  5591. .hword 0, 0, 0, 0, 0, 0
  5592. .string LAN_DE "Kürbis", 12
  5593. .string LAN_EN "Pumpkin", 12
  5594. .hword 17, 39
  5595. .word str_pokedex_eintraege_717
  5596. .word str_pokedex_eintraege_717
  5597. .hword 0, 0, 0, 0, 0, 0
  5598. .string LAN_DE "Königsklin.", 12
  5599. .string LAN_EN "Royal Sword", 12
  5600. .hword 17, 53
  5601. .word str_pokedex_eintraege_687
  5602. .word str_pokedex_eintraege_687
  5603. .hword 0, 0, 0, 0, 0, 0
  5604. .string LAN_DE "Ordnung", 12
  5605. .string LAN_EN "Order", 12
  5606. .hword 5, 305
  5607. .word str_pokedex_eintraege_724
  5608. .word str_pokedex_eintraege_724
  5609. .hword 0, 0, 0, 0, 0, 0
  5610. .string LAN_DE "Ordnung", 12
  5611. .string LAN_EN "Order", 12
  5612. .hword 5, 305
  5613. .word str_pokedex_eintraege_724
  5614. .word str_pokedex_eintraege_724
  5615. .hword 0, 0, 0, 0, 0, 0
  5616. .string LAN_DE "Unheil", 12
  5617. .string LAN_EN "Mischief", 12
  5618. .hword 5, 9
  5619. .word str_pokedex_eintraege_726
  5620. .word str_pokedex_eintraege_726
  5621. .hword 0, 0, 0, 0, 0, 0
  5622. .string LAN_DE "Ninja", 12
  5623. .string LAN_EN "Ninja", 12
  5624. .hword 15, 40
  5625. .word str_pokedex_eintraege_664
  5626. .word str_pokedex_eintraege_664
  5627. .hword 0, 0, 0, 0, 0, 0
  5628. .string LAN_DE "Tanz", 12
  5629. .string LAN_EN "Dancing", 12
  5630. .hword 6, 34
  5631. .word str_pokedex_eintraege_747
  5632. .word str_pokedex_eintraege_747
  5633. .hword 0, 0, 0, 0, 0, 0
  5634. .string LAN_DE "Tanz", 12
  5635. .string LAN_EN "Dancing", 12
  5636. .hword 6, 34
  5637. .word str_pokedex_eintraege_747
  5638. .word str_pokedex_eintraege_747
  5639. .hword 0, 0, 0, 0, 0, 0
  5640. .string LAN_DE "Tanz", 12
  5641. .string LAN_EN "Dancing", 12
  5642. .hword 6, 34
  5643. .word str_pokedex_eintraege_747
  5644. .word str_pokedex_eintraege_747
  5645. .hword 0, 0, 0, 0, 0, 0
  5646. .string LAN_DE "Wolf", 12
  5647. .string LAN_EN "Wolf", 12
  5648. .hword 8, 25
  5649. .word str_pokedex_eintraege_751
  5650. .word str_pokedex_eintraege_751
  5651. .hword 0, 0, 0, 0, 0, 0
  5652. .string LAN_DE "Wolf", 12
  5653. .string LAN_EN "Wolf", 12
  5654. .hword 8, 25
  5655. .word str_pokedex_eintraege_751
  5656. .word str_pokedex_eintraege_751
  5657. .hword 0, 0, 0, 0, 0, 0
  5658. .string LAN_DE "Kleinfisch", 12
  5659. .string LAN_EN "Small Fry", 12
  5660. .hword 2, 3
  5661. .word str_pokedex_eintraege_752
  5662. .word str_pokedex_eintraege_752
  5663. .hword 0, 0, 0, 0, 0, 0
  5664. .string LAN_DE "Modifikat.", 12
  5665. .string LAN_EN "Synthetic", 12
  5666. .hword 23, 1005
  5667. .word str_pokedex_eintraege_779
  5668. .word str_pokedex_eintraege_779
  5669. .hword 0, 0, 0, 0, 0, 0
  5670. .string LAN_DE "Modifikat.", 12
  5671. .string LAN_EN "Synthetic", 12
  5672. .hword 23, 1005
  5673. .word str_pokedex_eintraege_779
  5674. .word str_pokedex_eintraege_779
  5675. .hword 0, 0, 0, 0, 0, 0
  5676. .string LAN_DE "Modifikat.", 12
  5677. .string LAN_EN "Synthetic", 12
  5678. .hword 23, 1005
  5679. .word str_pokedex_eintraege_779
  5680. .word str_pokedex_eintraege_779
  5681. .hword 0, 0, 0, 0, 0, 0
  5682. .string LAN_DE "Modifikat.", 12
  5683. .string LAN_EN "Synthetic", 12
  5684. .hword 23, 1005
  5685. .word str_pokedex_eintraege_779
  5686. .word str_pokedex_eintraege_779
  5687. .hword 0, 0, 0, 0, 0, 0
  5688. .string LAN_DE "Modifikat.", 12
  5689. .string LAN_EN "Synthetic", 12
  5690. .hword 23, 1005
  5691. .word str_pokedex_eintraege_779
  5692. .word str_pokedex_eintraege_779
  5693. .hword 0, 0, 0, 0, 0, 0
  5694. .string LAN_DE "Modifikat.", 12
  5695. .string LAN_EN "Synthetic", 12
  5696. .hword 23, 1005
  5697. .word str_pokedex_eintraege_779
  5698. .word str_pokedex_eintraege_779
  5699. .hword 0, 0, 0, 0, 0, 0
  5700. .string LAN_DE "Modifikat.", 12
  5701. .string LAN_EN "Synthetic", 12
  5702. .hword 23, 1005
  5703. .word str_pokedex_eintraege_779
  5704. .word str_pokedex_eintraege_779
  5705. .hword 0, 0, 0, 0, 0, 0
  5706. .string LAN_DE "Modifikat.", 12
  5707. .string LAN_EN "Synthetic", 12
  5708. .hword 23, 1005
  5709. .word str_pokedex_eintraege_779
  5710. .word str_pokedex_eintraege_779
  5711. .hword 0, 0, 0, 0, 0, 0
  5712. .string LAN_DE "Modifikat.", 12
  5713. .string LAN_EN "Synthetic", 12
  5714. .hword 23, 1005
  5715. .word str_pokedex_eintraege_779
  5716. .word str_pokedex_eintraege_779
  5717. .hword 0, 0, 0, 0, 0, 0
  5718. .string LAN_DE "Modifikat.", 12
  5719. .string LAN_EN "Synthetic", 12
  5720. .hword 23, 1005
  5721. .word str_pokedex_eintraege_779
  5722. .word str_pokedex_eintraege_779
  5723. .hword 0, 0, 0, 0, 0, 0
  5724. .string LAN_DE "Modifikat.", 12
  5725. .string LAN_EN "Synthetic", 12
  5726. .hword 23, 1005
  5727. .word str_pokedex_eintraege_779
  5728. .word str_pokedex_eintraege_779
  5729. .hword 0, 0, 0, 0, 0, 0
  5730. .string LAN_DE "Modifikat.", 12
  5731. .string LAN_EN "Synthetic", 12
  5732. .hword 23, 1005
  5733. .word str_pokedex_eintraege_779
  5734. .word str_pokedex_eintraege_779
  5735. .hword 0, 0, 0, 0, 0, 0
  5736. .string LAN_DE "Modifikat.", 12
  5737. .string LAN_EN "Synthetic", 12
  5738. .hword 23, 1005
  5739. .word str_pokedex_eintraege_779
  5740. .word str_pokedex_eintraege_779
  5741. .hword 0, 0, 0, 0, 0, 0
  5742. .string LAN_DE "Modifikat.", 12
  5743. .string LAN_EN "Synthetic", 12
  5744. .hword 23, 1005
  5745. .word str_pokedex_eintraege_779
  5746. .word str_pokedex_eintraege_779
  5747. .hword 0, 0, 0, 0, 0, 0
  5748. .string LAN_DE "Modifikat.", 12
  5749. .string LAN_EN "Synthetic", 12
  5750. .hword 23, 1005
  5751. .word str_pokedex_eintraege_779
  5752. .word str_pokedex_eintraege_779
  5753. .hword 0, 0, 0, 0, 0, 0
  5754. .string LAN_DE "Modifikat.", 12
  5755. .string LAN_EN "Synthetic", 12
  5756. .hword 23, 1005
  5757. .word str_pokedex_eintraege_779
  5758. .word str_pokedex_eintraege_779
  5759. .hword 0, 0, 0, 0, 0, 0
  5760. .string LAN_DE "Modifikat.", 12
  5761. .string LAN_EN "Synthetic", 12
  5762. .hword 23, 1005
  5763. .word str_pokedex_eintraege_779
  5764. .word str_pokedex_eintraege_779
  5765. .hword 0, 0, 0, 0, 0, 0
  5766. .string LAN_DE "Meteor", 12
  5767. .string LAN_EN "Meteor", 12
  5768. .hword 3, 40
  5769. .word str_pokedex_eintraege_780
  5770. .word str_pokedex_eintraege_780
  5771. .hword 0, 0, 0, 0, 0, 0
  5772. .string LAN_DE "Meteor", 12
  5773. .string LAN_EN "Meteor", 12
  5774. .hword 3, 40
  5775. .word str_pokedex_eintraege_780
  5776. .word str_pokedex_eintraege_780
  5777. .hword 0, 0, 0, 0, 0, 0
  5778. .string LAN_DE "Meteor", 12
  5779. .string LAN_EN "Meteor", 12
  5780. .hword 3, 40
  5781. .word str_pokedex_eintraege_780
  5782. .word str_pokedex_eintraege_780
  5783. .hword 0, 0, 0, 0, 0, 0
  5784. .string LAN_DE "Meteor", 12
  5785. .string LAN_EN "Meteor", 12
  5786. .hword 3, 40
  5787. .word str_pokedex_eintraege_780
  5788. .word str_pokedex_eintraege_780
  5789. .hword 0, 0, 0, 0, 0, 0
  5790. .string LAN_DE "Meteor", 12
  5791. .string LAN_EN "Meteor", 12
  5792. .hword 3, 40
  5793. .word str_pokedex_eintraege_780
  5794. .word str_pokedex_eintraege_780
  5795. .hword 0, 0, 0, 0, 0, 0
  5796. .string LAN_DE "Meteor", 12
  5797. .string LAN_EN "Meteor", 12
  5798. .hword 3, 40
  5799. .word str_pokedex_eintraege_780
  5800. .word str_pokedex_eintraege_780
  5801. .hword 0, 0, 0, 0, 0, 0
  5802. .string LAN_DE "Meteor", 12
  5803. .string LAN_EN "Meteor", 12
  5804. .hword 3, 40
  5805. .word str_pokedex_eintraege_780
  5806. .word str_pokedex_eintraege_780
  5807. .hword 0, 0, 0, 0, 0, 0
  5808. .string LAN_DE "Kostümspuk", 12
  5809. .string LAN_EN "Disguise", 12
  5810. .hword 2, 7
  5811. .word str_pokedex_eintraege_784
  5812. .word str_pokedex_eintraege_784
  5813. .hword 0, 0, 0, 0, 0, 0
  5814. .string LAN_DE "Prisma", 12
  5815. .string LAN_EN "Prism", 12
  5816. .hword 24, 230
  5817. .word str_pokedex_eintraege_806
  5818. .word str_pokedex_eintraege_806
  5819. .hword 0, 0, 0, 0, 0, 0
  5820. .string LAN_DE "Prisma", 12
  5821. .string LAN_EN "Prism", 12
  5822. .hword 24, 230
  5823. .word str_pokedex_eintraege_806
  5824. .word str_pokedex_eintraege_806
  5825. .hword 0, 0, 0, 0, 0, 0
  5826. .string LAN_DE "Prisma", 12
  5827. .string LAN_EN "Prism", 12
  5828. .hword 24, 230
  5829. .word str_pokedex_eintraege_806
  5830. .word str_pokedex_eintraege_806
  5831. .hword 0, 0, 0, 0, 0, 0
  5832. .string LAN_DE "Samen", 12
  5833. .string LAN_EN "Seed", 12
  5834. .hword 20, 1000
  5835. .word str_pokedex_eintraege_3
  5836. .word str_pokedex_eintraege_3
  5837. .hword 0, 0, 0, 0, 0, 0
  5838. .string LAN_DE "Falter", 12
  5839. .string LAN_EN "Butterfly", 12
  5840. .hword 11, 320
  5841. .word str_pokedex_eintraege_12
  5842. .word str_pokedex_eintraege_12
  5843. .hword 0, 0, 0, 0, 0, 0
  5844. .string LAN_DE "Maus", 12
  5845. .string LAN_EN "Mouse", 12
  5846. .hword 3, 35
  5847. .word str_pokedex_eintraege_19
  5848. .word str_pokedex_eintraege_19
  5849. .hword 0, 0, 0, 0, 0, 0
  5850. .string LAN_DE "Maus", 12
  5851. .string LAN_EN "Mouse", 12
  5852. .hword 7, 185
  5853. .word str_pokedex_eintraege_20
  5854. .word str_pokedex_eintraege_20
  5855. .hword 0, 0, 0, 0, 0, 0
  5856. .string LAN_DE "Maus", 12
  5857. .string LAN_EN "Mouse", 12
  5858. .hword 4, 60
  5859. .word str_pokedex_eintraege_25
  5860. .word str_pokedex_eintraege_25
  5861. .hword 0, 0, 0, 0, 0, 0
  5862. .string LAN_DE "Maus", 12
  5863. .string LAN_EN "Mouse", 12
  5864. .hword 8, 300
  5865. .word str_pokedex_eintraege_26
  5866. .word str_pokedex_eintraege_26
  5867. .hword 0, 0, 0, 0, 0, 0
  5868. .string LAN_DE "Fledermaus", 12
  5869. .string LAN_EN "Bat", 12
  5870. .hword 8, 75
  5871. .word str_pokedex_eintraege_41
  5872. .word str_pokedex_eintraege_41
  5873. .hword 0, 0, 0, 0, 0, 0
  5874. .string LAN_DE "Fledermaus", 12
  5875. .string LAN_EN "Bat", 12
  5876. .hword 16, 550
  5877. .word str_pokedex_eintraege_42
  5878. .word str_pokedex_eintraege_42
  5879. .hword 0, 0, 0, 0, 0, 0
  5880. .string LAN_DE "Unkraut", 12
  5881. .string LAN_EN "Weed", 12
  5882. .hword 8, 86
  5883. .word str_pokedex_eintraege_44
  5884. .word str_pokedex_eintraege_44
  5885. .hword 0, 0, 0, 0, 0, 0
  5886. .string LAN_DE "Blume", 12
  5887. .string LAN_EN "Flower", 12
  5888. .hword 12, 186
  5889. .word str_pokedex_eintraege_45
  5890. .word str_pokedex_eintraege_45
  5891. .hword 0, 0, 0, 0, 0, 0
  5892. .string LAN_DE "Psi", 12
  5893. .string LAN_EN "Psi", 12
  5894. .hword 13, 565
  5895. .word str_pokedex_eintraege_64
  5896. .word str_pokedex_eintraege_64
  5897. .hword 0, 0, 0, 0, 0, 0
  5898. .string LAN_DE "Psi", 12
  5899. .string LAN_EN "Psi", 12
  5900. .hword 15, 480
  5901. .word str_pokedex_eintraege_65
  5902. .word str_pokedex_eintraege_65
  5903. .hword 0, 0, 0, 0, 0, 0
  5904. .string LAN_DE "Duovogel", 12
  5905. .string LAN_EN "Twin Bird", 12
  5906. .hword 14, 392
  5907. .word str_pokedex_eintraege_84
  5908. .word str_pokedex_eintraege_84
  5909. .hword 0, 0, 0, 0, 0, 0
  5910. .string LAN_DE "Trivogel", 12
  5911. .string LAN_EN "Triple Bird", 12
  5912. .hword 18, 852
  5913. .word str_pokedex_eintraege_85
  5914. .word str_pokedex_eintraege_85
  5915. .hword 0, 0, 0, 0, 0, 0
  5916. .string LAN_DE "Hypnose", 12
  5917. .string LAN_EN "Hypnosis", 12
  5918. .hword 16, 756
  5919. .word str_pokedex_eintraege_97
  5920. .word str_pokedex_eintraege_97
  5921. .hword 0, 0, 0, 0, 0, 0
  5922. .string LAN_DE "Stachler", 12
  5923. .string LAN_EN "Spikes", 12
  5924. .hword 10, 1150
  5925. .word str_pokedex_eintraege_111
  5926. .word str_pokedex_eintraege_111
  5927. .hword 0, 0, 0, 0, 0, 0
  5928. .string LAN_DE "Bohrer", 12
  5929. .string LAN_EN "Drill", 12
  5930. .hword 19, 1200
  5931. .word str_pokedex_eintraege_112
  5932. .word str_pokedex_eintraege_112
  5933. .hword 0, 0, 0, 0, 0, 0
  5934. .string LAN_DE "Goldfisch", 12
  5935. .string LAN_EN "Goldfish", 12
  5936. .hword 6, 150
  5937. .word str_pokedex_eintraege_118
  5938. .word str_pokedex_eintraege_118
  5939. .hword 0, 0, 0, 0, 0, 0
  5940. .string LAN_DE "Goldfisch", 12
  5941. .string LAN_EN "Goldfish", 12
  5942. .hword 13, 390
  5943. .word str_pokedex_eintraege_119
  5944. .word str_pokedex_eintraege_119
  5945. .hword 0, 0, 0, 0, 0, 0
  5946. .string LAN_DE "Mantis", 12
  5947. .string LAN_EN "Mantis", 12
  5948. .hword 15, 560
  5949. .word str_pokedex_eintraege_123
  5950. .word str_pokedex_eintraege_123
  5951. .hword 0, 0, 0, 0, 0, 0
  5952. .string LAN_DE "Fisch", 12
  5953. .string LAN_EN "Fish", 12
  5954. .hword 9, 100
  5955. .word str_pokedex_eintraege_129
  5956. .word str_pokedex_eintraege_129
  5957. .hword 0, 0, 0, 0, 0, 0
  5958. .string LAN_DE "Grausam", 12
  5959. .string LAN_EN "Atrocious", 12
  5960. .hword 65, 2350
  5961. .word str_pokedex_eintraege_130
  5962. .word str_pokedex_eintraege_130
  5963. .hword 0, 0, 0, 0, 0, 0
  5964. .string LAN_DE "Kräuter", 12
  5965. .string LAN_EN "Herb", 12
  5966. .hword 18, 1005
  5967. .word str_pokedex_eintraege_154
  5968. .word str_pokedex_eintraege_154
  5969. .hword 0, 0, 0, 0, 0, 0
  5970. .string LAN_DE "Fünf-Punkt", 12
  5971. .string LAN_EN "Five Star", 12
  5972. .hword 10, 108
  5973. .word str_pokedex_eintraege_165
  5974. .word str_pokedex_eintraege_165
  5975. .hword 0, 0, 0, 0, 0, 0
  5976. .string LAN_DE "Fünf-Punkt", 12
  5977. .string LAN_EN "Five Star", 12
  5978. .hword 14, 356
  5979. .word str_pokedex_eintraege_166
  5980. .word str_pokedex_eintraege_166
  5981. .hword 0, 0, 0, 0, 0, 0
  5982. .string LAN_DE "Mystik", 12
  5983. .string LAN_EN "Mystic", 12
  5984. .hword 15, 150
  5985. .word str_pokedex_eintraege_178
  5986. .word str_pokedex_eintraege_178
  5987. .hword 0, 0, 0, 0, 0, 0
  5988. .string LAN_DE "Imitation", 12
  5989. .string LAN_EN "Imitation", 12
  5990. .hword 12, 380
  5991. .word str_pokedex_eintraege_185
  5992. .word str_pokedex_eintraege_185
  5993. .hword 0, 0, 0, 0, 0, 0
  5994. .string LAN_DE "Frosch", 12
  5995. .string LAN_EN "Frog", 12
  5996. .hword 11, 339
  5997. .word str_pokedex_eintraege_186
  5998. .word str_pokedex_eintraege_186
  5999. .hword 0, 0, 0, 0, 0, 0
  6000. .string LAN_DE "Langschweif", 12
  6001. .string LAN_EN "Long Tail", 12
  6002. .hword 8, 115
  6003. .word str_pokedex_eintraege_190
  6004. .word str_pokedex_eintraege_190
  6005. .hword 0, 0, 0, 0, 0, 0
  6006. .string LAN_DE "Fisch", 12
  6007. .string LAN_EN "Water Fish", 12
  6008. .hword 4, 85
  6009. .word str_pokedex_eintraege_194
  6010. .word str_pokedex_eintraege_194
  6011. .hword 0, 0, 0, 0, 0, 0
  6012. .string LAN_DE "Fisch", 12
  6013. .string LAN_EN "Water Fish", 12
  6014. .hword 14, 750
  6015. .word str_pokedex_eintraege_195
  6016. .word str_pokedex_eintraege_195
  6017. .hword 0, 0, 0, 0, 0, 0
  6018. .string LAN_DE "Finsternis", 12
  6019. .string LAN_EN "Darkness", 12
  6020. .hword 5, 21
  6021. .word str_pokedex_eintraege_198
  6022. .word str_pokedex_eintraege_198
  6023. .hword 0, 0, 0, 0, 0, 0
  6024. .string LAN_DE "Geduld", 12
  6025. .string LAN_EN "Patient", 12
  6026. .hword 13, 285
  6027. .word str_pokedex_eintraege_202
  6028. .word str_pokedex_eintraege_202
  6029. .hword 0, 0, 0, 0, 0, 0
  6030. .string LAN_DE "Langhals", 12
  6031. .string LAN_EN "Long Neck", 12
  6032. .hword 15, 415
  6033. .word str_pokedex_eintraege_203
  6034. .word str_pokedex_eintraege_203
  6035. .hword 0, 0, 0, 0, 0, 0
  6036. .string LAN_DE "Flugskorpi", 12
  6037. .string LAN_EN "Fly Scorp.", 12
  6038. .hword 11, 648
  6039. .word str_pokedex_eintraege_207
  6040. .word str_pokedex_eintraege_207
  6041. .hword 0, 0, 0, 0, 0, 0
  6042. .string LAN_DE "Stahlboa", 12
  6043. .string LAN_EN "Iron Snake", 12
  6044. .hword 92, 4000
  6045. .word str_pokedex_eintraege_208
  6046. .word str_pokedex_eintraege_208
  6047. .hword 0, 0, 0, 0, 0, 0
  6048. .string LAN_DE "Kneifer", 12
  6049. .string LAN_EN "Pincer", 12
  6050. .hword 18, 1180
  6051. .word str_pokedex_eintraege_212
  6052. .word str_pokedex_eintraege_212
  6053. .hword 0, 0, 0, 0, 0, 0
  6054. .string LAN_DE "Einzelhorn", 12
  6055. .string LAN_EN "Single Horn", 12
  6056. .hword 15, 540
  6057. .word str_pokedex_eintraege_214
  6058. .word str_pokedex_eintraege_214
  6059. .hword 0, 0, 0, 0, 0, 0
  6060. .string LAN_DE "Stichklaue", 12
  6061. .string LAN_EN "Sharp Claw", 12
  6062. .hword 9, 280
  6063. .word str_pokedex_eintraege_215
  6064. .word str_pokedex_eintraege_215
  6065. .hword 0, 0, 0, 0, 0, 0
  6066. .string LAN_DE "Schläfer", 12
  6067. .string LAN_EN "Hibernator", 12
  6068. .hword 18, 1258
  6069. .word str_pokedex_eintraege_217
  6070. .word str_pokedex_eintraege_217
  6071. .hword 0, 0, 0, 0, 0, 0
  6072. .string LAN_DE "Schwein", 12
  6073. .string LAN_EN "Swine", 12
  6074. .hword 11, 558
  6075. .word str_pokedex_eintraege_221
  6076. .word str_pokedex_eintraege_221
  6077. .hword 0, 0, 0, 0, 0, 0
  6078. .string LAN_DE "Hochdruck", 12
  6079. .string LAN_EN "Jet", 12
  6080. .hword 9, 285
  6081. .word str_pokedex_eintraege_224
  6082. .word str_pokedex_eintraege_224
  6083. .hword 0, 0, 0, 0, 0, 0
  6084. .string LAN_DE "Hades", 12
  6085. .string LAN_EN "Dark", 12
  6086. .hword 14, 350
  6087. .word str_pokedex_eintraege_229
  6088. .word str_pokedex_eintraege_229
  6089. .hword 0, 0, 0, 0, 0, 0
  6090. .string LAN_DE "Panzer", 12
  6091. .string LAN_EN "Armor", 12
  6092. .hword 11, 1200
  6093. .word str_pokedex_eintraege_232
  6094. .word str_pokedex_eintraege_232
  6095. .hword 0, 0, 0, 0, 0, 0
  6096. .string LAN_DE "Küken", 12
  6097. .string LAN_EN "Chick", 12
  6098. .hword 4, 25
  6099. .word str_pokedex_eintraege_255
  6100. .word str_pokedex_eintraege_255
  6101. .hword 0, 0, 0, 0, 0, 0
  6102. .string LAN_DE "Kleinhahn", 12
  6103. .string LAN_EN "Young Fowl", 12
  6104. .hword 9, 195
  6105. .word str_pokedex_eintraege_256
  6106. .word str_pokedex_eintraege_256
  6107. .hword 0, 0, 0, 0, 0, 0
  6108. .string LAN_DE "Großbrand", 12
  6109. .string LAN_EN "Blaze", 12
  6110. .hword 19, 520
  6111. .word str_pokedex_eintraege_257
  6112. .word str_pokedex_eintraege_257
  6113. .hword 0, 0, 0, 0, 0, 0
  6114. .string LAN_DE "Falter", 12
  6115. .string LAN_EN "Butterfly", 12
  6116. .hword 10, 284
  6117. .word str_pokedex_eintraege_267
  6118. .word str_pokedex_eintraege_267
  6119. .hword 0, 0, 0, 0, 0, 0
  6120. .string LAN_DE "Giftmotte", 12
  6121. .string LAN_EN "Poison Moth", 12
  6122. .hword 12, 316
  6123. .word str_pokedex_eintraege_269
  6124. .word str_pokedex_eintraege_269
  6125. .hword 0, 0, 0, 0, 0, 0
  6126. .string LAN_DE "Sorglos", 12
  6127. .string LAN_EN "Carefree", 12
  6128. .hword 15, 550
  6129. .word str_pokedex_eintraege_272
  6130. .word str_pokedex_eintraege_272
  6131. .hword 0, 0, 0, 0, 0, 0
  6132. .string LAN_DE "Hinterlist", 12
  6133. .string LAN_EN "Wily", 12
  6134. .hword 10, 280
  6135. .word str_pokedex_eintraege_274
  6136. .word str_pokedex_eintraege_274
  6137. .hword 0, 0, 0, 0, 0, 0
  6138. .string LAN_DE "Verschlagen", 12
  6139. .string LAN_EN "Wicked", 12
  6140. .hword 13, 596
  6141. .word str_pokedex_eintraege_275
  6142. .word str_pokedex_eintraege_275
  6143. .hword 0, 0, 0, 0, 0, 0
  6144. .string LAN_DE "Meditation", 12
  6145. .string LAN_EN "Meditate", 12
  6146. .hword 6, 112
  6147. .word str_pokedex_eintraege_307
  6148. .word str_pokedex_eintraege_307
  6149. .hword 0, 0, 0, 0, 0, 0
  6150. .string LAN_DE "Meditation", 12
  6151. .string LAN_EN "Meditate", 12
  6152. .hword 13, 315
  6153. .word str_pokedex_eintraege_308
  6154. .word str_pokedex_eintraege_308
  6155. .hword 0, 0, 0, 0, 0, 0
  6156. .string LAN_DE "Dorn", 12
  6157. .string LAN_EN "Thorn", 12
  6158. .hword 3, 20
  6159. .word str_pokedex_eintraege_315
  6160. .word str_pokedex_eintraege_315
  6161. .hword 0, 0, 0, 0, 0, 0
  6162. .string LAN_DE "Magen", 12
  6163. .string LAN_EN "Stomach", 12
  6164. .hword 4, 103
  6165. .word str_pokedex_eintraege_316
  6166. .word str_pokedex_eintraege_316
  6167. .hword 0, 0, 0, 0, 0, 0
  6168. .string LAN_DE "Giftbeutel", 12
  6169. .string LAN_EN "Poison Bag", 12
  6170. .hword 17, 800
  6171. .word str_pokedex_eintraege_317
  6172. .word str_pokedex_eintraege_317
  6173. .hword 0, 0, 0, 0, 0, 0
  6174. .string LAN_DE "Taubheit", 12
  6175. .string LAN_EN "Numb", 12
  6176. .hword 7, 240
  6177. .word str_pokedex_eintraege_322
  6178. .word str_pokedex_eintraege_322
  6179. .hword 0, 0, 0, 0, 0, 0
  6180. .string LAN_DE "Ausbruch", 12
  6181. .string LAN_EN "Eruption", 12
  6182. .hword 19, 2200
  6183. .word str_pokedex_eintraege_323
  6184. .word str_pokedex_eintraege_323
  6185. .hword 0, 0, 0, 0, 0, 0
  6186. .string LAN_DE "Vogelschock", 12
  6187. .string LAN_EN "Scarecrow", 12
  6188. .hword 13, 774
  6189. .word str_pokedex_eintraege_332
  6190. .word str_pokedex_eintraege_332
  6191. .hword 0, 0, 0, 0, 0, 0
  6192. .string LAN_DE "Zartheit", 12
  6193. .string LAN_EN "Tender", 12
  6194. .hword 62, 1620
  6195. .word str_pokedex_eintraege_350
  6196. .word str_pokedex_eintraege_350
  6197. .hword 0, 0, 0, 0, 0, 0
  6198. .string LAN_DE "Bestand", 12
  6199. .string LAN_EN "Longevity", 12
  6200. .hword 10, 234
  6201. .word str_pokedex_eintraege_369
  6202. .word str_pokedex_eintraege_369
  6203. .hword 0, 0, 0, 0, 0, 0
  6204. .string LAN_DE "Star", 12
  6205. .string LAN_EN "Starling", 12
  6206. .hword 3, 20
  6207. .word str_pokedex_eintraege_402
  6208. .word str_pokedex_eintraege_402
  6209. .hword 0, 0, 0, 0, 0, 0
  6210. .string LAN_DE "Star", 12
  6211. .string LAN_EN "Starling", 12
  6212. .hword 6, 155
  6213. .word str_pokedex_eintraege_403
  6214. .word str_pokedex_eintraege_403
  6215. .hword 0, 0, 0, 0, 0, 0
  6216. .string LAN_DE "Raubtier", 12
  6217. .string LAN_EN "Predator", 12
  6218. .hword 12, 249
  6219. .word str_pokedex_eintraege_404
  6220. .word str_pokedex_eintraege_404
  6221. .hword 0, 0, 0, 0, 0, 0
  6222. .string LAN_DE "Dickmaus", 12
  6223. .string LAN_EN "Plump Mouse", 12
  6224. .hword 5, 200
  6225. .word str_pokedex_eintraege_405
  6226. .word str_pokedex_eintraege_405
  6227. .hword 0, 0, 0, 0, 0, 0
  6228. .string LAN_DE "Biber", 12
  6229. .string LAN_EN "Beaver", 12
  6230. .hword 10, 315
  6231. .word str_pokedex_eintraege_406
  6232. .word str_pokedex_eintraege_406
  6233. .hword 0, 0, 0, 0, 0, 0
  6234. .string LAN_DE "Zirper", 12
  6235. .string LAN_EN "Cricket", 12
  6236. .hword 3, 22
  6237. .word str_pokedex_eintraege_407
  6238. .word str_pokedex_eintraege_407
  6239. .hword 0, 0, 0, 0, 0, 0
  6240. .string LAN_DE "Zirper", 12
  6241. .string LAN_EN "Cricket", 12
  6242. .hword 10, 255
  6243. .word str_pokedex_eintraege_408
  6244. .word str_pokedex_eintraege_408
  6245. .hword 0, 0, 0, 0, 0, 0
  6246. .string LAN_DE "Flacker", 12
  6247. .string LAN_EN "Flash", 12
  6248. .hword 5, 95
  6249. .word str_pokedex_eintraege_409
  6250. .word str_pokedex_eintraege_409
  6251. .hword 0, 0, 0, 0, 0, 0
  6252. .string LAN_DE "Funken", 12
  6253. .string LAN_EN "Spark", 12
  6254. .hword 9, 305
  6255. .word str_pokedex_eintraege_410
  6256. .word str_pokedex_eintraege_410
  6257. .hword 0, 0, 0, 0, 0, 0
  6258. .string LAN_DE "Glühauge", 12
  6259. .string LAN_EN "Gleam Eyes", 12
  6260. .hword 14, 420
  6261. .word str_pokedex_eintraege_411
  6262. .word str_pokedex_eintraege_411
  6263. .hword 0, 0, 0, 0, 0, 0
  6264. .string LAN_DE "Strauß", 12
  6265. .string LAN_EN "Bouquet", 12
  6266. .hword 9, 145
  6267. .word str_pokedex_eintraege_413
  6268. .word str_pokedex_eintraege_413
  6269. .hword 0, 0, 0, 0, 0, 0
  6270. .string LAN_DE "Baby-Biene", 12
  6271. .string LAN_EN "Tiny Bee", 12
  6272. .hword 3, 55
  6273. .word str_pokedex_eintraege_421
  6274. .word str_pokedex_eintraege_421
  6275. .hword 0, 0, 0, 0, 0, 0
  6276. .string LAN_DE "Elektromaus", 12
  6277. .string LAN_EN "EleSquirrel", 12
  6278. .hword 4, 39
  6279. .word str_pokedex_eintraege_423
  6280. .word str_pokedex_eintraege_423
  6281. .hword 0, 0, 0, 0, 0, 0
  6282. .string LAN_DE "Meerwiesel", 12
  6283. .string LAN_EN "Sea Weasel", 12
  6284. .hword 7, 295
  6285. .word str_pokedex_eintraege_424
  6286. .word str_pokedex_eintraege_424
  6287. .hword 0, 0, 0, 0, 0, 0
  6288. .string LAN_DE "Meerwiesel", 12
  6289. .string LAN_EN "Sea Weasel", 12
  6290. .hword 11, 335
  6291. .word str_pokedex_eintraege_425
  6292. .word str_pokedex_eintraege_425
  6293. .hword 0, 0, 0, 0, 0, 0
  6294. .string LAN_DE "Langschweif", 12
  6295. .string LAN_EN "Long Tail", 12
  6296. .hword 12, 200
  6297. .word str_pokedex_eintraege_430
  6298. .word str_pokedex_eintraege_430
  6299. .hword 0, 0, 0, 0, 0, 0
  6300. .string LAN_DE "Landhai", 12
  6301. .string LAN_EN "Land Shark", 12
  6302. .hword 7, 205
  6303. .word str_pokedex_eintraege_449
  6304. .word str_pokedex_eintraege_449
  6305. .hword 0, 0, 0, 0, 0, 0
  6306. .string LAN_DE "Höhle", 12
  6307. .string LAN_EN "Cave", 12
  6308. .hword 14, 560
  6309. .word str_pokedex_eintraege_450
  6310. .word str_pokedex_eintraege_450
  6311. .hword 0, 0, 0, 0, 0, 0
  6312. .string LAN_DE "Rasanz", 12
  6313. .string LAN_EN "Mach", 12
  6314. .hword 19, 950
  6315. .word str_pokedex_eintraege_451
  6316. .word str_pokedex_eintraege_451
  6317. .hword 0, 0, 0, 0, 0, 0
  6318. .string LAN_DE "Flusspferd", 12
  6319. .string LAN_EN "Hippo", 12
  6320. .hword 8, 495
  6321. .word str_pokedex_eintraege_455
  6322. .word str_pokedex_eintraege_455
  6323. .hword 0, 0, 0, 0, 0, 0
  6324. .string LAN_DE "Schwergew.", 12
  6325. .string LAN_EN "Heavyweight", 12
  6326. .hword 20, 3000
  6327. .word str_pokedex_eintraege_456
  6328. .word str_pokedex_eintraege_456
  6329. .hword 0, 0, 0, 0, 0, 0
  6330. .string LAN_DE "Giftmund", 12
  6331. .string LAN_EN "Toxic Mouth", 12
  6332. .hword 7, 230
  6333. .word str_pokedex_eintraege_459
  6334. .word str_pokedex_eintraege_459
  6335. .hword 0, 0, 0, 0, 0, 0
  6336. .string LAN_DE "Giftmund", 12
  6337. .string LAN_EN "Toxic Mouth", 12
  6338. .hword 13, 444
  6339. .word str_pokedex_eintraege_460
  6340. .word str_pokedex_eintraege_460
  6341. .hword 0, 0, 0, 0, 0, 0
  6342. .string LAN_DE "Flügelfisch", 12
  6343. .string LAN_EN "Wing Fish", 12
  6344. .hword 4, 70
  6345. .word str_pokedex_eintraege_462
  6346. .word str_pokedex_eintraege_462
  6347. .hword 0, 0, 0, 0, 0, 0
  6348. .string LAN_DE "Neon", 12
  6349. .string LAN_EN "Neon", 12
  6350. .hword 12, 335
  6351. .word str_pokedex_eintraege_463
  6352. .word str_pokedex_eintraege_463
  6353. .hword 0, 0, 0, 0, 0, 0
  6354. .string LAN_DE "Frostbaum", 12
  6355. .string LAN_EN "Frost Tree", 12
  6356. .hword 10, 505
  6357. .word str_pokedex_eintraege_465
  6358. .word str_pokedex_eintraege_465
  6359. .hword 0, 0, 0, 0, 0, 0
  6360. .string LAN_DE "Frostbaum", 12
  6361. .string LAN_EN "Frost Tree", 12
  6362. .hword 22, 1355
  6363. .word str_pokedex_eintraege_466
  6364. .word str_pokedex_eintraege_466
  6365. .hword 0, 0, 0, 0, 0, 0
  6366. .string LAN_DE "Stichklaue", 12
  6367. .string LAN_EN "Sharp Claw", 12
  6368. .hword 11, 340
  6369. .word str_pokedex_eintraege_467
  6370. .word str_pokedex_eintraege_467
  6371. .hword 0, 0, 0, 0, 0, 0
  6372. .string LAN_DE "Bohrer", 12
  6373. .string LAN_EN "Drill", 12
  6374. .hword 24, 2828
  6375. .word str_pokedex_eintraege_470
  6376. .word str_pokedex_eintraege_470
  6377. .hword 0, 0, 0, 0, 0, 0
  6378. .string LAN_DE "Ranke", 12
  6379. .string LAN_EN "Vine", 12
  6380. .hword 20, 1286
  6381. .word str_pokedex_eintraege_471
  6382. .word str_pokedex_eintraege_471
  6383. .hword 0, 0, 0, 0, 0, 0
  6384. .string LAN_DE "Stoßzahn", 12
  6385. .string LAN_EN "Twin Tusk", 12
  6386. .hword 25, 2910
  6387. .word str_pokedex_eintraege_479
  6388. .word str_pokedex_eintraege_479
  6389. .hword 0, 0, 0, 0, 0, 0
  6390. .string LAN_DE "Stolz", 12
  6391. .string LAN_EN "Proud", 12
  6392. .hword 12, 290
  6393. .word str_pokedex_eintraege_527
  6394. .word str_pokedex_eintraege_527
  6395. .hword 0, 0, 0, 0, 0, 0
  6396. .string LAN_DE "Gleit", 12
  6397. .string LAN_EN "Floating", 12
  6398. .hword 12, 330
  6399. .word str_pokedex_eintraege_598
  6400. .word str_pokedex_eintraege_598
  6401. .hword 0, 0, 0, 0, 0, 0
  6402. .string LAN_DE "Gleit", 12
  6403. .string LAN_EN "Floating", 12
  6404. .hword 22, 1350
  6405. .word str_pokedex_eintraege_599
  6406. .word str_pokedex_eintraege_599
  6407. .hword 0, 0, 0, 0, 0, 0
  6408. .string LAN_DE "Monarch", 12
  6409. .string LAN_EN "Royal", 12
  6410. .hword 15, 815
  6411. .word str_pokedex_eintraege_674
  6412. .word str_pokedex_eintraege_674
  6413. .hword 0, 0, 0, 0, 0, 0
  6414. .string LAN_DE "Samen", 12
  6415. .string LAN_EN "Seed", 12
  6416. .hword 20, 1000
  6417. .word str_pokedex_eintraege_3
  6418. .word str_pokedex_eintraege_3
  6419. .hword 0, 0, 0, 0, 0, 0
  6420. .string LAN_DE "Flamme", 12
  6421. .string LAN_EN "Flame", 12
  6422. .hword 17, 905
  6423. .word str_pokedex_eintraege_6
  6424. .word str_pokedex_eintraege_6
  6425. .hword 0, 0, 0, 0, 0, 0
  6426. .string LAN_DE "Flamme", 12
  6427. .string LAN_EN "Flame", 12
  6428. .hword 17, 905
  6429. .word str_pokedex_eintraege_6
  6430. .word str_pokedex_eintraege_6
  6431. .hword 0, 0, 0, 0, 0, 0
  6432. .string LAN_DE "Panzertier", 12
  6433. .string LAN_EN "Shellfish", 12
  6434. .hword 16, 855
  6435. .word str_pokedex_eintraege_9
  6436. .word str_pokedex_eintraege_9
  6437. .hword 0, 0, 0, 0, 0, 0
  6438. .string LAN_DE "Giftbiene", 12
  6439. .string LAN_EN "Poison Bee", 12
  6440. .hword 10, 295
  6441. .word str_pokedex_eintraege_15
  6442. .word str_pokedex_eintraege_15
  6443. .hword 0, 0, 0, 0, 0, 0
  6444. .string LAN_DE "Vogel", 12
  6445. .string LAN_EN "Bird", 12
  6446. .hword 15, 395
  6447. .word str_pokedex_eintraege_18
  6448. .word str_pokedex_eintraege_18
  6449. .hword 0, 0, 0, 0, 0, 0
  6450. .string LAN_DE "Psi", 12
  6451. .string LAN_EN "Psi", 12
  6452. .hword 15, 480
  6453. .word str_pokedex_eintraege_65
  6454. .word str_pokedex_eintraege_65
  6455. .hword 0, 0, 0, 0, 0, 0
  6456. .string LAN_DE "Symbiose", 12
  6457. .string LAN_EN "Hermit Crab", 12
  6458. .hword 16, 785
  6459. .word str_pokedex_eintraege_80
  6460. .word str_pokedex_eintraege_80
  6461. .hword 0, 0, 0, 0, 0, 0
  6462. .string LAN_DE "Schatten", 12
  6463. .string LAN_EN "Shadow", 12
  6464. .hword 15, 405
  6465. .word str_pokedex_eintraege_94
  6466. .word str_pokedex_eintraege_94
  6467. .hword 0, 0, 0, 0, 0, 0
  6468. .string LAN_DE "Muttertier", 12
  6469. .string LAN_EN "Parent", 12
  6470. .hword 22, 800
  6471. .word str_pokedex_eintraege_115
  6472. .word str_pokedex_eintraege_115
  6473. .hword 0, 0, 0, 0, 0, 0
  6474. .string LAN_DE "Kneifkäfer", 12
  6475. .string LAN_EN "Stag Beetle", 12
  6476. .hword 15, 550
  6477. .word str_pokedex_eintraege_127
  6478. .word str_pokedex_eintraege_127
  6479. .hword 0, 0, 0, 0, 0, 0
  6480. .string LAN_DE "Grausam", 12
  6481. .string LAN_EN "Atrocious", 12
  6482. .hword 65, 2350
  6483. .word str_pokedex_eintraege_130
  6484. .word str_pokedex_eintraege_130
  6485. .hword 0, 0, 0, 0, 0, 0
  6486. .string LAN_DE "Fossil", 12
  6487. .string LAN_EN "Fossil", 12
  6488. .hword 18, 590
  6489. .word str_pokedex_eintraege_142
  6490. .word str_pokedex_eintraege_142
  6491. .hword 0, 0, 0, 0, 0, 0
  6492. .string LAN_DE "Genmutant", 12
  6493. .string LAN_EN "Genetic", 12
  6494. .hword 20, 1220
  6495. .word str_pokedex_eintraege_150
  6496. .word str_pokedex_eintraege_150
  6497. .hword 0, 0, 0, 0, 0, 0
  6498. .string LAN_DE "Genmutant", 12
  6499. .string LAN_EN "Genetic", 12
  6500. .hword 20, 1220
  6501. .word str_pokedex_eintraege_150
  6502. .word str_pokedex_eintraege_150
  6503. .hword 0, 0, 0, 0, 0, 0
  6504. .string LAN_DE "Leuchte", 12
  6505. .string LAN_EN "Light", 12
  6506. .hword 14, 615
  6507. .word str_pokedex_eintraege_181
  6508. .word str_pokedex_eintraege_181
  6509. .hword 0, 0, 0, 0, 0, 0
  6510. .string LAN_DE "Stahlboa", 12
  6511. .string LAN_EN "Iron Snake", 12
  6512. .hword 92, 4000
  6513. .word str_pokedex_eintraege_208
  6514. .word str_pokedex_eintraege_208
  6515. .hword 0, 0, 0, 0, 0, 0
  6516. .string LAN_DE "Kneifer", 12
  6517. .string LAN_EN "Pincer", 12
  6518. .hword 18, 1180
  6519. .word str_pokedex_eintraege_212
  6520. .word str_pokedex_eintraege_212
  6521. .hword 0, 0, 0, 0, 0, 0
  6522. .string LAN_DE "Einzelhorn", 12
  6523. .string LAN_EN "Single Horn", 12
  6524. .hword 15, 540
  6525. .word str_pokedex_eintraege_214
  6526. .word str_pokedex_eintraege_214
  6527. .hword 0, 0, 0, 0, 0, 0
  6528. .string LAN_DE "Hades", 12
  6529. .string LAN_EN "Dark", 12
  6530. .hword 14, 350
  6531. .word str_pokedex_eintraege_229
  6532. .word str_pokedex_eintraege_229
  6533. .hword 0, 0, 0, 0, 0, 0
  6534. .string LAN_DE "Panzer", 12
  6535. .string LAN_EN "Armor", 12
  6536. .hword 20, 2020
  6537. .word str_pokedex_eintraege_248
  6538. .word str_pokedex_eintraege_248
  6539. .hword 0, 0, 0, 0, 0, 0
  6540. .string LAN_DE "Dschungel", 12
  6541. .string LAN_EN "Forest", 12
  6542. .hword 17, 522
  6543. .word str_pokedex_eintraege_254
  6544. .word str_pokedex_eintraege_254
  6545. .hword 0, 0, 0, 0, 0, 0
  6546. .string LAN_DE "Großbrand", 12
  6547. .string LAN_EN "Blaze", 12
  6548. .hword 19, 520
  6549. .word str_pokedex_eintraege_257
  6550. .word str_pokedex_eintraege_257
  6551. .hword 0, 0, 0, 0, 0, 0
  6552. .string LAN_DE "Lehmhüpfer", 12
  6553. .string LAN_EN "Mud Fish", 12
  6554. .hword 15, 819
  6555. .word str_pokedex_eintraege_260
  6556. .word str_pokedex_eintraege_260
  6557. .hword 0, 0, 0, 0, 0, 0
  6558. .string LAN_DE "Umarmung", 12
  6559. .string LAN_EN "Embrace", 12
  6560. .hword 16, 484
  6561. .word str_pokedex_eintraege_282
  6562. .word str_pokedex_eintraege_282
  6563. .hword 0, 0, 0, 0, 0, 0
  6564. .string LAN_DE "Finsternis", 12
  6565. .string LAN_EN "Darkness", 12
  6566. .hword 5, 110
  6567. .word str_pokedex_eintraege_302
  6568. .word str_pokedex_eintraege_302
  6569. .hword 0, 0, 0, 0, 0, 0
  6570. .string LAN_DE "Schwindel", 12
  6571. .string LAN_EN "Deceiver", 12
  6572. .hword 6, 115
  6573. .word str_pokedex_eintraege_303
  6574. .word str_pokedex_eintraege_303
  6575. .hword 0, 0, 0, 0, 0, 0
  6576. .string LAN_DE "Eisenpanzer", 12
  6577. .string LAN_EN "Iron Armor", 12
  6578. .hword 21, 3600
  6579. .word str_pokedex_eintraege_306
  6580. .word str_pokedex_eintraege_306
  6581. .hword 0, 0, 0, 0, 0, 0
  6582. .string LAN_DE "Meditation", 12
  6583. .string LAN_EN "Meditate", 12
  6584. .hword 13, 315
  6585. .word str_pokedex_eintraege_308
  6586. .word str_pokedex_eintraege_308
  6587. .hword 0, 0, 0, 0, 0, 0
  6588. .string LAN_DE "Entladung", 12
  6589. .string LAN_EN "Discharge", 12
  6590. .hword 15, 402
  6591. .word str_pokedex_eintraege_310
  6592. .word str_pokedex_eintraege_310
  6593. .hword 0, 0, 0, 0, 0, 0
  6594. .string LAN_DE "Brutal", 12
  6595. .string LAN_EN "Brutal", 12
  6596. .hword 18, 888
  6597. .word str_pokedex_eintraege_319
  6598. .word str_pokedex_eintraege_319
  6599. .hword 0, 0, 0, 0, 0, 0
  6600. .string LAN_DE "Ausbruch", 12
  6601. .string LAN_EN "Eruption", 12
  6602. .hword 19, 2200
  6603. .word str_pokedex_eintraege_323
  6604. .word str_pokedex_eintraege_323
  6605. .hword 0, 0, 0, 0, 0, 0
  6606. .string LAN_DE "Summsel", 12
  6607. .string LAN_EN "Humming", 12
  6608. .hword 11, 206
  6609. .word str_pokedex_eintraege_334
  6610. .word str_pokedex_eintraege_334
  6611. .hword 0, 0, 0, 0, 0, 0
  6612. .string LAN_DE "Marionette", 12
  6613. .string LAN_EN "Marionette", 12
  6614. .hword 11, 125
  6615. .word str_pokedex_eintraege_354
  6616. .word str_pokedex_eintraege_354
  6617. .hword 0, 0, 0, 0, 0, 0
  6618. .string LAN_DE "Desaster", 12
  6619. .string LAN_EN "Disaster", 12
  6620. .hword 12, 470
  6621. .word str_pokedex_eintraege_359
  6622. .word str_pokedex_eintraege_359
  6623. .hword 0, 0, 0, 0, 0, 0
  6624. .string LAN_DE "Antlitz", 12
  6625. .string LAN_EN "Face", 12
  6626. .hword 15, 2565
  6627. .word str_pokedex_eintraege_362
  6628. .word str_pokedex_eintraege_362
  6629. .hword 0, 0, 0, 0, 0, 0
  6630. .string LAN_DE "Drache", 12
  6631. .string LAN_EN "Dragon", 12
  6632. .hword 15, 1026
  6633. .word str_pokedex_eintraege_373
  6634. .word str_pokedex_eintraege_373
  6635. .hword 0, 0, 0, 0, 0, 0
  6636. .string LAN_DE "Eisenfuß", 12
  6637. .string LAN_EN "Iron Leg", 12
  6638. .hword 16, 5500
  6639. .word str_pokedex_eintraege_376
  6640. .word str_pokedex_eintraege_376
  6641. .hword 0, 0, 0, 0, 0, 0
  6642. .string LAN_DE "Äon", 12
  6643. .string LAN_EN "Eon", 12
  6644. .hword 14, 400
  6645. .word str_pokedex_eintraege_383
  6646. .word str_pokedex_eintraege_383
  6647. .hword 0, 0, 0, 0, 0, 0
  6648. .string LAN_DE "Äon", 12
  6649. .string LAN_EN "Eon", 12
  6650. .hword 20, 600
  6651. .word str_pokedex_eintraege_387
  6652. .word str_pokedex_eintraege_387
  6653. .hword 0, 0, 0, 0, 0, 0
  6654. .string LAN_DE "Himmelhoch", 12
  6655. .string LAN_EN "Sky High", 12
  6656. .hword 70, 2065
  6657. .word str_pokedex_eintraege_390
  6658. .word str_pokedex_eintraege_390
  6659. .hword 0, 0, 0, 0, 0, 0
  6660. .string LAN_DE "Kaninchen", 12
  6661. .string LAN_EN "Rabbit", 12
  6662. .hword 12, 332
  6663. .word str_pokedex_eintraege_434
  6664. .word str_pokedex_eintraege_434
  6665. .hword 0, 0, 0, 0, 0, 0
  6666. .string LAN_DE "Rasanz", 12
  6667. .string LAN_EN "Mach", 12
  6668. .hword 19, 950
  6669. .word str_pokedex_eintraege_451
  6670. .word str_pokedex_eintraege_451
  6671. .hword 0, 0, 0, 0, 0, 0
  6672. .string LAN_DE "Aura", 12
  6673. .string LAN_EN "Aura", 12
  6674. .hword 12, 540
  6675. .word str_pokedex_eintraege_454
  6676. .word str_pokedex_eintraege_454
  6677. .hword 0, 0, 0, 0, 0, 0
  6678. .string LAN_DE "Frostbaum", 12
  6679. .string LAN_EN "Frost Tree", 12
  6680. .hword 22, 1355
  6681. .word str_pokedex_eintraege_466
  6682. .word str_pokedex_eintraege_466
  6683. .hword 0, 0, 0, 0, 0, 0
  6684. .string LAN_DE "Klinge", 12
  6685. .string LAN_EN "Blade", 12
  6686. .hword 16, 520
  6687. .word str_pokedex_eintraege_481
  6688. .word str_pokedex_eintraege_481
  6689. .hword 0, 0, 0, 0, 0, 0
  6690. .string LAN_DE "Gehör", 12
  6691. .string LAN_EN "Hearing", 12
  6692. .hword 11, 310
  6693. .word str_pokedex_eintraege_537
  6694. .word str_pokedex_eintraege_537
  6695. .hword 0, 0, 0, 0, 0, 0
  6696. .string LAN_DE "Edelstein", 12
  6697. .string LAN_EN "Jewel", 12
  6698. .hword 7, 88
  6699. .word str_pokedex_eintraege_725
  6700. .word str_pokedex_eintraege_725
  6701. .hword 0, 0, 0, 0, 0, 0
  6702. .string LAN_DE "Seegründler", 12
  6703. .string LAN_EN "Sea Basin", 12
  6704. .hword 45, 3520
  6705. .word str_pokedex_eintraege_388
  6706. .word str_pokedex_eintraege_388
  6707. .hword 0, 0, 0, 0, 0, 0
  6708. .string LAN_DE "Kontinent", 12
  6709. .string LAN_EN "Continent", 12
  6710. .hword 35, 9500
  6711. .word str_pokedex_eintraege_389
  6712. .word str_pokedex_eintraege_389
  6713. .hword 0, 0, 0, 0, 0, 0
  6714. @@ -------------------------------------------------------------------------------------------------------------------------------
  6715. @@ Dex Einträge
  6716. @@ -------------------------------------------------------------------------------------------------------------------------------
  6717. str_pokedex_eintraege_0:
  6718. .dexstring 40 LAN_DE "Dieses Pokémon gilt bisher noch als unerforscht. Leider sind keine Informationen vorhanden."
  6719. .dexstring 40 LAN_EN ""
  6720. str_pokedex_eintraege_1:
  6721. .dexstring 40 LAN_DE "Bisasam macht gern einmal ein Nickerchen im Sonnenschein. Auf seinem Rücken trägt es einen Samen. Indem es Sonnenstrahlen aufsaugt, wird der Samen zunehmend größer."
  6722. .dexstring 40 LAN_EN ""
  6723. str_pokedex_eintraege_2:
  6724. .dexstring 40 LAN_DE "Sobald die Knospe auf seinem Rücken ein süßes Aroma abgibt, steht die Blüte kurz bevor."
  6725. .dexstring 40 LAN_EN ""
  6726. str_pokedex_eintraege_3:
  6727. .dexstring 40 LAN_DE "Es spreizt die breiten Blätter seiner Blüte, um seinen Körper mit Sonnenenergie zu durchfluten."
  6728. .dexstring 40 LAN_EN ""
  6729. str_pokedex_eintraege_4:
  6730. .dexstring 40 LAN_DE "Die Flamme auf seiner Schweifspitze zeigt die Lebensenergie an. Ist es gesund, leuchtet sie hell."
  6731. .dexstring 40 LAN_EN ""
  6732. str_pokedex_eintraege_5:
  6733. .dexstring 40 LAN_DE "Wenn Glutexo mit seinem Schwanz schwingt, steigt die Temperatur ins Unermessliche."
  6734. .dexstring 40 LAN_EN ""
  6735. str_pokedex_eintraege_6:
  6736. .dexstring 40 LAN_DE "Wenn dieses Pokémon einen Strahl glühenden Feuers speit, leuchtet seine Schwanzspitze auf."
  6737. .dexstring 40 LAN_EN ""
  6738. str_pokedex_eintraege_7:
  6739. .dexstring 40 LAN_DE "Es zieht sich in seinen Panzer zurück und greift dann mit Wasserstrahlen seine Gegner an."
  6740. .dexstring 40 LAN_EN ""
  6741. str_pokedex_eintraege_8:
  6742. .dexstring 40 LAN_DE "Bei Gefahr zieht es seinen Kopf ein. Die Schwanzspitze ragt jedoch aus dem Panzer heraus."
  6743. .dexstring 40 LAN_EN ""
  6744. str_pokedex_eintraege_9:
  6745. .dexstring 40 LAN_DE "Ein mächtiges und schnelles Pokémon, das auf dem Rücken zwei Hochdruckwasserwerfer trägt."
  6746. .dexstring 40 LAN_EN ""
  6747. str_pokedex_eintraege_10:
  6748. .dexstring 40 LAN_DE "Als Schutz vor Feinden sondert es einen übel riechenden Gestank mit seinen Antennen ab."
  6749. .dexstring 40 LAN_EN ""
  6750. str_pokedex_eintraege_11:
  6751. .dexstring 40 LAN_DE "Der stahlharte Panzer schützt seinen zarten Körper. Es wartet geduldig auf seine Entwicklung."
  6752. .dexstring 40 LAN_EN ""
  6753. str_pokedex_eintraege_12:
  6754. .dexstring 40 LAN_DE "Es liebt Blütenhonig. Es findet selbst Blumen, die sehr wenig Pollen haben."
  6755. .dexstring 40 LAN_EN ""
  6756. str_pokedex_eintraege_13:
  6757. .dexstring 40 LAN_DE "Sein Giftstachel ist gefährlich. Sein hellleuchtender Körper soll Feinde abschrecken."
  6758. .dexstring 40 LAN_EN ""
  6759. str_pokedex_eintraege_14:
  6760. .dexstring 40 LAN_DE "Dieses Pokémon kann sich kaum bewegen. Bei drohender Gefahr verhärtet es seinen Panzer."
  6761. .dexstring 40 LAN_EN ""
  6762. str_pokedex_eintraege_15:
  6763. .dexstring 40 LAN_DE "Dieses Pokémon verfügt über drei Giftstachel. Es kann seine Gegner damit wiederholt stechen."
  6764. .dexstring 40 LAN_EN ""
  6765. str_pokedex_eintraege_16:
  6766. .dexstring 40 LAN_DE "Ein vorwiegend in Wäldern lebendes Pokémon, das zur Verteidigung mit den Flügeln Sand aufwirbelt."
  6767. .dexstring 40 LAN_EN ""
  6768. str_pokedex_eintraege_17:
  6769. .dexstring 40 LAN_DE "Dieses Pokémon verteidigt sein abgegrenztes Areal sorgsam gegen alle Eindringlinge."
  6770. .dexstring 40 LAN_EN ""
  6771. str_pokedex_eintraege_18:
  6772. .dexstring 40 LAN_DE "Dieses Pokémon schnellt bei der Jagd blitzschnell unter Wasser, um seine ahnungslose Beute zu fangen."
  6773. .dexstring 40 LAN_EN ""
  6774. str_pokedex_eintraege_19:
  6775. .dexstring 40 LAN_DE "Es baut sein Nest, wo es Futter findet. Es ist den ganzen Tag auf der Suche nach etwas Essbarem."
  6776. .dexstring 40 LAN_EN ""
  6777. str_pokedex_eintraege_20:
  6778. .dexstring 40 LAN_DE "Es wetzt seine ständig wachsenden Zähne an harten Dingen. Es kann Wände aus Beton zernagen."
  6779. .dexstring 40 LAN_EN ""
  6780. str_pokedex_eintraege_21:
  6781. .dexstring 40 LAN_DE "Es beschützt sein Gebiet stets vor Eindringlingen. Daher fliegt es ständig wild umher."
  6782. .dexstring 40 LAN_EN ""
  6783. str_pokedex_eintraege_22:
  6784. .dexstring 40 LAN_DE "Mit seinen riesigen Flügeln kann dieses Pokémon nahezu pausenlos in der Luft bleiben."
  6785. .dexstring 40 LAN_EN ""
  6786. str_pokedex_eintraege_23:
  6787. .dexstring 40 LAN_DE "Mit dem Alter wird der Körper dieses Pokémon immer länger. Es schläft um Äste gewickelt."
  6788. .dexstring 40 LAN_EN ""
  6789. str_pokedex_eintraege_24:
  6790. .dexstring 40 LAN_DE "Das Muster auf seinem Bauch ähnelt einer Fratze. Schwache Gegner nehmen bereits beim Anblick Reißaus."
  6791. .dexstring 40 LAN_EN ""
  6792. str_pokedex_eintraege_25:
  6793. .dexstring 40 LAN_DE "Es streckt seinen Schwanz nach oben, um seine Umgebung zu prüfen. Häufig fährt ein Blitz hinein."
  6794. .dexstring 40 LAN_EN ""
  6795. str_pokedex_eintraege_26:
  6796. .dexstring 40 LAN_DE "Wenn es sich auflädt, zucken seine Muskeln und es wird aggressiver und kampflustiger."
  6797. .dexstring 40 LAN_EN ""
  6798. str_pokedex_eintraege_27:
  6799. .dexstring 40 LAN_DE "Es gräbt und lebt im Erdboden. Bei Gefahr rollt es sich zum Schutz zu einem Ball zusammen."
  6800. .dexstring 40 LAN_EN ""
  6801. str_pokedex_eintraege_28:
  6802. .dexstring 40 LAN_DE "Wenn es schnell gräbt, können seine Stacheln und Krallen abbrechen. Sie wachsen binnen eines Tages nach."
  6803. .dexstring 40 LAN_EN ""
  6804. str_pokedex_eintraege_29:
  6805. .dexstring 40 LAN_DE "Dieses Pokémon ist sehr klein, verfügt aber über starke Gifte. Das Weibchen hat ein kleineres Horn."
  6806. .dexstring 40 LAN_EN ""
  6807. str_pokedex_eintraege_30:
  6808. .dexstring 40 LAN_DE "Ehe es seine Jungen füttert, zerkaut es das Futter und gibt es ihnen anschließend."
  6809. .dexstring 40 LAN_EN ""
  6810. str_pokedex_eintraege_31:
  6811. .dexstring 40 LAN_DE "Es benutzt seinen schuppigen Körper, um den Höhleneingang als Schutz für seine Jungen zu sperren."
  6812. .dexstring 40 LAN_EN ""
  6813. str_pokedex_eintraege_32:
  6814. .dexstring 40 LAN_DE "Es untersucht die Umgebung, indem es die Ohren spitzt und lauscht. Sein giftiges Horn schützt es."
  6815. .dexstring 40 LAN_EN ""
  6816. str_pokedex_eintraege_33:
  6817. .dexstring 40 LAN_DE "Es überwacht mit seinen riesigen Ohren die Umgebung. Registriert es eine Bewegung, greift es an."
  6818. .dexstring 40 LAN_EN ""
  6819. str_pokedex_eintraege_34:
  6820. .dexstring 40 LAN_DE "Ein Schlag mit seinem gewaltigen Schweif kann einen Telegrafenmast knicken wie Ein Streichholz."
  6821. .dexstring 40 LAN_EN ""
  6822. str_pokedex_eintraege_35:
  6823. .dexstring 40 LAN_DE "Eine Ansammlung von Piepi bei Vollmond tanzen zu sehen, soll Freude verheißen."
  6824. .dexstring 40 LAN_EN ""
  6825. str_pokedex_eintraege_36:
  6826. .dexstring 40 LAN_DE "Es kann eine Nadel hören, die in 1 km Entfernung zu Boden fällt. Es lebt in der Stille der Berge."
  6827. .dexstring 40 LAN_EN ""
  6828. str_pokedex_eintraege_37:
  6829. .dexstring 40 LAN_DE "Dieses Pokémon hat bei seiner Geburt nur einen Schweif, der sich mit zunehmenden Alter aufspaltet."
  6830. .dexstring 40 LAN_EN ""
  6831. str_pokedex_eintraege_38:
  6832. .dexstring 40 LAN_DE "Es hat neun lange Schweife und sein Fell glänzt gülden. Man sagt, es soll 1 000 Jahre alt werden."
  6833. .dexstring 40 LAN_EN ""
  6834. str_pokedex_eintraege_39:
  6835. .dexstring 40 LAN_DE "Wenn es Gesang einsetzt, steigt seine Ausdauer und seine Zuhörer werden in Tiefschlaf versetzt."
  6836. .dexstring 40 LAN_EN ""
  6837. str_pokedex_eintraege_40:
  6838. .dexstring 40 LAN_DE "Sein Fell ist so flauschig, dass, wenn zwei zusammenstehen, sie nicht getrennt werden möchten."
  6839. .dexstring 40 LAN_EN ""
  6840. str_pokedex_eintraege_41:
  6841. .dexstring 40 LAN_DE "Obwohl es keine Augen hat, kann es Hindernisse mithilfe von Ultraschallwellen wahrnehmen."
  6842. .dexstring 40 LAN_EN ""
  6843. str_pokedex_eintraege_42:
  6844. .dexstring 40 LAN_DE "Dieses Pokémon saugt dem Gegner selbst dann noch Energie ab, wenn es zu schwer zum Fliegen wird."
  6845. .dexstring 40 LAN_EN ""
  6846. str_pokedex_eintraege_43:
  6847. .dexstring 40 LAN_DE "Tagsüber versteckt es sich in der kalten Erde, um die Sonne zu meiden. Es wächst im Mondschein."
  6848. .dexstring 40 LAN_EN ""
  6849. str_pokedex_eintraege_44:
  6850. .dexstring 40 LAN_DE "Dieses Pokémon sondert einen übelriechenden Geruch ab. Trotzdem halten einige Leute es im Haus."
  6851. .dexstring 40 LAN_EN ""
  6852. str_pokedex_eintraege_45:
  6853. .dexstring 40 LAN_DE "Je größer die Blütenblätter, desto mehr giftige Pollen sind in der Blüte enthalten."
  6854. .dexstring 40 LAN_EN ""
  6855. str_pokedex_eintraege_46:
  6856. .dexstring 40 LAN_DE "Auf seinem Rücken wachsen Pilze, die man Tochukaso nennt. Die Pilze wachsen mit ihrem Wirt."
  6857. .dexstring 40 LAN_EN ""
  6858. str_pokedex_eintraege_47:
  6859. .dexstring 40 LAN_DE "Parasek wird von einem Pilz, der größer als das Pokémon ist, kontrolliert. Er gibt Giftsporen ab."
  6860. .dexstring 40 LAN_EN ""
  6861. str_pokedex_eintraege_48:
  6862. .dexstring 40 LAN_DE "Seine großen Augen bestehen aus vielen kleinen Augen. Nachts wird es von Licht angezogen."
  6863. .dexstring 40 LAN_EN ""
  6864. str_pokedex_eintraege_49:
  6865. .dexstring 40 LAN_DE "Wer die von ihm verstreuten Schuppen berührt, wird gelähmt und muss sich setzten."
  6866. .dexstring 40 LAN_EN ""
  6867. str_pokedex_eintraege_50:
  6868. .dexstring 40 LAN_DE "Dieses Pokémon lebt 1 m unter der Erde. Es frisst Wurzeln und kommt nur selten an die Oberfläche."
  6869. .dexstring 40 LAN_EN ""
  6870. str_pokedex_eintraege_51:
  6871. .dexstring 40 LAN_DE "Im Kampf gräbt es sich ein und attackiert den Gegner aus einer unvorhersehbaren Richtung."
  6872. .dexstring 40 LAN_EN ""
  6873. str_pokedex_eintraege_52:
  6874. .dexstring 40 LAN_DE "Ein nachtaktives Pokémon. Sieht es etwas Schimmerndes, fangen seine Augen an zu glänzen."
  6875. .dexstring 40 LAN_EN ""
  6876. str_pokedex_eintraege_53:
  6877. .dexstring 40 LAN_DE "Dieses Pokémon hat sehr schönes Fell. Es ist jedoch ein schwer erziehbares Haustier."
  6878. .dexstring 40 LAN_EN ""
  6879. str_pokedex_eintraege_54:
  6880. .dexstring 40 LAN_DE "Es wird permanent von Kopfsschmerzen geplagt. Wird der Schmerz stärker, setzt es geheimnisvolle Kräfte ein."
  6881. .dexstring 40 LAN_EN ""
  6882. str_pokedex_eintraege_55:
  6883. .dexstring 40 LAN_DE "Es taucht bei Sonnenuntergang am Wasser auf. Leuchtet seine Stirn, setzt es telekinetische Kräfte ein."
  6884. .dexstring 40 LAN_EN ""
  6885. str_pokedex_eintraege_56:
  6886. .dexstring 40 LAN_DE "Da es grundlos angreift und nicht zwischen Freund oder Feind unterscheidet, ist es sehr gefährlich."
  6887. .dexstring 40 LAN_EN ""
  6888. str_pokedex_eintraege_57:
  6889. .dexstring 40 LAN_DE "In ganz seltenen Fällen beruhigt sich dieses sehr jähzornige Pokémon und ist für einen Moment friedlich."
  6890. .dexstring 40 LAN_EN ""
  6891. str_pokedex_eintraege_58:
  6892. .dexstring 40 LAN_DE "Es ist sehr freundlich und bleibt den Menschen treu. Durch Bellen und Beißen versucht es, Gegner zu verscheuchen."
  6893. .dexstring 40 LAN_EN ""
  6894. str_pokedex_eintraege_59:
  6895. .dexstring 40 LAN_DE "Dieses Pokémon trägt ein wunderschönes Fell. Es ist obendrein schnell und sehr wendig."
  6896. .dexstring 40 LAN_EN ""
  6897. str_pokedex_eintraege_60:
  6898. .dexstring 40 LAN_DE "Dieses Pokémon kann sehr schlecht laufen. Sein Bauchmuster ist unterschiedlich, je nach Region."
  6899. .dexstring 40 LAN_EN ""
  6900. str_pokedex_eintraege_61:
  6901. .dexstring 40 LAN_DE "Dieses Pokémon kann im Wasser und auch an Land leben. An Land schwitzt es sich den Körper nass."
  6902. .dexstring 40 LAN_EN ""
  6903. str_pokedex_eintraege_62:
  6904. .dexstring 40 LAN_DE "Es hat extrem starke Muskeln und kann durch den Ozean schwimmen, ohne sich ausruhen zu müssen."
  6905. .dexstring 40 LAN_EN ""
  6906. str_pokedex_eintraege_63:
  6907. .dexstring 40 LAN_DE "Es schläft 18 Stunden am Tag. Währenddessen setzt es eine Vielzahl zusätzlicher sensorischer Kräfte ein."
  6908. .dexstring 40 LAN_EN ""
  6909. str_pokedex_eintraege_64:
  6910. .dexstring 40 LAN_DE "Setzt es seine Psycho-Kräfte ein, sondert es Alphawellen ab, die Präzisionsgeräten schaden können."
  6911. .dexstring 40 LAN_EN ""
  6912. str_pokedex_eintraege_65:
  6913. .dexstring 40 LAN_DE "Seine Gehirnzellen vervielfachen sich sein ganzes Leben lang. Daher kann es sich immer an alles erinnern."
  6914. .dexstring 40 LAN_EN ""
  6915. str_pokedex_eintraege_66:
  6916. .dexstring 40 LAN_DE "Es hebt Georok hoch, um seinen Körper zu trainieren. Außerdem übt es sich in jeder Art von Kampfsport."
  6917. .dexstring 40 LAN_EN ""
  6918. str_pokedex_eintraege_67:
  6919. .dexstring 40 LAN_DE "Dieses Pokémon ist superstark. Es kann sich nur mit einem Kraft regulierenden Gürtel bewegen."
  6920. .dexstring 40 LAN_EN ""
  6921. str_pokedex_eintraege_68:
  6922. .dexstring 40 LAN_DE "Seine markigen Arme können innerhalb von nur zwei Sekunden 1 000 Schläge verteilen."
  6923. .dexstring 40 LAN_EN ""
  6924. str_pokedex_eintraege_69:
  6925. .dexstring 40 LAN_DE "Obwohl sein Körper sehr schmal ist, schnappt es blitzschnell nach Beute."
  6926. .dexstring 40 LAN_EN ""
  6927. str_pokedex_eintraege_70:
  6928. .dexstring 40 LAN_DE "Dieses Pokémon lähmt den Gegner mit Giftpuder, bevor es ihn mit Säure erledigt."
  6929. .dexstring 40 LAN_EN ""
  6930. str_pokedex_eintraege_71:
  6931. .dexstring 40 LAN_DE "Dieses Pokémon soll in großen Kolonien tief im Dschungel leben, doch niemand kann dies bestätigen."
  6932. .dexstring 40 LAN_EN ""
  6933. str_pokedex_eintraege_72:
  6934. .dexstring 40 LAN_DE "Sein Körper besteht aus Wasser. Aus seinen kristallartigen Augen verschießt es eigenartige Strahlen."
  6935. .dexstring 40 LAN_EN ""
  6936. str_pokedex_eintraege_73:
  6937. .dexstring 40 LAN_DE "Dieses Pokémon kann die Tentakel bei der Jagd ausfahren, um die Beute leichter zu fangen."
  6938. .dexstring 40 LAN_EN ""
  6939. str_pokedex_eintraege_74:
  6940. .dexstring 40 LAN_DE "Wanderer stolpern in den Bergen häufig über dieses Pokémon, da es wie ein Stein aussieht."
  6941. .dexstring 40 LAN_EN ""
  6942. str_pokedex_eintraege_75:
  6943. .dexstring 40 LAN_DE "Es ist ihm völlig gleichgültig, wenn Stücke aus ihm herausbrechen, während es Berge hinabrollt."
  6944. .dexstring 40 LAN_EN ""
  6945. str_pokedex_eintraege_76:
  6946. .dexstring 40 LAN_DE "Sie rollen Berge hinunter und hinterlassen Spurrillen. Halte dich von diesen Rillen fern."
  6947. .dexstring 40 LAN_EN ""
  6948. str_pokedex_eintraege_77:
  6949. .dexstring 40 LAN_DE "Neugeboren kann es kaum stehen. Durch das Galoppieren werden seine Beine aber schneller und kräftiger."
  6950. .dexstring 40 LAN_EN ""
  6951. str_pokedex_eintraege_78:
  6952. .dexstring 40 LAN_DE "Dieses Pokémon verfolgt schnelle Objekte in der Hoffnung, ein Wettrennen gegen sie zu gewinnen."
  6953. .dexstring 40 LAN_EN ""
  6954. str_pokedex_eintraege_79:
  6955. .dexstring 40 LAN_DE "Es ist stets in Gedanken versunken und niemand weiß, worüber es nachdenkt. Es kann mit seiner Rute gut angeln."
  6956. .dexstring 40 LAN_EN ""
  6957. str_pokedex_eintraege_80:
  6958. .dexstring 40 LAN_DE "Das Muschas an seiner Rute lässt nicht locker, da ein leckerer Geschmack aus seiner Rute strömt."
  6959. .dexstring 40 LAN_EN ""
  6960. str_pokedex_eintraege_81:
  6961. .dexstring 40 LAN_DE "Die Magneten an seinem Körper erzeugen ein Antigravitationsfeld, um es ständig in der Schwebe zu halten."
  6962. .dexstring 40 LAN_EN ""
  6963. str_pokedex_eintraege_82:
  6964. .dexstring 40 LAN_DE "Dieses Pokémon erzeugt seltsame Radiowellen und kann die Lufttemperatur geringfügig anheben."
  6965. .dexstring 40 LAN_EN ""
  6966. str_pokedex_eintraege_83:
  6967. .dexstring 40 LAN_DE "Dieses Pokémon nutzt eine Lauchstange als Waffe. Es setzt sie wie ein Schwert ein."
  6968. .dexstring 40 LAN_EN ""
  6969. str_pokedex_eintraege_84:
  6970. .dexstring 40 LAN_DE "Dieses zweiköpfige Pokémon gilt als plötzliche Mutation. Es rennt bis zu 100 km/h schnell."
  6971. .dexstring 40 LAN_EN ""
  6972. str_pokedex_eintraege_85:
  6973. .dexstring 40 LAN_DE "Lässt ein Feind auch nur einen der drei Köpfe für nur eine Sekunde aus den Augen, wird er sofort gepickt."
  6974. .dexstring 40 LAN_EN ""
  6975. str_pokedex_eintraege_86:
  6976. .dexstring 40 LAN_DE "Dieses Pokémon lebt auf Eisbergen. Es schwimmt im Eiswasser und bricht das Eis mithilfe seines Horns."
  6977. .dexstring 40 LAN_EN ""
  6978. str_pokedex_eintraege_87:
  6979. .dexstring 40 LAN_DE "Sein Körper ist mit reinem, weißem Fell überzogen. Je kälter es wird, desto aktiver wird dieses Pokémon."
  6980. .dexstring 40 LAN_EN ""
  6981. str_pokedex_eintraege_88:
  6982. .dexstring 40 LAN_DE "Dieses Pokémon lebt vorwiegend in schmutzigen Gebieten und ernährt sich von Industrieabfällen."
  6983. .dexstring 40 LAN_EN ""
  6984. str_pokedex_eintraege_89:
  6985. .dexstring 40 LAN_DE "Sie treffen sich an stinkenden Orten, an denen der Schleim sich türmt. Dies merkt man am Gestank."
  6986. .dexstring 40 LAN_EN ""
  6987. str_pokedex_eintraege_90:
  6988. .dexstring 40 LAN_DE "Eine harte Schale schützt dieses Pokémon. Nur wenn es diese öffnet, wird es verwundbar."
  6989. .dexstring 40 LAN_EN ""
  6990. str_pokedex_eintraege_91:
  6991. .dexstring 40 LAN_DE "Austos, die im Meer mit starker Strömung leben, werden groß und entwickeln scharfe Stacheln."
  6992. .dexstring 40 LAN_EN ""
  6993. str_pokedex_eintraege_92:
  6994. .dexstring 40 LAN_DE "Es hat einen gasförmigen Körper. Es kann jeden Gegner mit Giftgas einnebeln und dadurch ersticken."
  6995. .dexstring 40 LAN_EN ""
  6996. str_pokedex_eintraege_93:
  6997. .dexstring 40 LAN_DE "Falls du im Dunkeln das Gefühl hast, beobachtet zu werden und niemand ist zu sehen, ist es bestimmt Alpollo."
  6998. .dexstring 40 LAN_EN ""
  6999. str_pokedex_eintraege_94:
  7000. .dexstring 40 LAN_DE "Es versteckt sich im Schatten. Man sagt, wenn sich ein Gengar versteckt, kühlt es sich um 5 Grad Celsius ab."
  7001. .dexstring 40 LAN_EN ""
  7002. str_pokedex_eintraege_95:
  7003. .dexstring 40 LAN_DE "Dieses Pokémon gräbt auf seiner Suche nach Futter lange Tunnel, in denen sich später Digda einnisten."
  7004. .dexstring 40 LAN_EN ""
  7005. str_pokedex_eintraege_96:
  7006. .dexstring 40 LAN_DE "Traumato versetzt Gegner in den Schlaf und frisst deren Träume. Von Alpträumen wird ihm aber übel."
  7007. .dexstring 40 LAN_EN ""
  7008. str_pokedex_eintraege_97:
  7009. .dexstring 40 LAN_DE "Ein Blick auf das Pendel versetzt einen in drei Sekunden in Schlaf, selbst wenn man gar nicht müde ist."
  7010. .dexstring 40 LAN_EN ""
  7011. str_pokedex_eintraege_98:
  7012. .dexstring 40 LAN_DE "Es kommt vor allem nahe des Meeres vor. Die großen Scheren wachsen nach, wenn sie vom Körper abgetrennt wurden."
  7013. .dexstring 40 LAN_EN ""
  7014. str_pokedex_eintraege_99:
  7015. .dexstring 40 LAN_DE "Seine Scheren werden sehr groß. Hebt es sie zu schnell, verliert es die Balance und strauchelt."
  7016. .dexstring 40 LAN_EN ""
  7017. str_pokedex_eintraege_100:
  7018. .dexstring 40 LAN_DE "Es wurde entdeckt, als man Pokébälle einführte. Es scheint, als gäbe es da einen Zusammenhang."
  7019. .dexstring 40 LAN_EN ""
  7020. str_pokedex_eintraege_101:
  7021. .dexstring 40 LAN_DE "Es speichert eine riesige Menge Elektrizität in seinem Körper. Es explodiert beim kleinsten Ruck."
  7022. .dexstring 40 LAN_EN ""
  7023. str_pokedex_eintraege_102:
  7024. .dexstring 40 LAN_DE "Die sechs Eier kommunizieren telepathisch. Werden sie getrennt, findet sie sich schnell wieder."
  7025. .dexstring 40 LAN_EN ""
  7026. str_pokedex_eintraege_103:
  7027. .dexstring 40 LAN_DE "Seine drei Köpfe denken unabhängig voneinander. Dennoch sind sie nett zueinander und streiten nie."
  7028. .dexstring 40 LAN_EN ""
  7029. str_pokedex_eintraege_104:
  7030. .dexstring 40 LAN_DE "Es trägt immer den Schädel seiner verstorbenen Mutter. Darum weiß niemand, wie sein Gesicht aussieht."
  7031. .dexstring 40 LAN_EN ""
  7032. str_pokedex_eintraege_105:
  7033. .dexstring 40 LAN_DE "Es ist klein und war ursprünglich sehr schwach. Erst als es anfing Knochen einzusetzen, wurde es wild."
  7034. .dexstring 40 LAN_EN ""
  7035. str_pokedex_eintraege_106:
  7036. .dexstring 40 LAN_DE "Wenn es anfängt pausenlos zu treten, kann es seine Beine ausfahren, um fliehende Feinde zu treffen."
  7037. .dexstring 40 LAN_EN ""
  7038. str_pokedex_eintraege_107:
  7039. .dexstring 40 LAN_DE "Die Schläge, die es austeilt, können Beton pulverisieren. Es muss sich im Kampf alle drei Minuten ausruhen."
  7040. .dexstring 40 LAN_EN ""
  7041. str_pokedex_eintraege_108:
  7042. .dexstring 40 LAN_DE "Seine Zunge ist mit klebrigem Speichel bedeckt, der überall haftet. Dies ist sehr nützlich."
  7043. .dexstring 40 LAN_EN ""
  7044. str_pokedex_eintraege_109:
  7045. .dexstring 40 LAN_DE "Gase, die leichter als Luft sind, lassen es schweben. Diese Gase stinken und sind explosiv."
  7046. .dexstring 40 LAN_EN ""
  7047. str_pokedex_eintraege_110:
  7048. .dexstring 40 LAN_DE "Sehr selten führt eine plötzliche Mutation eines Zwillings-Smogon zu einer Verbindung zu Smogmog."
  7049. .dexstring 40 LAN_EN ""
  7050. str_pokedex_eintraege_111:
  7051. .dexstring 40 LAN_DE "Aufgrund seiner kurzen Beine kann es sich nicht umdrehen. Es kann immer nur in eine Richtung laufen."
  7052. .dexstring 40 LAN_EN ""
  7053. str_pokedex_eintraege_112:
  7054. .dexstring 40 LAN_DE "Durch seine panzerähnliche Körperhülle kann es in bis zu 2000 Grad Celsius heißer Lava leben."
  7055. .dexstring 40 LAN_EN ""
  7056. str_pokedex_eintraege_113:
  7057. .dexstring 40 LAN_DE "Es legt mehrere Eier am Tag. Sie sind sehr nahrhaft und außerordentlich schmackhaft."
  7058. .dexstring 40 LAN_EN ""
  7059. str_pokedex_eintraege_114:
  7060. .dexstring 40 LAN_DE "Es berührt alles, was sich bewegt, mit seinen Ranken. Diese Berührungen kitzeln sehr."
  7061. .dexstring 40 LAN_EN ""
  7062. str_pokedex_eintraege_115:
  7063. .dexstring 40 LAN_DE "Fühlt es sich sicher, dann verlässt das Junge den Beutel. Die Mutter behält es ständig im Auge."
  7064. .dexstring 40 LAN_EN ""
  7065. str_pokedex_eintraege_116:
  7066. .dexstring 40 LAN_DE "Dieses Pokémon schießt mit Tinte auf über der Wasseroberfläche fliegende Insekten."
  7067. .dexstring 40 LAN_EN ""
  7068. str_pokedex_eintraege_117:
  7069. .dexstring 40 LAN_DE "Seine Stacheln schützen es. Seine Flossen und Knochen werden bei der Herstellung von Medizin verwendet."
  7070. .dexstring 40 LAN_EN ""
  7071. str_pokedex_eintraege_118:
  7072. .dexstring 40 LAN_DE "Es schwimmt mit fünf Knoten. Wird es angegriffen, wehrt es sich mit seinem scharfen Horn."
  7073. .dexstring 40 LAN_EN ""
  7074. str_pokedex_eintraege_119:
  7075. .dexstring 40 LAN_DE "Im Herbst, zur Paarungszeit, sieht man diese Pokémon kraftvoll Bäche und Flüsse hinaufschwimmen."
  7076. .dexstring 40 LAN_EN ""
  7077. str_pokedex_eintraege_120:
  7078. .dexstring 40 LAN_DE "Es taucht in großer Anzahl an Ufern auf. Nachts leuchtet der Kern in seiner Mitte rot auf."
  7079. .dexstring 40 LAN_EN ""
  7080. str_pokedex_eintraege_121:
  7081. .dexstring 40 LAN_DE "In der Körpermitte befindet sich ein roter Kern, der mysteriöse Radiowellen in die Nacht sendet."
  7082. .dexstring 40 LAN_EN ""
  7083. str_pokedex_eintraege_122:
  7084. .dexstring 40 LAN_DE "Seine Fingerspitzen sondern etwas ab, das die Luft zu einer schützenden Wand werden lässt."
  7085. .dexstring 40 LAN_EN ""
  7086. str_pokedex_eintraege_123:
  7087. .dexstring 40 LAN_DE "Es bewegt sich mit seinen Sensen so schnell durch das Gras, dass es kein Mensch sehen kann."
  7088. .dexstring 40 LAN_EN ""
  7089. str_pokedex_eintraege_124:
  7090. .dexstring 40 LAN_DE "Der beschwingte Gang dieses Pokémon bezaubert Zuschauer und lässt sie im Takt dazu tanzen."
  7091. .dexstring 40 LAN_EN ""
  7092. str_pokedex_eintraege_125:
  7093. .dexstring 40 LAN_DE "Elektrizität bedeckt seinen Körper. Im Dunkeln erstrahlt es in einem bläulichen Ton."
  7094. .dexstring 40 LAN_EN ""
  7095. str_pokedex_eintraege_126:
  7096. .dexstring 40 LAN_DE "Es wurde bei einem Vulkanausbruch geboren. Sein Körper ist von hellen Flammen umgeben."
  7097. .dexstring 40 LAN_EN ""
  7098. str_pokedex_eintraege_127:
  7099. .dexstring 40 LAN_DE "Beim Angriff verdreht es sein Geweih. In Kälteperioden versteckt es sich tief im Wald."
  7100. .dexstring 40 LAN_EN ""
  7101. str_pokedex_eintraege_128:
  7102. .dexstring 40 LAN_DE "Wenn es Tackle einsetzt, geißelt es mit seinen drei Schwänzen wiederholt seinen Körper."
  7103. .dexstring 40 LAN_EN ""
  7104. str_pokedex_eintraege_129:
  7105. .dexstring 40 LAN_DE "Die urzeitlichen Vorfahren dieses Pokémon waren sehr viel stärker als ihre heutigen Nachkommen."
  7106. .dexstring 40 LAN_EN ""
  7107. str_pokedex_eintraege_130:
  7108. .dexstring 40 LAN_DE "Ein gigantisches, sehr kraftvolles Pokémon. Es ist fähig, ganze Städte zu zerstören."
  7109. .dexstring 40 LAN_EN ""
  7110. str_pokedex_eintraege_131:
  7111. .dexstring 40 LAN_DE "Sie sind gutmütig. Da sie selten kämpfen, wurden sie oft gefangen. Ihre Anzahl ist stark reduziert."
  7112. .dexstring 40 LAN_EN ""
  7113. str_pokedex_eintraege_132:
  7114. .dexstring 40 LAN_DE "Es kann seine Zellstruktur so verändern, dass es sich in alles verwandeln kann, was es sieht."
  7115. .dexstring 40 LAN_EN ""
  7116. str_pokedex_eintraege_133:
  7117. .dexstring 40 LAN_DE "Aufgrund einer genetischen Anomalie kann seine Entwicklung viele verschiedene Formen annehmen."
  7118. .dexstring 40 LAN_EN ""
  7119. str_pokedex_eintraege_134:
  7120. .dexstring 40 LAN_DE "Es hat sich so entwickelt, dass es im Wasser leben kann. Im Wasser selbst wird es unsichtbar."
  7121. .dexstring 40 LAN_EN ""
  7122. str_pokedex_eintraege_135:
  7123. .dexstring 40 LAN_DE "Lädt es sich mit Elektrizität auf, steht jedes einzelne seiner Körperhaare steil nach oben."
  7124. .dexstring 40 LAN_EN ""
  7125. str_pokedex_eintraege_136:
  7126. .dexstring 40 LAN_DE "In seinem Körper befindet sich eine Flamme. Seine Körpertemperatur liegt vor dem Kampf bei 900 Grad Celsius."
  7127. .dexstring 40 LAN_EN ""
  7128. str_pokedex_eintraege_137:
  7129. .dexstring 40 LAN_DE "Porygon besteht komplett aus Computerdaten. Es kann sich frei in virtuellen Welten bewegen."
  7130. .dexstring 40 LAN_EN ""
  7131. str_pokedex_eintraege_138:
  7132. .dexstring 40 LAN_DE "Ein prähistorisches Pokémon, das zur Urzeit im Wasser lebte. Es schwimmt, indem es seine zehn Tentakel bewegt."
  7133. .dexstring 40 LAN_EN ""
  7134. str_pokedex_eintraege_139:
  7135. .dexstring 40 LAN_DE "Hat es die Beute erst eingewickelt, lässt es nicht mehr los. Es verspeist sie, indem es sie zerreißt."
  7136. .dexstring 40 LAN_EN ""
  7137. str_pokedex_eintraege_140:
  7138. .dexstring 40 LAN_DE "Man geht davon aus, dass dieses Pokémon vor 300 Millionen Jahren die Strände bevölkerte."
  7139. .dexstring 40 LAN_EN ""
  7140. str_pokedex_eintraege_141:
  7141. .dexstring 40 LAN_DE "Dieses Pokémon ist ein sehr guter Schwimmer. Es attackiert Gegner mit seinen Sichelarmen."
  7142. .dexstring 40 LAN_EN ""
  7143. str_pokedex_eintraege_142:
  7144. .dexstring 40 LAN_DE "Dieses grausame, antike Pokémon flog durch die Luft und stieß sehr hohe und laute Schreie aus."
  7145. .dexstring 40 LAN_EN ""
  7146. str_pokedex_eintraege_143:
  7147. .dexstring 40 LAN_DE "Sein Magen kann jede Art von Nahrung verdauen, selbst wenn sie verschimmelt und verdorben ist."
  7148. .dexstring 40 LAN_EN ""
  7149. str_pokedex_eintraege_144:
  7150. .dexstring 40 LAN_DE "Ein Legendäres Vogel-Pokémon. Es kann Blizzards verursachen, indem es Feuchtigkeit gefriert."
  7151. .dexstring 40 LAN_EN ""
  7152. str_pokedex_eintraege_145:
  7153. .dexstring 40 LAN_DE "Ein Legendäres Vogel-Pokémon, das in Gewitterwolken leben soll. Es kontrolliert Blitze."
  7154. .dexstring 40 LAN_EN ""
  7155. str_pokedex_eintraege_146:
  7156. .dexstring 40 LAN_DE "Eines der Legendären Vogel-Pokémon. Es wird als Bote des Frühlings angesehen."
  7157. .dexstring 40 LAN_EN ""
  7158. str_pokedex_eintraege_147:
  7159. .dexstring 40 LAN_DE "Dieses Pokémon strotzt vor Lebensenergie. Es häutet sich ständig und wird dadurch größer."
  7160. .dexstring 40 LAN_EN ""
  7161. str_pokedex_eintraege_148:
  7162. .dexstring 40 LAN_DE "Die kristallenen Bälle an seinem Schweif ermöglichen es ihm, das Wetter zu beeinflussen."
  7163. .dexstring 40 LAN_EN ""
  7164. str_pokedex_eintraege_149:
  7165. .dexstring 40 LAN_DE "Man sagt, es lebe in den Meeren. Es bringt Schiffbrüchige sicher an Land."
  7166. .dexstring 40 LAN_EN ""
  7167. str_pokedex_eintraege_150:
  7168. .dexstring 40 LAN_DE "Dieses Pokémon ist das Resultat eines jahrelangen und skrupellosen Experimentes."
  7169. .dexstring 40 LAN_EN ""
  7170. str_pokedex_eintraege_151:
  7171. .dexstring 40 LAN_DE "Es beherrscht alle möglichen Attacken, daher sieht man in ihm den Vorfahren aller Pokémon."
  7172. .dexstring 40 LAN_EN ""
  7173. str_pokedex_eintraege_152:
  7174. .dexstring 40 LAN_DE "Ein süßer Duft geht von dem Blatt aus seinem Kopf aus. Es ist ruhig und liegt gerne in der Sonne."
  7175. .dexstring 40 LAN_EN ""
  7176. str_pokedex_eintraege_153:
  7177. .dexstring 40 LAN_DE "Die Knospen an seinem Hals geben ein würziges Aroma ab, das andere aufheitert."
  7178. .dexstring 40 LAN_EN ""
  7179. str_pokedex_eintraege_154:
  7180. .dexstring 40 LAN_DE "Das Aroma aus seiner Blüte enthält Stoffe, die jegliche Aggressivität schwinden lassen."
  7181. .dexstring 40 LAN_EN ""
  7182. str_pokedex_eintraege_155:
  7183. .dexstring 40 LAN_DE "Es ist ruhig und kugelt sich stets zusammen. Zum Schutz entflammt es seinen Rücken."
  7184. .dexstring 40 LAN_EN ""
  7185. str_pokedex_eintraege_156:
  7186. .dexstring 40 LAN_DE "Dreht es dir im Kampf den Rücken zu, wird es dich mit den Flammen seines Rückens angreifen."
  7187. .dexstring 40 LAN_EN ""
  7188. str_pokedex_eintraege_157:
  7189. .dexstring 40 LAN_DE "Es verfügt über eine verheerende Geheimattacke. Es reibt sein Fell, um Explosionen zu erzeugen."
  7190. .dexstring 40 LAN_EN ""
  7191. str_pokedex_eintraege_158:
  7192. .dexstring 40 LAN_DE "Es ist klein, aber zäh und stark. Es zögert nicht, jeden anzugreifen, wenn dieser ihm zu nahe kommt."
  7193. .dexstring 40 LAN_EN ""
  7194. str_pokedex_eintraege_159:
  7195. .dexstring 40 LAN_DE "Verliert es einen seiner Zähne, wächst ein neuer nach. Es hat immer 48 Zähne in seinem Kiefer."
  7196. .dexstring 40 LAN_EN ""
  7197. str_pokedex_eintraege_160:
  7198. .dexstring 40 LAN_DE "Eigentlich bewegt es sich langsam, doch seine Beute greift es blitzschnell an."
  7199. .dexstring 40 LAN_EN ""
  7200. str_pokedex_eintraege_161:
  7201. .dexstring 40 LAN_DE "Es stellt sich auf den Schweif, um weiter zu blicken. Erspäht es einen Feind, schreit es laut auf."
  7202. .dexstring 40 LAN_EN ""
  7203. str_pokedex_eintraege_162:
  7204. .dexstring 40 LAN_DE "Es rollt sich um seine Jungen, wenn diese schlafen sollen. Gegnern begegnet es mit Schnelligkeit."
  7205. .dexstring 40 LAN_EN ""
  7206. str_pokedex_eintraege_163:
  7207. .dexstring 40 LAN_DE "Sein Zeitgefühl ist perfekt. Was auch immer passiert, es behält den Rhythmus, da sein Kopf wackelt."
  7208. .dexstring 40 LAN_EN ""
  7209. str_pokedex_eintraege_164:
  7210. .dexstring 40 LAN_DE "Sein Sehvermögen ist hervorragend. Selbst bei schwachem Licht kann es jedes Detail erkennen."
  7211. .dexstring 40 LAN_EN ""
  7212. str_pokedex_eintraege_165:
  7213. .dexstring 40 LAN_DE "Wird es kalt, versammeln sich viele Ledyba von nah und fern, um sich gegenseitig Wärme zu schenken."
  7214. .dexstring 40 LAN_EN ""
  7215. str_pokedex_eintraege_166:
  7216. .dexstring 40 LAN_DE "Leuchten Sterne am Nachthimmel, schwirrt es umher und verstreut einen strahlenden, leuchtenden Puder."
  7217. .dexstring 40 LAN_EN ""
  7218. str_pokedex_eintraege_167:
  7219. .dexstring 40 LAN_DE "Es spinnt ein Netz aus feinem, aber reißfestem Faden. Dann wartet es auf Beute, die im Netz zappelt."
  7220. .dexstring 40 LAN_EN ""
  7221. str_pokedex_eintraege_168:
  7222. .dexstring 40 LAN_DE "Da es Fäden sowohl mit dem Hinterleib als auch mit dem Mund spinnt, verwechselt man die beiden leicht."
  7223. .dexstring 40 LAN_EN ""
  7224. str_pokedex_eintraege_169:
  7225. .dexstring 40 LAN_DE "Mit seinen vier Flügeln fliegt es so geräuschlos durch die Nacht, dass man es nicht bemerkt."
  7226. .dexstring 40 LAN_EN ""
  7227. str_pokedex_eintraege_170:
  7228. .dexstring 40 LAN_DE "Am Meeresgrund kann es sich nur durch ständiges Flackern seiner Lichter der Umgebung kundtun."
  7229. .dexstring 40 LAN_EN ""
  7230. str_pokedex_eintraege_171:
  7231. .dexstring 40 LAN_DE "Lanturns Licht kann aus großen Tiefen heraufscheinen. Man nennt es auch \qTiefseestern\q."
  7232. .dexstring 40 LAN_EN ""
  7233. str_pokedex_eintraege_172:
  7234. .dexstring 40 LAN_DE "Es kann noch nicht mit Elektrizität umgehen. Es wirft Blitze, wenn es sich freut oder erstaunt ist."
  7235. .dexstring 40 LAN_EN ""
  7236. str_pokedex_eintraege_173:
  7237. .dexstring 40 LAN_DE "Aufgrund seiner ungewöhnlichen Sternform sagt man, es sei auf einem Meteor hierhergereist."
  7238. .dexstring 40 LAN_EN ""
  7239. str_pokedex_eintraege_174:
  7240. .dexstring 40 LAN_DE "Anstatt mit seinen kurzen Beinen zu laufen, hüpft es mit seinem weichen und kuscheligen Körper."
  7241. .dexstring 40 LAN_EN ""
  7242. str_pokedex_eintraege_175:
  7243. .dexstring 40 LAN_DE "Seine Schale ist voll von Freude. Es teilt sein Glück, wenn man es freundlich und gut behandelt."
  7244. .dexstring 40 LAN_EN ""
  7245. str_pokedex_eintraege_176:
  7246. .dexstring 40 LAN_DE "Es wird entmutigt, wenn es unter unfreundlichen Menschen ist. Es kann ohne Flügel niedrig schweben."
  7247. .dexstring 40 LAN_EN ""
  7248. str_pokedex_eintraege_177:
  7249. .dexstring 40 LAN_DE "Da seine Flügel nicht voll ausgebildet sind, bewegt es sich hüpfend. Es starrt immer etwas an."
  7250. .dexstring 40 LAN_EN ""
  7251. str_pokedex_eintraege_178:
  7252. .dexstring 40 LAN_DE "Man sagt, es sei so still und in sich gekehrt, weil es die Zukunft und die Vergangenheit parallel sieht."
  7253. .dexstring 40 LAN_EN ""
  7254. str_pokedex_eintraege_179:
  7255. .dexstring 40 LAN_DE "Sein weiches Fell wird doppelt so dick, wenn sich Elektrizität aufbaut."
  7256. .dexstring 40 LAN_EN ""
  7257. str_pokedex_eintraege_180:
  7258. .dexstring 40 LAN_DE "Sein flauschiges Fell speichert Elektrizität. Seine Gummihaut schützt es vor Stromstößen."
  7259. .dexstring 40 LAN_EN ""
  7260. str_pokedex_eintraege_181:
  7261. .dexstring 40 LAN_DE "Seine Schweifspitze ist so hell, dass viele Verschollene es als Orientierungspunkt nutzen."
  7262. .dexstring 40 LAN_EN ""
  7263. str_pokedex_eintraege_182:
  7264. .dexstring 40 LAN_DE "Sobald die Regenzeit vorbei ist, wird es von der warmen Sonne nach draußen gezogen, wo es tanzt."
  7265. .dexstring 40 LAN_EN ""
  7266. str_pokedex_eintraege_183:
  7267. .dexstring 40 LAN_DE "Seine Schweifspitze ist mit Öl gefüllt, das leichter als Wasser ist, sodass es nicht untergeht."
  7268. .dexstring 40 LAN_EN ""
  7269. str_pokedex_eintraege_184:
  7270. .dexstring 40 LAN_DE "Seine langen Ohren sind hervorragende Sensoren. Mit ihnen kann es Bewegungen im Fluss wahrnehmen."
  7271. .dexstring 40 LAN_EN ""
  7272. str_pokedex_eintraege_185:
  7273. .dexstring 40 LAN_DE "Es tarnt sich als Baum, um nicht angegriffen zu werden. Es hasst Wasser, darum läuft es bei Regen weg."
  7274. .dexstring 40 LAN_EN ""
  7275. str_pokedex_eintraege_186:
  7276. .dexstring 40 LAN_DE "Sind drei oder mehr von ihnen zusammen, lassen sie einen schallenden Ruf erklingen."
  7277. .dexstring 40 LAN_EN ""
  7278. str_pokedex_eintraege_187:
  7279. .dexstring 40 LAN_DE "Es reitet auf dem Wind. Man sagt, wenn sich Hoppspross versammeln, kommt der Frühling bald."
  7280. .dexstring 40 LAN_EN ""
  7281. str_pokedex_eintraege_188:
  7282. .dexstring 40 LAN_DE "Temperaturschwankungen veranlassen es, die Blüte auf seinem Kopf immer zu öffnen oder zu schließen."
  7283. .dexstring 40 LAN_EN ""
  7284. str_pokedex_eintraege_189:
  7285. .dexstring 40 LAN_DE "Auch im stärksten Wind kann es kontrollieren, wo seine Saat auf dem Erdball niedergehen soll."
  7286. .dexstring 40 LAN_EN ""
  7287. str_pokedex_eintraege_190:
  7288. .dexstring 40 LAN_DE "Sein Schweif ist so kräftig, dass es sich stundenlang damit an einem Ast in der Luft halten kann."
  7289. .dexstring 40 LAN_EN ""
  7290. str_pokedex_eintraege_191:
  7291. .dexstring 40 LAN_DE "Es ernährt sich ausschließlich von den Tautropfen, die von den Blättern über ihm hinabfallen."
  7292. .dexstring 40 LAN_EN ""
  7293. str_pokedex_eintraege_192:
  7294. .dexstring 40 LAN_DE "Warmes Sonnenlicht gibt ihm Energie. Daher wandert es stets dem Sonnenlicht hinterher."
  7295. .dexstring 40 LAN_EN ""
  7296. str_pokedex_eintraege_193:
  7297. .dexstring 40 LAN_DE "Schlägt es schnell mit den Flügeln, erzeugt es Schockwellen, durch die sogar Fenster zerbersten."
  7298. .dexstring 40 LAN_EN ""
  7299. str_pokedex_eintraege_194:
  7300. .dexstring 40 LAN_DE "Wenn es am Abend kühler wird, kommen sie an Land, um nach Nahrung zu suchen."
  7301. .dexstring 40 LAN_EN ""
  7302. str_pokedex_eintraege_195:
  7303. .dexstring 40 LAN_DE "Dieses genügsame Pokémon ist sehr umgänglich. Beim Schwimmen stößt es immer wieder gegen Schiffe."
  7304. .dexstring 40 LAN_EN ""
  7305. str_pokedex_eintraege_196:
  7306. .dexstring 40 LAN_DE "Die Spitze seines geteilten Schweifs bebt, wenn es die nächste Attacke seines Feindes voraussagt."
  7307. .dexstring 40 LAN_EN ""
  7308. str_pokedex_eintraege_197:
  7309. .dexstring 40 LAN_DE "Mondlicht hat die genetische Struktur von Evoli verändert. Im Dunkeln wartet es auf Beute."
  7310. .dexstring 40 LAN_EN ""
  7311. str_pokedex_eintraege_198:
  7312. .dexstring 40 LAN_DE "Es versteckt jeden schimmernden Gegenstand. Kramurx und Mauzi rauben sich gegenseitig Beute."
  7313. .dexstring 40 LAN_EN ""
  7314. str_pokedex_eintraege_199:
  7315. .dexstring 40 LAN_DE "Sein feines Gespür und Itellekt zeichnet es aus. Es bleibt in jeder Situation gelassen und besonnen."
  7316. .dexstring 40 LAN_EN ""
  7317. str_pokedex_eintraege_200:
  7318. .dexstring 40 LAN_DE "Es nährt sich von der Angst anderer Wesen und nimmt diese in roten Kugeln auf. Schläft am Tage."
  7319. .dexstring 40 LAN_EN ""
  7320. str_pokedex_eintraege_201:
  7321. .dexstring 40 LAN_DE "Seine Form sieht aus wie antike Schrift. Was war zuerst da? Die Sprache oder Icognito?"
  7322. .dexstring 40 LAN_EN ""
  7323. str_pokedex_eintraege_202:
  7324. .dexstring 40 LAN_DE "Es lebt in der Dunkelheit, um seinen schwarzen Schweif zu verstecken. Es greift nie zuerst an."
  7325. .dexstring 40 LAN_EN ""
  7326. str_pokedex_eintraege_203:
  7327. .dexstring 40 LAN_DE "Während es schläft, hält sein Schweif Wache. Dieser benötigt keinen Schlaf."
  7328. .dexstring 40 LAN_EN ""
  7329. str_pokedex_eintraege_204:
  7330. .dexstring 40 LAN_DE "Es fügt seiner Schale schichtenweise Baumrinde hinzu. Die zusätzliche Belastung ist ihm gleich."
  7331. .dexstring 40 LAN_EN ""
  7332. str_pokedex_eintraege_205:
  7333. .dexstring 40 LAN_DE "Es bleibt stets bei seinem Baum. Es verstreut Teile seiner Schale, um so seine Feinde zu verjagen."
  7334. .dexstring 40 LAN_EN ""
  7335. str_pokedex_eintraege_206:
  7336. .dexstring 40 LAN_DE "Wird es entdeckt, flüchtet dieses Pokémon, indem es sich mit seinem Schweif in den Boden gräbt."
  7337. .dexstring 40 LAN_EN ""
  7338. str_pokedex_eintraege_207:
  7339. .dexstring 40 LAN_DE "Es fliegt direkt auf das Gesicht seiner Feinde zu und injiziert ihnen eine Überdosis Gift."
  7340. .dexstring 40 LAN_EN ""
  7341. str_pokedex_eintraege_208:
  7342. .dexstring 40 LAN_DE "Hoher Druck und hohe Temperaturen haben seinen Körper härter als Stahl werden lassen."
  7343. .dexstring 40 LAN_EN ""
  7344. str_pokedex_eintraege_209:
  7345. .dexstring 40 LAN_DE "Kleine Pokémon fliehen beim Anblick seines Gesichts. Frauen aber finden es niedlich."
  7346. .dexstring 40 LAN_EN ""
  7347. str_pokedex_eintraege_210:
  7348. .dexstring 40 LAN_DE "Es ist trotz seines Äußeren schüchtern. Wird es wütend, schnappt es mit seinen Fängen zu."
  7349. .dexstring 40 LAN_EN ""
  7350. str_pokedex_eintraege_211:
  7351. .dexstring 40 LAN_DE "Um seine Giftstacheln abzufeuern, muss es seinen Körper aufpumpen, indem es 10 l trinkt."
  7352. .dexstring 40 LAN_EN ""
  7353. str_pokedex_eintraege_212:
  7354. .dexstring 40 LAN_DE "Sein Körper ist stahlhart. Es bedroht seine Gegner, indem es die Augen auf seinen Scheren zeigt."
  7355. .dexstring 40 LAN_EN ""
  7356. str_pokedex_eintraege_213:
  7357. .dexstring 40 LAN_DE "In seinem topfförmigen Panzer gelagerte Beeren verwandeln sich im Nu zu einem dickflüssigen Saft."
  7358. .dexstring 40 LAN_EN ""
  7359. str_pokedex_eintraege_214:
  7360. .dexstring 40 LAN_DE "Dieses kräftige Pokémon rammt sein stolzes Horn unter den Rumpf des Gegners und wirft ihn um."
  7361. .dexstring 40 LAN_EN ""
  7362. str_pokedex_eintraege_215:
  7363. .dexstring 40 LAN_DE "Es ernährt sich von Eiern, die es aus Nestern stiehlt. Beute greift es mit seinen scharfen Klauen an."
  7364. .dexstring 40 LAN_EN ""
  7365. str_pokedex_eintraege_216:
  7366. .dexstring 40 LAN_DE "Findet es Honig, leuchtet die Sichel auf seinem Kopf. Es leckt oft seine mit Honig bedeckten Pfoten."
  7367. .dexstring 40 LAN_EN ""
  7368. str_pokedex_eintraege_217:
  7369. .dexstring 40 LAN_DE "Trotz seines riesigen Körpers ist es ein guter Kletterer. Es frisst und schläft in Baumkronen."
  7370. .dexstring 40 LAN_EN ""
  7371. str_pokedex_eintraege_218:
  7372. .dexstring 40 LAN_DE "Sein Körper besteht aus Magma. Bleibt es nicht ständig in Bewegung, kühlt es aus und verhärtet sich."
  7373. .dexstring 40 LAN_EN ""
  7374. str_pokedex_eintraege_219:
  7375. .dexstring 40 LAN_DE "Aus seinem porösen Schneckengehäuse sprudeln Feuerfontänen, die seinen Körper durchfluten."
  7376. .dexstring 40 LAN_EN ""
  7377. str_pokedex_eintraege_220:
  7378. .dexstring 40 LAN_DE "Wenn es etwas Vielversprechendes erschnuppert, dann stürzt es in Windeseile darauf zu."
  7379. .dexstring 40 LAN_EN ""
  7380. str_pokedex_eintraege_221:
  7381. .dexstring 40 LAN_DE "Trotz kurzer Beine rutscht es auf eisigen Flächen nicht aus, da seine Hufe ihm genügend Halt bieten."
  7382. .dexstring 40 LAN_EN ""
  7383. str_pokedex_eintraege_222:
  7384. .dexstring 40 LAN_DE "Es häutet sich ständig und wächst. Seine Kopfspitze wurde als Schatz der Schönheit ausgezeichnet."
  7385. .dexstring 40 LAN_EN ""
  7386. str_pokedex_eintraege_223:
  7387. .dexstring 40 LAN_DE "Es ist äußerst präzise. Es kann mit seinem Wasserschuss Beute erlegen, die 100 m Entfernt ist."
  7388. .dexstring 40 LAN_EN ""
  7389. str_pokedex_eintraege_224:
  7390. .dexstring 40 LAN_DE "Beim Beutefang setzt es seine Tentakel ein. Es zermalmt seine Beute mit seinem steinharten Kopf."
  7391. .dexstring 40 LAN_EN ""
  7392. str_pokedex_eintraege_225:
  7393. .dexstring 40 LAN_DE "Im eingerollten Schweif transportiert es Futter, das es mit denen teilt, die sich verlaufen haben."
  7394. .dexstring 40 LAN_EN ""
  7395. str_pokedex_eintraege_226:
  7396. .dexstring 40 LAN_DE "Zieht elegant durch die Meere und ignoriert dabei Remoraid, die an seinen Flossen haften."
  7397. .dexstring 40 LAN_EN ""
  7398. str_pokedex_eintraege_227:
  7399. .dexstring 40 LAN_DE "Die dornigen Zweige seines Nests bewirken, dass die Flügel seiner Jungen fest und hart werden."
  7400. .dexstring 40 LAN_EN ""
  7401. str_pokedex_eintraege_228:
  7402. .dexstring 40 LAN_DE "Im Morgengrauen schallt sein ominöses Geheule über das Gebiet, das es für sich beansprucht."
  7403. .dexstring 40 LAN_EN ""
  7404. str_pokedex_eintraege_229:
  7405. .dexstring 40 LAN_DE "In alten Zeiten glaubte man, das Heulen dieses Pokémon sei der Ruf des Todes."
  7406. .dexstring 40 LAN_EN ""
  7407. str_pokedex_eintraege_230:
  7408. .dexstring 40 LAN_DE "Man sagt, es hause in Unterwasserhöhlen. Es kann mächtige Strudel generieren, wenn es gähnt."
  7409. .dexstring 40 LAN_EN ""
  7410. str_pokedex_eintraege_231:
  7411. .dexstring 40 LAN_DE "Trotz seiner geringen Größe ist es stark. Es kann einen Erwachsenen mühelos auf dem Rücken tragen."
  7412. .dexstring 40 LAN_EN ""
  7413. str_pokedex_eintraege_232:
  7414. .dexstring 40 LAN_DE "Je größer und länger die Stoßzähne, desto höher ist ihr Rang in der Herde, doch das dauert lange."
  7415. .dexstring 40 LAN_EN ""
  7416. str_pokedex_eintraege_233:
  7417. .dexstring 40 LAN_DE "Interstellare Software wurde installiert, sodass dieses Pokémon sich auch im All bewegen kann."
  7418. .dexstring 40 LAN_EN ""
  7419. str_pokedex_eintraege_234:
  7420. .dexstring 40 LAN_DE "Sein gebogenes Geweih generiert via Luftänderung einen Raum, in dem die Wirklichkeit verzerrt wird."
  7421. .dexstring 40 LAN_EN ""
  7422. str_pokedex_eintraege_235:
  7423. .dexstring 40 LAN_DE "Ist es erwachsen, lässt es sich gern von seinen Kameraden Fußabdrücke auf den Rücken setzen."
  7424. .dexstring 40 LAN_EN ""
  7425. str_pokedex_eintraege_236:
  7426. .dexstring 40 LAN_DE "Es strotzt vor Energie. Um noch stärker zu werden, kämpft es weiter, auch wenn es verloren hat."
  7427. .dexstring 40 LAN_EN ""
  7428. str_pokedex_eintraege_237:
  7429. .dexstring 40 LAN_DE "Lässt du dich von seinen eleganten, anmutigen und tanzartigen Tritten betören, wirst du vermöbelt."
  7430. .dexstring 40 LAN_EN ""
  7431. str_pokedex_eintraege_238:
  7432. .dexstring 40 LAN_DE "Die Lippen sind sein empfindlichster Körperteil. Neue Dinge untersucht es zuerst damit."
  7433. .dexstring 40 LAN_EN ""
  7434. str_pokedex_eintraege_239:
  7435. .dexstring 40 LAN_DE "Es bewegt seine Arme und generiert damit Elektrizität. Diese kann es aber nicht speichern."
  7436. .dexstring 40 LAN_EN ""
  7437. str_pokedex_eintraege_240:
  7438. .dexstring 40 LAN_DE "Durch seinen Körper fließt magmaartiges Blut. Die Körpertemperatur kann auf ca. 600 Grad Celsius steigen."
  7439. .dexstring 40 LAN_EN ""
  7440. str_pokedex_eintraege_241:
  7441. .dexstring 40 LAN_DE "Wenn es gerade ein Junges hat, dann enthält seine Milch mehr Nährstoffe als gewöhnlich."
  7442. .dexstring 40 LAN_EN ""
  7443. str_pokedex_eintraege_242:
  7444. .dexstring 40 LAN_DE "Dieses gutherzige Pokémon pflegt kranke Pokémon gesund. Es spürt die Traurigkeit anderer Lebewesen."
  7445. .dexstring 40 LAN_EN ""
  7446. str_pokedex_eintraege_243:
  7447. .dexstring 40 LAN_DE "Die Regenwolken, die es trägt, ermöglichen ihm Gewitter zu erzeugen. Es strotzt vor Blitzen."
  7448. .dexstring 40 LAN_EN ""
  7449. str_pokedex_eintraege_244:
  7450. .dexstring 40 LAN_DE "Man sagt, wenn es brüllt, bricht irgendwo in der Welt ein Vulkan aus."
  7451. .dexstring 40 LAN_EN ""
  7452. str_pokedex_eintraege_245:
  7453. .dexstring 40 LAN_DE "Man sagt, es sei die Wiedergeburt des Nordwindes. Es kann verschmutztes Wasser im Nu reinigen."
  7454. .dexstring 40 LAN_EN ""
  7455. str_pokedex_eintraege_246:
  7456. .dexstring 40 LAN_DE "Es ernährt sich von Erde. Nachdem es einen Berg verspeist hat, schläft es ein, um zu wachsen."
  7457. .dexstring 40 LAN_EN ""
  7458. str_pokedex_eintraege_247:
  7459. .dexstring 40 LAN_DE "Sein Körper ist hart wie Fels. Es lässt mit Hochdruck Gas ab, um wie eine Rakete nach oben zu schießen."
  7460. .dexstring 40 LAN_EN ""
  7461. str_pokedex_eintraege_248:
  7462. .dexstring 40 LAN_DE "Bei einem Tobsuchtsanfall zerstört es ganze Gebirge und legt Flüsse trocken."
  7463. .dexstring 40 LAN_EN ""
  7464. str_pokedex_eintraege_249:
  7465. .dexstring 40 LAN_DE "Es schläft in einem Tiefseegraben. Schwingt es seine Flügel, entsteht ein Sturm, der 40 Tage dauert."
  7466. .dexstring 40 LAN_EN ""
  7467. str_pokedex_eintraege_250:
  7468. .dexstring 40 LAN_DE "Sein Körper soll in sieben Farben leuchten. Im Flug zieht es einen Regenbogen hinter sich her."
  7469. .dexstring 40 LAN_EN ""
  7470. str_pokedex_eintraege_251:
  7471. .dexstring 40 LAN_DE "Es kann durch die Zeit reisen, aber es erscheint nur zu friedlichen Zeiten."
  7472. .dexstring 40 LAN_EN ""
  7473. str_pokedex_eintraege_252:
  7474. .dexstring 40 LAN_DE "Dank seiner mit winzigen Stacheln besetzten Sohlen haftet es sogar kopfüber an Wänden und Decken."
  7475. .dexstring 40 LAN_EN ""
  7476. str_pokedex_eintraege_253:
  7477. .dexstring 40 LAN_DE "Es lebt im dichten Dschungel. Es springt von Ast zu Ast, wenn es sich einer Beute nähert."
  7478. .dexstring 40 LAN_EN ""
  7479. str_pokedex_eintraege_254:
  7480. .dexstring 40 LAN_DE "Flink zischt es durch den Dschungel. Mit den Blattklingen an seinen Armen schlägt es seine Beute."
  7481. .dexstring 40 LAN_EN ""
  7482. str_pokedex_eintraege_255:
  7483. .dexstring 40 LAN_DE "In seinem Inneren lodert ein Feuer. Es schleudert 1 000 Grad Celsius heiße Feuerbälle."
  7484. .dexstring 40 LAN_EN ""
  7485. str_pokedex_eintraege_256:
  7486. .dexstring 40 LAN_DE "Im Kampf lodert sein inneres Feuer hoch auf. Wo seine mächtigen Tritte landen, wächst kein Gras mehr."
  7487. .dexstring 40 LAN_EN ""
  7488. str_pokedex_eintraege_257:
  7489. .dexstring 40 LAN_DE "Mühelos springt es selbst über 30-stöckige Häuser. Sein Feuerschlag fügt dem Gegner Verbrennungen zu."
  7490. .dexstring 40 LAN_EN ""
  7491. str_pokedex_eintraege_258:
  7492. .dexstring 40 LAN_DE "Die Flosse auf seinem Kopf prüft die Strömung des Wassers. Dieses Pokémon kann Felsen heben."
  7493. .dexstring 40 LAN_EN ""
  7494. str_pokedex_eintraege_259:
  7495. .dexstring 40 LAN_DE "Der zähe Morast seiner Heimat hat seine Beine gestählt und ihnen gewaltige Kraft verliehen."
  7496. .dexstring 40 LAN_EN ""
  7497. str_pokedex_eintraege_260:
  7498. .dexstring 40 LAN_DE "Schon ein Hieb seiner steinharten Arme schlägt selbst den stärksten Felsen zu Bruch."
  7499. .dexstring 40 LAN_EN ""
  7500. str_pokedex_eintraege_261:
  7501. .dexstring 40 LAN_DE "Ein beharrliches Pokémon, das seine Beute jagt, bis diese erschöpft ist."
  7502. .dexstring 40 LAN_EN ""
  7503. str_pokedex_eintraege_262:
  7504. .dexstring 40 LAN_DE "Es jagt in Rudeln von ungefähr zehn Magnayen. Beim Einkreisen der Beute arbeiten sie perfekt zusammen."
  7505. .dexstring 40 LAN_EN ""
  7506. str_pokedex_eintraege_263:
  7507. .dexstring 40 LAN_DE "Ein sehr neugieriges Pokémon. Es zeigt an allem Interesse, daher läuft es zickzack."
  7508. .dexstring 40 LAN_EN ""
  7509. str_pokedex_eintraege_264:
  7510. .dexstring 40 LAN_DE "Es stürzt sich mit 100 km/h auf Beute. Aber es kann nur geradeaus laufen und die Jagd misslingt oft."
  7511. .dexstring 40 LAN_EN ""
  7512. str_pokedex_eintraege_265:
  7513. .dexstring 40 LAN_DE "Es isst am liebsten Blätter. Wird es von einem Staralili angegriffen, verteidigt es sich mit Stacheln."
  7514. .dexstring 40 LAN_EN ""
  7515. str_pokedex_eintraege_266:
  7516. .dexstring 40 LAN_DE "Es bindet sich mit Seide an Äste und trinkt Regenwasser, während es starr auf seine Entwicklung wartet."
  7517. .dexstring 40 LAN_EN ""
  7518. str_pokedex_eintraege_267:
  7519. .dexstring 40 LAN_DE "Es besitzt ein aggressives Wesen. Es sticht seinen Rüssel in seine Beute und saugt sie aus."
  7520. .dexstring 40 LAN_EN ""
  7521. str_pokedex_eintraege_268:
  7522. .dexstring 40 LAN_DE "Es vergisst keinen Angriff, den es im Kokon erdulden musste. Nach der Entwicklung sinnt es auf Rache."
  7523. .dexstring 40 LAN_EN ""
  7524. str_pokedex_eintraege_269:
  7525. .dexstring 40 LAN_DE "Wird es angegriffen, flattert es mit den Flügeln und verteilt giftigen Puder. Es ist nachtaktiv."
  7526. .dexstring 40 LAN_EN ""
  7527. str_pokedex_eintraege_270:
  7528. .dexstring 40 LAN_DE "Es sieht aus wie eine Wasserpflanze. Es dient den Pokémon, die nicht schwimmen können, als Fähre."
  7529. .dexstring 40 LAN_EN ""
  7530. str_pokedex_eintraege_271:
  7531. .dexstring 40 LAN_DE "Es hat ein spitzbübisches Wesen. Sieht es einen Angler, zieht es an der Angelschnur, um ihn zu ärgern."
  7532. .dexstring 40 LAN_EN ""
  7533. str_pokedex_eintraege_272:
  7534. .dexstring 40 LAN_DE "Hört es fröhliche Musik, füllen sich seine Muskeln mit Energie. Es muss dann einfach tanzen."
  7535. .dexstring 40 LAN_EN ""
  7536. str_pokedex_eintraege_273:
  7537. .dexstring 40 LAN_DE "Es sieht aus wie eine Eichel, die am Baum hängt. Es liebt es, andere Pokémon zu erschrecken."
  7538. .dexstring 40 LAN_EN ""
  7539. str_pokedex_eintraege_274:
  7540. .dexstring 40 LAN_DE "Lebt tief im Wald. Es baut sich eine Flöte aus den Blättern seines Kopfes. Ihr Ton verbreitet Schrecken."
  7541. .dexstring 40 LAN_EN ""
  7542. str_pokedex_eintraege_275:
  7543. .dexstring 40 LAN_DE "Seine großen Fächer erzeugen Böen, die eine Geschwindigkeit von 30 m/s erreichen können."
  7544. .dexstring 40 LAN_EN ""
  7545. str_pokedex_eintraege_276:
  7546. .dexstring 40 LAN_DE "Es ist sehr mutig und stellt sich auch starken Gegnern. Es sucht ständig nach warmen Regionen."
  7547. .dexstring 40 LAN_EN ""
  7548. str_pokedex_eintraege_277:
  7549. .dexstring 40 LAN_DE "Findet es Beute, stürzt es sich aus großer Höhe darauf und packt sie mit seinen spitzen Krallen."
  7550. .dexstring 40 LAN_EN ""
  7551. str_pokedex_eintraege_278:
  7552. .dexstring 40 LAN_DE "Es lässt sich vom Wind der Meere treiben, als wäre es ein Segelflugzeug."
  7553. .dexstring 40 LAN_EN ""
  7554. str_pokedex_eintraege_279:
  7555. .dexstring 40 LAN_DE "Es taucht seinen großen Schnabel ins Wasser und fängt so eine Menge Beute."
  7556. .dexstring 40 LAN_EN ""
  7557. str_pokedex_eintraege_280:
  7558. .dexstring 40 LAN_DE "Es erfasst warme Gefühle von Menschen und Pokémon mit seinen Hörnern und wärmt sich daran auf."
  7559. .dexstring 40 LAN_EN ""
  7560. str_pokedex_eintraege_281:
  7561. .dexstring 40 LAN_DE "Seine Psycho-Kräfte erlauben es ihm, den Raum um sich zu verformen und so in die Zukunft zu sehen."
  7562. .dexstring 40 LAN_EN ""
  7563. str_pokedex_eintraege_282:
  7564. .dexstring 40 LAN_DE "Erzeugt ein kleines schwarzes Loch mithilfe all seiner Psycho-Kräfte, um seinen Trainer zu schützen."
  7565. .dexstring 40 LAN_EN ""
  7566. str_pokedex_eintraege_283:
  7567. .dexstring 40 LAN_DE "Scheinbar reitet es auf dem Wasser. Es lockt seine Beute mit einem süßen Duft an."
  7568. .dexstring 40 LAN_EN ""
  7569. str_pokedex_eintraege_284:
  7570. .dexstring 40 LAN_DE "Dank seiner vier Flügel kann es frei in alle Richtungen fliegen, sogar seitwärts und rückwärts."
  7571. .dexstring 40 LAN_EN ""
  7572. str_pokedex_eintraege_285:
  7573. .dexstring 40 LAN_DE "Es setzt an seinem Kopf Giftsporen frei. Werden diese eingeatmet, verursachen sie Schmerzen."
  7574. .dexstring 40 LAN_EN ""
  7575. str_pokedex_eintraege_286:
  7576. .dexstring 40 LAN_DE "Erst lässt es den Gegner seine giftigen Sporen einatmen, dann traktiert es ihn mit Boxschlägen."
  7577. .dexstring 40 LAN_EN ""
  7578. str_pokedex_eintraege_287:
  7579. .dexstring 40 LAN_DE "Allein bei Bummelz' Anblick werden Gegner von Trägheit gepackt und schlummern alsbald ein."
  7580. .dexstring 40 LAN_EN ""
  7581. str_pokedex_eintraege_288:
  7582. .dexstring 40 LAN_DE "Würde es sich nicht bewegen, würde sein Stress unerträglich und es ginge ihm augenblicklich schlechter."
  7583. .dexstring 40 LAN_EN ""
  7584. str_pokedex_eintraege_289:
  7585. .dexstring 40 LAN_DE "Das faulste Pokémon der Welt. Es bewegt sich nur, wenn alles Essbare in Reichweite verputzt ist."
  7586. .dexstring 40 LAN_EN ""
  7587. str_pokedex_eintraege_290:
  7588. .dexstring 40 LAN_DE "Manches Nincada lebt bis zu zehn Jahre unter der Erde und saugt Nährstoffe aus Baumwurzeln."
  7589. .dexstring 40 LAN_EN ""
  7590. str_pokedex_eintraege_291:
  7591. .dexstring 40 LAN_DE "Es bewegt sich so schnell, dass es manchmal unsichtbar zu sein scheint. Es liebt Baumsaft."
  7592. .dexstring 40 LAN_EN ""
  7593. str_pokedex_eintraege_292:
  7594. .dexstring 40 LAN_DE "Ein sehr spezielles Pokémon, das irgendwie in einem Pokéball auftaucht, wenn Nincada sich entwickelt."
  7595. .dexstring 40 LAN_EN ""
  7596. str_pokedex_eintraege_293:
  7597. .dexstring 40 LAN_DE "Sein Schrei ist so laut wie ein Düsenflugzeug. Bei Gefahr vertreibt es damit seine Feinde."
  7598. .dexstring 40 LAN_EN ""
  7599. str_pokedex_eintraege_294:
  7600. .dexstring 40 LAN_DE "Die Schockwellen, die durch sein Rufen entstehen, können einen LKW umkippen."
  7601. .dexstring 40 LAN_EN ""
  7602. str_pokedex_eintraege_295:
  7603. .dexstring 40 LAN_DE "Sein Heuler hört man in 10 km Entfernung. Es gibt alle Arten von Geräuschen von sich."
  7604. .dexstring 40 LAN_EN ""
  7605. str_pokedex_eintraege_296:
  7606. .dexstring 40 LAN_DE "Sein hartes Training macht es stärker. Es ist ein tapferes Pokémon, das jeder Attacke trotzen kann."
  7607. .dexstring 40 LAN_EN ""
  7608. str_pokedex_eintraege_297:
  7609. .dexstring 40 LAN_DE "Es liebt das Kräftemessen mit großen Pokémon. Mit seinem Armwurf kann es LKW durch die Luft werfen."
  7610. .dexstring 40 LAN_EN ""
  7611. str_pokedex_eintraege_298:
  7612. .dexstring 40 LAN_DE "Es legt sich mit starken Gegnern an, indem es seinen großen, mit Nährstoffen gefüllten Schweif umherschwingt."
  7613. .dexstring 40 LAN_EN ""
  7614. str_pokedex_eintraege_299:
  7615. .dexstring 40 LAN_DE "Seine magnetische Nase zeigt stets gen Norden. Reisende überprüfen Nasgnet, um sich zu orientieren."
  7616. .dexstring 40 LAN_EN ""
  7617. str_pokedex_eintraege_300:
  7618. .dexstring 40 LAN_DE "Es zeigt gerne seine niedliche Seite, indem es seinen eigenen Schweif jagt, bis ihm schwindelig wird."
  7619. .dexstring 40 LAN_EN ""
  7620. str_pokedex_eintraege_301:
  7621. .dexstring 40 LAN_DE "Dieses Pokémon ist bei weiblichen Trainern aufgrund seines Fells beliebt."
  7622. .dexstring 40 LAN_EN ""
  7623. str_pokedex_eintraege_302:
  7624. .dexstring 40 LAN_DE "Es versteckt sich im Dunkeln von Höhlen. Seine Augen sind Edelsteine."
  7625. .dexstring 40 LAN_EN ""
  7626. str_pokedex_eintraege_303:
  7627. .dexstring 40 LAN_DE "Auf seinem Kopf befindet sich ein riesiger Kiefer, der aus Hörnern besteht. Er kann Eisen zermalmen."
  7628. .dexstring 40 LAN_EN ""
  7629. str_pokedex_eintraege_304:
  7630. .dexstring 40 LAN_DE "Entwickelt es sich, wirft es seinen alten Stahlpanzer ab und bildet einen neuen aus."
  7631. .dexstring 40 LAN_EN ""
  7632. str_pokedex_eintraege_305:
  7633. .dexstring 40 LAN_DE "Ist verrückt nach Eisenerz. Bei Revierkämpfen stoßen Stollrak einander mit ihren Stahlkörpern."
  7634. .dexstring 40 LAN_EN ""
  7635. str_pokedex_eintraege_306:
  7636. .dexstring 40 LAN_DE "Auf der Suche nach Eisen, seiner Nahrung, gräbt es mit seinen Stahlhörnern sogar Tunnel durch Felsen."
  7637. .dexstring 40 LAN_EN ""
  7638. str_pokedex_eintraege_307:
  7639. .dexstring 40 LAN_DE "Es isst gerade mal eine Beere am Tag. Durch Hunger wird sein Geist ruhiger und schärfer."
  7640. .dexstring 40 LAN_EN ""
  7641. str_pokedex_eintraege_308:
  7642. .dexstring 40 LAN_DE "Mit Yoga-Training hat es seine Psycho-Kräfte geschärft und ahnt so die Attacken seiner Gegner voraus."
  7643. .dexstring 40 LAN_EN ""
  7644. str_pokedex_eintraege_309:
  7645. .dexstring 40 LAN_DE "Die Elektrizität, die es im Fell speichert, nutzt es, um seine Muskeln zu stimulieren."
  7646. .dexstring 40 LAN_EN ""
  7647. str_pokedex_eintraege_310:
  7648. .dexstring 40 LAN_DE "Es zeigt sich selten den Menschen. Man sagt, dass es sein Nest baut, wo der Blitz eingeschlagen hat."
  7649. .dexstring 40 LAN_EN ""
  7650. str_pokedex_eintraege_311:
  7651. .dexstring 40 LAN_DE "Es holt sich Energie aus Telegrafenmasten. Wenn es diese entlädt, hört man ein lautes Prasseln."
  7652. .dexstring 40 LAN_EN ""
  7653. str_pokedex_eintraege_312:
  7654. .dexstring 40 LAN_DE "Es feuert Freunde an. Sind diese im Begriff zu verlieren, gibt sein Körper immer mehr Funken ab."
  7655. .dexstring 40 LAN_EN ""
  7656. str_pokedex_eintraege_313:
  7657. .dexstring 40 LAN_DE "Es kommuniziert mit anderen, indem es sein Hinterteil zum Leuchten bringt. Es liebt Illumises Duft."
  7658. .dexstring 40 LAN_EN ""
  7659. str_pokedex_eintraege_314:
  7660. .dexstring 40 LAN_DE "Sein süßer Duft leitet Volbeat an, Zeichen aus Licht an den Nachthimmel zu malen."
  7661. .dexstring 40 LAN_EN ""
  7662. str_pokedex_eintraege_315:
  7663. .dexstring 40 LAN_DE "Gibt man ihm besonders nahrhaftes Quellwasser zu trinken, entwickelt es Blüten in seltenen Farben."
  7664. .dexstring 40 LAN_EN ""
  7665. str_pokedex_eintraege_316:
  7666. .dexstring 40 LAN_DE "Sein Körper besteht fast nur aus Magen. Herz und Hirn sind winzig. Sein Magensaft verdaut alles."
  7667. .dexstring 40 LAN_EN ""
  7668. str_pokedex_eintraege_317:
  7669. .dexstring 40 LAN_DE "Es verschluckt alles in einem Stück und sondert giftige Stoffe ab, mit denen es Gegner besprüht."
  7670. .dexstring 40 LAN_EN ""
  7671. str_pokedex_eintraege_318:
  7672. .dexstring 40 LAN_DE "Schwärme von Kanivanha haben in Dschungelflüssen schon so manches Boot zerbissen und versenkt."
  7673. .dexstring 40 LAN_EN ""
  7674. str_pokedex_eintraege_319:
  7675. .dexstring 40 LAN_DE "Seine Zähne durchdringen sogar Eisen. Es schwimmt mit 120 km/h und wird \qTyrann des Meeres\q genannt."
  7676. .dexstring 40 LAN_EN ""
  7677. str_pokedex_eintraege_320:
  7678. .dexstring 40 LAN_DE "Es hüpft gerne wie ein Ball herum. Je mehr Meerwasser es trinkt, desto höher kann es springen."
  7679. .dexstring 40 LAN_EN ""
  7680. str_pokedex_eintraege_321:
  7681. .dexstring 40 LAN_DE "Das größte Pokémon. Es kann mit nur einem Atemzug in Tiefen bis 3 000 Meter tauchen."
  7682. .dexstring 40 LAN_EN ""
  7683. str_pokedex_eintraege_322:
  7684. .dexstring 40 LAN_DE "In seinem Körper fließt 1 200 Grad Celsius heißes Magma. Nach Einsatz einer Feuer-Attacke schrumpft sein Höcker."
  7685. .dexstring 40 LAN_EN ""
  7686. str_pokedex_eintraege_323:
  7687. .dexstring 40 LAN_DE "Seine Vulkanhöcker brechen nur alle 10 Jahre aus oder wenn es richtig wütend ist."
  7688. .dexstring 40 LAN_EN ""
  7689. str_pokedex_eintraege_324:
  7690. .dexstring 40 LAN_DE "Große Gruppen Qurtel siedeln sich in stillgelegten Bergwerken an und graben dort emsig nach Kohle."
  7691. .dexstring 40 LAN_EN ""
  7692. str_pokedex_eintraege_325:
  7693. .dexstring 40 LAN_DE "Es hüpft beständig umher, wobei es seinen Schweif als Feder verwendet. Nur so bleibt sein Herz aktiv."
  7694. .dexstring 40 LAN_EN ""
  7695. str_pokedex_eintraege_326:
  7696. .dexstring 40 LAN_DE "Mit schwarzen Perlen verstärkt es seine Psycho-Kräfte. Mit einem Tanz kontrolliert es seine Gegner."
  7697. .dexstring 40 LAN_EN ""
  7698. str_pokedex_eintraege_327:
  7699. .dexstring 40 LAN_DE "Die Wahrscheinlichkeit, dass zwei gleich gemusterte Pandir sich begegnen, ist vier Milliarden zu eins."
  7700. .dexstring 40 LAN_EN ""
  7701. str_pokedex_eintraege_328:
  7702. .dexstring 40 LAN_DE "Es baut sich ein trichterförmiges Loch, aus dem es kein Entrinnen gibt, und wartet, bis Beute hineinfällt."
  7703. .dexstring 40 LAN_EN ""
  7704. str_pokedex_eintraege_329:
  7705. .dexstring 40 LAN_DE "Die Schallwellen, die es durch eine hohe Flügelschlagfrequenz erzeugt, verursachen heftige Kopfschmerzen."
  7706. .dexstring 40 LAN_EN ""
  7707. str_pokedex_eintraege_330:
  7708. .dexstring 40 LAN_DE "Auch bekannt als \qGeist der Wüste\q. Es versteckt sich in Sandstürmen, die es durch seinen Flügelschlag erzeugt."
  7709. .dexstring 40 LAN_EN ""
  7710. str_pokedex_eintraege_331:
  7711. .dexstring 40 LAN_DE "Es wächst an trockenen Orten mit wenig Niederschlag. Nur einmal im Jahr bildet es eine gelbe Blüte."
  7712. .dexstring 40 LAN_EN ""
  7713. str_pokedex_eintraege_332:
  7714. .dexstring 40 LAN_DE "Gruppen von Noktuska folgen müden Wüstenreisenden und warten, bis diese bewegungsunfähig werden."
  7715. .dexstring 40 LAN_EN ""
  7716. str_pokedex_eintraege_333:
  7717. .dexstring 40 LAN_DE "Aus irgendeinem Grund setzt es sich gerne auf den Kopf von Menschen und tut so, als sei es ein Hut."
  7718. .dexstring 40 LAN_EN ""
  7719. str_pokedex_eintraege_334:
  7720. .dexstring 40 LAN_DE "Es schwebt gemächlich durch den Himmel. Sein wunderschönes Summen gibt einem das Gefühl zu träumen."
  7721. .dexstring 40 LAN_EN ""
  7722. str_pokedex_eintraege_335:
  7723. .dexstring 40 LAN_DE "Seit Generationen ist es mit Vipitis verfeindet. Seine scharfen Klauen sind seine stärksten Waffen."
  7724. .dexstring 40 LAN_EN ""
  7725. str_pokedex_eintraege_336:
  7726. .dexstring 40 LAN_DE "Die flinken Angriffe von Sengo kontert es mit seinem messerscharfen Schweif, aus dem Gift austritt."
  7727. .dexstring 40 LAN_EN ""
  7728. str_pokedex_eintraege_337:
  7729. .dexstring 40 LAN_DE "Da es in Vollmondnächten aktiv wird, sagt man ihm nach, mit den Mondphase in Verbindung zu stehen."
  7730. .dexstring 40 LAN_EN ""
  7731. str_pokedex_eintraege_338:
  7732. .dexstring 40 LAN_DE "Da es seine Energie aus Sonnenlicht gewinnt, ist es tagsüber am stärksten. Wenn es sich dreht, leuchtet es."
  7733. .dexstring 40 LAN_EN ""
  7734. str_pokedex_eintraege_339:
  7735. .dexstring 40 LAN_DE "Es bedeckt seinen Körper mit einer schleimigen Substanz und kann sich so aus Umklammerungen winden."
  7736. .dexstring 40 LAN_EN ""
  7737. str_pokedex_eintraege_340:
  7738. .dexstring 40 LAN_DE "Sein Revier hat es im Sumpfland. Nähert sich ein Feind, zappelt es wie wild und erzeugt so Erdbeben."
  7739. .dexstring 40 LAN_EN ""
  7740. str_pokedex_eintraege_341:
  7741. .dexstring 40 LAN_DE "Ein robustes Pokémon, das sich jeder Umgebung anpassen kann. Seine Zangen geben keine Beute frei."
  7742. .dexstring 40 LAN_EN ""
  7743. str_pokedex_eintraege_342:
  7744. .dexstring 40 LAN_DE "Dieser Grobian ergreift andere Pokémon mit seinen Scheren und wirft sie aus dem Teich."
  7745. .dexstring 40 LAN_EN ""
  7746. str_pokedex_eintraege_343:
  7747. .dexstring 40 LAN_DE "Es bewegt sich, indem es auf seinem Fuß kreiselt. Vereinzelt sieht man Puppance, die kopfüber kreiseln."
  7748. .dexstring 40 LAN_EN ""
  7749. str_pokedex_eintraege_344:
  7750. .dexstring 40 LAN_DE "In die Puppe, die Menschen vor 20 000 Jahren aus Lehm formten, ist anscheinend Leben eingefahren."
  7751. .dexstring 40 LAN_EN ""
  7752. str_pokedex_eintraege_345:
  7753. .dexstring 40 LAN_DE "Vor 100 Millionen Jahren lebte dieses Pokémon auf dem Meeresgrund. Die Wissenschaft belebte es neu."
  7754. .dexstring 40 LAN_EN ""
  7755. str_pokedex_eintraege_346:
  7756. .dexstring 40 LAN_DE "Es fängt Beute mit seinen acht Tentakeln. Ehe es sie verspeist, löst es sie mit einer starken Säure auf."
  7757. .dexstring 40 LAN_EN ""
  7758. str_pokedex_eintraege_347:
  7759. .dexstring 40 LAN_DE "Ein Vorfahre der Pokémon, der aus einem Fossil neu belebt wurde. Es lebte im Meer und jagte mit Klauen."
  7760. .dexstring 40 LAN_EN ""
  7761. str_pokedex_eintraege_348:
  7762. .dexstring 40 LAN_DE "Es spießt die Beute mit seinen Scheren auf, ehe es sie verspeist. Den Körper umgibt ein robuster Panzer."
  7763. .dexstring 40 LAN_EN ""
  7764. str_pokedex_eintraege_349:
  7765. .dexstring 40 LAN_DE "Es frisst einfach alles und kann daher auch in verschmutzter Umgebung leben. Niemand beachtet es."
  7766. .dexstring 40 LAN_EN ""
  7767. str_pokedex_eintraege_350:
  7768. .dexstring 40 LAN_DE "Milotic ist atemberaubend schön. Man sagt, dass diejenigen, die es sehen, vergessen zu kämpfen."
  7769. .dexstring 40 LAN_EN ""
  7770. str_pokedex_eintraege_351:
  7771. .dexstring 40 LAN_DE "Formeo kann seine Gestalt ändern. Seine Zellen reagieren auf Temperatur- schwankungen und Feuchtigkeit."
  7772. .dexstring 40 LAN_EN ""
  7773. str_pokedex_eintraege_352:
  7774. .dexstring 40 LAN_DE "Es kann nach Belieben seine Farbe ändern. Nur das gezackte Muster auf seinem Bauch bleibt gleich."
  7775. .dexstring 40 LAN_EN ""
  7776. str_pokedex_eintraege_353:
  7777. .dexstring 40 LAN_DE "Man sagt, durch sein Horn ernähre es sich von Rachsucht und Neid. Erst nachts wird es richtig aktiv."
  7778. .dexstring 40 LAN_EN ""
  7779. str_pokedex_eintraege_354:
  7780. .dexstring 40 LAN_DE "Dieses Pokémon war eine Puppe, die weggeworfen wurde. Es sucht nun das Kind, das dies getan hat."
  7781. .dexstring 40 LAN_EN ""
  7782. str_pokedex_eintraege_355:
  7783. .dexstring 40 LAN_DE "Verbissen verfolgt es seine Beute überallhin. Doch sobald die Sonne aufgeht, ist die Jagd vorbei."
  7784. .dexstring 40 LAN_EN ""
  7785. str_pokedex_eintraege_356:
  7786. .dexstring 40 LAN_DE "Blickt man direkt in den Feuerball in seinem Inneren, wird einem die Seele ausgesaugt."
  7787. .dexstring 40 LAN_EN ""
  7788. str_pokedex_eintraege_357:
  7789. .dexstring 40 LAN_DE "Sein Hals trägt zweimal im Jahr süße Früchte. Kinder in den südlichen Tropen naschen oft davon."
  7790. .dexstring 40 LAN_EN ""
  7791. str_pokedex_eintraege_358:
  7792. .dexstring 40 LAN_DE "Mit seinem Saugnapf hängt es sich an Äste oder unter Vordächer. Es kennt sieben verschiedene Schreie."
  7793. .dexstring 40 LAN_EN ""
  7794. str_pokedex_eintraege_359:
  7795. .dexstring 40 LAN_DE "Es spürt drohende Katastrophen und erscheint nur dann, wenn es andere vor der Gefahr warnen will."
  7796. .dexstring 40 LAN_EN ""
  7797. str_pokedex_eintraege_360:
  7798. .dexstring 40 LAN_DE "Es wird stärker, indem es andere ständig anrempelt. Es liebt Süßigkeiten."
  7799. .dexstring 40 LAN_EN ""
  7800. str_pokedex_eintraege_361:
  7801. .dexstring 40 LAN_DE "Gerüchten zufolge sammeln sich Schneppke unter riesigen Blättern und leben dort friedlich zusammen."
  7802. .dexstring 40 LAN_EN ""
  7803. str_pokedex_eintraege_362:
  7804. .dexstring 40 LAN_DE "Um sich zu schützen, umgibt es seinen Körper mit einer Rüstung aus Eis."
  7805. .dexstring 40 LAN_EN ""
  7806. str_pokedex_eintraege_363:
  7807. .dexstring 40 LAN_DE "Es rollt über Eisschollen, um Land zu erreichen, da sein Körper zum Schwimmen nicht geeignet ist."
  7808. .dexstring 40 LAN_EN ""
  7809. str_pokedex_eintraege_364:
  7810. .dexstring 40 LAN_DE "Die Nerven in seiner Nase sind sehr empfindlich. Sieht es etwas Neues, berührt es es zuerst mit der Nase."
  7811. .dexstring 40 LAN_EN ""
  7812. str_pokedex_eintraege_365:
  7813. .dexstring 40 LAN_DE "Mit seinen Stoßzähnen bricht es durch Eis. Eine Speckschicht schützt es vor Kälte und Angriffen."
  7814. .dexstring 40 LAN_EN ""
  7815. str_pokedex_eintraege_366:
  7816. .dexstring 40 LAN_DE "Es ist durch einen harten Panzer geschützt. Einmal im Leben stellt es eine bezaubernde Perle her."
  7817. .dexstring 40 LAN_EN ""
  7818. str_pokedex_eintraege_367:
  7819. .dexstring 40 LAN_DE "Es lebt tief im Meer. Sein Schweif ist wie ein kleiner Fisch geformt. Mit ihm lockt es Beute an."
  7820. .dexstring 40 LAN_EN ""
  7821. str_pokedex_eintraege_368:
  7822. .dexstring 40 LAN_DE "Es lebt auf dem Grund des Meeres. Im Frühling wirkt die Farbe seines Körpers viel kräftiger."
  7823. .dexstring 40 LAN_EN ""
  7824. str_pokedex_eintraege_369:
  7825. .dexstring 40 LAN_DE "Tiefseeforscher fanden dieses seltene Pokémon, das sich in 100 Millionen Jahren nicht verändert hat."
  7826. .dexstring 40 LAN_EN ""
  7827. str_pokedex_eintraege_370:
  7828. .dexstring 40 LAN_DE "Es lebt in warmen Meeren. Man sagt, dass Verliebte, die es sehen, mit ewiger Liebe gesegnet sind."
  7829. .dexstring 40 LAN_EN ""
  7830. str_pokedex_eintraege_371:
  7831. .dexstring 40 LAN_DE "Mit seinen robusten Nackenmuskeln und seinem stahlharten Kopf kann es sogar Felsen zertrümmern."
  7832. .dexstring 40 LAN_EN ""
  7833. str_pokedex_eintraege_372:
  7834. .dexstring 40 LAN_DE "Die Zellen seines Panzers fingen an, sich zu verändern. Er fällt ab, sobald sich das Pokémon entwickelt."
  7835. .dexstring 40 LAN_EN ""
  7836. str_pokedex_eintraege_373:
  7837. .dexstring 40 LAN_DE "Wenn es wütend ist, gerät es außer Kontrolle. Es zerstört alles mit seinen Klauen und mit Feuer."
  7838. .dexstring 40 LAN_EN ""
  7839. str_pokedex_eintraege_374:
  7840. .dexstring 40 LAN_DE "Es kommuniziert mit anderen durch magnetische Impulse. Im Schwarm bilden sie eine perfekte Einheit."
  7841. .dexstring 40 LAN_EN ""
  7842. str_pokedex_eintraege_375:
  7843. .dexstring 40 LAN_DE "Das Pokémon besteht aus zwei Tanhel. Es bekommt selbst dann keinen Kratzer, wenn ein Jet es streift."
  7844. .dexstring 40 LAN_EN ""
  7845. str_pokedex_eintraege_376:
  7846. .dexstring 40 LAN_DE "Dank seiner vier vernetzten Hirne kann es Gegner besser als ein Supercomputer mit komplizierten Formeln analysieren."
  7847. .dexstring 40 LAN_EN ""
  7848. str_pokedex_eintraege_377:
  7849. .dexstring 40 LAN_DE "Sein Körper besteht aus Stein. Bricht im Kampf etwas heraus, wird es durch Stein wieder ersetzt."
  7850. .dexstring 40 LAN_EN ""
  7851. str_pokedex_eintraege_378:
  7852. .dexstring 40 LAN_DE "Es heißt, es habe Jahrtausende lang im Ewigen Eis geschlummert. Selbst Magma schmilzt es nicht."
  7853. .dexstring 40 LAN_EN ""
  7854. str_pokedex_eintraege_379:
  7855. .dexstring 40 LAN_DE "Im Laufe der Jahrtausende, die es unterirdisch lebte, wurde sein Körper durch Druck und Wärme hart."
  7856. .dexstring 40 LAN_EN ""
  7857. str_pokedex_eintraege_380:
  7858. .dexstring 40 LAN_DE "Sie ist zwar klein, aber nicht zu unterschätzen. Ihre telekinetischen Kräfte können Berge versetzen."
  7859. .dexstring 40 LAN_EN ""
  7860. str_pokedex_eintraege_381:
  7861. .dexstring 40 LAN_DE "Sie ist zwar noch kein vollent- wickelter Drache, weist aber inzwischen enorme Kräfte auf."
  7862. .dexstring 40 LAN_EN ""
  7863. str_pokedex_eintraege_382:
  7864. .dexstring 40 LAN_DE "Geschichten sagen, dass dieses Pokémon ein Nachfahrer eines legendären Ritter des Himmels sei."
  7865. .dexstring 40 LAN_EN ""
  7866. str_pokedex_eintraege_383:
  7867. .dexstring 40 LAN_DE "Es kommuniziert durch Telepathie. Sein Daunenkleid bricht das Licht, sodass es unsichtbar wird."
  7868. .dexstring 40 LAN_EN ""
  7869. str_pokedex_eintraege_384:
  7870. .dexstring 40 LAN_DE "Bereits in jungen Jahren ist Mamoi ein sehr intelligentes Pokémon. Es vergisst Gesichter niemals!"
  7871. .dexstring 40 LAN_EN ""
  7872. str_pokedex_eintraege_385:
  7873. .dexstring 40 LAN_DE "Ein sehr friedlich gesinntes Pokémon, welches Kämpfe lieber aus dem Weg geht."
  7874. .dexstring 40 LAN_EN ""
  7875. str_pokedex_eintraege_386:
  7876. .dexstring 40 LAN_DE "Seine hohe Intelligez und Geschwindigkeit sind auf seine Vorfahren zurückzuführen."
  7877. .dexstring 40 LAN_EN ""
  7878. str_pokedex_eintraege_387:
  7879. .dexstring 40 LAN_DE "Ein hochintelligentes Pokémon. Wenn es im Flug seine Flügel nach hinten legt, ist es schneller als ein Jet."
  7880. .dexstring 40 LAN_EN ""
  7881. str_pokedex_eintraege_388:
  7882. .dexstring 40 LAN_DE "Der Legende nach erschuf sein Regen das Meer. Es und Groudon lieferten sich einen langen Kampf."
  7883. .dexstring 40 LAN_EN ""
  7884. str_pokedex_eintraege_389:
  7885. .dexstring 40 LAN_DE "Sein Feuer erschuf einst das Land. Es und Kyogre lieferten sich einen langen Kampf."
  7886. .dexstring 40 LAN_EN ""
  7887. str_pokedex_eintraege_390:
  7888. .dexstring 40 LAN_DE "Da es in der Ozonschicht hoch über den Wolken lebt, bekam es bis vor Kurzem noch niemand zu Gesicht."
  7889. .dexstring 40 LAN_EN ""
  7890. str_pokedex_eintraege_391:
  7891. .dexstring 40 LAN_DE "Man sagt, es kann alle 1 000 Jahre für eine Woche jeden Wunsch erfüllen."
  7892. .dexstring 40 LAN_EN ""
  7893. str_pokedex_eintraege_392:
  7894. .dexstring 40 LAN_DE "Ein außerirdischer Virus kam mit einem Meteor auf die Erde. Seine DNA mutierte. So entstand Deoxys."
  7895. .dexstring 40 LAN_EN ""
  7896. str_pokedex_eintraege_393:
  7897. .dexstring 40 LAN_DE "Im Sonnenlicht betreibt Sein ganzer Körper Photosynthese. Sein Panzer besteht aus hartem Lehm."
  7898. .dexstring 40 LAN_EN ""
  7899. str_pokedex_eintraege_394:
  7900. .dexstring 40 LAN_DE "Es lebt in der Nähe von Wasser in Wäldern. Tagsüber verlässt es diese, um ein Sonnenbad zu nehmen."
  7901. .dexstring 40 LAN_EN ""
  7902. str_pokedex_eintraege_395:
  7903. .dexstring 40 LAN_DE "Kleine Pokémon fangen manchmal an, auf dem bewegungslosen Rücken Nester zu bauen."
  7904. .dexstring 40 LAN_EN ""
  7905. str_pokedex_eintraege_396:
  7906. .dexstring 40 LAN_DE "Das Feuer an seinem Hinterteil wird durch Gase im Bauch genährt. Selbst Regen löscht es nicht."
  7907. .dexstring 40 LAN_EN ""
  7908. str_pokedex_eintraege_397:
  7909. .dexstring 40 LAN_DE "Es kontrolliert die Stärke des Feuers auf seinem Schweif geschickt, um Gegner auf Distanz zu halten."
  7910. .dexstring 40 LAN_EN ""
  7911. str_pokedex_eintraege_398:
  7912. .dexstring 40 LAN_DE "Es hält den Gegner mit flinken Bewegungen zum Narren. Im Kampf setzt es alle Gliedmaßen ein."
  7913. .dexstring 40 LAN_EN ""
  7914. str_pokedex_eintraege_399:
  7915. .dexstring 40 LAN_DE "Einmischung kann es gar nicht leiden. Es ist bockig und fasst nur schwer Zutrauen zu seinem Trainer."
  7916. .dexstring 40 LAN_EN ""
  7917. str_pokedex_eintraege_400:
  7918. .dexstring 40 LAN_DE "Pliprin sind Einzelgänger. Ein Schlag ihrer kräftigen Flügel haut selbst große Bäume entzwei."
  7919. .dexstring 40 LAN_EN ""
  7920. str_pokedex_eintraege_401:
  7921. .dexstring 40 LAN_DE "Die drei Hörner, die aus dem Schnabel wachsen, stehen für Kraft. Ein Anführer hat die größten Hörner."
  7922. .dexstring 40 LAN_EN ""
  7923. str_pokedex_eintraege_402:
  7924. .dexstring 40 LAN_DE "Ihr Schwarm ist stets groß. Obwohl es kleine Pokémon sind, schwingen sie ihre Flügel mit enormer Kraft."
  7925. .dexstring 40 LAN_EN ""
  7926. str_pokedex_eintraege_403:
  7927. .dexstring 40 LAN_DE "Es lebt in Wäldern und auf Wiesen. Treffen Schwärme aufeinander, streiten sie sich um das Revier."
  7928. .dexstring 40 LAN_EN ""
  7929. str_pokedex_eintraege_404:
  7930. .dexstring 40 LAN_DE "Wird Staravia zu Staraptor, verlässt es die Gruppe und lebt allein. Seine Spannweite ist gigantisch."
  7931. .dexstring 40 LAN_EN ""
  7932. str_pokedex_eintraege_405:
  7933. .dexstring 40 LAN_DE "Es kanbbert ständig an Holz und Steinen, um seine Vorderzähne zu kürzen. Es nistet am Wasser."
  7934. .dexstring 40 LAN_EN ""
  7935. str_pokedex_eintraege_406:
  7936. .dexstring 40 LAN_DE "Es baut sein Nest, indem es in Flüssen Dämme aus Schlamm und Ästen baut. Ein fleißiger Arbeiter."
  7937. .dexstring 40 LAN_EN ""
  7938. str_pokedex_eintraege_407:
  7939. .dexstring 40 LAN_DE "Wenn seine zwei Antennen sich berühren, erklingt ein Ruf wie das Spiel eines Xylophons."
  7940. .dexstring 40 LAN_EN ""
  7941. str_pokedex_eintraege_408:
  7942. .dexstring 40 LAN_DE "Über seine Melodien teilt es seine Gefühle mit. Wissenschaftler untersuchen das Muster der Melodien."
  7943. .dexstring 40 LAN_EN ""
  7944. str_pokedex_eintraege_409:
  7945. .dexstring 40 LAN_DE "In Gefahr blendet es seinen Gegner mit seinem Fell und flieht, während der Gegner einen Moment blind ist."
  7946. .dexstring 40 LAN_EN ""
  7947. str_pokedex_eintraege_410:
  7948. .dexstring 40 LAN_DE "Seine Krallen geben Elektrizität ab, die stark genug ist, jemanden bewusstlos zu machen."
  7949. .dexstring 40 LAN_EN ""
  7950. str_pokedex_eintraege_411:
  7951. .dexstring 40 LAN_DE "Beim Aufspüren von Gefahren sind Luxtras hellseherischen Fähigkeiten äußerst hilfreich."
  7952. .dexstring 40 LAN_EN ""
  7953. str_pokedex_eintraege_412:
  7954. .dexstring 40 LAN_DE "Im Winter schließt es die Knospe. Im Frühjahr öffnet es die Knospe und gibt Pollen ab."
  7955. .dexstring 40 LAN_EN ""
  7956. str_pokedex_eintraege_413:
  7957. .dexstring 40 LAN_DE "Mit den Bewegungen eines Tänzers holt es aus und schlägt mit Ranken um sich, die giftige Dornen haben."
  7958. .dexstring 40 LAN_EN ""
  7959. str_pokedex_eintraege_414:
  7960. .dexstring 40 LAN_DE "Es wurde aus einem ballartigen, eisernen Fossil geschaffen. Es schlägt Beute mit einem Kopfstoß."
  7961. .dexstring 40 LAN_EN ""
  7962. str_pokedex_eintraege_415:
  7963. .dexstring 40 LAN_DE "Sein dicker Schädelknochen trotzt jedem Angriff. Gleichzeitig stoppt er jedoch sein Hirnwachstum."
  7964. .dexstring 40 LAN_EN ""
  7965. str_pokedex_eintraege_416:
  7966. .dexstring 40 LAN_DE "Es reibt sein Gesicht an Baumstämmen, um es zu polieren. Es ist leicht, es von hinten anzugreifen."
  7967. .dexstring 40 LAN_EN ""
  7968. str_pokedex_eintraege_417:
  7969. .dexstring 40 LAN_DE "Stellen sie sich Seite an Seite, kann kein Gegner hindurchbrechen. So schützen sie auch ihre Jungen."
  7970. .dexstring 40 LAN_EN ""
  7971. str_pokedex_eintraege_418:
  7972. .dexstring 40 LAN_DE "Wird sein Umhang im Kampf zerstört, macht es sich schnell aus dem, was es findet, einen neuen."
  7973. .dexstring 40 LAN_EN ""
  7974. str_pokedex_eintraege_419:
  7975. .dexstring 40 LAN_DE "Als sich Burmy entwickelte, wurde sein Umhang Teil des Körpers. Es legt den Umhang niemals ab."
  7976. .dexstring 40 LAN_EN ""
  7977. str_pokedex_eintraege_420:
  7978. .dexstring 40 LAN_DE "Es liebt Honig und stiehlt den Honig, der von Wadribie gesammelt wurde."
  7979. .dexstring 40 LAN_EN ""
  7980. str_pokedex_eintraege_421:
  7981. .dexstring 40 LAN_DE "Dieses Trio ist von Geburt an zusammen. Fleißig bringt es Blütenhonig zu Honweisel."
  7982. .dexstring 40 LAN_EN ""
  7983. str_pokedex_eintraege_422:
  7984. .dexstring 40 LAN_DE "Sein Bauch ist die Wabe für die Larven. Es füttert ihre Larven mit dem Honig, den Wadribie sammelt."
  7985. .dexstring 40 LAN_EN ""
  7986. str_pokedex_eintraege_423:
  7987. .dexstring 40 LAN_DE "Um gespeicherte Elektrizität zu teilen, reiben zwei von ihnen ihre Backentaschen aneinander."
  7988. .dexstring 40 LAN_EN ""
  7989. str_pokedex_eintraege_424:
  7990. .dexstring 40 LAN_DE "Es schwimmt, indem es seine beiden Schweife wie eine Schiffsschraube rotieren lässt."
  7991. .dexstring 40 LAN_EN ""
  7992. str_pokedex_eintraege_425:
  7993. .dexstring 40 LAN_DE "Da es seit jeher Beute im Wasser jagt, entwickelte es einen Rettungsring."
  7994. .dexstring 40 LAN_EN ""
  7995. str_pokedex_eintraege_426:
  7996. .dexstring 40 LAN_DE "Es saugt Nährstoffe, die in seinem Bällchen enthalten sind, und nutzt die Energie für seine Entwicklung."
  7997. .dexstring 40 LAN_EN ""
  7998. str_pokedex_eintraege_427:
  7999. .dexstring 40 LAN_DE "Spürt es Sonnenlicht, öffnet es seine Blütenblätter und nimmt die Energie der Sonnenstrahlen auf."
  8000. .dexstring 40 LAN_EN ""
  8001. str_pokedex_eintraege_428:
  8002. .dexstring 40 LAN_DE "Nicht seinen Körper zusammendrücken, sonst sickert eine seltsame lilafarbene Flüssigkeit aus!"
  8003. .dexstring 40 LAN_EN ""
  8004. str_pokedex_eintraege_429:
  8005. .dexstring 40 LAN_DE "In Urzeiten muss es einen großen Schutzpanzer besessen haben. Es lebt in kleinen Wasserstellen."
  8006. .dexstring 40 LAN_EN ""
  8007. str_pokedex_eintraege_430:
  8008. .dexstring 40 LAN_DE "Wenn es hungrig ist, knackt es Nüsse mit seinen beiden Schweifen. Nur selten verwendet es die Arme."
  8009. .dexstring 40 LAN_EN ""
  8010. str_pokedex_eintraege_431:
  8011. .dexstring 40 LAN_DE "Ein Pokémon, entstanden aus den Gefühlen von Menschen und Pokémon. Es mag feuchte Jahreszeiten."
  8012. .dexstring 40 LAN_EN ""
  8013. str_pokedex_eintraege_432:
  8014. .dexstring 40 LAN_DE "Tagsüber treibt es faul vor sich hin, nachts fliegt es mit anderen umher. Niemand weiß wohin."
  8015. .dexstring 40 LAN_EN ""
  8016. str_pokedex_eintraege_433:
  8017. .dexstring 40 LAN_DE "Nimmt es Gefahr wahr, richtet es seine Ohren auf. In kalten Nächten vergräbt es den Kopf in seinem Fell."
  8018. .dexstring 40 LAN_EN ""
  8019. str_pokedex_eintraege_434:
  8020. .dexstring 40 LAN_DE "Es ist extrem vorsichtig. Wenn es Gefahr wittert, macht es sich mit flinken Sprüngen aus dem Staub."
  8021. .dexstring 40 LAN_EN ""
  8022. str_pokedex_eintraege_435:
  8023. .dexstring 40 LAN_DE "Sein bizarrer, bannfluchartiger Ruf quält seine Gegner. Es verschwindet so plötzlich, wie es auftaucht."
  8024. .dexstring 40 LAN_EN ""
  8025. str_pokedex_eintraege_436:
  8026. .dexstring 40 LAN_DE "Ein nachtaktives Pokémon, das sich in Schwärmen mit Kramurx durch die Nacht bewegt."
  8027. .dexstring 40 LAN_EN ""
  8028. str_pokedex_eintraege_437:
  8029. .dexstring 40 LAN_DE "Es schlägt mit Krallen zu oder schnurrt, je nachdem, ob es gerade wütend oder zutraulich ist."
  8030. .dexstring 40 LAN_EN ""
  8031. str_pokedex_eintraege_438:
  8032. .dexstring 40 LAN_DE "Behagt ihm die Behausung eines anderen Pokémon, bleibt Shnurgarst einfach da und nistet sich dort ein."
  8033. .dexstring 40 LAN_EN ""
  8034. str_pokedex_eintraege_439:
  8035. .dexstring 40 LAN_DE "In seinem Maul befindet sich eine Kugel, die beim Hopsen ein klingelndes Geräusch erzeugt."
  8036. .dexstring 40 LAN_EN ""
  8037. str_pokedex_eintraege_440:
  8038. .dexstring 40 LAN_DE "Um sich zu schützen, versprüht es eine Substanz aus seinem Hinterleib, die 24 Stunden stinkt."
  8039. .dexstring 40 LAN_EN ""
  8040. str_pokedex_eintraege_441:
  8041. .dexstring 40 LAN_DE "Es spritzt eine stinkende Substanz aus seinem Schweif. Hat sie lange gegärt, stinkt sie stärker."
  8042. .dexstring 40 LAN_EN ""
  8043. str_pokedex_eintraege_442:
  8044. .dexstring 40 LAN_DE "Sein Körper sieht aus, als seien Teile davon in alten Gräbern gefunden worden."
  8045. .dexstring 40 LAN_EN ""
  8046. str_pokedex_eintraege_443:
  8047. .dexstring 40 LAN_DE "Früher verehrten die Menschen die Bronzong, weil sie sich davon Regen oder gute Ernten erhofften."
  8048. .dexstring 40 LAN_EN ""
  8049. str_pokedex_eintraege_444:
  8050. .dexstring 40 LAN_DE "Mag es trocken. Gleicht es seinen Wasserhaushalt aus, entweicht ihm Wasser, das wie Tränen geformt ist."
  8051. .dexstring 40 LAN_EN ""
  8052. str_pokedex_eintraege_445:
  8053. .dexstring 40 LAN_DE "Es ahmt seinen Gegner nach. Der kann den Blick danach nicht von ihm abwenden."
  8054. .dexstring 40 LAN_EN ""
  8055. str_pokedex_eintraege_446:
  8056. .dexstring 40 LAN_DE "In seinem Beutel trägt es einen runden, eiförmigen Stein, den es Freunden gibt."
  8057. .dexstring 40 LAN_EN ""
  8058. str_pokedex_eintraege_447:
  8059. .dexstring 40 LAN_DE "Es kann die menschliche Sprache nachahmen. Versammeln sie sich, bringen sich alle dasselbe bei."
  8060. .dexstring 40 LAN_EN ""
  8061. str_pokedex_eintraege_448:
  8062. .dexstring 40 LAN_DE "Ein PKMN, das aus 108 Geistern besteht. Es ist an einen Spalt in einem mysteriösen Stein gebunden."
  8063. .dexstring 40 LAN_EN ""
  8064. str_pokedex_eintraege_449:
  8065. .dexstring 40 LAN_DE "Es nistet in kleinen Löchern in Höhlenwänden. Es springt Beute, die sich zu nah heranwagt, an."
  8066. .dexstring 40 LAN_EN ""
  8067. str_pokedex_eintraege_450:
  8068. .dexstring 40 LAN_DE "Die Rohedelsteine, die beim Erweitern seiner Höhle zum Vorschein kommen, hortet es in seinem Nest."
  8069. .dexstring 40 LAN_EN ""
  8070. str_pokedex_eintraege_451:
  8071. .dexstring 40 LAN_DE "Es fliegt mit der Geschwindigkeit eines Kampfjets. Es lässt nicht zu, dass ihm seine Beute entkommt."
  8072. .dexstring 40 LAN_EN ""
  8073. str_pokedex_eintraege_452:
  8074. .dexstring 40 LAN_DE "Unter seinem langen Fell versteckt es Nahrung. Aber es vergisst, dass es sie dort versteckt hat."
  8075. .dexstring 40 LAN_EN ""
  8076. str_pokedex_eintraege_453:
  8077. .dexstring 40 LAN_DE "Es kommuniziert mit seinen Artgenossen über Wellen, die je nach Gefühlslage eine andere Form annehmen."
  8078. .dexstring 40 LAN_EN ""
  8079. str_pokedex_eintraege_454:
  8080. .dexstring 40 LAN_DE "Es nimmt die Aura seines Gegners wahr. So kann es dessen Gedanken und Bewegungen erkennen."
  8081. .dexstring 40 LAN_EN ""
  8082. str_pokedex_eintraege_455:
  8083. .dexstring 40 LAN_DE "Es lebt in ausgetrockneten Gebieten. Statt zu schwitzen, sondert sein Körper Sand ab."
  8084. .dexstring 40 LAN_EN ""
  8085. str_pokedex_eintraege_456:
  8086. .dexstring 40 LAN_DE "Das weit aufgerissene Maul demonstriert seine Stärke. Es attackiert mit gebündeltem Sand."
  8087. .dexstring 40 LAN_EN ""
  8088. str_pokedex_eintraege_457:
  8089. .dexstring 40 LAN_DE "Es wartet im Sand versteckt auf Beute, die es sich mit seinem giftigen Schweif krallt."
  8090. .dexstring 40 LAN_EN ""
  8091. str_pokedex_eintraege_458:
  8092. .dexstring 40 LAN_DE "In seinen Armen steckt so viel Kraft, dass es mit seinen giftigen Krallen Autos zerquetschen kann."
  8093. .dexstring 40 LAN_EN ""
  8094. str_pokedex_eintraege_459:
  8095. .dexstring 40 LAN_DE "In seinen Backen sammelt sich Gift. Es versucht, Beute zu überraschen und mit Giftfingern zu schnappen."
  8096. .dexstring 40 LAN_EN ""
  8097. str_pokedex_eintraege_460:
  8098. .dexstring 40 LAN_DE "Verfügt über einen Giftsack an seiner Kehle. Quakt es, schäumt das Gift und wird so noch stärker."
  8099. .dexstring 40 LAN_EN ""
  8100. str_pokedex_eintraege_461:
  8101. .dexstring 40 LAN_DE "Sein süßlich riechender Speichel zieht Beute an, die es frisst. Es braucht einen Tag, sie zu fressen."
  8102. .dexstring 40 LAN_EN ""
  8103. str_pokedex_eintraege_462:
  8104. .dexstring 40 LAN_DE "Die Linie an seiner Seite kann Sonnenlicht speichern. Nachts leuchtet es sehr intensiv."
  8105. .dexstring 40 LAN_EN ""
  8106. str_pokedex_eintraege_463:
  8107. .dexstring 40 LAN_DE "Um nicht von Fressfeinden entdeckt zu werden, krabbelt es auf zwei Brustflossen am Meeresboden."
  8108. .dexstring 40 LAN_EN ""
  8109. str_pokedex_eintraege_464:
  8110. .dexstring 40 LAN_DE "Da es nah an der Meeresoberfläche schwimmt, kann man sein Rückenmuster von Schiffen aus erspähen."
  8111. .dexstring 40 LAN_EN ""
  8112. str_pokedex_eintraege_465:
  8113. .dexstring 40 LAN_DE "Im Winter steigt es bis zum fuß der Berge herab. Im Frühjahr kehrt es auf den Gipfel zurück."
  8114. .dexstring 40 LAN_EN ""
  8115. str_pokedex_eintraege_466:
  8116. .dexstring 40 LAN_DE "Es haust im Gebirge, wo ewiger Schnee liegt, und löst Blizzards aus, um sich zu verstecken."
  8117. .dexstring 40 LAN_EN ""
  8118. str_pokedex_eintraege_467:
  8119. .dexstring 40 LAN_DE "Es lebt in schneereichen Gebieten. Snibunna senden einander Signale, indem sie Zeichen in Rinde ritzen."
  8120. .dexstring 40 LAN_EN ""
  8121. str_pokedex_eintraege_468:
  8122. .dexstring 40 LAN_DE "Es entwickelte sich, als es einem besonderen Magnetfeld ausgesetzt wurde."
  8123. .dexstring 40 LAN_EN ""
  8124. str_pokedex_eintraege_469:
  8125. .dexstring 40 LAN_DE "Ihr Speichel enthält eine ätzende Substanz, die bei Kontakt mit der Haut anhaltende Taubheit erzeugt."
  8126. .dexstring 40 LAN_EN ""
  8127. str_pokedex_eintraege_470:
  8128. .dexstring 40 LAN_DE "Es feuert Kleinstein aus seinen Handflächen. Durch seinen Schützer erträgt es sogar Vulkanausbrüche."
  8129. .dexstring 40 LAN_EN ""
  8130. str_pokedex_eintraege_471:
  8131. .dexstring 40 LAN_DE "Es umwickelt Beute, indem es seine Arme, die aus Ranken bestehen, verlängert."
  8132. .dexstring 40 LAN_EN ""
  8133. str_pokedex_eintraege_472:
  8134. .dexstring 40 LAN_DE "Es berührt Gegner mit seinen beiden Schweifspitzen und entlädt dann 20 000 V."
  8135. .dexstring 40 LAN_EN ""
  8136. str_pokedex_eintraege_473:
  8137. .dexstring 40 LAN_DE "Aus den Enden seiner Arme schießen Feuerbälle mit 2000 Grad. Es lebt in Vulkankratern."
  8138. .dexstring 40 LAN_EN ""
  8139. str_pokedex_eintraege_474:
  8140. .dexstring 40 LAN_DE "Es heißt, Togekiss erscheint in friedlichen Zeiten und verteilt alle möglichen Wohltaten."
  8141. .dexstring 40 LAN_EN ""
  8142. str_pokedex_eintraege_475:
  8143. .dexstring 40 LAN_DE "Seine bevorzugte Strategie besteht darin, seine Gegner aus dem Flug blitzartig zur Strecke zu bringen."
  8144. .dexstring 40 LAN_EN ""
  8145. str_pokedex_eintraege_476:
  8146. .dexstring 40 LAN_DE "An klaren Tagen erzeugt Folipurba saubere Luft, indem es Photosynthese betreibt."
  8147. .dexstring 40 LAN_EN ""
  8148. str_pokedex_eintraege_477:
  8149. .dexstring 40 LAN_DE "Erzeugt ein Diamantstaubgestöber durch das Einfrieren der Luft um sich herum."
  8150. .dexstring 40 LAN_EN ""
  8151. str_pokedex_eintraege_478:
  8152. .dexstring 40 LAN_DE "Es hängt kopfüber von einem Ast und beobachtet seine Beute. Bei Gelegenheit stürzt es sich auf sie."
  8153. .dexstring 40 LAN_EN ""
  8154. str_pokedex_eintraege_479:
  8155. .dexstring 40 LAN_DE "Die beeindruckenden Stoßzähne dieser Pokémon sind aus Eis. Nach der Eiszeit nahm ihre Population ab."
  8156. .dexstring 40 LAN_EN ""
  8157. str_pokedex_eintraege_480:
  8158. .dexstring 40 LAN_DE "Eine neue Software sollte es zu interdimensionalen Reisen befähigen, doch anscheinend ging etwas schief."
  8159. .dexstring 40 LAN_EN ""
  8160. str_pokedex_eintraege_481:
  8161. .dexstring 40 LAN_DE "Es kämpft, indem es die Schwerter an seinem Ellbogen verlängert. Es ist ein Meister des Kampfes."
  8162. .dexstring 40 LAN_EN ""
  8163. str_pokedex_eintraege_482:
  8164. .dexstring 40 LAN_DE "Es gibt starken Magnetismus ab. Es steuert drei kleine Einheiten, die sich Mininasen nennen."
  8165. .dexstring 40 LAN_EN ""
  8166. str_pokedex_eintraege_483:
  8167. .dexstring 40 LAN_DE "Die Antenne auf seinem Kopf empfängt Radiowellen aus einer anderen Dimension."
  8168. .dexstring 40 LAN_EN ""
  8169. str_pokedex_eintraege_484:
  8170. .dexstring 40 LAN_DE "In schneereichen Gegenden erzählt man sich, es sei die Wiedergeburt einer in den Bergen Verunglückten."
  8171. .dexstring 40 LAN_EN ""
  8172. str_pokedex_eintraege_485:
  8173. .dexstring 40 LAN_DE "Sein Körper besteht aus Plasma. Mit ihm kann es in elektrische Geräte eindringen und für Chaos sorgen."
  8174. .dexstring 40 LAN_EN ""
  8175. str_pokedex_eintraege_486:
  8176. .dexstring 40 LAN_DE "\qDas wissende Wesen\q. Es soll die Erinnerungen derer löschen, die ihm in die Augen sehen."
  8177. .dexstring 40 LAN_EN ""
  8178. str_pokedex_eintraege_487:
  8179. .dexstring 40 LAN_DE "\qDas fühlende Wesen\q. Es lehrt die Menschen die Ideale von Trauer, Schmerz und Freude."
  8180. .dexstring 40 LAN_EN ""
  8181. str_pokedex_eintraege_488:
  8182. .dexstring 40 LAN_DE "Man glaubt, dass Selfe, Vesprit und Tobutz alle aus demselben Ei kamen."
  8183. .dexstring 40 LAN_EN ""
  8184. str_pokedex_eintraege_489:
  8185. .dexstring 40 LAN_DE "Es besitzt die Macht, die Zeit zu kontrollieren. In den Mythen von Sinnoh erscheint es als Gottheit."
  8186. .dexstring 40 LAN_EN ""
  8187. str_pokedex_eintraege_490:
  8188. .dexstring 40 LAN_DE "Es hat die Macht, den Raum zu krümmen. In den Mythen von Sinnoh erscheint es als Gottheit."
  8189. .dexstring 40 LAN_EN ""
  8190. str_pokedex_eintraege_491:
  8191. .dexstring 40 LAN_DE "Das Blut, das durch seinen Körper fließt, brodelt heiß wie Magma. Es lebt in vulkanischen Höhlen."
  8192. .dexstring 40 LAN_EN ""
  8193. str_pokedex_eintraege_492:
  8194. .dexstring 40 LAN_DE "Es gibt eine Legende, wonach dieses Pokémon die Kontinente mit einem Seil gezogen hat."
  8195. .dexstring 40 LAN_EN ""
  8196. str_pokedex_eintraege_493:
  8197. .dexstring 40 LAN_DE "Es wurde aufgrund seines Verhaltens verbannt. Aus der Zerrwelt schaut es auf die alte Welt."
  8198. .dexstring 40 LAN_EN ""
  8199. str_pokedex_eintraege_494:
  8200. .dexstring 40 LAN_DE "Hält man eine seiner Federn, träumt man süß. Manche glauben, es sei die Verkörperung der Mondsichel."
  8201. .dexstring 40 LAN_EN ""
  8202. str_pokedex_eintraege_495:
  8203. .dexstring 40 LAN_DE "Steigt die Meerestemperatur, bläst es seinen Schwimmbeutel auf und treibt in Schwärmen auf dem Wasser."
  8204. .dexstring 40 LAN_EN ""
  8205. str_pokedex_eintraege_496:
  8206. .dexstring 40 LAN_DE "Es besitzt die wundersame Fähigkeit, das Herz eines jeden anderen Pokémon anzurühren."
  8207. .dexstring 40 LAN_EN ""
  8208. str_pokedex_eintraege_497:
  8209. .dexstring 40 LAN_DE "Es kann andere in Schlaf versetzen und ihnen Träume geben. Es ist nur bei Neumond aktiv."
  8210. .dexstring 40 LAN_EN ""
  8211. str_pokedex_eintraege_498:
  8212. .dexstring 40 LAN_DE "Es heißt, wenn die Gracidea blühen, drückt es seine Dankbarkeit aus, indem es hoch in die Lüfte fliegt."
  8213. .dexstring 40 LAN_EN ""
  8214. str_pokedex_eintraege_499:
  8215. .dexstring 40 LAN_DE "Die Mythologie erzählt, dass dieses Pokémon geboren wurde, bevor das Universum überhaupt existierte."
  8216. .dexstring 40 LAN_EN ""
  8217. str_pokedex_eintraege_500:
  8218. .dexstring 40 LAN_DE "Jeder, dem Victini seine grenzenlose Energie zuteilwerden lässt, strotzt nur so vor Kraft."
  8219. .dexstring 40 LAN_EN ""
  8220. str_pokedex_eintraege_501:
  8221. .dexstring 40 LAN_DE "Eine kühle Denkernatur. Bekommt es genügend Sonnenlicht ab, erhöht sich die Geschwindigkeit seiner Bewegungen."
  8222. .dexstring 40 LAN_EN ""
  8223. str_pokedex_eintraege_502:
  8224. .dexstring 40 LAN_DE "Es achtet stets auf Reinlichkeit, da es mit schmutzigen Blättern keine Photosynthese betreiben kann."
  8225. .dexstring 40 LAN_EN ""
  8226. str_pokedex_eintraege_503:
  8227. .dexstring 40 LAN_DE "Im Kampf zeig es nur Gegnern, die seinem edlen Blick standhalten, seine wahre Kraft."
  8228. .dexstring 40 LAN_EN ""
  8229. str_pokedex_eintraege_504:
  8230. .dexstring 40 LAN_DE "Weicht flink gegnerischen Angriffen aus und schießt Flammen aus dem Rüssel, mit denen es gern auch mal Nüsse röstet."
  8231. .dexstring 40 LAN_EN ""
  8232. str_pokedex_eintraege_505:
  8233. .dexstring 40 LAN_DE "Je mehr es frisst, desto stärker werden die Flammen in seinem Magen. Dies führt zu rapiden Energieschüben."
  8234. .dexstring 40 LAN_EN ""
  8235. str_pokedex_eintraege_506:
  8236. .dexstring 40 LAN_DE "Es trägt einen Backenbart aus Feuer und beherrscht Kampftechniken, die ebenso wuchtig wie schnell sind."
  8237. .dexstring 40 LAN_EN ""
  8238. str_pokedex_eintraege_507:
  8239. .dexstring 40 LAN_DE "Die Muschel an seinem Bauch dient ihm nicht nur als Waffe, sondern auch als Messer, mit dem es Beeren aufschneidet."
  8240. .dexstring 40 LAN_EN ""
  8241. str_pokedex_eintraege_508:
  8242. .dexstring 40 LAN_DE "Jedes Zwottronin eignet sich über strenges Training einen völlig eigenen Muschelkampfstil an."
  8243. .dexstring 40 LAN_EN ""
  8244. str_pokedex_eintraege_509:
  8245. .dexstring 40 LAN_DE "Ehe man sichs versieht, hat es schon das Langschwert aus seinen Vorderbeinen\lgezogen und seinen Gegner besiegt."
  8246. .dexstring 40 LAN_EN ""
  8247. str_pokedex_eintraege_510:
  8248. .dexstring 40 LAN_DE "Sie sind von Natur aus vorsichtig und bewachen in Schichten ihren Bau. Hält niemand Wache, werden sie unruhig."
  8249. .dexstring 40 LAN_EN ""
  8250. str_pokedex_eintraege_511:
  8251. .dexstring 40 LAN_DE "Schüchtert Gegner ein, indem es die Maserung seines Fells aufblitzen lässt. Auch im Dunkeln entgeht ihm nichts."
  8252. .dexstring 40 LAN_EN ""
  8253. str_pokedex_eintraege_512:
  8254. .dexstring 40 LAN_DE "Das lange Fell um sein Gesicht fungiert als Hightech-Radar, mit dem es fein säuberlich seine Umgebung abtastet."
  8255. .dexstring 40 LAN_EN ""
  8256. str_pokedex_eintraege_513:
  8257. .dexstring 40 LAN_DE "Das dunkle Fell, das es wie ein Mantel umgibt, ist äußerst widerstandsfähig und mindert den Schaden durch Attacken."
  8258. .dexstring 40 LAN_EN ""
  8259. str_pokedex_eintraege_514:
  8260. .dexstring 40 LAN_DE "Es rettet Menschen, die aufgrund eines Schneesturmes im Gebirge festsitzen. Sein langes Fell schütz es vor Kälte."
  8261. .dexstring 40 LAN_EN ""
  8262. str_pokedex_eintraege_515:
  8263. .dexstring 40 LAN_DE "Es lenkt die Menschen durch sein süßes Verhalten ab, um sie zu bestehlen. Ist es wütend, kratzt es gern mal."
  8264. .dexstring 40 LAN_EN ""
  8265. str_pokedex_eintraege_516:
  8266. .dexstring 40 LAN_DE "Sein anmutiges Auftreten verdankt es den Muskeln, die es entwickelt hat. Es prescht lautlos durch die Nacht."
  8267. .dexstring 40 LAN_EN ""
  8268. str_pokedex_eintraege_517:
  8269. .dexstring 40 LAN_DE "Schwächelnden Pokémon gibt es ein paar der Kräuter auf seinem Kopf ab und hilft ihnen so wieder auf die Beine."
  8270. .dexstring 40 LAN_EN ""
  8271. str_pokedex_eintraege_518:
  8272. .dexstring 40 LAN_DE "Ein hitziger Geselle, der im Kampf seinen dornigen Schweif umherschwingt. Auf seinem Kopf wachsen bittere Kräuter."
  8273. .dexstring 40 LAN_EN ""
  8274. str_pokedex_eintraege_519:
  8275. .dexstring 40 LAN_DE "Das Feuer in seinem Kopfbüschel erreicht Temperaturen von bis zu 300Grad Celsius. Es ist in Vulkanhöhlen zu Hause."
  8276. .dexstring 40 LAN_EN ""
  8277. str_pokedex_eintraege_520:
  8278. .dexstring 40 LAN_DE "Freut es sich, erhitzt sich sein Körper und aus seinem Kopf und Schweif sprühen Funken. Es liebt Süßigkeiten."
  8279. .dexstring 40 LAN_EN ""
  8280. str_pokedex_eintraege_521:
  8281. .dexstring 40 LAN_DE "Es wringt Wasser aus dem Büschel auf seinem Kopf und bespritzt damit Gegner. Kein Pokémon für trockene Gegenden."
  8282. .dexstring 40 LAN_EN ""
  8283. str_pokedex_eintraege_522:
  8284. .dexstring 40 LAN_DE "Es schießt mit so hohem Druck Wasser aus seinem Schweif, dass selbst Betonwände den Kürzeren ziehen."
  8285. .dexstring 40 LAN_EN ""
  8286. str_pokedex_eintraege_523:
  8287. .dexstring 40 LAN_DE "Es erscheint vor schlafenden Menschen und Pokémon und frisst ihre Alpträume."
  8288. .dexstring 40 LAN_EN ""
  8289. str_pokedex_eintraege_524:
  8290. .dexstring 40 LAN_DE "Frisst es den Traum eines Menschen, vergisst der Träumer dessen Inhalt. Es schwebt stets durch die Luft."
  8291. .dexstring 40 LAN_EN ""
  8292. str_pokedex_eintraege_525:
  8293. .dexstring 40 LAN_DE "Wartet oft vergeblich auf Anweisungen, obwohl es bereits einen Befehl erhalten hat. Ein sehr zerstreutes Pokémon."
  8294. .dexstring 40 LAN_EN ""
  8295. str_pokedex_eintraege_526:
  8296. .dexstring 40 LAN_DE "Egal wie weit es auch von seinem Trainer entfernt ist, es findet immer wieder zu ihm zurück."
  8297. .dexstring 40 LAN_EN ""
  8298. str_pokedex_eintraege_527:
  8299. .dexstring 40 LAN_DE "Männliche Exemplare tragen eine Verzierung am Kopf. Lässt sich von Natur aus nur auf seinen Trainer ein."
  8300. .dexstring 40 LAN_EN ""
  8301. str_pokedex_eintraege_528:
  8302. .dexstring 40 LAN_DE "Um mit Artgenossen zu kommunizieren, nutzt es das Aufblitzen seiner Mähne beim Entladen von Strom als Morsecode."
  8303. .dexstring 40 LAN_EN ""
  8304. str_pokedex_eintraege_529:
  8305. .dexstring 40 LAN_DE "Ein stürmischer Geselle. Wenn es wütend ist, feuert es über seine Mähne in alle Richtungen Stromsalven ab."
  8306. .dexstring 40 LAN_EN ""
  8307. str_pokedex_eintraege_530:
  8308. .dexstring 40 LAN_DE "Wurde vor 100 Jahren nach einem großen Erdbeben in einer Erdspalte entdeckt. Es trägt eine Energiesphäre in sich."
  8309. .dexstring 40 LAN_EN ""
  8310. str_pokedex_eintraege_531:
  8311. .dexstring 40 LAN_DE "Energie, die ungehindert aus seinem Körper austrat, hat sich an ihm zu orangefarbenen Kristallen verfestigt."
  8312. .dexstring 40 LAN_EN ""
  8313. str_pokedex_eintraege_532:
  8314. .dexstring 40 LAN_DE "Es kann ganze Berge einebnen, indem es Energie entlädt, die es in seinem Kern gesammelt und verdichtet hat."
  8315. .dexstring 40 LAN_EN ""
  8316. str_pokedex_eintraege_533:
  8317. .dexstring 40 LAN_DE "Wohnt in dunklen Wäldern und Höhlen. Es sendet Ultraschallwellen mit seiner Nase aus, um die Gegend abzutasten."
  8318. .dexstring 40 LAN_EN ""
  8319. str_pokedex_eintraege_534:
  8320. .dexstring 40 LAN_DE "Wer den Ultraschallwellen eines Männchens in der Balz ausgesetzt wird, verfällt in eine euphorische Stimmung."
  8321. .dexstring 40 LAN_EN ""
  8322. str_pokedex_eintraege_535:
  8323. .dexstring 40 LAN_DE "Es gräbt sich mit 50 km/h schnurstracks durch das Erdreich, indem es sich rapide um die eigene Achse dreht."
  8324. .dexstring 40 LAN_EN ""
  8325. str_pokedex_eintraege_536:
  8326. .dexstring 40 LAN_DE "Sein verworrener Bau liegt 100 m tief unter der Erde. Gelegentlich gräbt es auch U-Bahn-Schächte an."
  8327. .dexstring 40 LAN_EN ""
  8328. str_pokedex_eintraege_537:
  8329. .dexstring 40 LAN_DE "Berührt es jemanden mit den Fühlern an seinen Ohren, erfährt es durch den Herzschlag der Person, wie es ihr geht."
  8330. .dexstring 40 LAN_EN ""
  8331. str_pokedex_eintraege_538:
  8332. .dexstring 40 LAN_DE "Trägt stets einen Holzbalken bei sich. Es taucht hier und da auf Baustellen auf und hilft dort den Arbeitern aus."
  8333. .dexstring 40 LAN_EN ""
  8334. str_pokedex_eintraege_539:
  8335. .dexstring 40 LAN_DE "Diese durchtrainierten Muskelprotze sind Im Umgang mit Stahlträgern versiert und können damit ganze Häuser abreißen."
  8336. .dexstring 40 LAN_EN ""
  8337. str_pokedex_eintraege_540:
  8338. .dexstring 40 LAN_DE "Man nimmt an, dass es der Menschheit vor ca. 2 000 Jahren das Betonmischen beigebracht hat."
  8339. .dexstring 40 LAN_EN ""
  8340. str_pokedex_eintraege_541:
  8341. .dexstring 40 LAN_DE "Erzeugt mit seinen Wangen für Menschen unhörbare Schallwellen, um Artgenossen vor Gefahr zu warnen."
  8342. .dexstring 40 LAN_EN ""
  8343. str_pokedex_eintraege_542:
  8344. .dexstring 40 LAN_DE "Es lebt zu Wasser und zu Lande. Mit seiner langen, klebrigen Zunge raubt es Gegnern die Bewegungsfreiheit."
  8345. .dexstring 40 LAN_EN ""
  8346. str_pokedex_eintraege_543:
  8347. .dexstring 40 LAN_DE "Es schießt eine lähmende Flüssigkeit aus den Beulen auf seinem Kopf. Es plagt seine Gegner mit Schallwellen."
  8348. .dexstring 40 LAN_EN ""
  8349. str_pokedex_eintraege_544:
  8350. .dexstring 40 LAN_DE "Trifft es jemanden, der größer ist als es selbst, will es ihn unbedingt werfen. Wird es stärker, wechselt esd en Gürtel."
  8351. .dexstring 40 LAN_EN ""
  8352. str_pokedex_eintraege_545:
  8353. .dexstring 40 LAN_DE "Zieht es den Gürtel fest, werden seine Hiebe stärker. Kann es gar nicht leiden, wenn man es beim Training stört."
  8354. .dexstring 40 LAN_EN ""
  8355. str_pokedex_eintraege_546:
  8356. .dexstring 40 LAN_DE "Unter Modeschöpfern gilt es als beliebtes Maskottchen, da es sich aus Blättern Kleidchen schneidert."
  8357. .dexstring 40 LAN_EN ""
  8358. str_pokedex_eintraege_547:
  8359. .dexstring 40 LAN_DE "Es wandelt herabgefallenes Laub in Nährstoffe um. In Wäldern, wo es Folikon gibt, fühlen sich Pflanzen pudelwohl."
  8360. .dexstring 40 LAN_EN ""
  8361. str_pokedex_eintraege_548:
  8362. .dexstring 40 LAN_DE "Begegnet es einem jungen Pokémon, näht es ihm mit den klebrigen Fäden aus seinem Mund ein Kleid aus Blättern."
  8363. .dexstring 40 LAN_EN ""
  8364. str_pokedex_eintraege_549:
  8365. .dexstring 40 LAN_DE "Mit seinen Ruten und den Fühlern an seinem Kopf tastet es die Umgebung ab. Ein überaus aggressiver Geselle."
  8366. .dexstring 40 LAN_EN ""
  8367. str_pokedex_eintraege_550:
  8368. .dexstring 40 LAN_DE "An sich ist es harmlos. Bringt man es jedoch in Bedrängnis, setzt es sich mit blitzschnellen Rollattacken zur Wehr."
  8369. .dexstring 40 LAN_EN ""
  8370. str_pokedex_eintraege_551:
  8371. .dexstring 40 LAN_DE "Lähmt seine Beute,indem es sie mit den Zacken an seinem Hals aufspießt. Mit einer Ladung Gift gibt es ihr den Rest."
  8372. .dexstring 40 LAN_EN ""
  8373. str_pokedex_eintraege_552:
  8374. .dexstring 40 LAN_DE "Wird es angegriffen, verstreut es zur Täuschung Watte. Es flieht, während der Gegner nach dem wahren Waumboll sucht."
  8375. .dexstring 40 LAN_EN ""
  8376. str_pokedex_eintraege_553:
  8377. .dexstring 40 LAN_DE "Passiert wie ein Luftzug mühelos jeden noch so engen Spalt und hinterlässt dort nichts als ein weißes Fellknäuel."
  8378. .dexstring 40 LAN_EN ""
  8379. str_pokedex_eintraege_554:
  8380. .dexstring 40 LAN_DE "Die Blätter auf seinem Kopf schmecken furchtbar bitter, doch sie helfen ausgezeichnet gegen Erschöpfung."
  8381. .dexstring 40 LAN_EN ""
  8382. str_pokedex_eintraege_555:
  8383. .dexstring 40 LAN_DE "Der Duft, den der Blumenschmuck auf seinem Kopf absondert, wirkt beruhigend, aber es ist nicht gerade pflegeleicht."
  8384. .dexstring 40 LAN_EN ""
  8385. str_pokedex_eintraege_556:
  8386. .dexstring 40 LAN_DE "Rot gestreifte und blau gestreifte Exemplare sind sich feindlich gesonnen. Doch ist jeder Schwarm bunt gemischt."
  8387. .dexstring 40 LAN_EN ""
  8388. str_pokedex_eintraege_557:
  8389. .dexstring 40 LAN_DE "Es vergräbt sich im heißen Wüstensand, um nicht auszukühlen, und fristet sein Leben im Verborgenen."
  8390. .dexstring 40 LAN_EN ""
  8391. str_pokedex_eintraege_558:
  8392. .dexstring 40 LAN_DE "Bildet mit mehreren Artgenossen ein Rudel. Eine Membran schützt seine Augen vor Sandstürmen."
  8393. .dexstring 40 LAN_EN ""
  8394. str_pokedex_eintraege_559:
  8395. .dexstring 40 LAN_DE "Hat es seine Beute erblickt, gibt es kein Entrinnen mehr. Sein mächtiger Kiefer knackt selbst Karosserien."
  8396. .dexstring 40 LAN_EN ""
  8397. str_pokedex_eintraege_560:
  8398. .dexstring 40 LAN_DE "Früher nutzte man die heißen Ausscheidungen von Flampion, um sich den Körper zu wärmen."
  8399. .dexstring 40 LAN_EN ""
  8400. str_pokedex_eintraege_561:
  8401. .dexstring 40 LAN_DE "Erhitzt das Innere seines Körpers auf 1400 Grad Celsius und erlangt so die Kraft, um mit der Faust Laster zu zerstören."
  8402. .dexstring 40 LAN_EN ""
  8403. str_pokedex_eintraege_562:
  8404. .dexstring 40 LAN_DE "Verjagt Vogel-Pokémon, die auf seine Blüten aus sind, mit einem flotten Tänzchen und lauter Untermalung."
  8405. .dexstring 40 LAN_EN ""
  8406. str_pokedex_eintraege_563:
  8407. .dexstring 40 LAN_DE "Das ätzende Sekret aus seinem Mund erlaubt ihm, ohne Weiteres Steine auszuhöhlen."
  8408. .dexstring 40 LAN_EN ""
  8409. str_pokedex_eintraege_564:
  8410. .dexstring 40 LAN_DE "Revierkonflikte führen oft zu heftigen Kämpfen zwischen ihnen. Gewonnen hat, wer das gegnerische Haus zerstört."
  8411. .dexstring 40 LAN_EN ""
  8412. str_pokedex_eintraege_565:
  8413. .dexstring 40 LAN_DE "Es hat einen dicken Schädel und versetzt jedem, mit dem sich sein Blick kreuzt, eine Kopfnuss."
  8414. .dexstring 40 LAN_EN ""
  8415. str_pokedex_eintraege_566:
  8416. .dexstring 40 LAN_DE "Es wehrt Angriffe mit seiner alten Haut ab und kontert mit Tritten. Sein Ego entspricht der Größe seines Kamms."
  8417. .dexstring 40 LAN_EN ""
  8418. str_pokedex_eintraege_567:
  8419. .dexstring 40 LAN_DE "Erinnerungen an seine Tage als Wächter einer uralten Stadt veranlassen es, Tag für Tag dieselbe Route abzufliegen."
  8420. .dexstring 40 LAN_EN ""
  8421. str_pokedex_eintraege_568:
  8422. .dexstring 40 LAN_DE "Seine Maske ist ein Abbild des Gesichts, das es als Mensch hatte. Manchmal weint es, wenn man ihm in die Augen sieht."
  8423. .dexstring 40 LAN_EN ""
  8424. str_pokedex_eintraege_569:
  8425. .dexstring 40 LAN_DE "Angeblich verschlingt es jeden, der sich ihm auch nur nähert. Besonders gern frisst es Klumpen aus reinem Gold."
  8426. .dexstring 40 LAN_EN ""
  8427. str_pokedex_eintraege_570:
  8428. .dexstring 40 LAN_DE "Schwamm bereits vor 100 Millionen Jahren durch die Meere. Ab und zu führt es die Jagd auch an Land."
  8429. .dexstring 40 LAN_EN ""
  8430. str_pokedex_eintraege_571:
  8431. .dexstring 40 LAN_DE "Es lebt im Meer und an Land. Es ist so stark, dass es mit einem einzigen Hieb ein Loch in ein Schiff reißen kann."
  8432. .dexstring 40 LAN_EN ""
  8433. str_pokedex_eintraege_572:
  8434. .dexstring 40 LAN_DE "Es wurde aus einem Fossil reanimiert. Man geht davon aus, dass es der Urahn aller Vogel-Pokémon ist."
  8435. .dexstring 40 LAN_EN ""
  8436. str_pokedex_eintraege_573:
  8437. .dexstring 40 LAN_DE "Zu Fuß ist es schneller als in der Luft. Es muss ein Tempo von 40 km/h erreichen, bevor es sich in die Lüfte aufschwingt."
  8438. .dexstring 40 LAN_EN ""
  8439. str_pokedex_eintraege_574:
  8440. .dexstring 40 LAN_DE "Eine Mülltüte, der Industrieabfälle und chemische Reaktionen neues Leben eingehaucht haben."
  8441. .dexstring 40 LAN_EN ""
  8442. str_pokedex_eintraege_575:
  8443. .dexstring 40 LAN_DE "Es nimmt mit dem rechten Arm Gegner in die Mangel und gibt ihnen mit dem giftigen Gas aus seinem Maul den Rest."
  8444. .dexstring 40 LAN_EN ""
  8445. str_pokedex_eintraege_576:
  8446. .dexstring 40 LAN_DE "Nicht selten überrumpelt es Gegner, indem es ihre Gestalt annimmt und den Überraschungseffekt zur Flucht nutzt."
  8447. .dexstring 40 LAN_EN ""
  8448. str_pokedex_eintraege_577:
  8449. .dexstring 40 LAN_DE "Kann auf einen Schlag große Massen von Menschen täuschen. Es kreiert Illusionen, um sein Revier zu schützen."
  8450. .dexstring 40 LAN_EN ""
  8451. str_pokedex_eintraege_578:
  8452. .dexstring 40 LAN_DE "Sie begrüßen einander, indem sie ihr Gegenüber mithilfe ihres Schweifs säubern."
  8453. .dexstring 40 LAN_EN ""
  8454. str_pokedex_eintraege_579:
  8455. .dexstring 40 LAN_DE "Sein weißer Flaum fühlt sich wunderbar flauschig an und zieht weder Staub noch statische Elektrizität an."
  8456. .dexstring 40 LAN_EN ""
  8457. str_pokedex_eintraege_580:
  8458. .dexstring 40 LAN_DE "Die schleifenförmigen Fühler erhöhen seine Psycho-Kräfte. Es scheint stets irgendetwas anzustarren."
  8459. .dexstring 40 LAN_EN ""
  8460. str_pokedex_eintraege_581:
  8461. .dexstring 40 LAN_DE "Es manipuliert Pokémon und Menschen mit Hypnosetricks. in Märchen tritt es oft als Entführer auf."
  8462. .dexstring 40 LAN_EN ""
  8463. str_pokedex_eintraege_582:
  8464. .dexstring 40 LAN_DE "Durch seine mächtigen Psycho-Kräfte krümmt sich Der Raum und Bilder eines Lichtjahre entfernten Ortes erscheinen."
  8465. .dexstring 40 LAN_EN ""
  8466. str_pokedex_eintraege_583:
  8467. .dexstring 40 LAN_DE "Die spezielle Flüssigkeit, die es umgibt, bietet ihm in jeder noch so gefährlichen Situation Schutz."
  8468. .dexstring 40 LAN_EN ""
  8469. str_pokedex_eintraege_584:
  8470. .dexstring 40 LAN_DE "Wenn beide Hälften seines gespaltenen Denkapparates an dasselbe denken, sind seine Psycho-Kräfte am stärksten."
  8471. .dexstring 40 LAN_EN ""
  8472. str_pokedex_eintraege_585:
  8473. .dexstring 40 LAN_DE "Sein Griff ist so stark, dass es damit ganze Felsen zermalmen kann. Es ist sehr intelligent."
  8474. .dexstring 40 LAN_EN ""
  8475. str_pokedex_eintraege_586:
  8476. .dexstring 40 LAN_DE "Gerät es in Gefahr, versprüht es Wasser aus seinem Federkleid und nutzt den Sprühregen, um Reißaus zu nehmen."
  8477. .dexstring 40 LAN_EN ""
  8478. str_pokedex_eintraege_587:
  8479. .dexstring 40 LAN_DE "Wenn der Morgen dämmert, fangen sie an zu tanzen. Das Swaroness in der Mitte führt die Gruppe an."
  8480. .dexstring 40 LAN_EN ""
  8481. str_pokedex_eintraege_588:
  8482. .dexstring 40 LAN_DE "Die Temperatur seines Odems liegt bei -50 Grad Celsius. Es erzeugt Eiskristalle und lässt es in seiner Umgebung schneien."
  8483. .dexstring 40 LAN_EN ""
  8484. str_pokedex_eintraege_589:
  8485. .dexstring 40 LAN_DE "Es lebt auf schneebedeckten Bergen. Vor vielen Jahren fand es während einer Eiszeit seinen Weg in den Süden."
  8486. .dexstring 40 LAN_EN ""
  8487. str_pokedex_eintraege_590:
  8488. .dexstring 40 LAN_DE "Es verschluckt Unmengen an Wasser und wandelt es intern in Schneewolken um. Ist es wütend, erzeugt es Schneestürme."
  8489. .dexstring 40 LAN_EN ""
  8490. str_pokedex_eintraege_591:
  8491. .dexstring 40 LAN_DE "Sein Fell nimmt Farbe und Duft des Feldes und des Grases unter ihm an. Bei Gefahr sucht Es Im hohen Gras Schutz."
  8492. .dexstring 40 LAN_EN ""
  8493. str_pokedex_eintraege_592:
  8494. .dexstring 40 LAN_DE "Mancherorts sagt man, sie brächten den Frühling, da sie je nach Jahreszeit ihr Revier wechseln."
  8495. .dexstring 40 LAN_EN ""
  8496. str_pokedex_eintraege_593:
  8497. .dexstring 40 LAN_DE "Im Flug entlädt es Strom, den es mit seinen Backentaschen erzeugt und in seinen Fluglappen gespeichert hat."
  8498. .dexstring 40 LAN_EN ""
  8499. str_pokedex_eintraege_594:
  8500. .dexstring 40 LAN_DE "Bekommt es im Kampf gegen Schnuthelm Strom ab, löst dies aus unerklärlichen Gründen seine Entwicklung aus."
  8501. .dexstring 40 LAN_EN ""
  8502. str_pokedex_eintraege_595:
  8503. .dexstring 40 LAN_DE "Eine von einem Schnuthelm gestohlene Muschel dient ihm als Helm. Es greift Gegner mit seinen beiden Lanzen an."
  8504. .dexstring 40 LAN_EN ""
  8505. str_pokedex_eintraege_596:
  8506. .dexstring 40 LAN_DE "Es ist gemustert wie ein Pokéball. Es lockt damit andere Pokémon an, um sie dann mit Giftsporen zu besprühen."
  8507. .dexstring 40 LAN_EN ""
  8508. str_pokedex_eintraege_597:
  8509. .dexstring 40 LAN_DE "Es lockt seine Beute an, indem es die Hüte in Form von Pokébällen an seinen Armen rüttelt und einen Tanz aufführt."
  8510. .dexstring 40 LAN_EN ""
  8511. str_pokedex_eintraege_598:
  8512. .dexstring 40 LAN_DE "Es lähmt seine Beute mit Gift und verschleppt sie in seinen Unterschlupf, 8 km unter dem Meeresspiegel."
  8513. .dexstring 40 LAN_EN ""
  8514. str_pokedex_eintraege_599:
  8515. .dexstring 40 LAN_DE "Dringt ein Schiff in sein Revier ein, bringt es dieses zum Kentern und saugt die Lebensenergie aus der Besatzung."
  8516. .dexstring 40 LAN_EN ""
  8517. str_pokedex_eintraege_600:
  8518. .dexstring 40 LAN_DE "Es treibt durch den Ozean. Findet es ein verletztes Pokémon, nimmt es dieses auf und trägt es zurück an Land."
  8519. .dexstring 40 LAN_EN ""
  8520. str_pokedex_eintraege_601:
  8521. .dexstring 40 LAN_DE "Es pflanzt sich an großen Pokémon fest und zapft ihnen elektrische Energie ab. Diese hortet Es in seinen Ladetaschen."
  8522. .dexstring 40 LAN_EN ""
  8523. str_pokedex_eintraege_602:
  8524. .dexstring 40 LAN_DE "Errichtet mit elektrisch geladenen Fäden Barrieren, die lähmend wirken und ihm zur Verteidigung und zum Angriff dienen."
  8525. .dexstring 40 LAN_EN ""
  8526. str_pokedex_eintraege_603:
  8527. .dexstring 40 LAN_DE "Fühlt es sich bedroht, wehrt es sich, indem es eine großzügige Salve Dornen abfeuert."
  8528. .dexstring 40 LAN_EN ""
  8529. str_pokedex_eintraege_604:
  8530. .dexstring 40 LAN_DE "Es setzt sich an Der Decke von Höhlen fest und wirft seine dornengespickten Schlingen auf vorbeigehende Beute ab."
  8531. .dexstring 40 LAN_EN ""
  8532. str_pokedex_eintraege_605:
  8533. .dexstring 40 LAN_DE "Es gewinnt lebenswichtige Energie, indem es seine zwei Einzelteile ineinander verzahnt und rotieren lässt."
  8534. .dexstring 40 LAN_EN ""
  8535. str_pokedex_eintraege_606:
  8536. .dexstring 40 LAN_DE "Lässt seine Einzelteile rapide rotieren und feuert sie auf Gegner ab. Kehren sie nicht zurück, wird es brenzlig."
  8537. .dexstring 40 LAN_EN ""
  8538. str_pokedex_eintraege_607:
  8539. .dexstring 40 LAN_DE "Der rote Zentralbestandteil dient als Energiespeicher. Darin geladene Energie feuert Es über seine Stacheln ab."
  8540. .dexstring 40 LAN_EN ""
  8541. str_pokedex_eintraege_608:
  8542. .dexstring 40 LAN_DE "Es besitzt ein Organ, mit dem es im Notfall Elektrizität erzeugen kann. Es tritt stets in Schwärmen auf."
  8543. .dexstring 40 LAN_EN ""
  8544. str_pokedex_eintraege_609:
  8545. .dexstring 40 LAN_DE "Hat es seine Beute erspäht, lähmt es sie mit Elektrizität und verspeist sie anschließend."
  8546. .dexstring 40 LAN_EN ""
  8547. str_pokedex_eintraege_610:
  8548. .dexstring 40 LAN_DE "Es schleppt sich mithilfe seiner Arme an Land, schnappt nach seiner Beute und zerrt sie augenblicklich ins Meer."
  8549. .dexstring 40 LAN_EN ""
  8550. str_pokedex_eintraege_611:
  8551. .dexstring 40 LAN_DE "Es verfügt über mächtige Psycho-Kräfte, mit denen es die Hirne seiner Gegner verwirrt, um ihnen Kopfweh zu bereiten."
  8552. .dexstring 40 LAN_EN ""
  8553. str_pokedex_eintraege_612:
  8554. .dexstring 40 LAN_DE "Manipuliert das gegnerische Gedächtnis. Lässt es seine drei bunten Finger aufleuchten, kommuniziert es offenbar."
  8555. .dexstring 40 LAN_EN ""
  8556. str_pokedex_eintraege_613:
  8557. .dexstring 40 LAN_DE "Es entfacht eine Flamme, die von der Lebensenergie eines Menschen oder eines Pokémon zehrt."
  8558. .dexstring 40 LAN_EN ""
  8559. str_pokedex_eintraege_614:
  8560. .dexstring 40 LAN_DE "Es irrt ziellos auf Der Suche nach den Seelen Der Verstorbenen Durch die Stadt. als Unglücksbringer gefürchtet."
  8561. .dexstring 40 LAN_EN ""
  8562. str_pokedex_eintraege_615:
  8563. .dexstring 40 LAN_DE "Es saugt die Seele eines jeden auf, der in seinen Feuerkranz gerät, bis nur noch eine leere Hülle von ihm übrig ist."
  8564. .dexstring 40 LAN_EN ""
  8565. str_pokedex_eintraege_616:
  8566. .dexstring 40 LAN_DE "Ihre Hauer sind noch sehr zerbrechlich, doch jedes neue Paar, das nachwächst, ist etwas robuster als das letzte."
  8567. .dexstring 40 LAN_EN ""
  8568. str_pokedex_eintraege_617:
  8569. .dexstring 40 LAN_DE "Da seine Hauer nicht mehr nachwachsen, wetzt es sie nach dem Kampf behutsam an den Felsen eines Flussbettes."
  8570. .dexstring 40 LAN_EN ""
  8571. str_pokedex_eintraege_618:
  8572. .dexstring 40 LAN_DE "Seine zerstörerischen Hauer durchbohren ohne Weiteres dicke Pfeiler aus hartem Stahl."
  8573. .dexstring 40 LAN_EN ""
  8574. str_pokedex_eintraege_619:
  8575. .dexstring 40 LAN_DE "Der Schleim, der stets aus seiner Nase hängt, treibt seine Attacken an. Zieht es ihn hoch, steht ein Angriff bevor."
  8576. .dexstring 40 LAN_EN ""
  8577. str_pokedex_eintraege_620:
  8578. .dexstring 40 LAN_DE "Kämpft mit Reißzähnen aus Eis, die es aus gefrorenem Atem herstellt. Es lebt im Norden, wo es kalt ist."
  8579. .dexstring 40 LAN_EN ""
  8580. str_pokedex_eintraege_621:
  8581. .dexstring 40 LAN_DE "Es fängt seine Beute mit Ketten aus Eiskristallen und kühlt sie auf eine Temperatur von minus 100 Grad ab."
  8582. .dexstring 40 LAN_EN ""
  8583. str_pokedex_eintraege_622:
  8584. .dexstring 40 LAN_DE "Führt man ihm mit Laukaps elektrische Energie zu, entwickelt es sich. Niemand kennt den Grund dafür."
  8585. .dexstring 40 LAN_EN ""
  8586. str_pokedex_eintraege_623:
  8587. .dexstring 40 LAN_DE "Seit es die schwere Muschel abgestreift hat, ist es viel leichter. Nun gleichen seine Kampfbewegungen denen eines Ninja."
  8588. .dexstring 40 LAN_EN ""
  8589. str_pokedex_eintraege_624:
  8590. .dexstring 40 LAN_DE "Es vergräbt sich im Morast am Meeresboden. Wird es von seiner Beute gestreift, lähmt es sie mit Strom."
  8591. .dexstring 40 LAN_EN ""
  8592. str_pokedex_eintraege_625:
  8593. .dexstring 40 LAN_DE "Es deckt seine Gegner mit filigranen Attacken in Serie ein und schlitzt sie mit seinen spitzen Klauen auf."
  8594. .dexstring 40 LAN_EN ""
  8595. str_pokedex_eintraege_626:
  8596. .dexstring 40 LAN_DE "Niemand kann es aufhalten, wenn es eine Angriffsserie mit seinen peitschenartigen Armen startet."
  8597. .dexstring 40 LAN_EN ""
  8598. str_pokedex_eintraege_627:
  8599. .dexstring 40 LAN_DE "Es erwärmt seinen Körper, indem es mit den Flügeln das Sonnenlicht einfängt. Kühlt sein Körper ab, erstarrt es."
  8600. .dexstring 40 LAN_EN ""
  8601. str_pokedex_eintraege_628:
  8602. .dexstring 40 LAN_DE "Es wurde von einer uralten Kultur aus Lehm erschaffen und kann mehrere Jahrtausende in Bewegung bleiben."
  8603. .dexstring 40 LAN_EN ""
  8604. str_pokedex_eintraege_629:
  8605. .dexstring 40 LAN_DE "Man munkelt, sein Schöpfer habe ihm aufgetragen, schützend über Pokémon und Menschen zu wachen."
  8606. .dexstring 40 LAN_EN ""
  8607. str_pokedex_eintraege_630:
  8608. .dexstring 40 LAN_DE "Sein Körper ist mit Klingen übersät, die es an Felsen eines Fussbettes schärft, wenn sie im Kampf schartig werden."
  8609. .dexstring 40 LAN_EN ""
  8610. str_pokedex_eintraege_631:
  8611. .dexstring 40 LAN_DE "Ein kaltblütiges Pokémon, das Gegner zunächst mit einer Schar von Gladiantri lähmt und dann zweiteilt."
  8612. .dexstring 40 LAN_EN ""
  8613. str_pokedex_eintraege_632:
  8614. .dexstring 40 LAN_DE "Sein zotteliges Fell fängt selbst nach einer seiner wuchtigen Rempelattacken einiges an Schaden ab."
  8615. .dexstring 40 LAN_EN ""
  8616. str_pokedex_eintraege_633:
  8617. .dexstring 40 LAN_DE "Kann mit seinen Füßen Nüsse zermalmen. Es stellt sich jedem noch so starken Gegner tapfer zum Kampf."
  8618. .dexstring 40 LAN_EN ""
  8619. str_pokedex_eintraege_634:
  8620. .dexstring 40 LAN_DE "Ein tapferer Krieger der Lüfte, der zum Schutz seiner Kameraden auch mit Verletzungen immer weiterkämpft."
  8621. .dexstring 40 LAN_EN ""
  8622. str_pokedex_eintraege_635:
  8623. .dexstring 40 LAN_DE "Seine Flügel sind noch zu klein zum Fliegen. Kurz bevor es sich entwickelt, wirft es seine Schädelwindel ab."
  8624. .dexstring 40 LAN_EN ""
  8625. str_pokedex_eintraege_636:
  8626. .dexstring 40 LAN_DE "Es kreist am Himmel, bis es seine Beute findet. Nach erfolgtem Angriff trägt es sie mühelos zu seinem Nest."
  8627. .dexstring 40 LAN_EN ""
  8628. str_pokedex_eintraege_637:
  8629. .dexstring 40 LAN_DE "Mit seiner brandheißen Zunge bringt es Fermicula zum Schmelzen, um so an sein weiches Inneres zu gelangen."
  8630. .dexstring 40 LAN_EN ""
  8631. str_pokedex_eintraege_638:
  8632. .dexstring 40 LAN_DE "Ein eiserner Panzer umgibt seinen Leib. Angriffe von Furnifraß, seinem Feind, schlägt es in der Gruppe zurück."
  8633. .dexstring 40 LAN_EN ""
  8634. str_pokedex_eintraege_639:
  8635. .dexstring 40 LAN_DE "Da es nichts sehen kann, rammt und frisst es alles, was ihm auf dem Weg in die Quere kommt."
  8636. .dexstring 40 LAN_EN ""
  8637. str_pokedex_eintraege_640:
  8638. .dexstring 40 LAN_DE "Wenn es sein Revier leergejagt hat, sucht es sich ein neues. Seine beiden Köpfe liegen ständig im Streit."
  8639. .dexstring 40 LAN_EN ""
  8640. str_pokedex_eintraege_641:
  8641. .dexstring 40 LAN_DE "Ein kaltblütiges Pokémon, das auf alles reagiert, was sich bewegt, indem es mit seinen drei Köpfen danach schnappt."
  8642. .dexstring 40 LAN_EN ""
  8643. str_pokedex_eintraege_642:
  8644. .dexstring 40 LAN_DE "Es lebt am Fuß von Vulkanen. Mit Gegnern räumt es auf, indem es aus seinen fünf Hörnern Flammen auf sie abfeuert."
  8645. .dexstring 40 LAN_EN ""
  8646. str_pokedex_eintraege_643:
  8647. .dexstring 40 LAN_DE "Es heißt, als das Land einst unter einer düsteren Wolke aus Vulkanasche lag, übernahm es die Rolle der Sonne."
  8648. .dexstring 40 LAN_EN ""
  8649. str_pokedex_eintraege_644:
  8650. .dexstring 40 LAN_DE "Ein Legendäres Pokémon, das sich zum Schutz der Pokémon mit den Menschen anlegte. Eine kühle, gelassene Natur."
  8651. .dexstring 40 LAN_EN ""
  8652. str_pokedex_eintraege_645:
  8653. .dexstring 40 LAN_DE "Seine Angriffskraft genügt, um selbst mächtige Wälle niederzureißen. Ein Held zahlreicher Legenden."
  8654. .dexstring 40 LAN_EN ""
  8655. str_pokedex_eintraege_646:
  8656. .dexstring 40 LAN_DE "Legenden zufolge täuschte es seine Gegner mit flinken Bewegungen und beschützte so die Pokémon."
  8657. .dexstring 40 LAN_EN ""
  8658. str_pokedex_eintraege_647:
  8659. .dexstring 40 LAN_DE "Mit der Energie aus seiner Rute erzeugt es wilde Stürme, die stark genug sind, um ganze Wohnhäuser davonzuwehen."
  8660. .dexstring 40 LAN_EN ""
  8661. str_pokedex_eintraege_648:
  8662. .dexstring 40 LAN_DE "Überall, wo es hingeht, hinterlässt es zahllose Brandflecken am Boden, als hätte dort der Blitz eingeschlagen."
  8663. .dexstring 40 LAN_EN ""
  8664. str_pokedex_eintraege_649:
  8665. .dexstring 40 LAN_DE "Ein aus Mythen bekanntes Pokémon. Es wirbelt mit seinem Schweif Feuer auf, mit dem es alles in Asche legt."
  8666. .dexstring 40 LAN_EN ""
  8667. str_pokedex_eintraege_650:
  8668. .dexstring 40 LAN_DE "Sein Schweif erzeugt Strom. Es verbirgt sich hinter dichten Gewitterwolken und fliegt Durch den Luftraum über Einall."
  8669. .dexstring 40 LAN_EN ""
  8670. str_pokedex_eintraege_651:
  8671. .dexstring 40 LAN_DE "Seine aus Wind und Donner gewonnene Energie sorgt für reiche Ernten, da sie den Boden mit Nährstoffen anreichert."
  8672. .dexstring 40 LAN_EN ""
  8673. str_pokedex_eintraege_652:
  8674. .dexstring 40 LAN_DE "Es besitzt die Fähigkeit, eisige Kälte heraufzubeschwören, doch dabei gefriert auch sein eigener Körper."
  8675. .dexstring 40 LAN_EN ""
  8676. str_pokedex_eintraege_653:
  8677. .dexstring 40 LAN_DE "Es kann auf dem Wasser laufen und reist auf Flüssen und Meeren um die Welt. Zu sehen in malerischen Küstengebieten."
  8678. .dexstring 40 LAN_EN ""
  8679. str_pokedex_eintraege_654:
  8680. .dexstring 40 LAN_DE "Wer die Melodie hört, die es in einer speziellen Stimmlage von sich gibt, steht voll in seinem Bann."
  8681. .dexstring 40 LAN_EN ""
  8682. str_pokedex_eintraege_655:
  8683. .dexstring 40 LAN_DE "Es lebte vor 300 Millionen Jahren. Team Plasma modifizierte es und pflanzte ihm am Rücken eine Kanone ein."
  8684. .dexstring 40 LAN_EN ""
  8685. str_pokedex_eintraege_656:
  8686. .dexstring 40 LAN_DE "Seine Stacheln können bei Konzentration ganze Steine zertrümmern."
  8687. .dexstring 40 LAN_EN ""
  8688. str_pokedex_eintraege_657:
  8689. .dexstring 40 LAN_DE "Der Panzer, der seinen Körper umgibt, bietet ihm Schutz vor Angreifern und straft direkte Angriffe ab."
  8690. .dexstring 40 LAN_EN ""
  8691. str_pokedex_eintraege_658:
  8692. .dexstring 40 LAN_DE "Es ist so stark, dass es selbst 50t schwere Panzer umkippen kann."
  8693. .dexstring 40 LAN_EN ""
  8694. str_pokedex_eintraege_659:
  8695. .dexstring 40 LAN_DE "Wenn es Zweige frisst, fasst es neue Kraft und stößt über seine Ohren über 200 Grad Celsius heiße Luft aus."
  8696. .dexstring 40 LAN_EN ""
  8697. str_pokedex_eintraege_660:
  8698. .dexstring 40 LAN_DE "Sein Zweig entzündet sich durch die Reibung, die beim Herausziehen aus seinem Schweif entsteht."
  8699. .dexstring 40 LAN_EN ""
  8700. str_pokedex_eintraege_661:
  8701. .dexstring 40 LAN_DE "Es kann die Zukunft vorhersehen, indem es konzentriert in die Flamme an der Spitze seines Zweiges blickt."
  8702. .dexstring 40 LAN_EN ""
  8703. str_pokedex_eintraege_662:
  8704. .dexstring 40 LAN_DE "Es stößt aus Brust und Rücken elastische Blasen aus, mit denen es gegnerische Angriffe abfängt."
  8705. .dexstring 40 LAN_EN ""
  8706. str_pokedex_eintraege_663:
  8707. .dexstring 40 LAN_DE "Seine Flinkheit sucht ihresgleichen. Es kann einen 600 m hohen Turm in weniger als einer Minute erklimmen."
  8708. .dexstring 40 LAN_EN ""
  8709. str_pokedex_eintraege_664:
  8710. .dexstring 40 LAN_DE "Kaum hat man es erspäht, verschwindet es auch schon wieder. Mit der Agilität eines Ninjas verwirrt es seine Gegner."
  8711. .dexstring 40 LAN_EN ""
  8712. str_pokedex_eintraege_665:
  8713. .dexstring 40 LAN_DE "Mit seinen großen Ohren schaufelt es sich einen Bau. Es kann die ganze Nacht ohne Pause durchschaufeln."
  8714. .dexstring 40 LAN_EN ""
  8715. str_pokedex_eintraege_666:
  8716. .dexstring 40 LAN_DE "Mit Ohren so mächtig wie ein Bagger kann Es selbst das härteste Gestein zertrümmern."
  8717. .dexstring 40 LAN_EN ""
  8718. str_pokedex_eintraege_667:
  8719. .dexstring 40 LAN_DE "Sein Zwitschern ist wunderschön, aber wenn Gegner sein Revier betreten, kennt es keine Gnade."
  8720. .dexstring 40 LAN_EN ""
  8721. str_pokedex_eintraege_668:
  8722. .dexstring 40 LAN_DE "Es speit Funken aus seinem Schnabel und fängt die Beute, die überrascht aus dem angesengten Gras hervorspringt."
  8723. .dexstring 40 LAN_EN ""
  8724. str_pokedex_eintraege_669:
  8725. .dexstring 40 LAN_DE "Bei der Jagd erreicht es Geschwindig- keiten von bis zu 500 km/h. Es erledigt seine Beute mit einem kräftigen Tritt."
  8726. .dexstring 40 LAN_EN ""
  8727. str_pokedex_eintraege_670:
  8728. .dexstring 40 LAN_DE "Wird es von einem fliegenden Pokémon angegriffen, verstreut es schwarzen Puder. Das Puder löst Paralyse aus."
  8729. .dexstring 40 LAN_EN ""
  8730. str_pokedex_eintraege_671:
  8731. .dexstring 40 LAN_DE "Der Schnabel eines Vogel-Pokémon kann seinem harten Körper keinen Kratzer zufügen."
  8732. .dexstring 40 LAN_EN ""
  8733. str_pokedex_eintraege_672:
  8734. .dexstring 40 LAN_DE "Vivillon kommen weltweit Mit den unterschiedlichsten Musterungen vor."
  8735. .dexstring 40 LAN_EN ""
  8736. str_pokedex_eintraege_673:
  8737. .dexstring 40 LAN_DE "Je stärker sein Gegner ist, desto heißer wird seine Mähne und umso kraftvoller wird es."
  8738. .dexstring 40 LAN_EN ""
  8739. str_pokedex_eintraege_674:
  8740. .dexstring 40 LAN_DE "Das Männchen mit der prächtigsten Feuermähne führt das Rudel an."
  8741. .dexstring 40 LAN_EN ""
  8742. str_pokedex_eintraege_675:
  8743. .dexstring 40 LAN_DE "Es entlockt Blumen ihre geheimen Kräfte und kontrolliert diese nach Belieben. Die Blume ist ein Teil seines Körpers."
  8744. .dexstring 40 LAN_EN ""
  8745. str_pokedex_eintraege_676:
  8746. .dexstring 40 LAN_DE "Es fliegt auf Wiesen umher und kümmert sich um welkende Blumen. Es setzt deren Kräfte frei und nutzt diese zum Kämpfen."
  8747. .dexstring 40 LAN_EN ""
  8748. str_pokedex_eintraege_677:
  8749. .dexstring 40 LAN_DE "Wunderschöne Blumengärten sind sein Revier. Es bezieht seine Energie von den blühenden Blumen."
  8750. .dexstring 40 LAN_EN ""
  8751. str_pokedex_eintraege_678:
  8752. .dexstring 40 LAN_DE "Man sagt, es sei eines der ersten Pokémon, die mit Menschen zusammengelebt haben. Es ist sehr friedfertig."
  8753. .dexstring 40 LAN_EN ""
  8754. str_pokedex_eintraege_679:
  8755. .dexstring 40 LAN_DE "Sie leben im Gebirge. Der Herdenanführer wird durch ein Kräftemessen gewählt, bei dem die Anwärter ihre Hörner gegeneinander rammen."
  8756. .dexstring 40 LAN_EN ""
  8757. str_pokedex_eintraege_680:
  8758. .dexstring 40 LAN_DE "Es starrt den Gegner finster an, um nicht unterschätzt zu werden, hat aber nur wenig Erfolg damit."
  8759. .dexstring 40 LAN_EN ""
  8760. str_pokedex_eintraege_681:
  8761. .dexstring 40 LAN_DE "Es ist sehr grob und streitlustig, lässt es aber nicht zu, dass Schwächere gemobbt werden. Mit seinem Blatt erspürt es die Bewegungen des Gegners."
  8762. .dexstring 40 LAN_EN ""
  8763. str_pokedex_eintraege_682:
  8764. .dexstring 40 LAN_DE "Schneidet man sein Fell zurecht, wird es nicht nur schöner, sondern auch beweglicher."
  8765. .dexstring 40 LAN_EN ""
  8766. str_pokedex_eintraege_683:
  8767. .dexstring 40 LAN_DE "Es verfügt zwar über genug Psycho-Kräfte, um Objekte in einem Umkreis von 100 m wegzublasen."
  8768. .dexstring 40 LAN_EN ""
  8769. str_pokedex_eintraege_684:
  8770. .dexstring 40 LAN_DE "In Gefahrensituationen hebt es seine Ohren an und setzt Psycho-Kräfte frei, die einen LKW zu Schrott verarbeitet."
  8771. .dexstring 40 LAN_EN ""
  8772. str_pokedex_eintraege_685:
  8773. .dexstring 40 LAN_DE "In Gefahrensituationen hebt es seine Ohren an und setzt Psycho-Kräfte frei, die einen LKW zu Schrott verarbeitet."
  8774. .dexstring 40 LAN_EN ""
  8775. str_pokedex_eintraege_686:
  8776. .dexstring 40 LAN_DE "Bei seiner Entwicklung hat Es sich in zwei Schwerter geteilt. Es begegnet seinen Gegnern Mit Attacken."
  8777. .dexstring 40 LAN_EN ""
  8778. str_pokedex_eintraege_687:
  8779. .dexstring 40 LAN_DE "Angeblich erkennt es jene Menschen, die Potenzial zum Herrscher haben. Es heißt, sie seien bald darauf Könige geworden."
  8780. .dexstring 40 LAN_EN ""
  8781. str_pokedex_eintraege_688:
  8782. .dexstring 40 LAN_DE "Der von ihm verströmte Duft verzückt jeden, der ihn riecht. Je nachdem, was es frisst, ändert sich sein Duft."
  8783. .dexstring 40 LAN_EN ""
  8784. str_pokedex_eintraege_689:
  8785. .dexstring 40 LAN_DE "Es produziert verschiedene Düfte. Im Kampf verschafft es sich einen Vorteil, indem es einen Duft verströmt."
  8786. .dexstring 40 LAN_EN ""
  8787. str_pokedex_eintraege_690:
  8788. .dexstring 40 LAN_DE "Es frisst nur Süßigkeiten, weshalb sein Fell so süß und klebrig wie Zuckerwatte ist."
  8789. .dexstring 40 LAN_EN ""
  8790. str_pokedex_eintraege_691:
  8791. .dexstring 40 LAN_DE "Es verfügt über einen feinen Geruchs- sinn, mit dem es selbst die schwächsten Gerüche erkennen kann."
  8792. .dexstring 40 LAN_EN ""
  8793. str_pokedex_eintraege_692:
  8794. .dexstring 40 LAN_DE "Gegner, die auf die blinkenden Punkte an seinem Körper blicken, werden geblendet und verlieren den Willen zu kämpfen."
  8795. .dexstring 40 LAN_EN ""
  8796. str_pokedex_eintraege_693:
  8797. .dexstring 40 LAN_DE "Unter allen Pokémon verfügt es über die stärksten hypnotischen Kräfte, mit denen es die Gegner kontrollieren kann."
  8798. .dexstring 40 LAN_EN ""
  8799. str_pokedex_eintraege_694:
  8800. .dexstring 40 LAN_DE "Bithora bewohnen jeweils zu zweit einen Felsen. Kommt es zum Streit, sucht sich eines der Beiden einen neuen Felsen."
  8801. .dexstring 40 LAN_EN ""
  8802. str_pokedex_eintraege_695:
  8803. .dexstring 40 LAN_DE "Arme und Beine verfügen über eigene Gehirne, was ihnen relative Bewegungsfreiheit gewährt. Sie ordnen sich jedoch zumeist den Befehlen des Kopfes unter."
  8804. .dexstring 40 LAN_EN ""
  8805. str_pokedex_eintraege_696:
  8806. .dexstring 40 LAN_DE "Mit seinem an verfaulten Seetang erinnernden Aussehen führt es den Gegner in die Irre, während es selbst Energie zur Weiterentwicklung speichert."
  8807. .dexstring 40 LAN_EN ""
  8808. str_pokedex_eintraege_697:
  8809. .dexstring 40 LAN_DE "Es heißt, dass die Besatzung von Schiffen, die sich in Tandraks Gebiet begeben, nicht mehr lebend zurückkehrt."
  8810. .dexstring 40 LAN_EN ""
  8811. str_pokedex_eintraege_698:
  8812. .dexstring 40 LAN_DE "Mit Salven komprimierten Wassers, die es wie Pistolenkugeln aus seinen Scheren abfeuert, schießt es fliegende Beute ab."
  8813. .dexstring 40 LAN_EN ""
  8814. str_pokedex_eintraege_699:
  8815. .dexstring 40 LAN_DE "Aus seinen gewaltigen Scheren feuert es mächtige Wassergeschosse ab, die selbst den Rumpf eines Schiffs durchdringt."
  8816. .dexstring 40 LAN_EN ""
  8817. str_pokedex_eintraege_700:
  8818. .dexstring 40 LAN_DE "Es ist in der Wüste zu Hause und wandelt die Energie der Sonne in Körperkraft um, wodurch es auch ohne Nahrung auskommt."
  8819. .dexstring 40 LAN_EN ""
  8820. str_pokedex_eintraege_701:
  8821. .dexstring 40 LAN_DE "Es stimuliert seine Beinmuskulatur mit Strom, wodurch es ihm gelingt, 100 m in fünf Sekunden zurückzulegen."
  8822. .dexstring 40 LAN_EN ""
  8823. str_pokedex_eintraege_702:
  8824. .dexstring 40 LAN_DE "Dieses Pokémon wurde aus einem Fossil neu belebt. Missfällt ihm etwas, rastet es vollkommen aus."
  8825. .dexstring 40 LAN_EN ""
  8826. str_pokedex_eintraege_703:
  8827. .dexstring 40 LAN_DE "Aufgrund der Zerstörungskraft seines Kiefers, galt es in seiner Zeit als unbesiegbar."
  8828. .dexstring 40 LAN_EN ""
  8829. str_pokedex_eintraege_704:
  8830. .dexstring 40 LAN_DE "Dieses antike Pokémon wurde aus Teilen seines Körpers neu belebt, die 100 Mio. Jahre lang im ewigen Eis schlummerte."
  8831. .dexstring 40 LAN_EN ""
  8832. str_pokedex_eintraege_705:
  8833. .dexstring 40 LAN_DE "Mit der -150 Grad Celsius kalten Luft, die den diamantförmigen Kristallen auf seinem\lKörper entströmt, friert es Gegner ein."
  8834. .dexstring 40 LAN_EN ""
  8835. str_pokedex_eintraege_706:
  8836. .dexstring 40 LAN_DE "Es umwickelt den Arm seines geliebten Trainers mit seinen bandförmigen Fühlern und geht so mit ihm spazieren."
  8837. .dexstring 40 LAN_EN ""
  8838. str_pokedex_eintraege_707:
  8839. .dexstring 40 LAN_DE "Es nutzt seine Flügel, um sich am Himmel in Position zu halten."
  8840. .dexstring 40 LAN_EN ""
  8841. str_pokedex_eintraege_708:
  8842. .dexstring 40 LAN_DE "Mit seinem Schwanz zapft es Kraftwerke sowie Steckdosen in Häusern an, um Strom zu tanken."
  8843. .dexstring 40 LAN_EN ""
  8844. str_pokedex_eintraege_709:
  8845. .dexstring 40 LAN_DE "Nach seiner Geburt brachte Es hunderte Millionen von Jahren tief Unter der Erde schlafend zu."
  8846. .dexstring 40 LAN_EN ""
  8847. str_pokedex_eintraege_710:
  8848. .dexstring 40 LAN_DE "Sein Körper ist von einer schleimigen Schicht umhüllt, an der gegnerische Tritte und Schläge abgleiten."
  8849. .dexstring 40 LAN_EN ""
  8850. str_pokedex_eintraege_711:
  8851. .dexstring 40 LAN_DE "Es verjagt Gegner durch Absonderung eines alles zersetzenden Schleims."
  8852. .dexstring 40 LAN_EN ""
  8853. str_pokedex_eintraege_712:
  8854. .dexstring 40 LAN_DE "Dieses äußerst freundliche Drachen- Pokémon neigt dazu, seinen geliebten Trainer zu umarmen."
  8855. .dexstring 40 LAN_EN ""
  8856. str_pokedex_eintraege_713:
  8857. .dexstring 40 LAN_DE "Dieses Pokémon sammelt eifrig Schlüssel, mit denen es wild herumfuchtelt, um Gegner abzuschrecken."
  8858. .dexstring 40 LAN_EN ""
  8859. str_pokedex_eintraege_714:
  8860. .dexstring 40 LAN_DE "Bei diesen Pokémon handelt Es sich um verrottete und von Geistern besessene Baumstümpfe."
  8861. .dexstring 40 LAN_EN ""
  8862. str_pokedex_eintraege_715:
  8863. .dexstring 40 LAN_DE "Es nutzt seine Wurzeln als Nervensystem und kontrolliert so andere Bäume. Es ist nett zu den Pokémon, die in ihm leben."
  8864. .dexstring 40 LAN_EN ""
  8865. str_pokedex_eintraege_716:
  8866. .dexstring 40 LAN_DE "Man sagt, es führe verlorene Seelen dem Ende ihres rastlosen irdischen Wandelns entgegen und geleite sie ins Jenseits."
  8867. .dexstring 40 LAN_EN ""
  8868. str_pokedex_eintraege_717:
  8869. .dexstring 40 LAN_DE "Unter unheimlichen Gesängen durchstreift Es In Neumondnächten Städte und Dörfer."
  8870. .dexstring 40 LAN_EN ""
  8871. str_pokedex_eintraege_718:
  8872. .dexstring 40 LAN_DE "Es wehrt gegnerische Angriffe mit seinem In Eis gehüllten Körper ab."
  8873. .dexstring 40 LAN_EN ""
  8874. str_pokedex_eintraege_719:
  8875. .dexstring 40 LAN_DE "Mit den zahlreichen Arktip auf seinem Rücken sieht es aus wie ein Flugzeugträger aus Eis."
  8876. .dexstring 40 LAN_EN ""
  8877. str_pokedex_eintraege_720:
  8878. .dexstring 40 LAN_DE "Es lebt im Inneren pechschwarzer Höhlen. Seine riesen Ohren setzen Ultraschallwellen von 200 000 Hz frei."
  8879. .dexstring 40 LAN_EN ""
  8880. str_pokedex_eintraege_721:
  8881. .dexstring 40 LAN_DE "Die Ultraschallwellen aus seinen Ohren zermalmen Felsen zu kleinen Kieseln. Es greift stets In der Dunkelheit an."
  8882. .dexstring 40 LAN_EN ""
  8883. str_pokedex_eintraege_722:
  8884. .dexstring 40 LAN_DE "Legenden nach kann Dieses Pokémon ewiges Leben spenden. Es ist aus seinem tausendjährigen Schlaf erwacht."
  8885. .dexstring 40 LAN_EN ""
  8886. str_pokedex_eintraege_723:
  8887. .dexstring 40 LAN_DE "Wenn Schwingen und Schwanzgefieder dieses Legendären Pokémon rot leuchten, entzieht es Lebewesen deren Energie."
  8888. .dexstring 40 LAN_EN ""
  8889. str_pokedex_eintraege_724:
  8890. .dexstring 40 LAN_DE "Wenn das Ökosystem der Kalos-Region kippt, erscheint dieses Pokémon und offenbart seine geheimen Kräfte."
  8891. .dexstring 40 LAN_EN ""
  8892. str_pokedex_eintraege_725:
  8893. .dexstring 40 LAN_DE "Es kann im Nu viele Diamanten erzeugen, indem es luftgebundene Kohlenstoff-\lpartikel mit seinen Händen komprimiert."
  8894. .dexstring 40 LAN_EN ""
  8895. str_pokedex_eintraege_726:
  8896. .dexstring 40 LAN_DE "Mit seinen sechs Ringen und seinen sechs riesigen Armen kann es alles an sich reißen, was es möchte."
  8897. .dexstring 40 LAN_EN ""
  8898. str_pokedex_eintraege_727:
  8899. .dexstring 40 LAN_DE "Es vertreibt seinen inneren Dampf von den Armen zum Rücken. Es hat genügend Kraft um einen Berg zu sprengen."
  8900. .dexstring 40 LAN_EN ""
  8901. str_pokedex_eintraege_728:
  8902. .dexstring 40 LAN_DE "Tagsüber sammelt es per Photosynthese Kräfte, um fit für die Nacht zu sein."
  8903. .dexstring 40 LAN_EN ""
  8904. str_pokedex_eintraege_729:
  8905. .dexstring 40 LAN_DE "Dieses affektierte Pokémon pflegt sein Gefieder, wann immer es kann. Bei Verschmutzung kämpft es nicht."
  8906. .dexstring 40 LAN_EN ""
  8907. str_pokedex_eintraege_730:
  8908. .dexstring 40 LAN_DE "Im Grunde ein vorsichtiges und gelassenes Pokémon, das jedoch in wahnsinnige Panik verfällt."
  8909. .dexstring 40 LAN_EN ""
  8910. str_pokedex_eintraege_731:
  8911. .dexstring 40 LAN_DE "Es verbrennt Haare, die es bei der Körperpflege verschluckt hat, indem es Feuer speit."
  8912. .dexstring 40 LAN_EN ""
  8913. str_pokedex_eintraege_732:
  8914. .dexstring 40 LAN_DE "Es trägt ein feuriges Glöckchen um den Hals. Immer, wenn es Flammen ausstößt, ertönt ein helles Läuten."
  8915. .dexstring 40 LAN_EN ""
  8916. str_pokedex_eintraege_733:
  8917. .dexstring 40 LAN_DE "Ein raues und selbstsüchtiges Pokémon. Wenn es keine Lust hat, ignoriert es die Befehle vom Trainer."
  8918. .dexstring 40 LAN_EN ""
  8919. str_pokedex_eintraege_734:
  8920. .dexstring 40 LAN_DE "Es kontrolliert Wasserblasen. Um eine große Blase zu erschaffen, muss es unermüdlich üben."
  8921. .dexstring 40 LAN_EN ""
  8922. str_pokedex_eintraege_735:
  8923. .dexstring 40 LAN_DE "Dieser begnadete Tänzer erzeugt beim Tanzen eine Wasserblase und greift damit seine Feinde an."
  8924. .dexstring 40 LAN_EN ""
  8925. str_pokedex_eintraege_736:
  8926. .dexstring 40 LAN_DE "Es kämpft unter vollem Einsatz seiner Gesangsstimme."
  8927. .dexstring 40 LAN_EN ""
  8928. str_pokedex_eintraege_737:
  8929. .dexstring 40 LAN_DE "Dieses Pokémon ernährt sich von Beeren. Die Samen verschießt als Munition aus seinem Schnabel."
  8930. .dexstring 40 LAN_EN ""
  8931. str_pokedex_eintraege_738:
  8932. .dexstring 40 LAN_DE "Indem es seinen Schnabel verformt, kann es eine große Bandbreite an Lauten ausstoßen."
  8933. .dexstring 40 LAN_EN ""
  8934. str_pokedex_eintraege_739:
  8935. .dexstring 40 LAN_DE "Lässt körpereigene Gase in seinem Schnabel explodieren, um Samen zu verschießen."
  8936. .dexstring 40 LAN_EN ""
  8937. str_pokedex_eintraege_740:
  8938. .dexstring 40 LAN_DE "Mit seinen scharfen Zähnen schnappt es nach allem. Es wurde aus einer anderen Region eingeführt."
  8939. .dexstring 40 LAN_EN ""
  8940. str_pokedex_eintraege_741:
  8941. .dexstring 40 LAN_DE "Rattfratz und Rattikarl sind seine Leibspeise, aber leider nachtaktiv und daher selten auf dem Speiseplan."
  8942. .dexstring 40 LAN_EN ""
  8943. str_pokedex_eintraege_742:
  8944. .dexstring 40 LAN_DE "Mit seinem robusten Kiefer schabt es an Bäumen, um an ihren Pflanzensaft zu gelangen."
  8945. .dexstring 40 LAN_EN ""
  8946. str_pokedex_eintraege_743:
  8947. .dexstring 40 LAN_DE "Beim Verdauen der Nahrung entsteht elektrische Energie, die es in seinem Strombeutel speichert."
  8948. .dexstring 40 LAN_EN ""
  8949. str_pokedex_eintraege_744:
  8950. .dexstring 40 LAN_DE "In seinem Bauch hat es ein elek- trisches Organ, welches Strom erzeugt."
  8951. .dexstring 40 LAN_EN ""
  8952. str_pokedex_eintraege_745:
  8953. .dexstring 40 LAN_DE "Schützt mit den Scheren seine Schwachstellen und bereitet einen Gegenschlag vor."
  8954. .dexstring 40 LAN_EN ""
  8955. str_pokedex_eintraege_746:
  8956. .dexstring 40 LAN_DE "Es wollte auf eine verschneite Bergspitze, hat sich aber verlaufen."
  8957. .dexstring 40 LAN_EN ""
  8958. str_pokedex_eintraege_747:
  8959. .dexstring 40 LAN_DE "Choreogel besitzt verschiedene Formen, welches durch die ent- sprechenden Nektar beeinflusst wird."
  8960. .dexstring 40 LAN_EN ""
  8961. str_pokedex_eintraege_748:
  8962. .dexstring 40 LAN_DE "Über den Köpfen von Menschen, deren Auren denen von Blumen gleichen, finden sich zahlreich Wommel ein."
  8963. .dexstring 40 LAN_EN ""
  8964. str_pokedex_eintraege_749:
  8965. .dexstring 40 LAN_DE "Dieses Pokémon rollt Blütenstaub zu Kugeln. Manche dieser Pollen- knödel dienen bspw. als Nahrung."
  8966. .dexstring 40 LAN_EN ""
  8967. str_pokedex_eintraege_750:
  8968. .dexstring 40 LAN_DE "Dieses sehr zutrauliche Pokémon wird oft frischgebackenen Trainern empfohlen."
  8969. .dexstring 40 LAN_EN ""
  8970. str_pokedex_eintraege_751:
  8971. .dexstring 40 LAN_DE "Man sagt, dass Wolwerock zwei ver- schiedene Gesichter besitzt, welches Abhängig von der Tageszeit ist."
  8972. .dexstring 40 LAN_EN ""
  8973. str_pokedex_eintraege_752:
  8974. .dexstring 40 LAN_DE "Wenn es in Not gerät, tränen seine Augen, wodurch \qdas Ungeheuer der Meere\q erwacht."
  8975. .dexstring 40 LAN_EN ""
  8976. str_pokedex_eintraege_753:
  8977. .dexstring 40 LAN_DE "Mit seinem Giftstachel am Kopf attackiert es Beute, schwächt es und gibt ihm den Rest."
  8978. .dexstring 40 LAN_EN ""
  8979. str_pokedex_eintraege_754:
  8980. .dexstring 40 LAN_DE "Kriecht mit seinen zwölf Beinen über den Meeresboden. Es hinterlässt oft etliche Überreste von Corasonn."
  8981. .dexstring 40 LAN_EN ""
  8982. str_pokedex_eintraege_755:
  8983. .dexstring 40 LAN_DE "Der ganze Schlamm an seinen Füßen sorgt für die nötige Bodenhaftung, die es für seinen Lauf braucht."
  8984. .dexstring 40 LAN_EN ""
  8985. str_pokedex_eintraege_756:
  8986. .dexstring 40 LAN_DE "Der Schlamm, den es ausspuckt, schützt gegen Wind und Wetter, wenn er hart wird."
  8987. .dexstring 40 LAN_EN ""
  8988. str_pokedex_eintraege_757:
  8989. .dexstring 40 LAN_DE "Die Futtersuche treibt es an Land. Eine Wasserblase versorgt es mit Atemluft und schützt seinen Kopf."
  8990. .dexstring 40 LAN_EN ""
  8991. str_pokedex_eintraege_758:
  8992. .dexstring 40 LAN_DE "Es verteilt mit seiner Wasserblase Kopfstöße. Kleine Pokémon werden dabei hineingezogen und ertrinken."
  8993. .dexstring 40 LAN_EN ""
  8994. str_pokedex_eintraege_759:
  8995. .dexstring 40 LAN_DE "Mittags badet es in der Sonne und hält Nickerchen. Nachts sucht es sich einen sicheren Schlafplatz."
  8996. .dexstring 40 LAN_EN ""
  8997. str_pokedex_eintraege_760:
  8998. .dexstring 40 LAN_DE "Kann aus seinen sichelförmigen Blättern einen Strahl abschießen, welches sogar Eisenplatten zerstört."
  8999. .dexstring 40 LAN_EN ""
  9000. str_pokedex_eintraege_761:
  9001. .dexstring 40 LAN_DE "Es streut blinkende Sporen aus. Jeder, der dieses Licht sieht, schläft fest ein."
  9002. .dexstring 40 LAN_EN ""
  9003. str_pokedex_eintraege_762:
  9004. .dexstring 40 LAN_DE "Nachts sollte man Wälder meiden, in denen Lamellux leben. Ihr Licht raubt jedem die Orientierung."
  9005. .dexstring 40 LAN_EN ""
  9006. str_pokedex_eintraege_763:
  9007. .dexstring 40 LAN_DE "Durch Verbrennung von Körperflüssig- keit erzeugt es ein Gas, das Feinde zu leichten Zielen macht."
  9008. .dexstring 40 LAN_EN ""
  9009. str_pokedex_eintraege_764:
  9010. .dexstring 40 LAN_DE "Ihr Giftgas enthält viele Pheromone. Verdünnt man es, lässt sich daraus ein sinnliches Parfüm herstellen."
  9011. .dexstring 40 LAN_EN ""
  9012. str_pokedex_eintraege_765:
  9013. .dexstring 40 LAN_DE "Es ist zwar süß, aber wenn es wütend wird, haut es mit seinen Armen wirbelnd jeden Wrestler um."
  9014. .dexstring 40 LAN_EN ""
  9015. str_pokedex_eintraege_766:
  9016. .dexstring 40 LAN_DE "Dieses Pokémon verfügt über immense Muskelkraft und ist äußerst gefährlich."
  9017. .dexstring 40 LAN_EN ""
  9018. str_pokedex_eintraege_767:
  9019. .dexstring 40 LAN_DE "Der Schweiß von Frubberl ist zu süß.Verdünnt mit Wasser, erhält man einen köstlichen Saft."
  9020. .dexstring 40 LAN_EN ""
  9021. str_pokedex_eintraege_768:
  9022. .dexstring 40 LAN_DE "Es hüpft immerzu fröhlich umher. Seine lebensfrohe Art zieht Pokémon in der Nähe förmlich an."
  9023. .dexstring 40 LAN_EN ""
  9024. str_pokedex_eintraege_769:
  9025. .dexstring 40 LAN_DE "Dieses Pokémon wird aufgrund seiner schönen Beine gerne für Schönheitssalons gebucht."
  9026. .dexstring 40 LAN_EN ""
  9027. str_pokedex_eintraege_770:
  9028. .dexstring 40 LAN_DE "Dieses Pokémon sieht aus, als hätte man Blüten an einer nahrhaften Ranke angebracht."
  9029. .dexstring 40 LAN_EN ""
  9030. str_pokedex_eintraege_771:
  9031. .dexstring 40 LAN_DE "Es ist als extrem schlaues Pokémon bekannt. Nicht so beliebt bei unerfahrenen Trainern."
  9032. .dexstring 40 LAN_EN ""
  9033. str_pokedex_eintraege_772:
  9034. .dexstring 40 LAN_DE "Es setzt eine harte Beere im Kampf ein. Diese Technik wird vom Anführer der Gruppe weitergegeben."
  9035. .dexstring 40 LAN_EN ""
  9036. str_pokedex_eintraege_773:
  9037. .dexstring 40 LAN_DE "Es ist so feige, dass es wild mit seinen vielen Füßen herumschlägt und verzweifelt davonläuft."
  9038. .dexstring 40 LAN_EN ""
  9039. str_pokedex_eintraege_774:
  9040. .dexstring 40 LAN_DE "Mithilfe seiner riesigen Klauen zerteilt es selbst Luft und Wasser mit einem Hieb."
  9041. .dexstring 40 LAN_EN ""
  9042. str_pokedex_eintraege_775:
  9043. .dexstring 40 LAN_DE "Es kann jeden, der seine Hand in sein Maul steckt dazu bringen, seinen Körper weiter zu vergrößern."
  9044. .dexstring 40 LAN_EN ""
  9045. str_pokedex_eintraege_776:
  9046. .dexstring 40 LAN_DE "Unter seiner Sandburg liegen zahlreiche Knochen Verstorbener, denen das Lebenausgesaugt wurde."
  9047. .dexstring 40 LAN_EN ""
  9048. str_pokedex_eintraege_777:
  9049. .dexstring 40 LAN_DE "Es lebt häufig an Stränden. Seine Schleimschicht eignet sich nach jedem Sonnenbad zur Hautpflege."
  9050. .dexstring 40 LAN_EN ""
  9051. str_pokedex_eintraege_778:
  9052. .dexstring 40 LAN_DE "Seine schwere Maske unterdrückt seine wahre Macht. In ihm schlummern nämlich besondere Kräfte"
  9053. .dexstring 40 LAN_EN ""
  9054. str_pokedex_eintraege_779:
  9055. .dexstring 40 LAN_DE "Es kann seinen Typ ändern, indem es sich mit speziellen Speicherdaten ausrüstet."
  9056. .dexstring 40 LAN_EN ""
  9057. str_pokedex_eintraege_780:
  9058. .dexstring 40 LAN_DE "Eine Mutation von Nanopartikeln brachte dieses Pokémon hervor."
  9059. .dexstring 40 LAN_EN ""
  9060. str_pokedex_eintraege_781:
  9061. .dexstring 40 LAN_DE "Sein ganzes Leben ist ein Traum, seine einzige körperliche Aktivität das Umdrehen."
  9062. .dexstring 40 LAN_EN ""
  9063. str_pokedex_eintraege_782:
  9064. .dexstring 40 LAN_DE "Es greift mit Feuer und Giftgas aus den Nasenlöchern an. Sein Kot ist explosiv."
  9065. .dexstring 40 LAN_EN ""
  9066. str_pokedex_eintraege_783:
  9067. .dexstring 40 LAN_DE "Sein langer Stachel fungiert als Blitzableiter. Es kann Blitze in seinen Elektrotaschen speichern."
  9068. .dexstring 40 LAN_EN ""
  9069. str_pokedex_eintraege_784:
  9070. .dexstring 40 LAN_DE "Es versteckt seine schreckliche Gestalt unter einem Lumpen, um sich anderen zu nähern."
  9071. .dexstring 40 LAN_EN ""
  9072. str_pokedex_eintraege_785:
  9073. .dexstring 40 LAN_DE "Wenn es will, ertönt in seiner Umgebung ein unangenehmes Zähneknirschen."
  9074. .dexstring 40 LAN_EN ""
  9075. str_pokedex_eintraege_786:
  9076. .dexstring 40 LAN_DE "Es ist sehr freundlich und liebt Kinder. Häufig kommt es aus den Bergen herab in die Städte."
  9077. .dexstring 40 LAN_EN ""
  9078. str_pokedex_eintraege_787:
  9079. .dexstring 40 LAN_DE "Wenn es seinen riesigen Anker schwingt, kann es ein Wailord mit einem Schlag K.O. hauen."
  9080. .dexstring 40 LAN_EN ""
  9081. str_pokedex_eintraege_788:
  9082. .dexstring 40 LAN_DE "Es lebt auf Bergen. Indem es gegen andere Miniras kämpft, wird es stetig stärker."
  9083. .dexstring 40 LAN_EN ""
  9084. str_pokedex_eintraege_789:
  9085. .dexstring 40 LAN_DE "Seine Schuppen wachsen sehr schnell nach. Jede neue Schuppe ist härter und schärfer."
  9086. .dexstring 40 LAN_EN ""
  9087. str_pokedex_eintraege_790:
  9088. .dexstring 40 LAN_DE "Seine harten Schuppen dienen sowohl Angriff als auch Verteidigung."
  9089. .dexstring 40 LAN_EN ""
  9090. str_pokedex_eintraege_791:
  9091. .dexstring 40 LAN_DE "Es kann Gewitterwolken rufen und Blitze in seinem Körper speichern."
  9092. .dexstring 40 LAN_EN ""
  9093. str_pokedex_eintraege_792:
  9094. .dexstring 40 LAN_DE "Seine Energie zieht es aus dem lieblichen Duft von Blumen."
  9095. .dexstring 40 LAN_EN ""
  9096. str_pokedex_eintraege_793:
  9097. .dexstring 40 LAN_DE "Es stoppt seine Gegner mithilfe von Pflanzen und spießt sie dann mit seinen Hörnern auf."
  9098. .dexstring 40 LAN_EN ""
  9099. str_pokedex_eintraege_794:
  9100. .dexstring 40 LAN_DE "Dieses Pokémon kontrolliert das Wasser. Man sagt, es könne schmu- tziges in klares Wasser verwandeln."
  9101. .dexstring 40 LAN_EN ""
  9102. str_pokedex_eintraege_795:
  9103. .dexstring 40 LAN_DE "Sein Körper besteht aus flüchtigem Gas. Es wächst durch das Sammeln von Staub aus der Luft."
  9104. .dexstring 40 LAN_EN ""
  9105. str_pokedex_eintraege_796:
  9106. .dexstring 40 LAN_DE "Unter seiner Schale häuft sich etwas in seinem Kern an. Es soll aus einer anderen Welt stammen."
  9107. .dexstring 40 LAN_EN ""
  9108. str_pokedex_eintraege_797:
  9109. .dexstring 40 LAN_DE "Es heißt, es komme aus einer anderen Welt. Sein Körper leuchtet und macht die Nacht zum Tag."
  9110. .dexstring 40 LAN_EN ""
  9111. str_pokedex_eintraege_798:
  9112. .dexstring 40 LAN_DE "Ist sein drittes Auge aktiviert, zieht es in eine andere Welt."
  9113. .dexstring 40 LAN_EN ""
  9114. str_pokedex_eintraege_799:
  9115. .dexstring 40 LAN_DE "Legt manchmal das Verhalten eines jungen Mädchens an den Tag."
  9116. .dexstring 40 LAN_EN ""
  9117. str_pokedex_eintraege_800:
  9118. .dexstring 40 LAN_DE "Kann angeblich mit einem Schlag einen beladenen Laster pulverisieren."
  9119. .dexstring 40 LAN_EN ""
  9120. str_pokedex_eintraege_801:
  9121. .dexstring 40 LAN_DE "Fegt mit ungeheuerlicher Geschwindigkeit über die Erde hinweg."
  9122. .dexstring 40 LAN_EN ""
  9123. str_pokedex_eintraege_802:
  9124. .dexstring 40 LAN_DE "Eine geheimnisvolle Ultrabestie, aus deren Körper Mengen an elektrischer Energie strömen."
  9125. .dexstring 40 LAN_EN ""
  9126. str_pokedex_eintraege_803:
  9127. .dexstring 40 LAN_DE "Eine Ultrabestie, die mit extremer Geschwindigkeit durch die Lüfte rast."
  9128. .dexstring 40 LAN_EN ""
  9129. str_pokedex_eintraege_804:
  9130. .dexstring 40 LAN_DE "Diese Ultrabestie wurde dabei beobachtet, wie sie einen riesigen stählernen Turm zerteilte."
  9131. .dexstring 40 LAN_EN ""
  9132. str_pokedex_eintraege_805:
  9133. .dexstring 40 LAN_DE "Eine Ultrabestie, die einigen Berichten zufolge ganze Berge vertilgt."
  9134. .dexstring 40 LAN_EN ""
  9135. str_pokedex_eintraege_806:
  9136. .dexstring 40 LAN_DE "Dieses extrem grausame Lebewesen wandelt Licht in Energie um und stößt unablässig Laserstrahlen aus."
  9137. .dexstring 40 LAN_EN ""
  9138. str_pokedex_eintraege_807:
  9139. .dexstring 40 LAN_DE "So schön sah Magearna aus, als es vor 500 Jahren als Geschenk an eine Königstochter überreicht wurde."
  9140. .dexstring 40 LAN_EN ""
  9141. str_pokedex_eintraege_808:
  9142. .dexstring 40 LAN_DE "Es verbirgt sich im Schatten und erscheint niemals vor einem Menschen. Es ist ein Mythos."
  9143. .dexstring 40 LAN_EN ""
  9144. str_pokedex_eintraege_809:
  9145. .dexstring 40 LAN_DE "Diese Ultrabestie wird oft als Partner für Reisen gewählt wird."
  9146. .dexstring 40 LAN_EN ""
  9147. str_pokedex_eintraege_810:
  9148. .dexstring 40 LAN_DE "Diese Ultrabestie verschießt aus ihren Giftstacheln ein leuchtendes Gift."
  9149. .dexstring 40 LAN_EN ""
  9150. str_pokedex_eintraege_811:
  9151. .dexstring 40 LAN_DE "Diese Kreatur besteht anscheinend aus mehreren aufeinandergestapelten Wesen."
  9152. .dexstring 40 LAN_EN ""
  9153. str_pokedex_eintraege_812:
  9154. .dexstring 40 LAN_DE "Eine Ultrabestie, die ihre Gegner mit Explosionen erschreckt."
  9155. .dexstring 40 LAN_EN ""
  9156. str_pokedex_eintraege_813:
  9157. .dexstring 40 LAN_DE "Es nähert sich seinen Gegnern sehr schnell und reißt ihnen\ldie Gliedmaßen raus."
  9158. .dexstring 40 LAN_EN ""
  9159. str_pokedex_eintraege_814:
  9160. .dexstring 40 LAN_DE "Für seinen Rudelführer Rattikarl durchstreift es die Stadt im Dunkeln auf der Suche nach gutem Futter."
  9161. .dexstring 40 LAN_EN ""
  9162. str_pokedex_eintraege_815:
  9163. .dexstring 40 LAN_DE "Ein Gourmet, dem Geschmack und Frische seines Futters wichtig sind."
  9164. .dexstring 40 LAN_EN ""
  9165. str_pokedex_eintraege_816:
  9166. .dexstring 40 LAN_DE "Dank seiner Psychokräfte kann es sich auf seinem Schweif schwebend fortbewegen."
  9167. .dexstring 40 LAN_EN ""
  9168. str_pokedex_eintraege_817:
  9169. .dexstring 40 LAN_DE "Sein Panzer ist zwar robust, aber so hart, dass es seinen Körper nicht vollständig zusammenrollen kann."
  9170. .dexstring 40 LAN_EN ""
  9171. str_pokedex_eintraege_818:
  9172. .dexstring 40 LAN_DE "Auf der Flucht vor Vulkanausbrüchen hat es sich auf verschneiten Bergen angesiedelt."
  9173. .dexstring 40 LAN_EN ""
  9174. str_pokedex_eintraege_819:
  9175. .dexstring 40 LAN_DE "Wenn ihm heiß wird, erzeugt es mit seinen sechs Schweifen Kiesel aus Eis, um sich abzukühlen."
  9176. .dexstring 40 LAN_EN ""
  9177. str_pokedex_eintraege_820:
  9178. .dexstring 40 LAN_DE "Es greift seine Feinde mittels Eis- kristallen an, die es mit seinem Fell erzeugt."
  9179. .dexstring 40 LAN_EN ""
  9180. str_pokedex_eintraege_821:
  9181. .dexstring 40 LAN_DE "Die metallischen Fortsätze auf seinem Kopf waren ursprünglich Haare."
  9182. .dexstring 40 LAN_EN ""
  9183. str_pokedex_eintraege_822:
  9184. .dexstring 40 LAN_DE "Mit seinen golden leuchtenden Haaren schützt es sich."
  9185. .dexstring 40 LAN_EN ""
  9186. str_pokedex_eintraege_823:
  9187. .dexstring 40 LAN_DE "Verschmutzt man die Münze an seiner Stirn, so verfällt es in eine wahnsinnige Hysterie."
  9188. .dexstring 40 LAN_EN ""
  9189. str_pokedex_eintraege_824:
  9190. .dexstring 40 LAN_DE "Es bevorzugt fiese Angriffe aus dem Hinterhalt oder der Dunkelheit. Es hält alles außer sich für Nutzlos."
  9191. .dexstring 40 LAN_EN ""
  9192. str_pokedex_eintraege_825:
  9193. .dexstring 40 LAN_DE "Wenn man auf ein am Boden schlafen- des Kleinstein tritt, durchfährt ein Stromschlag den Körper."
  9194. .dexstring 40 LAN_EN ""
  9195. str_pokedex_eintraege_826:
  9196. .dexstring 40 LAN_DE "Die verzehrten Teilchen werden zu Kristallen, die an einer Körperstelle hervortreten."
  9197. .dexstring 40 LAN_EN ""
  9198. str_pokedex_eintraege_827:
  9199. .dexstring 40 LAN_DE "Es feuert elektrisch geladene Felsen ab. Selbst eine Schramme genügt, um seine Gegner bewusstlos zu machen."
  9200. .dexstring 40 LAN_EN ""
  9201. str_pokedex_eintraege_828:
  9202. .dexstring 40 LAN_DE "Fallen die Kristalle von seinem Körper ab, entweichen die tödlichen Giftstoffe."
  9203. .dexstring 40 LAN_EN ""
  9204. str_pokedex_eintraege_829:
  9205. .dexstring 40 LAN_DE "Der Müll, den Sleimok verzehrt, löst im Inneren seines Körpers chemische Reaktionen aus."
  9206. .dexstring 40 LAN_EN ""
  9207. str_pokedex_eintraege_830:
  9208. .dexstring 40 LAN_DE "Durch den Wachstumsschub wurden seine Psycho-Kräfte überlässig und erwäckten seine Drachen-Kräfte."
  9209. .dexstring 40 LAN_EN ""
  9210. str_pokedex_eintraege_831:
  9211. .dexstring 40 LAN_DE "Die Knochen in seinem Besitz stammen von der Mutter. Nach ihrem Tod wurde ihre Trauer zu Flammen."
  9212. .dexstring 40 LAN_EN ""
  9213. str_pokedex_eintraege_832:
  9214. .dexstring 40 LAN_DE "In Gefahrensituationen hebt es seine Ohren an und setzt Psycho-Kräfte frei, die einen LKW zu Schrott verarbeitet."
  9215. .dexstring 40 LAN_EN ""