No Description

move_descriptions_string.s 90KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706
  1. .align 2
  2. .thumb
  3. .text
  4. .global move_description_list
  5. move_description_list:
  6. .global str_move_description_1
  7. str_move_description_1:
  8. .string LAN_DE "Ein Hieb mit den\nVorderbeinen oder\ndem Schweif."
  9. .global str_move_description_2
  10. str_move_description_2:
  11. .string LAN_DE "Gute Möglichkeit,\neinen Volltreffer\nzu landen."
  12. .global str_move_description_3
  13. str_move_description_3:
  14. .string LAN_DE "Trifft den Gegner\n2 - 5-mal\nhintereinander."
  15. .global str_move_description_4
  16. str_move_description_4:
  17. .string LAN_DE "Trifft den Gegner\n2 - 5-mal\nhintereinander."
  18. .global str_move_description_5
  19. str_move_description_5:
  20. .string LAN_DE "Ein unglaublich\nkräftiger Hieb."
  21. .global str_move_description_6
  22. str_move_description_6:
  23. .string LAN_DE "Der Gegner wird\nmit Münzen\nbeworfen. Das Geld\nwird erstattet."
  24. .global str_move_description_7
  25. str_move_description_7:
  26. .string LAN_DE "Schlag, der dem\nGegner evtl.\nVerbrennungen\nzufügt."
  27. .global str_move_description_8
  28. str_move_description_8:
  29. .string LAN_DE "Ein Schlag, der\nden Gegner\nevtl. einfriert."
  30. .global str_move_description_9
  31. str_move_description_9:
  32. .string LAN_DE "Schlag, der den\nGegner evtl.\nparalysiert."
  33. .global str_move_description_10
  34. str_move_description_10:
  35. .string LAN_DE "Der Gegner wird\nmit scharfen\nKlauen zerkratzt."
  36. .global str_move_description_11
  37. str_move_description_11:
  38. .string LAN_DE "Umklammert den\nGegner mit\ngroßen, kräftigen\nZangen."
  39. .global str_move_description_12
  40. str_move_description_12:
  41. .string LAN_DE "Kräftige Scheren-\nAttacke. Führt\nevtl. zum K.O."
  42. .global str_move_description_13
  43. str_move_description_13:
  44. .string LAN_DE "Eine Attacke, die\nauf 2 Runden\nbasiert. Hohe\nVolltrefferquote."
  45. .global str_move_description_14
  46. str_move_description_14:
  47. .string LAN_DE "Ein wilder Kampf-\ntanz, der den\nAngriffs-Wert\ndrastisch erhöht."
  48. .global str_move_description_15
  49. str_move_description_15:
  50. .string LAN_DE "Ein Basisangriff.\nDamit können\nkleine Bäume\ngefällt werden."
  51. .global str_move_description_16
  52. str_move_description_16:
  53. .string LAN_DE "Trifft den Gegner\nmit einem Wind-\nstoß durch\nFlügelschlag."
  54. .global str_move_description_17
  55. str_move_description_17:
  56. .string LAN_DE "Trifft den Gegner\nmit weit gespreizten\nFlügeln."
  57. .global str_move_description_18
  58. str_move_description_18:
  59. .string LAN_DE "Weht Gegner weg\nund beendet den\nKampf in der\nWildnis."
  60. .global str_move_description_19
  61. str_move_description_19:
  62. .string LAN_DE "Steigt in der 1.\nRunde empor und\ntrifft den Gegner\nin Runde 2."
  63. .global str_move_description_20
  64. str_move_description_20:
  65. .string LAN_DE "Umklammert und\ntrifft den Gegner\n2 - 5-mal."
  66. .global str_move_description_21
  67. str_move_description_21:
  68. .string LAN_DE "Schlag mit einem\nlangen Schweif,\neiner Ranke o. Ä."
  69. .global str_move_description_22
  70. str_move_description_22:
  71. .string LAN_DE "Peitschenähnlicher\nSchlag mit\nRanken."
  72. .global str_move_description_23
  73. str_move_description_23:
  74. .string LAN_DE "Stampfen mit dem\nFuß. Gegner\nschreckt evtl.\nzurück."
  75. .global str_move_description_24
  76. str_move_description_24:
  77. .string LAN_DE "Beide Beine treten\nin einer Runde\n2-mal schnell zu."
  78. .global str_move_description_25
  79. str_move_description_25:
  80. .string LAN_DE "Der Gegner wird\nmit einem extrem\nheftigen Tritt\nangegriffen."
  81. .global str_move_description_26
  82. str_move_description_26:
  83. .string LAN_DE "Der Angreifer hüpft\nund tritt zu.\nBei Misserfolg\nSelbstschädigung."
  84. .global str_move_description_27
  85. str_move_description_27:
  86. .string LAN_DE "Schneller Tritt\naus der Drehung.\nGegner schreckt\nevtl. zurück."
  87. .global str_move_description_28
  88. str_move_description_28:
  89. .string LAN_DE "Senkt Genauigkeit\ndes Gegners\ndurch Sand."
  90. .global str_move_description_29
  91. str_move_description_29:
  92. .string LAN_DE "Rammt den Gegner\nund lässt ihn evtl.\nzurückschrecken."
  93. .global str_move_description_30
  94. str_move_description_30:
  95. .string LAN_DE "Spießt den Gegner\nmit dem spitzen\nHorn auf."
  96. .global str_move_description_31
  97. str_move_description_31:
  98. .string LAN_DE "Spießt den Gegner\n2 - 5-mal mit\nspitzem Horn oder\nSchnabel auf."
  99. .global str_move_description_32
  100. str_move_description_32:
  101. .string LAN_DE "K.O.-Attacke, die\nein Horn als\nBohrer einsetzt."
  102. .global str_move_description_33
  103. str_move_description_33:
  104. .string LAN_DE "Trifft den Gegner\nmit vollem\nKörpereinsatz."
  105. .global str_move_description_34
  106. str_move_description_34:
  107. .string LAN_DE "Trifft den Gegner\nmit vollem Kör-\npereinsatz. Bewirkt\nevtl. Paralyse."
  108. .global str_move_description_35
  109. str_move_description_35:
  110. .string LAN_DE "Umwickelt Gegner\n2 - 5-mal mit\nRanken o. Ä."
  111. .global str_move_description_36
  112. str_move_description_36:
  113. .string LAN_DE "Rücksichtslose\nAttacke, bei der\nsich der Angreifer\nselbst verletzt."
  114. .global str_move_description_37
  115. str_move_description_37:
  116. .string LAN_DE "Attacke über 2 bis\n3 Runden, die den\nAngreifer verwirrt."
  117. .global str_move_description_38
  118. str_move_description_38:
  119. .string LAN_DE "Lebensgefährlicher\nAngriff, bei dem\nsich der Angreifer\nselbst verletzt."
  120. .global str_move_description_39
  121. str_move_description_39:
  122. .string LAN_DE "Hieb mit dem\nSchweif, senkt\ndie Vert. des\nGegners."
  123. .global str_move_description_40
  124. str_move_description_40:
  125. .string LAN_DE "Angriff mit Gift-\nstacheln. Der\nGegner wird evtl.\nvergiftet."
  126. .global str_move_description_41
  127. str_move_description_41:
  128. .string LAN_DE "Stacheln an den\nVorderbeinen\ntreffen den\nGegner 2-mal."
  129. .global str_move_description_42
  130. str_move_description_42:
  131. .string LAN_DE "Spitze Nadeln\ntreffen den\nGegner 2 - 5-mal."
  132. .global str_move_description_43
  133. str_move_description_43:
  134. .string LAN_DE "Gegnerischer Vert.-\nWert wird durch\nAngst einflößenden\nBlick gesenkt."
  135. .global str_move_description_44
  136. str_move_description_44:
  137. .string LAN_DE "Beißt zu und lässt\nden Gegner evtl.\nzurückschrecken."
  138. .global str_move_description_45
  139. str_move_description_45:
  140. .string LAN_DE "Knurren, das den\nAngr.-Wert des\nGegners senkt."
  141. .global str_move_description_46
  142. str_move_description_46:
  143. .string LAN_DE "Verjagt den Gegner\nund beendet den\nKampf in der\nWildnis."
  144. .global str_move_description_47
  145. str_move_description_47:
  146. .string LAN_DE "Ein Lied, das den\nGegner in tiefen\nSchlaf versetzt."
  147. .global str_move_description_48
  148. str_move_description_48:
  149. .string LAN_DE "Ausstoß bizarrer\nSchallwellen.\nDer Gegner wird\nevtl. verwirrt."
  150. .global str_move_description_49
  151. str_move_description_49:
  152. .string LAN_DE "Schockwellen, die\nstets 20 KP Scha-\nden anrichten,\nwerden ausgestoßen."
  153. .global str_move_description_50
  154. str_move_description_50:
  155. .string LAN_DE "Die zuletzt benutz-\nte gegn. Attacke\nwird für mehrere\nRunden blockiert."
  156. .global str_move_description_51
  157. str_move_description_51:
  158. .string LAN_DE "Versprüht ätzende\nFlüssigkeit, die\nevtl. die Vert.\nsenkt."
  159. .global str_move_description_52
  160. str_move_description_52:
  161. .string LAN_DE "Schwache Feuer-\nAttacke, die evtl.\nden Gegner\nverbrennt."
  162. .global str_move_description_53
  163. str_move_description_53:
  164. .string LAN_DE "Starke Feuer-\nAttacke, die evtl.\nden Gegner\nverbrennt."
  165. .global str_move_description_54
  166. str_move_description_54:
  167. .string LAN_DE "Ein Nebel schützt\ndein Team vor\nStatusverschlech-\nterungen."
  168. .global str_move_description_55
  169. str_move_description_55:
  170. .string LAN_DE "Der Gegner wird mit\nWasser aus dem\nMund bespritzt."
  171. .global str_move_description_56
  172. str_move_description_56:
  173. .string LAN_DE "Spritzt eine Menge\nWasser mit\nHochdruck auf\nden Gegner."
  174. .global str_move_description_57
  175. str_move_description_57:
  176. .string LAN_DE "Eine Welle bricht\nüber den Gegner\nherein. Surfen\ndamit möglich."
  177. .global str_move_description_58
  178. str_move_description_58:
  179. .string LAN_DE "Der Gegner wird von\neinem Eisstrahl\ngetroffen und\nfriert evtl. ein."
  180. .global str_move_description_59
  181. str_move_description_59:
  182. .string LAN_DE "Ein Schneesturm,\nder den Gegner\neinfrieren kann,\nwütet."
  183. .global str_move_description_60
  184. str_move_description_60:
  185. .string LAN_DE "Feuert einen Strahl\nab, der den\nGegner verwirren\nkann."
  186. .global str_move_description_61
  187. str_move_description_61:
  188. .string LAN_DE "Versprüht Blasen,\ndie evtl. den\nInit.-Wert des\nGegners senken."
  189. .global str_move_description_62
  190. str_move_description_62:
  191. .string LAN_DE "Regenbogen-\nfarbener Strahl,\nder evtl. den\nAngr.-Wert senkt."
  192. .global str_move_description_63
  193. str_move_description_63:
  194. .string LAN_DE "Starke Attacke, die\nden Angreifer\nzwingt, eine Runde\nauszusetzen."
  195. .global str_move_description_64
  196. str_move_description_64:
  197. .string LAN_DE "Greift Gegner mit\ndem Schnabel\noder Horn an."
  198. .global str_move_description_65
  199. str_move_description_65:
  200. .string LAN_DE "Korkenzieherangriff,\nbei dem der\nSchnabel als\nBohrer dient."
  201. .global str_move_description_66
  202. str_move_description_66:
  203. .string LAN_DE "Harte Körperat-\ntacke, bei der sich\nder Angreifer\nselbst verletzt."
  204. .global str_move_description_67
  205. str_move_description_67:
  206. .string LAN_DE "Tritt, der\nmassigen\nGegnern mehr\nSchaden zufügt."
  207. .global str_move_description_68
  208. str_move_description_68:
  209. .string LAN_DE "Kontert physischen\nTreffer mit\ndoppelter Kraft."
  210. .global str_move_description_69
  211. str_move_description_69:
  212. .string LAN_DE "Richtet Schaden\ngemäß Level des\nAngreifers an."
  213. .global str_move_description_70
  214. str_move_description_70:
  215. .string LAN_DE "Gegner wird extrem\nstark getroffen. \nVerschieben von\nFelsen möglich."
  216. .global str_move_description_71
  217. str_move_description_71:
  218. .string LAN_DE "Attacke, die die\nHälfte des\nSchadens\nabsorbiert."
  219. .global str_move_description_72
  220. str_move_description_72:
  221. .string LAN_DE "Starke Attacke, die\ndie Hälfte des\nSchadens\nabsorbiert."
  222. .global str_move_description_73
  223. str_move_description_73:
  224. .string LAN_DE "Gegner wird\nbepflanzt und\nverliert jede\nRunde KP."
  225. .global str_move_description_74
  226. str_move_description_74:
  227. .string LAN_DE "Der Körper wächst\nund Sp. Ang.\nwird erhöht."
  228. .global str_move_description_75
  229. str_move_description_75:
  230. .string LAN_DE "Trifft Gegner mit\nBlättern. Hohe\nVolltrefferquote."
  231. .global str_move_description_76
  232. str_move_description_76:
  233. .string LAN_DE "Absorbiert Licht in\nder 1. Runde.\nIn Runde 2\nerfolgt der Angriff."
  234. .global str_move_description_77
  235. str_move_description_77:
  236. .string LAN_DE "Verstreut giftigen\nPuder, der den\nGegner vergiften\nkann."
  237. .global str_move_description_78
  238. str_move_description_78:
  239. .string LAN_DE "Verstreut Puder,\nder den\nGegner evtl.\nparalysiert."
  240. .global str_move_description_79
  241. str_move_description_79:
  242. .string LAN_DE "Verstreut Puder,\nder den Gegner\nevtl. in Schlaf\nversetzt."
  243. .global str_move_description_80
  244. str_move_description_80:
  245. .string LAN_DE "Angriff mit Blüten-\nblättern für 2 - 3\nRunden. Angreifer\nwird verwirrt."
  246. .global str_move_description_81
  247. str_move_description_81:
  248. .string LAN_DE "Umwickelt Gegner\nmit Faden aus\ndem Mund und\nsenkt Init.-Wert."
  249. .global str_move_description_82
  250. str_move_description_82:
  251. .string LAN_DE "Stößt Schockwellen\naus, die stets\n40 KP Schaden\nanrichten."
  252. .global str_move_description_83
  253. str_move_description_83:
  254. .string LAN_DE "Der Gegner wird\nfür 2 - 5 Runden in\neinem Feuerkreis\ngefangen."
  255. .global str_move_description_84
  256. str_move_description_84:
  257. .string LAN_DE "Eine Elektro-\nAttacke, die den\nGegner evtl.\nparalysiert."
  258. .global str_move_description_85
  259. str_move_description_85:
  260. .string LAN_DE "Eine starke\nElektro-Attacke,\ndie den Gegner\nevtl. paralysiert."
  261. .global str_move_description_86
  262. str_move_description_86:
  263. .string LAN_DE "Ein schwacher\nStromstoß, der\nden Gegner\nparalysiert."
  264. .global str_move_description_87
  265. str_move_description_87:
  266. .string LAN_DE "Eine verheerende\nElektro-Attacke,\ndie den Gegner\nevtl. paralysiert."
  267. .global str_move_description_88
  268. str_move_description_88:
  269. .string LAN_DE "Der Gegner wird\nmit vielen kleinen\nSteinen beworfen."
  270. .global str_move_description_89
  271. str_move_description_89:
  272. .string LAN_DE "Ein mächtiges\nBeben, das außer\nfliegende Gegner\nalle trifft."
  273. .global str_move_description_90
  274. str_move_description_90:
  275. .string LAN_DE "Sofort-K.O., wenn\nerfolgreich. Gegner\nwird in Gebirgs-\nspalte geworfen."
  276. .global str_move_description_91
  277. str_move_description_91:
  278. .string LAN_DE "1. Runde eingrab-\nen und 2. an-\ngreifen. Flucht\naus Höhlen möglich."
  279. .global str_move_description_92
  280. str_move_description_92:
  281. .string LAN_DE "Vergiftet den\nGegner mit\neinem potenten\nToxin."
  282. .global str_move_description_93
  283. str_move_description_93:
  284. .string LAN_DE "Psycho-Attacke,\ndie den Gegner\nevtl. verwirrt."
  285. .global str_move_description_94
  286. str_move_description_94:
  287. .string LAN_DE "Starke Psycho-\nAttacke, die evtl.\ndie Sp. Vert.\nsenkt."
  288. .global str_move_description_95
  289. str_move_description_95:
  290. .string LAN_DE "Hypno-Attacke,\ndie den Gegner\nevtl. in Schlaf\nversetzt."
  291. .global str_move_description_96
  292. str_move_description_96:
  293. .string LAN_DE "Friedliche Medita-\ntion, um den\nAngr.-Wert zu\nsteigern."
  294. .global str_move_description_97
  295. str_move_description_97:
  296. .string LAN_DE "Entspannt den\nKörper, um\nInit.-Wert\nzu steigern."
  297. .global str_move_description_98
  298. str_move_description_98:
  299. .string LAN_DE "Sehr schneller\nAngriff mit\nErstschlaggarantie."
  300. .global str_move_description_99
  301. str_move_description_99:
  302. .string LAN_DE "Erhöht Angr.\ndes Anwenders\nbei jedem gegne-\nrischen Treffer."
  303. .global str_move_description_100
  304. str_move_description_100:
  305. .string LAN_DE "Fliehe sofort vor\nwilden PKMN.\nWarp zum letzten\nPKMN-Center."
  306. .global str_move_description_101
  307. str_move_description_101:
  308. .string LAN_DE "Richtet Schaden\ngemäß Level\ndes Angreifers\nan."
  309. .global str_move_description_102
  310. str_move_description_102:
  311. .string LAN_DE "Kopiert die zuvor\nausgeführte\nAttacke des\nGegners."
  312. .global str_move_description_103
  313. str_move_description_103:
  314. .string LAN_DE "Stößt einen Schrei\naus, um\ngegnerische\nVert. zu senken."
  315. .global str_move_description_104
  316. str_move_description_104:
  317. .string LAN_DE "Erzeugt Eben-\nbilder, um \nFluchtwert\nzu erhöhen."
  318. .global str_move_description_105
  319. str_move_description_105:
  320. .string LAN_DE "Max. KP des\nAnwenders wird\nbis zur Hälfte\naufgefüllt."
  321. .global str_move_description_106
  322. str_move_description_106:
  323. .string LAN_DE "Stärkt die\nMuskulatur und\nerhöht den\nVert.-Wert."
  324. .global str_move_description_107
  325. str_move_description_107:
  326. .string LAN_DE "Anwender\nschrumpft, um\nFluchtwert zu\nerhöhen."
  327. .global str_move_description_108
  328. str_move_description_108:
  329. .string LAN_DE "Senkt Genauigkeit\ndes Gegners mit\nRauch, Tinte oder\nÄhnlichem."
  330. .global str_move_description_109
  331. str_move_description_109:
  332. .string LAN_DE "Ein fieser Strahl,\nder den Gegner\nverwirrt."
  333. .global str_move_description_110
  334. str_move_description_110:
  335. .string LAN_DE "Rückzug in den\nharten Panzer.\nErhöht den\nVert.-Wert."
  336. .global str_move_description_111
  337. str_move_description_111:
  338. .string LAN_DE "Verbirgt Schwächen\ndurch Einrollen und\nhebt gleichzeitig\nden Vert.-Wert."
  339. .global str_move_description_112
  340. str_move_description_112:
  341. .string LAN_DE "Erzeugt Barriere,\ndie den\nVert.-Wert stark\nerhöht."
  342. .global str_move_description_113
  343. str_move_description_113:
  344. .string LAN_DE "Erzeugt Lichtwand\nund senkt Schaden\ndurch Sp. Ang.\nfür 5 Runden."
  345. .global str_move_description_114
  346. str_move_description_114:
  347. .string LAN_DE "Alle Statusver-\nänderungen der\nKampfteilnehmer\nwerden annulliert."
  348. .global str_move_description_115
  349. str_move_description_115:
  350. .string LAN_DE "Lichtwand, die\n5 Runden leicht\nvor physischen\nAngriffen schützt."
  351. .global str_move_description_116
  352. str_move_description_116:
  353. .string LAN_DE "Anwender atmet\nein und bündelt\nKraft. Volltreffer-\nchance steigt."
  354. .global str_move_description_117
  355. str_move_description_117:
  356. .string LAN_DE "Erträgt 2 Runden\nAngriffe und\nschlägt dann\ndoppelt zurück."
  357. .global str_move_description_118
  358. str_move_description_118:
  359. .string LAN_DE "Bewegt Finger, um\nGehirn zu stimu-\nlieren. Wählt zu-\nfällig Attacke aus."
  360. .global str_move_description_119
  361. str_move_description_119:
  362. .string LAN_DE "Erwidert gegne-\nrischen Angriff\nmit derselben\nAttacke."
  363. .global str_move_description_120
  364. str_move_description_120:
  365. .string LAN_DE "Anwender sprengt\nsich, richtet Rie-\nsenschaden an und\nwird dabei besiegt."
  366. .global str_move_description_121
  367. str_move_description_121:
  368. .string LAN_DE "Ein großes Ei\nwird auf den\nGegner abgefeuert,\num ihm zu schaden."
  369. .global str_move_description_122
  370. str_move_description_122:
  371. .string LAN_DE "Leck-Attacke mit\nlanger Zunge. Der\nGegner wird evtl.\nparalysiert."
  372. .global str_move_description_123
  373. str_move_description_123:
  374. .string LAN_DE "Angriff mit Gas.\nGegner wird \nevtl. vergiftet."
  375. .global str_move_description_124
  376. str_move_description_124:
  377. .string LAN_DE "Wirft Schlamm auf\nGegner, der evtl.\nvergiftet wird."
  378. .global str_move_description_125
  379. str_move_description_125:
  380. .string LAN_DE "Schlägt Gegner\nmit einer Keule\nund verschreckt\nihn evtl."
  381. .global str_move_description_126
  382. str_move_description_126:
  383. .string LAN_DE "Feuersbrunst, die\nalles versengt.\nVerbrennt den\nGegner evtl."
  384. .global str_move_description_127
  385. str_move_description_127:
  386. .string LAN_DE "Eine mächtige\nAttacke. Wasser-\nfälle können damit\nerklommen werden."
  387. .global str_move_description_128
  388. str_move_description_128:
  389. .string LAN_DE "Fängt und quetscht\nden Gegner für\n2 - 5 Runden."
  390. .global str_move_description_129
  391. str_move_description_129:
  392. .string LAN_DE "Verschießt stern-\nförmige Strahlen\nauf alle Gegner,\ndie stets treffen."
  393. .global str_move_description_130
  394. str_move_description_130:
  395. .string LAN_DE "In Runde 1 wird\ndie Vert. erhöht\nund in Runde 2\nangegriffen."
  396. .global str_move_description_131
  397. str_move_description_131:
  398. .string LAN_DE "Verschießt spitze\nStacheln auf den\nGegner, die\n2 - 5-mal treffen."
  399. .global str_move_description_132
  400. str_move_description_132:
  401. .string LAN_DE "Angriff mit langen\nTentakeln oder\nRanken. Senkt\nevtl. Init.-Wert."
  402. .global str_move_description_133
  403. str_move_description_133:
  404. .string LAN_DE "Gedächtnisverlust,\nder die Sp. \nVer. deutlich\nerhöht."
  405. .global str_move_description_134
  406. str_move_description_134:
  407. .string LAN_DE "Lenkt Gegner durch\nLöffel verbiegen ab\nund senkt evtl.\nseine Genauigkeit."
  408. .global str_move_description_135
  409. str_move_description_135:
  410. .string LAN_DE "Max. KP d. Anwen-\nders werden halb\naufgefüllt. Team-\nheilung möglich."
  411. .global str_move_description_136
  412. str_move_description_136:
  413. .string LAN_DE "Sprungtritt mit\nKnie. Bei Misserfolg\nverletzt sich der\nAnwender selbst."
  414. .global str_move_description_137
  415. str_move_description_137:
  416. .string LAN_DE "Schüchtert Gegner\nmit dem Bauchmuster\nein, so dass er\nparalysiert ist."
  417. .global str_move_description_138
  418. str_move_description_138:
  419. .string LAN_DE "Schaden an schla-\nfendem Gegner\nwird halb Anwender\ngutgeschrieben."
  420. .global str_move_description_139
  421. str_move_description_139:
  422. .string LAN_DE "Hüllt Gegner in\ngiftiges Gas ein,\ndas ihn evtl.\nvergiftet."
  423. .global str_move_description_140
  424. str_move_description_140:
  425. .string LAN_DE "Wirft 2 - 5-mal\nrunde Gegen-\nstände auf den\nGegner."
  426. .global str_move_description_141
  427. str_move_description_141:
  428. .string LAN_DE "Die Hälfte des zu-\ngefügten Schadens\nwird dem Anwender\ngutgeschrieben."
  429. .global str_move_description_142
  430. str_move_description_142:
  431. .string LAN_DE "Anwender zwingt\ndem Gegner einen\nKuss auf, der evtl.\nSchlaf verursacht."
  432. .global str_move_description_143
  433. str_move_description_143:
  434. .string LAN_DE "Angriff über 2\nRunden mit\nhoher Voll-\ntrefferquote."
  435. .global str_move_description_144
  436. str_move_description_144:
  437. .string LAN_DE "Anwender ver-\nwandelt sich in\nein Abbild des\nGegners."
  438. .global str_move_description_145
  439. str_move_description_145:
  440. .string LAN_DE "Angriff mit Blasen.\nInit.-Wert des\nGegners wird\nevtl. gesenkt."
  441. .global str_move_description_146
  442. str_move_description_146:
  443. .string LAN_DE "Rhythmischer\nSchlag, der den\nGegner verwirren\nkann."
  444. .global str_move_description_147
  445. str_move_description_147:
  446. .string LAN_DE "Erzeugt eine Wolke\naus einschläfernden\nSporen."
  447. .global str_move_description_148
  448. str_move_description_148:
  449. .string LAN_DE "Erzeugt helles\nLicht, das die\ngegnerische\nGenauigkeit senkt."
  450. .global str_move_description_149
  451. str_move_description_149:
  452. .string LAN_DE "Heiße Energiewelle\nmit unterschied-\nlicher Intensität\nwird erzeugt."
  453. .global str_move_description_150
  454. str_move_description_150:
  455. .string LAN_DE "Nur ein Platscher, \nder überhaupt\nnichts bewirkt."
  456. .global str_move_description_151
  457. str_move_description_151:
  458. .string LAN_DE "Verflüssigt Körper-\nzellen des Anwen-\nders. Erhöht die\nVert."
  459. .global str_move_description_152
  460. str_move_description_152:
  461. .string LAN_DE "Schlägt mit Schere\nzu. Die Volltref-\nferchance ist hoch."
  462. .global str_move_description_153
  463. str_move_description_153:
  464. .string LAN_DE "Anwender explo-\ndiert, richtet gros-\nsen Schaden an\nund wird besiegt."
  465. .global str_move_description_154
  466. str_move_description_154:
  467. .string LAN_DE "Beharkt Gegner\n2 - 5-mal mit\nscharfen Klauen\noder Sicheln."
  468. .global str_move_description_155
  469. str_move_description_155:
  470. .string LAN_DE "Ein Bumerang aus\nKnochen, der\nzweimal trifft."
  471. .global str_move_description_156
  472. str_move_description_156:
  473. .string LAN_DE "Anwender schläft 2\nRunden, um KP\nund Status voll\nzu erneuern."
  474. .global str_move_description_157
  475. str_move_description_157:
  476. .string LAN_DE "Schleudert riesige\nFelsen. Gegner\nschreckt evtl.\nzurück."
  477. .global str_move_description_158
  478. str_move_description_158:
  479. .string LAN_DE "Angriff mit schar-\nfen Reißzähnen.\nGegner schreckt\nevtl. zurück."
  480. .global str_move_description_159
  481. str_move_description_159:
  482. .string LAN_DE "Anwender senkt die\nPolygonzahl, um\nKanten zu schärfen\nund erhöht Angr."
  483. .global str_move_description_160
  484. str_move_description_160:
  485. .string LAN_DE "Wandelt Element-\nklasse d. Anwenders\nin Elementklasse\neiner Attacke."
  486. .global str_move_description_161
  487. str_move_description_161:
  488. .string LAN_DE "Feuert 3 Arten von\nStrahlen ab. Evtl.\nParalyse, Verbren-\nnung oder Frost."
  489. .global str_move_description_162
  490. str_move_description_162:
  491. .string LAN_DE "Greift mit scharfen\nReißzähnen an.\nGegnerische KP\nwerden halbiert."
  492. .global str_move_description_163
  493. str_move_description_163:
  494. .string LAN_DE "Hieb mit Klauen\noder Ähnlichem.\nHohe Volltreffer-\nquote."
  495. .global str_move_description_164
  496. str_move_description_164:
  497. .string LAN_DE "Lockvogel, der 1/4\nder max. KP des\nAnwenders besitzt."
  498. .global str_move_description_165
  499. str_move_description_165:
  500. .string LAN_DE "Einsatz nur bei\nverbrauchten AP.\nAnwender verletzt\nsich selbst."
  501. .global str_move_description_166
  502. str_move_description_166:
  503. .string LAN_DE "Kopiert stets\nden zuletzt\nerlittenen\ngegn. Angriff."
  504. .global str_move_description_167
  505. str_move_description_167:
  506. .string LAN_DE "Tritt Gegner 3-mal\nnacheinander.\nDie Härte der\nTritte nimmt zu."
  507. .global str_move_description_168
  508. str_move_description_168:
  509. .string LAN_DE "Das vom Gegner\ngehaltene Item\nkann gestohlen\nwerden."
  510. .global str_move_description_169
  511. str_move_description_169:
  512. .string LAN_DE "Wickelt Gegner\nein. Flucht oder\nTausch unmöglich."
  513. .global str_move_description_170
  514. str_move_description_170:
  515. .string LAN_DE "Ahnt gegn. Aktion\nvoraus, um zu\ngewährleisten, dass\nnächste Att. trifft."
  516. .global str_move_description_171
  517. str_move_description_171:
  518. .string LAN_DE "Dem schlafenden\nGegner wird in\njeder Runde\nSchaden zugefügt."
  519. .global str_move_description_172
  520. str_move_description_172:
  521. .string LAN_DE "Feuer-Attacke, die\nden Gegner evtl.\nverbrennt."
  522. .global str_move_description_173
  523. str_move_description_173:
  524. .string LAN_DE "Attacke nur\nim Schlaf möglich.\nGegner schreckt\nevtl. zurück."
  525. .global str_move_description_174
  526. str_move_description_174:
  527. .string LAN_DE "Ein Angriff, der bei\nGeist-PKMN\nanders\nfunktioniert."
  528. .global str_move_description_175
  529. str_move_description_175:
  530. .string LAN_DE "Attacke richtet\nmehr Schaden\nan, wenn eigene\nKP niedrig sind."
  531. .global str_move_description_176
  532. str_move_description_176:
  533. .string LAN_DE "Anwender ändert\nElementklasse,\num resistenter\nzu sein."
  534. .global str_move_description_177
  535. str_move_description_177:
  536. .string LAN_DE "Erzeugt Luftstrudel\ngegen Gegner.\nHohe Volltreffer-\nquote."
  537. .global str_move_description_178
  538. str_move_description_178:
  539. .string LAN_DE "Wattebäusche\nheften sich an den\nGegner. Der\nInit.-Wert sinkt"
  540. .global str_move_description_179
  541. str_move_description_179:
  542. .string LAN_DE "Richtet mehr\nSchaden an,\nwenn eigene KP\nniedrig sind."
  543. .global str_move_description_180
  544. str_move_description_180:
  545. .string LAN_DE "AP des letzten\ngegnerischen\nAngriffs werden\num 2 - 5 gesenkt."
  546. .global str_move_description_181
  547. str_move_description_181:
  548. .string LAN_DE "Angriff mit Schnee.\nGegner wird evtl.\neingefroren."
  549. .global str_move_description_182
  550. str_move_description_182:
  551. .string LAN_DE "Anwender weicht\njeder Attacke aus.\nScheitert evtl. bei\nWiederholung."
  552. .global str_move_description_183
  553. str_move_description_183:
  554. .string LAN_DE "Extrem schneller\nHieb, der stets\nzuerst trifft."
  555. .global str_move_description_184
  556. str_move_description_184:
  557. .string LAN_DE "Erschreckt Gegner\nmit einer Grimasse. \nDer Init.-Wert\nsinkt deutlich."
  558. .global str_move_description_185
  559. str_move_description_185:
  560. .string LAN_DE "Zieht Gegner heran,\nentwaffnet ihn und\ntrifft gewiss."
  561. .global str_move_description_186
  562. str_move_description_186:
  563. .string LAN_DE "Anwender küsst\nGegner, der ob\ndieser Niedlichkeit\nverwirrt wird."
  564. .global str_move_description_187
  565. str_move_description_187:
  566. .string LAN_DE "Maximiert den\nAngr.-Wert,\nopfert jedoch die\nHälfte seiner KP."
  567. .global str_move_description_188
  568. str_move_description_188:
  569. .string LAN_DE "Gegner wird mit \ndreckigem Schlamm\nbeworfen,\nvergiftet ihn evtl."
  570. .global str_move_description_189
  571. str_move_description_189:
  572. .string LAN_DE "Schadet Gegner\ndurch Matsch.\nDie Genauigkeit\nsinkt."
  573. .global str_move_description_190
  574. str_move_description_190:
  575. .string LAN_DE "Schießt Tinte, um\nSchaden anzurich-\nten und die Genau-\nigkeit zu senken."
  576. .global str_move_description_191
  577. str_move_description_191:
  578. .string LAN_DE "Richtet bei Tausch\nSchaden mit\nStacheln an."
  579. .global str_move_description_192
  580. str_move_description_192:
  581. .string LAN_DE "Kanonenähnlicher\nElektro-Schuss, der\nschadet und\nevtl. paralysiert."
  582. .global str_move_description_193
  583. str_move_description_193:
  584. .string LAN_DE "Verhindert den\nAnstieg von\ngegnerischem\nFluchtwert."
  585. .global str_move_description_194
  586. str_move_description_194:
  587. .string LAN_DE "Wird der Angreifer\nbesiegt, gilt das\nauch für den\nGegner."
  588. .global str_move_description_195
  589. str_move_description_195:
  590. .string LAN_DE "Wer ihn hört, wird\nnach 3 Runden\nbesiegt. Rettung\ndurch Tausch."
  591. .global str_move_description_196
  592. str_move_description_196:
  593. .string LAN_DE "Eis-Attacke, die\nden Init.-Wert\ndes Gegners senkt."
  594. .global str_move_description_197
  595. str_move_description_197:
  596. .string LAN_DE "Anwender weicht\njeder Attacke aus.\nScheitert evtl. bei\nWiederholung."
  597. .global str_move_description_198
  598. str_move_description_198:
  599. .string LAN_DE "Greift Gegner 2 -\n5-mal in Folge mit\neinem Knochen an."
  600. .global str_move_description_199
  601. str_move_description_199:
  602. .string LAN_DE "Visiert Gegner an\nund trifft in der\nnächsten Runde\ngarantiert."
  603. .global str_move_description_200
  604. str_move_description_200:
  605. .string LAN_DE "Wiederholt Angriff\n2 - 3 Runden lang.\nAnschließend ist\ner verwirrt."
  606. .global str_move_description_201
  607. str_move_description_201:
  608. .string LAN_DE "Sandsturm für 5\nRunden. Kein Ef-\nfekt bei Gestein,\nBoden und Stahl."
  609. .global str_move_description_202
  610. str_move_description_202:
  611. .string LAN_DE "Starke Attacke!\nAbsorbiert die\nHälfte des ange-\nrichteten Schadens."
  612. .global str_move_description_203
  613. str_move_description_203:
  614. .string LAN_DE "1 KP bleibt stets\nübrig. Misserfolg\nbei Wiederholung\nmöglich."
  615. .global str_move_description_204
  616. str_move_description_204:
  617. .string LAN_DE "Betört den Gegner\nund reduziert\nseinen Angr.\ndeutlich."
  618. .global str_move_description_205
  619. str_move_description_205:
  620. .string LAN_DE "Attacke, die 5\nRunden dauert.\nDie Härte nimmt\nzu."
  621. .global str_move_description_206
  622. str_move_description_206:
  623. .string LAN_DE "Ein Angriff, der\ndem Gegner\nzumindest 1 KP\nlässt."
  624. .global str_move_description_207
  625. str_move_description_207:
  626. .string LAN_DE "Verwirrt den Gegner\nund erhöht den\nAngr.-Wert\ndeutlich."
  627. .global str_move_description_208
  628. str_move_description_208:
  629. .string LAN_DE "Max. KP d. Anwen-\nders werden halb\naufgefüllt. Team-\nheilung möglich."
  630. .global str_move_description_209
  631. str_move_description_209:
  632. .string LAN_DE "Elektro-Hieb, der\nden Gegner\nparalysieren kann."
  633. .global str_move_description_210
  634. str_move_description_210:
  635. .string LAN_DE "Eine Attacke, deren\nHärte bei jedem\nTreffer zunimmt."
  636. .global str_move_description_211
  637. str_move_description_211:
  638. .string LAN_DE "Trifft den Gegner\nmit Stahlflügeln.\nAnwenders Vert.\nsteigt evtl."
  639. .global str_move_description_212
  640. str_move_description_212:
  641. .string LAN_DE "Böser Blick, der\ndie Flucht des\nGegners vereitelt."
  642. .global str_move_description_213
  643. str_move_description_213:
  644. .string LAN_DE "Angriff des anderen\nGeschlechts\nunwahrscheinlich."
  645. .global str_move_description_214
  646. str_move_description_214:
  647. .string LAN_DE "Benutzt per Zufall\neine ihm bekannte\nAttacke im Schlaf."
  648. .global str_move_description_215
  649. str_move_description_215:
  650. .string LAN_DE "Läutet beruhigend\nund heilt alle\nStatusprobleme im\nTeam."
  651. .global str_move_description_216
  652. str_move_description_216:
  653. .string LAN_DE "Angriff, dessen\nKraft bei Freund-\nschaft zum Trai-\nner größer wird."
  654. .global str_move_description_217
  655. str_move_description_217:
  656. .string LAN_DE "Eine Bombe als\nGeschenk. Es\nkann auch KP\nwieder herstellen."
  657. .global str_move_description_218
  658. str_move_description_218:
  659. .string LAN_DE "Die Attacke ist\nstärker bei\nverhassten\nTrainern."
  660. .global str_move_description_219
  661. str_move_description_219:
  662. .string LAN_DE "Team d. Anwenders\nist 5 Runden vor\nStatusproblemen\ngeschützt."
  663. .global str_move_description_220
  664. str_move_description_220:
  665. .string LAN_DE "Addiert KP von\nAnwender und\nGegner. Teilt\ngerecht auf."
  666. .global str_move_description_221
  667. str_move_description_221:
  668. .string LAN_DE "Mystische Feuer-\nAttacke, die den\nGegner evtl.\nverbrennt."
  669. .global str_move_description_222
  670. str_move_description_222:
  671. .string LAN_DE "Erdbebenartiger An-\ngriff von zufälliger\nStärke gegen alle\nstehenden Gegner."
  672. .global str_move_description_223
  673. str_move_description_223:
  674. .string LAN_DE "Kräftiger Schlag,\nder den Gegner\nbei Erfolg evtl.\nverwirrt."
  675. .global str_move_description_224
  676. str_move_description_224:
  677. .string LAN_DE "Brutaler Ramm-\nangriff mit spitzem,\nbeeindruckenden\nHorn."
  678. .global str_move_description_225
  679. str_move_description_225:
  680. .string LAN_DE "Fegt den Gegner\nmit zerstörerisch\nheißem Atem weg."
  681. .global str_move_description_226
  682. str_move_description_226:
  683. .string LAN_DE "Tauscht PKMN aus.\nAlle Statusverän-\nderungen bleiben\nbestehen."
  684. .global str_move_description_227
  685. str_move_description_227:
  686. .string LAN_DE "Gegner wiederholt\nletzten Angriff\n2 - 6 Runden lang."
  687. .global str_move_description_228
  688. str_move_description_228:
  689. .string LAN_DE "Richtet großen\nSchaden bei\nAustausch des\nGegners an."
  690. .global str_move_description_229
  691. str_move_description_229:
  692. .string LAN_DE "Trifft den Gegner\ndurch Drehen mit\nmax. Tempo."
  693. .global str_move_description_230
  694. str_move_description_230:
  695. .string LAN_DE "Lockt Gegner an und\nsenkt den Flucht-\nwert. Lockt auch\nwilde PKMN an."
  696. .global str_move_description_231
  697. str_move_description_231:
  698. .string LAN_DE "Attacke mit hartem\nEisenschweif.\nSenkt evtl. den\nVert.-Wert."
  699. .global str_move_description_232
  700. str_move_description_232:
  701. .string LAN_DE "Klauen-Attacke, die\nevtl. den Angr.-\nWert des Anwen-\nders erhöht."
  702. .global str_move_description_233
  703. str_move_description_233:
  704. .string LAN_DE "Anwender greift als\nZweiter an, dafür\naber Treffer-\ngarantie."
  705. .global str_move_description_234
  706. str_move_description_234:
  707. .string LAN_DE "Füllt KP des\nAnwenders auf.\nDie Menge hängt\nvom Wetter ab."
  708. .global str_move_description_235
  709. str_move_description_235:
  710. .string LAN_DE "Füllt KP des\nAnwenders auf.\nDie Menge hängt\nvom Wetter ab."
  711. .global str_move_description_236
  712. str_move_description_236:
  713. .string LAN_DE "Füllt KP des\nAnwenders auf.\nDie Menge hängt\nvom Wetter ab."
  714. .global str_move_description_237
  715. str_move_description_237:
  716. .string LAN_DE "Die Wirkung und\nElementklasse der\nAttacke hängt\nvom Benutzer ab."
  717. .global str_move_description_238
  718. str_move_description_238:
  719. .string LAN_DE "Doppelter Hieb.\nHohe Volltreffer-\nquote."
  720. .global str_move_description_239
  721. str_move_description_239:
  722. .string LAN_DE "Trifft Gegner mit\nheftigem\nWirbelsturm."
  723. .global str_move_description_240
  724. str_move_description_240:
  725. .string LAN_DE "Erhöht Stärke\nvon Wasser-\nAttacken 5 \nRunden lang."
  726. .global str_move_description_241
  727. str_move_description_241:
  728. .string LAN_DE "Erhöht Stärke\nvon Feuer-\nAttacken 5\nRunden lang."
  729. .global str_move_description_242
  730. str_move_description_242:
  731. .string LAN_DE "Beißt mit scharfen\nReißzähnen zu\nund senkt evtl.\ndie Sp. Vert."
  732. .global str_move_description_243
  733. str_move_description_243:
  734. .string LAN_DE "Kontert die\nSpezial-Attacke\ndes Gegners mit\n2-facher Kraft."
  735. .global str_move_description_244
  736. str_move_description_244:
  737. .string LAN_DE "Selbsthypnose des\nAnw. zur Kopie der\nStatusveränderungen\ndes Gegners."
  738. .global str_move_description_245
  739. str_move_description_245:
  740. .string LAN_DE "Extrem schnelle\nund kraftvolle\nAttacke, die stets\nzuerst trifft."
  741. .global str_move_description_246
  742. str_move_description_246:
  743. .string LAN_DE "Angriff mit antiker\nKraft, der alle\nStatus-Werte\nerhöhen kann."
  744. .global str_move_description_247
  745. str_move_description_247:
  746. .string LAN_DE "Bewirft Gegner mit\ngruseligem Ball\nund senkt evtl.\ndie Sp. Vert."
  747. .global str_move_description_248
  748. str_move_description_248:
  749. .string LAN_DE "Zwei Runden nach-\ndem Seher einge-\nsetzt wurde erfolgt\ndie Attacke."
  750. .global str_move_description_249
  751. str_move_description_249:
  752. .string LAN_DE "Zertrümmernder An-\ngriff, auch bei\nSteinen. Senkt evtl.\ndie Vert."
  753. .global str_move_description_250
  754. str_move_description_250:
  755. .string LAN_DE "Hält Gegner 2 - 5\nRunden in einem\nStrudel gefangen."
  756. .global str_move_description_251
  757. str_move_description_251:
  758. .string LAN_DE "Das Team nimmt ak-\ntiv am Kampf teil.\nJe mehr Pokémon,\ndesto stärker."
  759. .global str_move_description_252
  760. str_move_description_252:
  761. .string LAN_DE "Trifft schon beim\nersten Schlag.\nGegner schreckt\nevtl. zurück."
  762. .global str_move_description_253
  763. str_move_description_253:
  764. .string LAN_DE "Erzeugt für 2 - 5\nRunden einen\nAufruhr. Verhindert\nSchlaf."
  765. .global str_move_description_254
  766. str_move_description_254:
  767. .string LAN_DE "Lädt Kraft für\nspäter auf. Kann\nbis zu 3-mal einge-\nsetzt werden."
  768. .global str_move_description_255
  769. str_move_description_255:
  770. .string LAN_DE "Entlädt die Kraft,\ndie während Ein-\nsatz von Horter\ngesammelt wurde."
  771. .global str_move_description_256
  772. str_move_description_256:
  773. .string LAN_DE "Absorbiert die\ngehortete Kraft,\num KP aufzufüllen."
  774. .global str_move_description_257
  775. str_move_description_257:
  776. .string LAN_DE "Gegner wird von\nheißem Atem\ngetroffen und ver-\nbrennt sich evtl."
  777. .global str_move_description_258
  778. str_move_description_258:
  779. .string LAN_DE "Hagelsturm für 5\nRunden. Schadet\nallen, außer\nEis-Pokémon."
  780. .global str_move_description_259
  781. str_move_description_259:
  782. .string LAN_DE "Erzürnt Gegner, um\nwiederholten Ein-\nsatz derselben Att.\nzu verhindern."
  783. .global str_move_description_260
  784. str_move_description_260:
  785. .string LAN_DE "Schmeichelt Geg-\nner, um ihn zu\nverwirren. Erhöht\ndessen Sp. Ang."
  786. .global str_move_description_261
  787. str_move_description_261:
  788. .string LAN_DE "Angriff mit blau-\nweißer Flamme,\ndie den Gegner \nverbrennt."
  789. .global str_move_description_262
  790. str_move_description_262:
  791. .string LAN_DE "Der Benutzer ist\nbesiegt und senkt\ndie gegnerischen\nWerte drastisch."
  792. .global str_move_description_263
  793. str_move_description_263:
  794. .string LAN_DE "Erhöht Angr. nach\nVerbrennung,\nParalyse oder\nVergiftung."
  795. .global str_move_description_264
  796. str_move_description_264:
  797. .string LAN_DE "Angriff, der zu-\nletzt erfolgt. Der\nAnwender schreckt\nevtl. zurück."
  798. .global str_move_description_265
  799. str_move_description_265:
  800. .string LAN_DE "Doppelt wirksam\ngegen paralysierte\nGegner, heilt sie\naber auch."
  801. .global str_move_description_266
  802. str_move_description_266:
  803. .string LAN_DE "Zieht Aufmerksam-\nkeit auf sich.\nGegner greift nur\nAnwender an."
  804. .global str_move_description_267
  805. str_move_description_267:
  806. .string LAN_DE "Die Elementklasse\ndes Angriffs hängt\nvom Ort ab."
  807. .global str_move_description_268
  808. str_move_description_268:
  809. .string LAN_DE "Lädt Energie für\nden kommenden\nElektro-Angriff\nauf."
  810. .global str_move_description_269
  811. str_move_description_269:
  812. .string LAN_DE "Legt den Gegner\nrein. Er benutzt\nnur noch Angriffe."
  813. .global str_move_description_270
  814. str_move_description_270:
  815. .string LAN_DE "Steigert die Kraft\nder Angriffe des\nGetroffenen im\nKampf."
  816. .global str_move_description_271
  817. str_move_description_271:
  818. .string LAN_DE "Gehaltene\nItems werden\nmit Anwender\ngetauscht."
  819. .global str_move_description_272
  820. str_move_description_272:
  821. .string LAN_DE "Parodiert Gegner\nund kopiert seine\nSpezialfähigkeiten."
  822. .global str_move_description_273
  823. str_move_description_273:
  824. .string LAN_DE "Ein Wunsch, der KP\nauffüllt. Die\nErfüllung braucht\nZeit."
  825. .global str_move_description_274
  826. str_move_description_274:
  827. .string LAN_DE "Greift zufällig mit\neiner Attacke eines\nTeampartners an."
  828. .global str_move_description_275
  829. str_move_description_275:
  830. .string LAN_DE "Verwurzelung füllt\njede Runde KP auf.\nAustausch ist\nunmöglich."
  831. .global str_move_description_276
  832. str_move_description_276:
  833. .string LAN_DE "Starker Angriff, der\nsowohl Angr. als\nauch Vert. des\nAnwenders senkt."
  834. .global str_move_description_277
  835. str_move_description_277:
  836. .string LAN_DE "Egelsamen und\njeder Angriff mit\nStatuseffekten\nprallt ab."
  837. .global str_move_description_278
  838. str_move_description_278:
  839. .string LAN_DE "Recycling eines\nverwendeten Items."
  840. .global str_move_description_279
  841. str_move_description_279:
  842. .string LAN_DE "Attacke wird\nstärker, wenn\nAnwender\nSchaden nimmt."
  843. .global str_move_description_280
  844. str_move_description_280:
  845. .string LAN_DE "Durchbricht Barri-\neren wie Licht-\nschild und\nReflektor."
  846. .global str_move_description_281
  847. str_move_description_281:
  848. .string LAN_DE "Angreifer gähnt und\nGeg. schläft in der\nnächsten Runde ein."
  849. .global str_move_description_282
  850. str_move_description_282:
  851. .string LAN_DE "Schlägt Gegner\nItem weg. Vereitelt\nso den Gebrauch."
  852. .global str_move_description_283
  853. str_move_description_283:
  854. .string LAN_DE "Wird stärker, wenn\nKP des Anwenders\ngeringer als KP des\nGegners sind."
  855. .global str_move_description_284
  856. str_move_description_284:
  857. .string LAN_DE "Je höher die KP\ndes Benutzers sind,\ndesto mehr Schaden\nwird angerichtet."
  858. .global str_move_description_285
  859. str_move_description_285:
  860. .string LAN_DE "Anwender tauscht\nSpezialfähigkeit mit\ngegnerischem\nPokémon."
  861. .global str_move_description_286
  862. str_move_description_286:
  863. .string LAN_DE "Hindert Gegner am\nEinsatz von\nAttacken, die der\nAnwender kennt."
  864. .global str_move_description_287
  865. str_move_description_287:
  866. .string LAN_DE "Selbstheilung bei\nVergiftung, \nParalyse und\nVerbrennung."
  867. .global str_move_description_288
  868. str_move_description_288:
  869. .string LAN_DE "Wird der Anwender\nbesiegt, werden\nAP der Finalattacke\ngelöscht."
  870. .global str_move_description_289
  871. str_move_description_289:
  872. .string LAN_DE "Raubt den Effekt\nder gegn. heilenden\noder Status ver-\nändernden Attacke."
  873. .global str_move_description_290
  874. str_move_description_290:
  875. .string LAN_DE "Angriff, der ab-\nhängig vom Ort\nnoch einen\nZusatzeffekt hat."
  876. .global str_move_description_291
  877. str_move_description_291:
  878. .string LAN_DE "Der Anwender\ntaucht in der 1.\nRunde unter und\ntrifft in Runde 2."
  879. .global str_move_description_292
  880. str_move_description_292:
  881. .string LAN_DE "Schläge mit\ngeradem Arm, die\nden Gegner 2 - 5-\nmal treffen."
  882. .global str_move_description_293
  883. str_move_description_293:
  884. .string LAN_DE "Die Elementklasse\ndes Pokémon\nhängt vom Ort ab."
  885. .global str_move_description_294
  886. str_move_description_294:
  887. .string LAN_DE "Ein blinkendes\nLicht, das den\nSp. Ang.\ndeutlich erhöht."
  888. .global str_move_description_295
  889. str_move_description_295:
  890. .string LAN_DE "Angriff mit grellem\nLicht, der die\nSp. Vert.\nevtl. senkt."
  891. .global str_move_description_296
  892. str_move_description_296:
  893. .string LAN_DE "Angriff mit Daunen-\ngestöber, der den\nSp. Ang.\nevtl. senkt."
  894. .global str_move_description_297
  895. str_move_description_297:
  896. .string LAN_DE "Hüllt Gegner in\nDaunen und\nsenkt den Angr.\ndeutlich."
  897. .global str_move_description_298
  898. str_move_description_298:
  899. .string LAN_DE "Ein Wackeltanz,\nder alle\nPokémon im \nKampf verwirrt."
  900. .global str_move_description_299
  901. str_move_description_299:
  902. .string LAN_DE "Starker Tritt mit\nhoher Volltreffer-\nquote. Verursacht\nevtl. Verbrennung."
  903. .global str_move_description_300
  904. str_move_description_300:
  905. .string LAN_DE "Schwächt Elektro-\nAttacken solange\nder Anwender am\nKampf teilnimmt."
  906. .global str_move_description_301
  907. str_move_description_301:
  908. .string LAN_DE "Roll-Angriff für 5\nRunden. Bei\nErfolg nimmt\ndie Stärke zu."
  909. .global str_move_description_302
  910. str_move_description_302:
  911. .string LAN_DE "Angriff mit dornigen\nArmen. Gegner\nschreckt evtl.\nzurück."
  912. .global str_move_description_303
  913. str_move_description_303:
  914. .string LAN_DE "Durch Müßiggang\nwird die Hälfte der\nmax. KP aufgefüllt."
  915. .global str_move_description_304
  916. str_move_description_304:
  917. .string LAN_DE "Laute Attacke mit\nSchallwellen."
  918. .global str_move_description_305
  919. str_move_description_305:
  920. .string LAN_DE "Angriff mit Gift-\nreißzähnen. Gegner\nwird evtl. schwer\nvergiftet."
  921. .global str_move_description_306
  922. str_move_description_306:
  923. .string LAN_DE "Angriff mit scharfen\nKlauen. Senkt evtl.\nden Vert.-Wert."
  924. .global str_move_description_307
  925. str_move_description_307:
  926. .string LAN_DE "Gegner wird von\nstarker Explosion\ngetroffen. Angreifer\nsetzt 1 Runde aus."
  927. .global str_move_description_308
  928. str_move_description_308:
  929. .string LAN_DE "Gegner wird von\nWasserkanone\ngetroffen. Angreifer\nsetzt 1 Runde aus."
  930. .global str_move_description_309
  931. str_move_description_309:
  932. .string LAN_DE "Angriff mit einem\nharten, schnellen\nSchlag. Erhöht\nevtl. Angr.-Wert."
  933. .global str_move_description_310
  934. str_move_description_310:
  935. .string LAN_DE "Angriff, der Gegner\nevtl. zurück-\nschrecken lässt."
  936. .global str_move_description_311
  937. str_move_description_311:
  938. .string LAN_DE "Elementklasse und\nStärke der Attacke\nsind vom Wetter\nabhängig."
  939. .global str_move_description_312
  940. str_move_description_312:
  941. .string LAN_DE "Heilt alle Status-\nprobleme des\nTeams mit be-\nruhigendem Duft."
  942. .global str_move_description_313
  943. str_move_description_313:
  944. .string LAN_DE "Täuscht Weinen vor,\num den gegnerischen\nSp. Vert.-Wert zu\nsenken."
  945. .global str_move_description_314
  946. str_move_description_314:
  947. .string LAN_DE "Greift mit rasier-\nklingenartigem\nWind an. Hohe\nVolltrefferquote."
  948. .global str_move_description_315
  949. str_move_description_315:
  950. .string LAN_DE "Angriff mit voller\nKraft, der den Sp.\nAng. d. Anwenders \ndeutlich senkt."
  951. .global str_move_description_316
  952. str_move_description_316:
  953. .string LAN_DE "Hindert Gegner\ndaran, ihren\nFluchtwert zu\nerhöhen."
  954. .global str_move_description_317
  955. str_move_description_317:
  956. .string LAN_DE "Angriff mit Felsen.\nBei Erfolg wird\nder Init.-Wert des\nGegners gesenkt."
  957. .global str_move_description_318
  958. str_move_description_318:
  959. .string LAN_DE "Angriff mit Silber-\nstaub. Evtl. werden\nalle Statuswerte d.\nAnwenders erhöht."
  960. .global str_move_description_319
  961. str_move_description_319:
  962. .string LAN_DE "Stößt einen spitzen\nSchrei aus, der\ndie Sp. Vert.\nd. Gegners senkt."
  963. .global str_move_description_320
  964. str_move_description_320:
  965. .string LAN_DE "Versetzt Gegner mit\nschöner Melodie in\nTiefschlaf."
  966. .global str_move_description_321
  967. str_move_description_321:
  968. .string LAN_DE "Bringt Gegner zum\nLachen und dadurch\nsinkt dessen Angr.\nund Vert."
  969. .global str_move_description_322
  970. str_move_description_322:
  971. .string LAN_DE "Erhöht Vert. und\nSp. Vert. durch\nmystische Kraft."
  972. .global str_move_description_323
  973. str_move_description_323:
  974. .string LAN_DE "Ist wirkungsvoller,\nwenn KP des\nAnwenders hoch\nsind."
  975. .global str_move_description_324
  976. str_move_description_324:
  977. .string LAN_DE "Strahlenattacke,\ndie den Gegner\nevtl. verwirrt."
  978. .global str_move_description_325
  979. str_move_description_325:
  980. .string LAN_DE "Angriff mit der\nFaust aus dem\nSchattenreich. Aus-\nweichen unmöglich."
  981. .global str_move_description_326
  982. str_move_description_326:
  983. .string LAN_DE "Besonderer Angriff,\nder den Gegner\nevtl. zurück-\nschrecken lässt."
  984. .global str_move_description_327
  985. str_move_description_327:
  986. .string LAN_DE "Kinnhaken, der den\nGegner gen\nHimmel schickt."
  987. .global str_move_description_328
  988. str_move_description_328:
  989. .string LAN_DE "Gegner leidet für\n2 - 5 Runden in\nSandhose."
  990. .global str_move_description_329
  991. str_move_description_329:
  992. .string LAN_DE "Angriff mit Kälte,\ndie den Gegner\nbei Erfolg besiegt."
  993. .global str_move_description_330
  994. str_move_description_330:
  995. .string LAN_DE "Greift mit Matsch\nan und senkt evtl.\ndie Genauigkeit\ndes Gegners."
  996. .global str_move_description_331
  997. str_move_description_331:
  998. .string LAN_DE "Verschießt 2 bis 5\nSamen gleichzeitig\nauf den Gegner."
  999. .global str_move_description_332
  1000. str_move_description_332:
  1001. .string LAN_DE "Eine extrem\nschnelle und\nunausweichbare\nAttacke."
  1002. .global str_move_description_333
  1003. str_move_description_333:
  1004. .string LAN_DE "Feuert 2 - 5\nEiszapfen auf\nden Gegner."
  1005. .global str_move_description_334
  1006. str_move_description_334:
  1007. .string LAN_DE "Anwender stärkt\nden Körper, um den\nVert.-Wert deutlich\nzu erhöhen."
  1008. .global str_move_description_335
  1009. str_move_description_335:
  1010. .string LAN_DE "Anwender versperrt\nden Fluchtweg des\nGegners mit aus-\ngestreckten Armen."
  1011. .global str_move_description_336
  1012. str_move_description_336:
  1013. .string LAN_DE "Anwender jault, um\nin sich zu gehen\nund seinen Angr.-\nWert zu erhöhen."
  1014. .global str_move_description_337
  1015. str_move_description_337:
  1016. .string LAN_DE "Der Gegner wird mit\nriesigen, scharfen\nKlauen stark\nverletzt."
  1017. .global str_move_description_338
  1018. str_move_description_338:
  1019. .string LAN_DE "Angriff mit dickem\nAst. Der Angreifer\nmuss eine Runde\naussetzen."
  1020. .global str_move_description_339
  1021. str_move_description_339:
  1022. .string LAN_DE "Pumpt den Körper\nauf, um den Angr.\nund die Vert. \nzu erhöhen."
  1023. .global str_move_description_340
  1024. str_move_description_340:
  1025. .string LAN_DE "Angreifer bespringt\nden Gegner in Runde\n2. Der Gegner wird\nevtl. paralysiert."
  1026. .global str_move_description_341
  1027. str_move_description_341:
  1028. .string LAN_DE "Angriff mit Lehm,\nder den Init.-Wert\ndes Gegners senkt."
  1029. .global str_move_description_342
  1030. str_move_description_342:
  1031. .string LAN_DE "Angriff mit hoher\nVolltrefferquote. \nDer Gegner wird\nevtl. vergiftet."
  1032. .global str_move_description_343
  1033. str_move_description_343:
  1034. .string LAN_DE "Bittet charmant um\ndas gehaltene Item\ndes Gegners."
  1035. .global str_move_description_344
  1036. str_move_description_344:
  1037. .string LAN_DE "Angriff mit Elektro-\nTackle. Der\nAnwender verletzt\nsich dabei leicht."
  1038. .global str_move_description_345
  1039. str_move_description_345:
  1040. .string LAN_DE "Magischer Blatt-\nangriff, dem nicht\nauszuweichen ist."
  1041. .global str_move_description_346
  1042. str_move_description_346:
  1043. .string LAN_DE "Schwächt Feuer-\nAttacken, solange\nder Anwender am\nKampf teilnimmt."
  1044. .global str_move_description_347
  1045. str_move_description_347:
  1046. .string LAN_DE "Erhöht Sp. Ang.\nund Sp. Vert.\ndurch\nKonzentration."
  1047. .global str_move_description_348
  1048. str_move_description_348:
  1049. .string LAN_DE "Hieb mit scharf-\nkantigem Blatt.\nHohe Volltreffer-\nquote."
  1050. .global str_move_description_349
  1051. str_move_description_349:
  1052. .string LAN_DE "Ein mystischer\nTanz, der den\nAngr.- und Init.-\nWert erhöht."
  1053. .global str_move_description_350
  1054. str_move_description_350:
  1055. .string LAN_DE "Wirft 2 - 5-mal in\nFolge Felsblöcke\nauf den Gegner."
  1056. .global str_move_description_351
  1057. str_move_description_351:
  1058. .string LAN_DE "Angriff mit schnel-\nlem Elektro-Schlag.\nAusweichen nicht\nmöglich."
  1059. .global str_move_description_352
  1060. str_move_description_352:
  1061. .string LAN_DE "Angriff mit Wasser-\nwelle, die den\nGegner evtl.\nverwirren kann."
  1062. .global str_move_description_353
  1063. str_move_description_353:
  1064. .string LAN_DE "Angriff mit Sonnen-\nenergie erfolgt\n2 Runden nach\nAttackeneinsatz."
  1065. .global str_move_description_354
  1066. str_move_description_354:
  1067. .string LAN_DE "Angriff mit voller\nKraft, der den\nSp. Ang. des\nAnwenders senkt."
  1068. .global str_move_description_355
  1069. str_move_description_355:
  1070. .string LAN_DE "Anw. landet und ruht\nsich aus. Max. die\nHälfte der KP werden\nso regeneriert."
  1071. .global str_move_description_356
  1072. str_move_description_356:
  1073. .string LAN_DE "Erhöht Gravitation\nund macht Fliegen\nunmöglich und\nnegiert Schweben."
  1074. .global str_move_description_357
  1075. str_move_description_357:
  1076. .string LAN_DE "Unlicht-PKMN können\nmit jeder Att.\nange- griffen\nwerden."
  1077. .global str_move_description_358
  1078. str_move_description_358:
  1079. .string LAN_DE "Großer Schaden bei\nschlafenden Gegner.\nWeckt ihn aber auch\nauf."
  1080. .global str_move_description_359
  1081. str_move_description_359:
  1082. .string LAN_DE "Anwender trifft mit\neinem starken Hieb.\nSenkt Initiative\ndes Anwenders."
  1083. .global str_move_description_360
  1084. str_move_description_360:
  1085. .string LAN_DE "Angriff mit hoher\nGeschw. Je\nlangsamer d. Anw.,\ndesto mehr Schaden."
  1086. .global str_move_description_361
  1087. str_move_description_361:
  1088. .string LAN_DE "Anwender geht K.O.\nDas nachfolgende\nPKMN wird\nvollständig geheilt."
  1089. .global str_move_description_362
  1090. str_move_description_362:
  1091. .string LAN_DE "Trifft mit doppelter\nKraft, wenn Geg.\nDie hälfte seiner\nKP hat."
  1092. .global str_move_description_363
  1093. str_move_description_363:
  1094. .string LAN_DE "Die Stärke dieser\nAtt. ist abhängig\nvon der getragenen\nBeere."
  1095. .global str_move_description_364
  1096. str_move_description_364:
  1097. .string LAN_DE "Gegner, die Schutz-\nschild und Scanner\nverwenden, werden\ngetroffen."
  1098. .global str_move_description_365
  1099. str_move_description_365:
  1100. .string LAN_DE "Pflückt dem Gegner\ndie Beere weg und\nbenutzt sie selber."
  1101. .global str_move_description_366
  1102. str_move_description_366:
  1103. .string LAN_DE "Ein Wirbelwind, der\ndie Init.-Werte im\nTeam für 4 Runden\nerhöht."
  1104. .global str_move_description_367
  1105. str_move_description_367:
  1106. .string LAN_DE "Erhöht einen\nzufälligen\nStatuswert."
  1107. .global str_move_description_368
  1108. str_move_description_368:
  1109. .string LAN_DE "Kontert mit 1.5x\nFacher Stärke den\nAngriff des Geg.\nZurück."
  1110. .global str_move_description_369
  1111. str_move_description_369:
  1112. .string LAN_DE "Nach erfolgreichem\nAngriff, kehrt es\nzum Team zurück."
  1113. .global str_move_description_370
  1114. str_move_description_370:
  1115. .string LAN_DE "Att. ohne Rücksicht\nauf Verluste. Senkt\nVert. u. Sp. Vert.\ndes Anw."
  1116. .global str_move_description_371
  1117. str_move_description_371:
  1118. .string LAN_DE "Wenn der Anw. Nach\ndem Geg. Aggiert,\nwird die Kraft\nverdoppelt."
  1119. .global str_move_description_372
  1120. str_move_description_372:
  1121. .string LAN_DE "Verdoppelt Stärke,\nwenn Geg. in der\nselben Runde schaden\ngenommen hat."
  1122. .global str_move_description_373
  1123. str_move_description_373:
  1124. .string LAN_DE "Verhindert, dass der\nGegner oder Trainer\ndes Gegners Items\nverwenden kann."
  1125. .global str_move_description_374
  1126. str_move_description_374:
  1127. .string LAN_DE "Kraft und Effekt\nder Att. hängen vom\nItem ab, das\ngeschleudert wird."
  1128. .global str_move_description_375
  1129. str_move_description_375:
  1130. .string LAN_DE "Transferiert\nStatusprobleme auf\nden Gegner."
  1131. .global str_move_description_376
  1132. str_move_description_376:
  1133. .string LAN_DE "Je weniger AP diese\nAttacke hat, desto\nmehr Angriffskraft\nbesitzt sie."
  1134. .global str_move_description_377
  1135. str_move_description_377:
  1136. .string LAN_DE "Verhindert 5 Runden,\ndass Geg. Att. ver-\nwendet, die seine\nKP regenerieren."
  1137. .global str_move_description_378
  1138. str_move_description_378:
  1139. .string LAN_DE "Je höher die KP des\nGegners, desto\nkraftvoller d. Att."
  1140. .global str_move_description_379
  1141. str_move_description_379:
  1142. .string LAN_DE "Anwender tauscht\neigene Angriffs-\nmit Verteidigungs-\nWert."
  1143. .global str_move_description_380
  1144. str_move_description_380:
  1145. .string LAN_DE "Angriff mit Magen-\nsäften. Entfernt\nEffekte gegn.\nSpezialfähigkeit."
  1146. .global str_move_description_381
  1147. str_move_description_381:
  1148. .string LAN_DE "Schützt den\nAnwender in der\nRunde vor\nVolltreffern."
  1149. .global str_move_description_382
  1150. str_move_description_382:
  1151. .string LAN_DE "Führt gegn. Angriff\nmit doppelter Kraft\naus."
  1152. .global str_move_description_383
  1153. str_move_description_383:
  1154. .string LAN_DE "Erwidert gegne-\nrischen Angriff\nmit derselben\nAttacke."
  1155. .global str_move_description_384
  1156. str_move_description_384:
  1157. .string LAN_DE "Tauscht Änderungen\nan Ang. u. Sp. Ang.\nmit denen des Geg."
  1158. .global str_move_description_385
  1159. str_move_description_385:
  1160. .string LAN_DE "Tauscht Änderungen\nan Vert. u. Sp.\nVert. mit denen des\nGeg."
  1161. .global str_move_description_386
  1162. str_move_description_386:
  1163. .string LAN_DE "Je stärker der Geg.\ndurch Statusänder-\nungen ist, umso\nstärker der Ang."
  1164. .global str_move_description_387
  1165. str_move_description_387:
  1166. .string LAN_DE "Ang. gelingt nur,\nwenn alle Ang.\nMind. 1 mal\nverwendet wurden."
  1167. .global str_move_description_388
  1168. str_move_description_388:
  1169. .string LAN_DE "Gegner wird\nbepflanzt. Wandelt\nFähigkeit in\nInsomnia um."
  1170. .global str_move_description_389
  1171. str_move_description_389:
  1172. .string LAN_DE "Ermöglicht den Erst-\nschlag, wenn der\nGeg. gerade eine\nAtt. vorbereitet."
  1173. .global str_move_description_390
  1174. str_move_description_390:
  1175. .string LAN_DE "Beim Betreten des\nKampfes, werden die\ngegn. PKMN\nvergiftet."
  1176. .global str_move_description_391
  1177. str_move_description_391:
  1178. .string LAN_DE "Tauscht eigene und\ngegn.\nStatuswertverände."
  1179. .global str_move_description_392
  1180. str_move_description_392:
  1181. .string LAN_DE "Ein Schleier aus\nWasser, das einige\nKP pro Runde\nregeneriert."
  1182. .global str_move_description_393
  1183. str_move_description_393:
  1184. .string LAN_DE "Anw. schwebt für 5\nRunden durch elek-\ntrisch erzeugten\nMagnetismus."
  1185. .global str_move_description_394
  1186. str_move_description_394:
  1187. .string LAN_DE "Anw. stürmt in\nFlammen auf Geg.\nAnw. nimmt dabei\nauch Schaden."
  1188. .global str_move_description_395
  1189. str_move_description_395:
  1190. .string LAN_DE "Gegner wird mit\nSchockwelle ange-\ngriffen, die ihn\nevtl. paralysiert."
  1191. .global str_move_description_396
  1192. str_move_description_396:
  1193. .string LAN_DE "Auraenergie,\nwelches auf jeden\nFall trifft."
  1194. .global str_move_description_397
  1195. str_move_description_397:
  1196. .string LAN_DE "Anw. reduziert den\nLuftwiderstand.\nSteigert Init.\nenorm."
  1197. .global str_move_description_398
  1198. str_move_description_398:
  1199. .string LAN_DE "Giftiger Hieb,\nwelches den Geg.\nevent. vergiftet."
  1200. .global str_move_description_399
  1201. str_move_description_399:
  1202. .string LAN_DE "Att. mit fürchter-\nlicher Aura, der den\nGeg. evtl. zurück\nschrecken lässt."
  1203. .global str_move_description_400
  1204. str_move_description_400:
  1205. .string LAN_DE "Angriff mit\nscharfen Klauen.\nHohe Volltreffer-\nquote."
  1206. .global str_move_description_401
  1207. str_move_description_401:
  1208. .string LAN_DE "Angriff mit einem\nnassem Schweif."
  1209. .global str_move_description_402
  1210. str_move_description_402:
  1211. .string LAN_DE "Eine menge Samen\nmit harter Schale\nfallen auf den Geg.\nvon oben."
  1212. .global str_move_description_403
  1213. str_move_description_403:
  1214. .string LAN_DE "Geg. wird mit einer\nLuftklinge angegrif-\nfen. Geg. schreckt\nevtl. zurück."
  1215. .global str_move_description_404
  1216. str_move_description_404:
  1217. .string LAN_DE "Der Anwender führt\neine Attacke aus,\ndie einer Scheren-\nbewegung ähnelt."
  1218. .global str_move_description_405
  1219. str_move_description_405:
  1220. .string LAN_DE "Anw. schlägt mit\nFlügeln und erzeugt\nSchockwelle. Senkt\ngegn. Sp. Vert."
  1221. .global str_move_description_406
  1222. str_move_description_406:
  1223. .string LAN_DE "Schockwelle die\naus dem offenen\nMaul des Anw. kommt."
  1224. .global str_move_description_407
  1225. str_move_description_407:
  1226. .string LAN_DE "Anw. führt einen\ngefährlichen Ang.\naus. Geg. schreckt\nevtl. zurück."
  1227. .global str_move_description_408
  1228. str_move_description_408:
  1229. .string LAN_DE "Att. mit einem\nLichtstrahl, welcher\nfunkelt, als sei er\naus Juwelen."
  1230. .global str_move_description_409
  1231. str_move_description_409:
  1232. .string LAN_DE "Attacke, die die\nHälfte des\nSchadens\nabsorbiert."
  1233. .global str_move_description_410
  1234. str_move_description_410:
  1235. .string LAN_DE "Sehr schneller\nAngriff mit\nErstschlaggarantie."
  1236. .global str_move_description_411
  1237. str_move_description_411:
  1238. .string LAN_DE "Ang. mit aller\nMacht. Die Sp.\nVert. des Zieles\nsinkt evtl."
  1239. .global str_move_description_412
  1240. str_move_description_412:
  1241. .string LAN_DE "Kraft aus der\nNatur. Senkt event.\ngegn. Sp. Vert."
  1242. .global str_move_description_413
  1243. str_move_description_413:
  1244. .string LAN_DE "Ang. aus niedriger\nHöhe an. Anw.\nerleidet\nRückstoßschaden."
  1245. .global str_move_description_414
  1246. str_move_description_414:
  1247. .string LAN_DE "Ang. durch\nErzitterung der\nErde. Senkt evtl.\nSp. Vert."
  1248. .global str_move_description_415
  1249. str_move_description_415:
  1250. .string LAN_DE "Item wird in\nWindeseile mit dem\nGegner getauscht."
  1251. .global str_move_description_416
  1252. str_move_description_416:
  1253. .string LAN_DE "Ang. mit ganzer\nKraft, bei der der\nAnw. eine Runde\nruhen muss."
  1254. .global str_move_description_417
  1255. str_move_description_417:
  1256. .string LAN_DE "Finstere Gedanken,\ndie Sp. Ang. Des\nAnw. enorm steigert."
  1257. .global str_move_description_418
  1258. str_move_description_418:
  1259. .string LAN_DE "Ultraschneller\nHieb. Erstschlag-\ngarantie."
  1260. .global str_move_description_419
  1261. str_move_description_419:
  1262. .string LAN_DE "Angriffsstärke\nverdoppelt sich,\nwenn Anw. Nach Geg.\nAggiert."
  1263. .global str_move_description_420
  1264. str_move_description_420:
  1265. .string LAN_DE "Schnelle Eisklumpen\nAttk. Diese Attacke\nhat Erstschlag-\ngarantie."
  1266. .global str_move_description_421
  1267. str_move_description_421:
  1268. .string LAN_DE "Scharfe Klauen aus\nder Schattenwelt.\nHohe Volltreffer-\nquote."
  1269. .global str_move_description_422
  1270. str_move_description_422:
  1271. .string LAN_DE "Ang. mit Reißzähnen.\nGeg. schreckt evtl.\nzurück o. wird\nparalysiert."
  1272. .global str_move_description_423
  1273. str_move_description_423:
  1274. .string LAN_DE "Ang. mit Reißzähnen.\nGeg. schreckt evtl.\nzurück o. wird\neingefrohren."
  1275. .global str_move_description_424
  1276. str_move_description_424:
  1277. .string LAN_DE "Ang. mit Reißzähnen.\nGeg. schreckt evtl.\nzurück o. wird\nverbrannt."
  1278. .global str_move_description_425
  1279. str_move_description_425:
  1280. .string LAN_DE "Angriff von hinten.\nErstschlag-\ngarantie."
  1281. .global str_move_description_426
  1282. str_move_description_426:
  1283. .string LAN_DE "Ang. mit\nSchlammklumpen.\nSenkt evtl. gegn.\nGenauigkeit."
  1284. .global str_move_description_427
  1285. str_move_description_427:
  1286. .string LAN_DE "Klingen, die aus\nPsycho-Energie\nstammen. Hohe\nVolltrefferquote."
  1287. .global str_move_description_428
  1288. str_move_description_428:
  1289. .string LAN_DE "Rammt den Gegn.\nDieser schreckt\neventuell zurück."
  1290. .global str_move_description_429
  1291. str_move_description_429:
  1292. .string LAN_DE "Energiestrahl,\nwelches evtl.\nGenauigkeit d.\nGegn. Senkt."
  1293. .global str_move_description_430
  1294. str_move_description_430:
  1295. .string LAN_DE "Ang. mit Lichtener-\ngie Senkt evtl.\ngegn. Sp. Vert."
  1296. .global str_move_description_431
  1297. str_move_description_431:
  1298. .string LAN_DE "Eine stürmische\nAttacke, die d.\nGegn. eventuell\nverwirrt."
  1299. .global str_move_description_432
  1300. str_move_description_432:
  1301. .string LAN_DE "Fluchtwert des Geg.\nwird durch\nHindernisse\ngesenkt."
  1302. .global str_move_description_433
  1303. str_move_description_433:
  1304. .string LAN_DE "Bizarrer Raum, in\ndem langsame PKMN 5\nRunden lang zuerst\nagieren."
  1305. .global str_move_description_434
  1306. str_move_description_434:
  1307. .string LAN_DE "Kometen Ang. Der\nRückstoß redu-\nziert Sp. Ang. des\nAnw. enorm."
  1308. .global str_move_description_435
  1309. str_move_description_435:
  1310. .string LAN_DE "Ang., wo jedes im\nKampf befindliche\nPKMN an evtl.\nParalysiert wird."
  1311. .global str_move_description_436
  1312. str_move_description_436:
  1313. .string LAN_DE "Flammeninferno fegt\nim Feld. Kann\nVerbrennungen\nerzeugen."
  1314. .global str_move_description_437
  1315. str_move_description_437:
  1316. .string LAN_DE "Ein Sturm von\nscharfen Blättern.\nRückstoß senkt Sp.\nAng. d. Anw."
  1317. .global str_move_description_438
  1318. str_move_description_438:
  1319. .string LAN_DE "Anw. wirbelt seine\nRanken oder Tentakel\npeitschenartig\ngegen den Geg."
  1320. .global str_move_description_439
  1321. str_move_description_439:
  1322. .string LAN_DE "Anw. wirft\ngigantischen Felsen\nauf Geg. In der 2.\nRunde muss er ruhen."
  1323. .global str_move_description_440
  1324. str_move_description_440:
  1325. .string LAN_DE "Ein scharfer Hieb,\nder den Geg. evtl.\nvergiftet. Hohe\nVolltrefferquote."
  1326. .global str_move_description_441
  1327. str_move_description_441:
  1328. .string LAN_DE "Anw. schießt mit\nMüll auf den Geg.\nVergiftet den Geg.\nevtl."
  1329. .global str_move_description_442
  1330. str_move_description_442:
  1331. .string LAN_DE "Ang. mit\nstahlharten Kopf.\nGeg. schreckt evtl.\nzurück."
  1332. .global str_move_description_443
  1333. str_move_description_443:
  1334. .string LAN_DE "Ziel wird durch\neine Haftbombe\ngetroffen. Diese\nAtt. trifft immer."
  1335. .global str_move_description_444
  1336. str_move_description_444:
  1337. .string LAN_DE "Anw. sticht den\nGeg. mit scharfen\nSteinen. Hohe\nVolltrefferquote."
  1338. .global str_move_description_445
  1339. str_move_description_445:
  1340. .string LAN_DE "Senkt Sp. Ang. des\nGeg., falls dieser\ndem anderen\nGeschlecht angehört."
  1341. .global str_move_description_446
  1342. str_move_description_446:
  1343. .string LAN_DE "Schwebenden Steine,\ndie im Kampf\neingreifende Gegner\nnehmen Schaden."
  1344. .global str_move_description_447
  1345. str_move_description_447:
  1346. .string LAN_DE "Je schwerer der\nGegn., desto mehr\nSchaden."
  1347. .global str_move_description_448
  1348. str_move_description_448:
  1349. .string LAN_DE "Attacke mit\nSchallwellen.\nVerwirrt den Gegner\neventuell."
  1350. .global str_move_description_449
  1351. str_move_description_449:
  1352. .string LAN_DE "Angriff hängt vom\nTyp der gehaltenen\nTafel ab."
  1353. .global str_move_description_450
  1354. str_move_description_450:
  1355. .string LAN_DE "Anw. frisst dem\nGeg. die Beere weg\nund nutzt seinen\nEffekt."
  1356. .global str_move_description_451
  1357. str_move_description_451:
  1358. .string LAN_DE "Bestrahlt Geg. mit\nElektrostrahl. Anw.\nSp. Ang. Steigt\nevtl."
  1359. .global str_move_description_452
  1360. str_move_description_452:
  1361. .string LAN_DE "Ang. mit robustem\nKörper. Anw.\nerleidet dabei auch\nselbst Schaden."
  1362. .global str_move_description_453
  1363. str_move_description_453:
  1364. .string LAN_DE "Ang. Mit hoher\nGeschwindigkeit.\nErstschlaggarantie."
  1365. .global str_move_description_454
  1366. str_move_description_454:
  1367. .string LAN_DE "Anw. ruft seine\nUntergebenen zum\nAng. Hat eine hohe\nVolltrefferquote."
  1368. .global str_move_description_455
  1369. str_move_description_455:
  1370. .string LAN_DE "Untergebene bilden\nSchild um den Anw.\nSteigert Vert. und\nSp. Vert."
  1371. .global str_move_description_456
  1372. str_move_description_456:
  1373. .string LAN_DE "Untergebene heilen\nden Anw. Er\nregeneriert 50%\nder KP."
  1374. .global str_move_description_457
  1375. str_move_description_457:
  1376. .string LAN_DE "Ang. mit schwerem\nKopfstoß. Anw.\nnimmt selber\nSchaden."
  1377. .global str_move_description_458
  1378. str_move_description_458:
  1379. .string LAN_DE "Doppelter Schlag\nmit dem Schweif\noder Ähnlichem."
  1380. .global str_move_description_459
  1381. str_move_description_459:
  1382. .string LAN_DE "Ang. die die Zeit\nverzerrt. Anw. Muss\nsich eine Runde\nausruhen."
  1383. .global str_move_description_460
  1384. str_move_description_460:
  1385. .string LAN_DE "Schwere,\nraumgreifende\nAttacke. Hohe\nVolltrefferquote."
  1386. .global str_move_description_461
  1387. str_move_description_461:
  1388. .string LAN_DE "Anw. Geht K.O. Das\nnachfolgende PKMN\nwird vollständig\ngeheilt."
  1389. .global str_move_description_462
  1390. str_move_description_462:
  1391. .string LAN_DE "Je höher die KP des\nGegners, desto\nstärker die\nAttacke."
  1392. .global str_move_description_463
  1393. str_move_description_463:
  1394. .string LAN_DE "Ein Feuersog, der\nzwei bis fünf\nRunden aktiv ist."
  1395. .global str_move_description_464
  1396. str_move_description_464:
  1397. .string LAN_DE "Der Gegner wird in\ndie Dunkelheit\ngezogen und in\nSchlaf versetzt."
  1398. .global str_move_description_465
  1399. str_move_description_465:
  1400. .string LAN_DE "Anw. erzeugt eine\nSchockwelle, die\nauch Sp. Vert.\nsenkt."
  1401. .global str_move_description_466
  1402. str_move_description_466:
  1403. .string LAN_DE "Ein abscheulicher\nWind, der evtl.\nalle Statuswerte\ndes Anw. steigert."
  1404. .global str_move_description_467
  1405. str_move_description_467:
  1406. .string LAN_DE "Anw. greift in der\n2. Runde an und\ndurchbricht\nSchutzschilder."
  1407. .global str_move_description_468
  1408. str_move_description_468:
  1409. .string LAN_DE "Erhöht Angriff und\nGenauigkeit des\nAnwenders."
  1410. .global str_move_description_469
  1411. str_move_description_469:
  1412. .string LAN_DE "Schützt 1. Runde\nPKMN im Team.\nKlappt nur selten\nmehrmals in Folge."
  1413. .global str_move_description_470
  1414. str_move_description_470:
  1415. .string LAN_DE "Vert. und Sp. Vert.\nwerden addiert und\nin zwei gleiche\nHälften geteilt."
  1416. .global str_move_description_471
  1417. str_move_description_471:
  1418. .string LAN_DE "Ang. und Sp. Ang.\nwerden addiert und\nin zwei gleiche\nHälften geteilt."
  1419. .global str_move_description_472
  1420. str_move_description_472:
  1421. .string LAN_DE "Bizarrer Raum, wo\n5 Runden die Vert.\nmit Sp. Vert.\ngetauscht wird."
  1422. .global str_move_description_473
  1423. str_move_description_473:
  1424. .string LAN_DE "Seltsame\nEnergiewelle, die\ndem Ziel physischen\nSchaden zufügt."
  1425. .global str_move_description_474
  1426. str_move_description_474:
  1427. .string LAN_DE "Attk. ist doppelt\nso stark gegen\nvergiftete Ziele."
  1428. .global str_move_description_475
  1429. str_move_description_475:
  1430. .string LAN_DE "Anw. steigert seine\nInit. stark. Sein\nGewicht nimmt\ndeutlich ab."
  1431. .global str_move_description_476
  1432. str_move_description_476:
  1433. .string LAN_DE "Zieht Aufmerksam-\nkeit auf sich.\nGegner greift nur\nAnwender an."
  1434. .global str_move_description_477
  1435. str_move_description_477:
  1436. .string LAN_DE "Ziel wird zum\nschweben gebracht\nund ist 3 Runden\nleicht zu treffen."
  1437. .global str_move_description_478
  1438. str_move_description_478:
  1439. .string LAN_DE "Bizarren Raum, wo 5\nRunden getragene\nItems keine Wirkung\nhaben."
  1440. .global str_move_description_479
  1441. str_move_description_479:
  1442. .string LAN_DE "Fliegende Ziele\nfallen vom Himmel\nund landen auf dem\nBoden."
  1443. .global str_move_description_480
  1444. str_move_description_480:
  1445. .string LAN_DE "Ein Angriff mit\nvoller Wucht und\nVolltreffergarantie."
  1446. .global str_move_description_481
  1447. str_move_description_481:
  1448. .string LAN_DE "Die Funken der\ngeplatzten Blasen\ntreffen auch\nbenachbarte Ziele."
  1449. .global str_move_description_482
  1450. str_move_description_482:
  1451. .string LAN_DE "Greift mit einer\nSchlammwelle an,\nwelches evtl.\nvergiftet."
  1452. .global str_move_description_483
  1453. str_move_description_483:
  1454. .string LAN_DE "Mystischer Tanz,\nwelches Sp. Ang.,\nSp. Vert. & Init.\nSteigert."
  1455. .global str_move_description_484
  1456. str_move_description_484:
  1457. .string LAN_DE "Je schwerer der\nAnw. im Vergleich\nzum Ziel ist, desto\nstärker die Att."
  1458. .global str_move_description_485
  1459. str_move_description_485:
  1460. .string LAN_DE "Druckwellen treffen\nGeg., wenn der Awn.\nvom selben Typen\nist."
  1461. .global str_move_description_486
  1462. str_move_description_486:
  1463. .string LAN_DE "Je höher die Init.\ndes Anw. als des\nGeg. ist, umso\nstärker der Ang."
  1464. .global str_move_description_487
  1465. str_move_description_487:
  1466. .string LAN_DE "Ändert den Typen\ndes Geg. in Wasser\num."
  1467. .global str_move_description_488
  1468. str_move_description_488:
  1469. .string LAN_DE "Flammenumhüllter\nAng. der die Init.\ndes Anw. Erhöht."
  1470. .global str_move_description_489
  1471. str_move_description_489:
  1472. .string LAN_DE "Anw. rollt sich\nzusammen. Dabei\nwerden Ang., Vert. &\nGenau. Erhöhrt."
  1473. .global str_move_description_490
  1474. str_move_description_490:
  1475. .string LAN_DE "Anw. greift Beine\ndes Geg. An und\nsenkt seine Init."
  1476. .global str_move_description_491
  1477. str_move_description_491:
  1478. .string LAN_DE "Ätzende\nFlüssigkeit, die\ngegn. Sp. Vert.\nstark senkt."
  1479. .global str_move_description_492
  1480. str_move_description_492:
  1481. .string LAN_DE "Anw. macht sich\nKraft des Geg. zu-\nnutze. Stärke hängt\nvom gegn. Ang. ab."
  1482. .global str_move_description_493
  1483. str_move_description_493:
  1484. .string LAN_DE "Strahl, der gegn.\nFähigkeit in\nWankelmut ändert."
  1485. .global str_move_description_494
  1486. str_move_description_494:
  1487. .string LAN_DE "Seltsamer Tanz, wo\nGeg. die selbe\nFähigkeit des Anw.\nannimmt."
  1488. .global str_move_description_495
  1489. str_move_description_495:
  1490. .string LAN_DE "Ziel darf direkt\nnach Anw. Aggieren,\nfalls Anw. Als\nerstes angreift."
  1491. .global str_move_description_496
  1492. str_move_description_496:
  1493. .string LAN_DE "Ang. mit Gesang.\nSingt der Anw. mit\nallen im Kanon,\nsteigt die Stärke."
  1494. .global str_move_description_497
  1495. str_move_description_497:
  1496. .string LAN_DE "Stärke der Att.\nsteigt, wenn jeder\nin der Runde sie\neinsetzt."
  1497. .global str_move_description_498
  1498. str_move_description_498:
  1499. .string LAN_DE "Richtet unabhängig\nvon Status-\nänderungen\nSchaden an."
  1500. .global str_move_description_499
  1501. str_move_description_499:
  1502. .string LAN_DE "Schlammklumpen, die\nStatuswerte des\nGeg. Zurücksetzt."
  1503. .global str_move_description_500
  1504. str_move_description_500:
  1505. .string LAN_DE "Je höher die\nStatuswerte des\nAnw., umso stärker\ndie Att."
  1506. .global str_move_description_501
  1507. str_move_description_501:
  1508. .string LAN_DE "Schützt Team vor\ngegn. Erstschlag-\nAtt. Mehrfachge-\nbrauch schlägt fehl."
  1509. .global str_move_description_502
  1510. str_move_description_502:
  1511. .string LAN_DE "Mitstreiter tauscht\nPlatz mit dem\nAnwender."
  1512. .global str_move_description_503
  1513. str_move_description_503:
  1514. .string LAN_DE "Kochendes Wasser,\nwelches das Ziel\nevtl. verbrennt."
  1515. .global str_move_description_504
  1516. str_move_description_504:
  1517. .string LAN_DE "Ang., Sp. Ang. u.\nInit. steigt stark.\nDafür sink Vert. u.\nSp. Vert."
  1518. .global str_move_description_505
  1519. str_move_description_505:
  1520. .string LAN_DE "Anwender heilt das\nZiel 50% seiner KP."
  1521. .global str_move_description_506
  1522. str_move_description_506:
  1523. .string LAN_DE "Fügt Zielen mit\nStatusveränderungen\nhohen Schaden zu."
  1524. .global str_move_description_507
  1525. str_move_description_507:
  1526. .string LAN_DE "Opfer und Angreifer\nsteigen in die\nLuft. Opfer kann\nnicht angreifen."
  1527. .global str_move_description_508
  1528. str_move_description_508:
  1529. .string LAN_DE "Ang. Und Init. Des\nAnw. steigen stark."
  1530. .global str_move_description_509
  1531. str_move_description_509:
  1532. .string LAN_DE "Schleudert Geg. vom\nSpielfeld. und\nbewirkt den\nAustausch des PKMN."
  1533. .global str_move_description_510
  1534. str_move_description_510:
  1535. .string LAN_DE "Beeren werden von\nden Flammen\nwirkungslos gemacht\nund verbrannt."
  1536. .global str_move_description_511
  1537. str_move_description_511:
  1538. .string LAN_DE "Lässt das gewählte\nZiel als letztes\nangreifen."
  1539. .global str_move_description_512
  1540. str_move_description_512:
  1541. .string LAN_DE "Trägt Anw. kein\nItem, richtet die\nAttacke großen\nSchaden an."
  1542. .global str_move_description_513
  1543. str_move_description_513:
  1544. .string LAN_DE "Anwender bildet das\nZiel nach und nimmt\ndabei dessen Typ an."
  1545. .global str_move_description_514
  1546. str_move_description_514:
  1547. .string LAN_DE "Anw. nimmt Rache\nfür einen besiegten\nMitstreiter."
  1548. .global str_move_description_515
  1549. str_move_description_515:
  1550. .string LAN_DE "Anw. besiegt sich\nselbst, indem er\nseine KP in Schaden\numtauscht."
  1551. .global str_move_description_516
  1552. str_move_description_516:
  1553. .string LAN_DE "Anw. übergibt sein\nItem an den Geg.,\nwenn dieser selber\nKeinen trägt."
  1554. .global str_move_description_517
  1555. str_move_description_517:
  1556. .string LAN_DE "Umhüllt Geg. in\nFlammen. Ziel\nerleidet\nVerbrennungen."
  1557. .global str_move_description_518
  1558. str_move_description_518:
  1559. .string LAN_DE "Ein Angriff mit\nWassersäulen."
  1560. .global str_move_description_519
  1561. str_move_description_519:
  1562. .string LAN_DE "Ein Angriff mit\nFeuersäulen."
  1563. .global str_move_description_520
  1564. str_move_description_520:
  1565. .string LAN_DE "Ein Angriff mit\nPflanzsäulen."
  1566. .global str_move_description_521
  1567. str_move_description_521:
  1568. .string LAN_DE "Nach erfolgreichem\nAngriff, kehrt der\nAngreifer zurück\nins Team."
  1569. .global str_move_description_522
  1570. str_move_description_522:
  1571. .string LAN_DE "Anw. leistet Wider-\nstand und greift an.\nDer Sp. Ang. der\nZiele sinkt."
  1572. .global str_move_description_523
  1573. str_move_description_523:
  1574. .string LAN_DE "Anw. walzt den\nBoden um sich herum\nplatt. Die Init.\naller PKMN sinkt."
  1575. .global str_move_description_524
  1576. str_move_description_524:
  1577. .string LAN_DE "Anw. haucht Geg.\nmit eisigem Atem\nan. Volltreffer-\ngarantie."
  1578. .global str_move_description_525
  1579. str_move_description_525:
  1580. .string LAN_DE "Fegt das gegn. PKMN\nvom Feld und\nwechselt es aus\noder verjaggt es."
  1581. .global str_move_description_526
  1582. str_move_description_526:
  1583. .string LAN_DE "Anw. erhält einen\nKraftschub, der\nseinen Ang. und Sp.\nAng. erhöht."
  1584. .global str_move_description_527
  1585. str_move_description_527:
  1586. .string LAN_DE "Fängt Ziele mit\neinem elektrischen\nNetz und senkt\nderen Init."
  1587. .global str_move_description_528
  1588. str_move_description_528:
  1589. .string LAN_DE "Ang. voller elek-\ntrischer Spannung.\nAnw. erleidet\nleichten Schaden."
  1590. .global str_move_description_529
  1591. str_move_description_529:
  1592. .string LAN_DE "Anw. rammt Ziel mit\nbohrerartiger\nBewegung. Hohe\nVolltrefferquote."
  1593. .global str_move_description_530
  1594. str_move_description_530:
  1595. .string LAN_DE "Massive Extremitäte\nHiebe. Ang. erfolgt\nzweimal\nhintereinander."
  1596. .global str_move_description_531
  1597. str_move_description_531:
  1598. .string LAN_DE "Ein harter Hieb, wo\nGeg. Evtl. zurück\nschreckt."
  1599. .global str_move_description_532
  1600. str_move_description_532:
  1601. .string LAN_DE "Anw. greift mit\nAstgeweih Geg. an.\nEnzieht ihm dabei\nKP."
  1602. .global str_move_description_533
  1603. str_move_description_533:
  1604. .string LAN_DE "Schneideangriff,\nwelches unabhängig\nvon Statuswerten\nSchaden anrichtet."
  1605. .global str_move_description_534
  1606. str_move_description_534:
  1607. .string LAN_DE "Schneideangriff mit\nMuschelschale.\nSenkt evtl. die\nVert. des Zieles."
  1608. .global str_move_description_535
  1609. str_move_description_535:
  1610. .string LAN_DE "Je schwerer der\nAnw. im Vergleich\nzum Ziel ist, desto\nstärker die Att."
  1611. .global str_move_description_536
  1612. str_move_description_536:
  1613. .string LAN_DE "Anw. wickelt Ziel\nin schwarfes Blatt-\nwerk ein. Senkt\nevtl. die Genau."
  1614. .global str_move_description_537
  1615. str_move_description_537:
  1616. .string LAN_DE "Lässt Geg. zurück\nschrecken, in dem\nes ihn überollt."
  1617. .global str_move_description_538
  1618. str_move_description_538:
  1619. .string LAN_DE "Anw. hüllt sich in\nluftigen Flaum.\nErhöht die Vert.\ndrastisch."
  1620. .global str_move_description_539
  1621. str_move_description_539:
  1622. .string LAN_DE "Ang. mit finsteren\nSchockwellen. Senkt\nevtl. die Genauig-\nkeit des Geg."
  1623. .global str_move_description_540
  1624. str_move_description_540:
  1625. .string LAN_DE "Seltsame\nEnergiewellen, die\ndem Ziel physischen\nSchaden zufügen."
  1626. .global str_move_description_541
  1627. str_move_description_541:
  1628. .string LAN_DE "Anw. greift mit\nschlagfester Rute\n2- bis 5- mal\nhintereinander an."
  1629. .global str_move_description_542
  1630. str_move_description_542:
  1631. .string LAN_DE "Anw. greift mit\nheftigen Windböen\nan. Ziel wird evtl.\nverwirrt."
  1632. .global str_move_description_543
  1633. str_move_description_543:
  1634. .string LAN_DE "Rempelattacke mit\nRetrofrisur. Anw.\nnimmt selbst\nleichten Schaden."
  1635. .global str_move_description_544
  1636. str_move_description_544:
  1637. .string LAN_DE "Ang. Mit stählernen\nZahnrädern. Ang.\nerfolgt zweimal\nhintereinander."
  1638. .global str_move_description_545
  1639. str_move_description_545:
  1640. .string LAN_DE "Ang. mit tiefroten\nFlammen. Ziel\nerleidet evtl.\nVerbrennungen."
  1641. .global str_move_description_546
  1642. str_move_description_546:
  1643. .string LAN_DE "Ang. Mit Licht-\ngeschoss. Der Typ\nder Att. hängt von\ndem des Moduls ab."
  1644. .global str_move_description_547
  1645. str_move_description_547:
  1646. .string LAN_DE "Anwender greift mit\nUrgesang an. Gegner\nschlafen eventuell\nein."
  1647. .global str_move_description_548
  1648. str_move_description_548:
  1649. .string LAN_DE "Ein Schneideangriff\naus dem Horn. Sie\nerzeugt physischen\nSchaden."
  1650. .global str_move_description_549
  1651. str_move_description_549:
  1652. .string LAN_DE "Anw. greift mit\nklirrend kalte Luft\nan. Senkt die Init.\ndes Zieles."
  1653. .global str_move_description_550
  1654. str_move_description_550:
  1655. .string LAN_DE "Anw. lädt sich mit\nElektrizität u.\nrammt Geg. Ziel wird\nevtl. paralysiert."
  1656. .global str_move_description_551
  1657. str_move_description_551:
  1658. .string LAN_DE "Anw. hüllt Ziel\nintensiv in blaue\nFlammen ein, die es\nevtl. verbrennt."
  1659. .global str_move_description_552
  1660. str_move_description_552:
  1661. .string LAN_DE "Hüllt das Ziel in\neiner Feuerhose\nein. Erhöht evtl.\nSp. Ang. des Anw."
  1662. .global str_move_description_553
  1663. str_move_description_553:
  1664. .string LAN_DE "Anw. Feuert in d.\n2. Runde elek.\nEisklumpen ab und\nparalyisier es evtl."
  1665. .global str_move_description_554
  1666. str_move_description_554:
  1667. .string LAN_DE "Umgibt Ziel in der\n2. Runde mit ge-\nfrierenden Eisböen.\nVerbrennt es evtl."
  1668. .global str_move_description_555
  1669. str_move_description_555:
  1670. .string LAN_DE "Wäscht Zielen mit\neiner Standpauke\nden Kopf und senkt\ndabei deren Sp. Ang."
  1671. .global str_move_description_556
  1672. str_move_description_556:
  1673. .string LAN_DE "Anw. lässt schwere\nEiszapfen auf Geg.\nfallen Ziel schreckt\nevtl. zurück."
  1674. .global str_move_description_557
  1675. str_move_description_557:
  1676. .string LAN_DE "Verzweiflungs-\nattacke. Senkt ei-\ngene Vert.,\nSp. Vert. Und Init."
  1677. .global str_move_description_558
  1678. str_move_description_558:
  1679. .string LAN_DE "Wird d. Att. durch\neinen gigantischen\nBlitz modifiziert,\nsteigt die Stärke."
  1680. .global str_move_description_559
  1681. str_move_description_559:
  1682. .string LAN_DE "Wird d. Att. durch\neine gigantische\nFlamme modifiziert,\nsteigt die Stärke."
  1683. .global str_move_description_560
  1684. str_move_description_560:
  1685. .string LAN_DE "Anw. stürzt sich\naus Luft aufs Ziel.\nAtt. ist vom Typ\nKampf und Flug."
  1686. .global str_move_description_561
  1687. str_move_description_561:
  1688. .string LAN_DE "Anw. erschafft\nSchild. Schützt Team\nvor Schaden, nicht\nvor Status-Att."
  1689. .global str_move_description_562
  1690. str_move_description_562:
  1691. .string LAN_DE "Anw. Fügt Ziel\nSchaden zu. Gelingt\nnur nach Konsum von\ngetr. Beere."
  1692. .global str_move_description_563
  1693. str_move_description_563:
  1694. .string LAN_DE "Anw. macht Erde\nfruchtbarer. Erhöht\nAng. und Sp Ang.\nvon Pflanzen PKMN."
  1695. .global str_move_description_564
  1696. str_move_description_564:
  1697. .string LAN_DE "Anw. spinnt um gegn.\nTeams ein Netz.\nSenkt Init. neu\neingewechs. PKMN."
  1698. .global str_move_description_565
  1699. str_move_description_565:
  1700. .string LAN_DE "Besiegst du deinen\nGegner hiermit,\nsteigt sein\nAngriffs-Wert stark."
  1701. .global str_move_description_566
  1702. str_move_description_566:
  1703. .string LAN_DE "Anw. verschwindet\nund greift in Runde\n2 an. Bricht Def.\ndes Zieles."
  1704. .global str_move_description_567
  1705. str_move_description_567:
  1706. .string LAN_DE "Der Anw. lehrt das\nZiel das Fürchten,\nwelches den Typ\nGeist annimmt."
  1707. .global str_move_description_568
  1708. str_move_description_568:
  1709. .string LAN_DE "Anw. macht Kampfge-\nbrüll. Schüchtert\nZiel ein und senkt\nAng. und Sp Ang."
  1710. .global str_move_description_569
  1711. str_move_description_569:
  1712. .string LAN_DE "Elek. Partikel\nbewirken, dass\nNormal Att. den Typ\nElektro annehmen."
  1713. .global str_move_description_570
  1714. str_move_description_570:
  1715. .string LAN_DE "Fügt allen PKMN\nSchaden zu. Anw.\nheilt sich um die\nMenge des Schadens."
  1716. .global str_move_description_571
  1717. str_move_description_571:
  1718. .string LAN_DE "Anwender belegt\nZiel mit Waldes-\nfluch. Ziel nimmt\nTyp Pflanze an."
  1719. .global str_move_description_572
  1720. str_move_description_572:
  1721. .string LAN_DE "Anw. macht turbul.\nBlütenwirbel, der\nalle PKMN trifft.\nFügt Schaden zu."
  1722. .global str_move_description_573
  1723. str_move_description_573:
  1724. .string LAN_DE "Ziel kühlt ab. Kann\nauch einfrieren.\nWirkt gut gegen\nWasser-Pokémon."
  1725. .global str_move_description_574
  1726. str_move_description_574:
  1727. .string LAN_DE "Anw. stößt bezirz.\nRuf aus. Ziel nimmt\nimmer mehr mentalen\nSchaden."
  1728. .global str_move_description_575
  1729. str_move_description_575:
  1730. .string LAN_DE "Schüchtert Ziel ein.\nAng. und Sp-Ang.\nsinken. Anw.\nwechselt danach."
  1731. .global str_move_description_576
  1732. str_move_description_576:
  1733. .string LAN_DE "Invertiert alle\nStatusveränderungen\ndes Zieles."
  1734. .global str_move_description_577
  1735. str_move_description_577:
  1736. .string LAN_DE "Anw. stiehlt KP.\nHeilung beträgt\nmehr als die Hälfte\ndes Schadens."
  1737. .global str_move_description_578
  1738. str_move_description_578:
  1739. .string LAN_DE "Schützt seine\nMitstreiter und\nsich vor\nStatus-Attacken."
  1740. .global str_move_description_579
  1741. str_move_description_579:
  1742. .string LAN_DE "Erhöht die Vert.\naller am Kampf\nbeteiligten\nPflanzen-Pokémon."
  1743. .global str_move_description_580
  1744. str_move_description_580:
  1745. .string LAN_DE "Grasfeld heilt in\njeder neuen Runde\nalle PKMN, die den\nBoden berühren."
  1746. .global str_move_description_581
  1747. str_move_description_581:
  1748. .string LAN_DE "Nebel schützt alle\nPKMN, die den Boden\nberühren, vor\nStatusproblemen."
  1749. .global str_move_description_582
  1750. str_move_description_582:
  1751. .string LAN_DE "Bei Ersteinsatz\nnimmt gegn. Att.\nfür diese Runde den\nTyp Elektro an."
  1752. .global str_move_description_583
  1753. str_move_description_583:
  1754. .string LAN_DE "Anwender knuddelt\nZiel und greift es\nan. Kann\nAngriffswert senken."
  1755. .global str_move_description_584
  1756. str_move_description_584:
  1757. .string LAN_DE "Feenbrise, die das\nZiel erfasst und\nihm Schaden zufügt."
  1758. .global str_move_description_585
  1759. str_move_description_585:
  1760. .string LAN_DE "Anw. nutzt Kraft\ndes Mondes. Kann Sp\nAng. des Zieles\nsenken."
  1761. .global str_move_description_586
  1762. str_move_description_586:
  1763. .string LAN_DE "Anwender greift\nalle PKMN in der\nUmgebung mit nem\ngewaltigen Knall an."
  1764. .global str_move_description_587
  1765. str_move_description_587:
  1766. .string LAN_DE "Anwender sperrt\nalle PKMN ein und\nverhindert eine\nFlucht für 1 Runde."
  1767. .global str_move_description_588
  1768. str_move_description_588:
  1769. .string LAN_DE "Anw. weicht aus &\ngeht in Vert. Senkt\nbei Kontakt Vert.\nd. Gegners."
  1770. .global str_move_description_589
  1771. str_move_description_589:
  1772. .string LAN_DE "Anw. schließt mit\nZiel Freundschaft.\nRaubt Angriffslust\n& Ang. sinkt."
  1773. .global str_move_description_590
  1774. str_move_description_590:
  1775. .string LAN_DE "Anwender stört die\nKonzentration des\nGegners und senkt\ndessen Sp Ang."
  1776. .global str_move_description_591
  1777. str_move_description_591:
  1778. .string LAN_DE "Anwender beschwört\neinen zerstörer-\nischen Diamantsturm.\nErhöht Vert.\n"
  1779. .global str_move_description_592
  1780. str_move_description_592:
  1781. .string LAN_DE "Anwender feuert\nsiedend heißen\nDampfschwall.\nVerbrennung möglich."
  1782. .global str_move_description_593
  1783. str_move_description_593:
  1784. .string LAN_DE "Anw. benutzt ein\nDimensionsloch.\nDurchbricht Schutz-\nschild und Scanner."
  1785. .global str_move_description_594
  1786. str_move_description_594:
  1787. .string LAN_DE "Schleudere\nWurfsterne aus\neinem verdickten\nSekret. 2-5 Treffer."
  1788. .global str_move_description_595
  1789. str_move_description_595:
  1790. .string LAN_DE "Flamme, die dem\nGegner entgegen-\ngeblasen wird. Senkt\nSp Ang. d. Zieles."
  1791. .global str_move_description_596
  1792. str_move_description_596:
  1793. .string LAN_DE "D. Anw. weicht gegn.\nAtt. aus. Alle, die\nes versuchen, nehmen\nSchaden."
  1794. .global str_move_description_597
  1795. str_move_description_597:
  1796. .string LAN_DE "Der Anw. erhöht mit-\nhilfe von mysteriös-\nen Duft die Sp Vert.\ndes Partners."
  1797. .global str_move_description_598
  1798. str_move_description_598:
  1799. .string LAN_DE "Senkt den\nSpezial-Angriff des\nZieles durch myst.\nWellen stark."
  1800. .global str_move_description_599
  1801. str_move_description_599:
  1802. .string LAN_DE "Senkt den Ang., den\nSp Ang. und die\nInit. von\nvergifteten Pokémon."
  1803. .global str_move_description_600
  1804. str_move_description_600:
  1805. .string LAN_DE "Verursacht Schaden,\nwenn d. Gegn. in d.\nRunde Feuer-\nAttacken einsetzt."
  1806. .global str_move_description_601
  1807. str_move_description_601:
  1808. .string LAN_DE "In der nächsten\nRunde steigen Sp\nAng., Sp Vert. und\nInit. stark an."
  1809. .global str_move_description_602
  1810. str_move_description_602:
  1811. .string LAN_DE "D. Sp. Vert. &\nVert. v. Team-PKMN\nmit d. Fähig. Plus\nod. Minus steigt."
  1812. .global str_move_description_603
  1813. str_move_description_603:
  1814. .string LAN_DE "Das Preisgeld\nverdoppelt sich\nnach einem Sieg\ngegen Trainer."
  1815. .global str_move_description_604
  1816. str_move_description_604:
  1817. .string LAN_DE "Untergrund wird zum\nElektrofeld u. PKMN\nschlafen daher\nnicht mehr."
  1818. .global str_move_description_605
  1819. str_move_description_605:
  1820. .string LAN_DE "Angriff mit einem\nstarken Lichtstrahl,\nder dem Gegner\nSchaden zufügt."
  1821. .global str_move_description_606
  1822. str_move_description_606:
  1823. .string LAN_DE "Das Pokémon\ngratuliert dir\nherzlich zu deinem\nGeburtstag!"
  1824. .global str_move_description_607
  1825. str_move_description_607:
  1826. .string LAN_DE "Anw. und Partner\nreichen sich die\nHände u. werden\nsehr Zufrieden."
  1827. .global str_move_description_608
  1828. str_move_description_608:
  1829. .string LAN_DE "Der Anwender nutzt\nKulleraugen. Senkt\ndie Ang. Erstschlag-\ngarantie."
  1830. .global str_move_description_609
  1831. str_move_description_609:
  1832. .string LAN_DE "Anwender reibt an\nseinem Ziel, was\nparalysiert."
  1833. .global str_move_description_610
  1834. str_move_description_610:
  1835. .string LAN_DE "Anwender hält sich\nmit dem Angriff\nzurück, und lässt\ndem Ziel 1 KP."
  1836. .global str_move_description_611
  1837. str_move_description_611:
  1838. .string LAN_DE "Anw. fällt 4-5\nRuden lang über das\nZiel her u. greift\nan. Flucht unmögl."
  1839. .global str_move_description_612
  1840. str_move_description_612:
  1841. .string LAN_DE "Fäuste d. Anw.\nhärten mit wiedh.\nZuschl. ab. Jed.\nTref. erhöht Ang."
  1842. .global str_move_description_613
  1843. str_move_description_613:
  1844. .string LAN_DE "Anw. raubt Ziel\nKP. Höhe beträgt\nmehr als d. 1/2 d.\nangercht. Schd."
  1845. .global str_move_description_614
  1846. str_move_description_614:
  1847. .string LAN_DE "Att. trifft schwe-\nbende. PKMN. Trifft\nsie PKMN beim\nSchweben, fällt es."
  1848. .global str_move_description_615
  1849. str_move_description_615:
  1850. .string LAN_DE "Anw. greift mit\neiner Welle an, die\nalle Feinde am\nFliehen hindert."
  1851. .global str_move_description_616
  1852. str_move_description_616:
  1853. .string LAN_DE "Anw. sammelt die\nKraft des Landes\nund greift damit\nseine Feinde an."
  1854. .global str_move_description_617
  1855. str_move_description_617:
  1856. .string LAN_DE "Die Kraft des Ewig-\nblüters in Strahl-\nform. Der Anw. nimmt\nselbst Schaden."
  1857. .global str_move_description_618
  1858. str_move_description_618:
  1859. .string LAN_DE "Der Anwender greift\ndas Ziel mit vielen\nblau leuchtenden\nStrahlen an."
  1860. .global str_move_description_619
  1861. str_move_description_619:
  1862. .string LAN_DE "Der Anw. wandelt\ndie Kraft der Erde\nin Klingen greift\ndamit an."
  1863. .global str_move_description_620
  1864. str_move_description_620:
  1865. .string LAN_DE "Der Anw. greift das\nZiel an. Senkt\nVert. und Sp. Vert.\ndes Anw."
  1866. .global str_move_description_621
  1867. str_move_description_621:
  1868. .string LAN_DE "Bricht die Wirkung\nvon Schutz-Att.\nDie Vert. des Anw.\nsinkt."
  1869. .global str_move_description_622
  1870. str_move_description_622:
  1871. .string LAN_DE "?"
  1872. .global str_move_description_623
  1873. str_move_description_623:
  1874. .string LAN_DE "?"
  1875. .global str_move_description_624
  1876. str_move_description_624:
  1877. .string LAN_DE "?"
  1878. .global str_move_description_625
  1879. str_move_description_625:
  1880. .string LAN_DE "?"
  1881. .global str_move_description_626
  1882. str_move_description_626:
  1883. .string LAN_DE "?"
  1884. .global str_move_description_627
  1885. str_move_description_627:
  1886. .string LAN_DE "?"
  1887. .global str_move_description_628
  1888. str_move_description_628:
  1889. .string LAN_DE "?"
  1890. .global str_move_description_629
  1891. str_move_description_629:
  1892. .string LAN_DE "?"
  1893. .global str_move_description_630
  1894. str_move_description_630:
  1895. .string LAN_DE "?"
  1896. .global str_move_description_631
  1897. str_move_description_631:
  1898. .string LAN_DE "?"
  1899. .global str_move_description_632
  1900. str_move_description_632:
  1901. .string LAN_DE "?"
  1902. .global str_move_description_633
  1903. str_move_description_633:
  1904. .string LAN_DE "?"
  1905. .global str_move_description_634
  1906. str_move_description_634:
  1907. .string LAN_DE "?"
  1908. .global str_move_description_635
  1909. str_move_description_635:
  1910. .string LAN_DE "?"
  1911. .global str_move_description_636
  1912. str_move_description_636:
  1913. .string LAN_DE "?"
  1914. .global str_move_description_637
  1915. str_move_description_637:
  1916. .string LAN_DE "?"
  1917. .global str_move_description_638
  1918. str_move_description_638:
  1919. .string LAN_DE "?"
  1920. .global str_move_description_639
  1921. str_move_description_639:
  1922. .string LAN_DE "?"
  1923. .global str_move_description_640
  1924. str_move_description_640:
  1925. .string LAN_DE "?"
  1926. .global str_move_description_641
  1927. str_move_description_641:
  1928. .string LAN_DE "?"
  1929. .global str_move_description_642
  1930. str_move_description_642:
  1931. .string LAN_DE "?"
  1932. .global str_move_description_643
  1933. str_move_description_643:
  1934. .string LAN_DE "?"
  1935. .global str_move_description_644
  1936. str_move_description_644:
  1937. .string LAN_DE "?"
  1938. .global str_move_description_645
  1939. str_move_description_645:
  1940. .string LAN_DE "?"
  1941. .global str_move_description_646
  1942. str_move_description_646:
  1943. .string LAN_DE "?"
  1944. .global str_move_description_647
  1945. str_move_description_647:
  1946. .string LAN_DE "?"
  1947. .global str_move_description_648
  1948. str_move_description_648:
  1949. .string LAN_DE "?"
  1950. .global str_move_description_649
  1951. str_move_description_649:
  1952. .string LAN_DE "?"
  1953. .global str_move_description_650
  1954. str_move_description_650:
  1955. .string LAN_DE "?"
  1956. .global str_move_description_651
  1957. str_move_description_651:
  1958. .string LAN_DE "?"
  1959. .global str_move_description_652
  1960. str_move_description_652:
  1961. .string LAN_DE "?"
  1962. .global str_move_description_653
  1963. str_move_description_653:
  1964. .string LAN_DE "?"
  1965. .global str_move_description_654
  1966. str_move_description_654:
  1967. .string LAN_DE "?"
  1968. .global str_move_description_655
  1969. str_move_description_655:
  1970. .string LAN_DE "?"
  1971. .global str_move_description_656
  1972. str_move_description_656:
  1973. .string LAN_DE "?"
  1974. .global str_move_description_657
  1975. str_move_description_657:
  1976. .string LAN_DE "?"
  1977. .global str_move_description_658
  1978. str_move_description_658:
  1979. .string LAN_DE "?"
  1980. .global str_move_description_659
  1981. str_move_description_659:
  1982. .string LAN_DE "?"
  1983. .global str_move_description_660
  1984. str_move_description_660:
  1985. .string LAN_DE "?"
  1986. .global str_move_description_661
  1987. str_move_description_661:
  1988. .string LAN_DE "?"
  1989. .global str_move_description_662
  1990. str_move_description_662:
  1991. .string LAN_DE "?"
  1992. .global str_move_description_663
  1993. str_move_description_663:
  1994. .string LAN_DE "?"
  1995. .global str_move_description_664
  1996. str_move_description_664:
  1997. .string LAN_DE "?"
  1998. .global str_move_description_665
  1999. str_move_description_665:
  2000. .string LAN_DE "?"
  2001. .global str_move_description_666
  2002. str_move_description_666:
  2003. .string LAN_DE "?"
  2004. .global str_move_description_667
  2005. str_move_description_667:
  2006. .string LAN_DE "?"
  2007. .global str_move_description_668
  2008. str_move_description_668:
  2009. .string LAN_DE "?"
  2010. .global str_move_description_669
  2011. str_move_description_669:
  2012. .string LAN_DE "?"
  2013. .global str_move_description_670
  2014. str_move_description_670:
  2015. .string LAN_DE "?"
  2016. .global str_move_description_671
  2017. str_move_description_671:
  2018. .string LAN_DE "?"
  2019. .global str_move_description_672
  2020. str_move_description_672:
  2021. .string LAN_DE "?"
  2022. .global str_move_description_673
  2023. str_move_description_673:
  2024. .string LAN_DE "?"
  2025. .global str_move_description_674
  2026. str_move_description_674:
  2027. .string LAN_DE "?"
  2028. .global str_move_description_675
  2029. str_move_description_675:
  2030. .string LAN_DE "?"