-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cynthia.html
1174 lines (1109 loc) · 105 KB
/
Cynthia.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>View source for Cynthia - Bulbapedia, the community-driven Pokémon encyclopedia</title>
<script>document.documentElement.className="client-js";RLCONF={"wgBreakFrames":!0,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"1e66ba00b1d8f4391199d11c","wgCSPNonce":!1,"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":!1,"wgNamespaceNumber":0,"wgPageName":"Cynthia","wgTitle":"Cynthia","wgCurRevisionId":3409623,"wgRevisionId":0,"wgArticleId":73528,"wgIsArticle":!1,"wgIsRedirect":!1,"wgAction":"edit","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"Cynthia","wgRelevantArticleId":73528,"wgIsProbablyEditable":!1,"wgRelevantPageIsProbablyEditable":!1,"wgRestrictionEdit":[],"wgRestrictionMove":["sysop"],"wgMFDisplayWikibaseDescriptions":{"search":!1,"nearby":!1,"watchlist":!1,
"tagline":!1}};RLSTATE={"site.styles":"ready","noscript":"ready","user.styles":"ready","user":"ready","user.options":"loading","ext.charinsert.styles":"ready","mediawiki.skinning.content.externallinks":"ready","skins.monobook.responsive":"ready"};RLPAGEMODULES=["mediawiki.action.edit.collapsibleFooter","site","mediawiki.page.startup","mediawiki.page.ready","ext.charinsert","skins.monobook.mobile"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.options@1hzgi",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
});});</script>
<link rel="stylesheet" href="/w/load.php?lang=en&modules=ext.charinsert.styles%7Cmediawiki.skinning.content.externallinks%7Cskins.monobook.responsive&only=styles&skin=monobook" />
<script async="" src="/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=monobook"></script>
<!--[if lt IE 9]><link rel="stylesheet" href="/w/skins/MonoBook/resources/screen-desktop.css?9f2ce" media="screen"/><![endif]--><link rel="stylesheet" href="//bulba-ad-host-website.azurewebsites.net/Content/customstyles.css?v=2" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="/w/load.php?lang=en&modules=site.styles&only=styles&skin=monobook" />
<meta name="generator" content="MediaWiki 1.35.2" />
<meta name="robots" content="noindex,nofollow" />
<meta property="og:image" content="https://cdn2.bulbagarden.net/upload/c/c3/Brilliant_Diamond_Shining_Pearl_Cynthia.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.25, maximum-scale=5.0" />
<link rel="alternate" media="only screen and (max-width: 720px)" href="https://m.bulbapedia.bulbagarden.net/wiki/Cynthia" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Bulbapedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href="https://bulbapedia.bulbagarden.net/w/api.php?action=rsd" />
<link rel="license" href="https://creativecommons.org/licenses/by-nc-sa/2.5/" />
<link rel="canonical" href="https://bulbapedia.bulbagarden.net/wiki/Cynthia" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-326511-18', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
<script type="text/javascript" src="//ahost.bulbagarden.net/Content/bulbapediascript.js"></script>
<meta name="robots" content="max-image-preview:large">
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<!--[if lt IE 9]><script src="/w/resources/lib/html5shiv/html5shiv.js"></script><![endif]-->
</head>
<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Cynthia rootpage-Cynthia skin-monobook action-edit minerva--history-page-action-enabled"><div id="globalWrapper"><div id="column-content"><div id="content" class="mw-body" role="main"><div id="coverlines"></div><div role="navigation" class="portlet" id="p-cactions" aria-labelledby="p-cactions-label"><h3 id="p-cactions-label" lang="en" dir="ltr">Page actions</h3><div class="pBody"><ul lang="en" dir="ltr"><li id="ca-nstab-main" class="selected"><a href="/wiki/Cynthia" title="View the content page [c]" accesskey="c">Article</a></li><li id="ca-talk"><a href="/wiki/Talk:Cynthia" rel="discussion" title="Discussion about the content page [t]" accesskey="t">Discussion</a></li><li id="ca-viewsource" class="selected"><a href="/w/index.php?title=Cynthia&action=edit" title="This page is protected. You can view its source [e]" accesskey="e">View source</a></li><li id="ca-history"><a href="/w/index.php?title=Cynthia&action=history" title="Past revisions of this page [h]" accesskey="h">History</a></li></ul></div></div><div role="navigation" class="portlet" id="p-cactions-mobile" aria-labelledby="p-cactions-mobile-label"><h3 id="p-cactions-mobile-label" lang="en" dir="ltr">Page actions</h3><div class="pBody"><ul lang="en" dir="ltr"><li id="ca-nstab-main-mobile" class="selected"><a href="/wiki/Cynthia" title="Article">Article</a></li><li id="ca-talk-mobile"><a href="/wiki/Talk:Cynthia" rel="discussion" title="Discussion">Discussion</a></li><li id="ca-more"><a href="#p-cactions">More</a></li><li id="ca-tools"><a href="#p-tb" title="Tools">Tools</a></li><li id="ca-languages"><a href="#p-lang" title="In other languages">In other languages</a></li></ul></div></div><a id="top"></a><div id="siteNotice" class="mw-body-content"><div id="localNotice" lang="en" dir="ltr"><div class="noticebar roundy plainlinks" style="padding:0px;"><b>A notice if you have enabled 2-factor-authentication (2FA) on your account!</b><br />
<p>If you set up 2FA on your account, we would like to ask you to please log out and attempt to log back in.<br />
If you do not receive a prompt for your 2FA code, please send an email to technical[at]bulbagarden[dot]net containing your username and the approximate time/date you enabled it.<br />
</p>
This will help us identify the root of the issues with the 2FA system. Thank you in advance for your help!</div></div></div><div class="mw-indicators mw-body-content">
</div>
<h1 id="firstHeading" class="firstHeading" lang="en">View source for Cynthia</h1><div id="bodyContent" class="mw-body-content"><div id="siteSub">From Bulbapedia, the community-driven Pokémon encyclopedia.</div><div id="contentSub" lang="en" dir="ltr">← <a href="/wiki/Cynthia" title="Cynthia">Cynthia</a></div><div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Jump to navigation</a><a href="#searchInput" class="mw-jump-link">Jump to search</a><div id="mw-content-text"><p>You do not have permission to edit this page, for the following reasons:
</p>
<ul class="permissions-errors">
<li>The action you have requested is limited to users in one of the groups: <a href="/wiki/Bulbapedia:Users" class="mw-redirect" title="Bulbapedia:Users">Users</a>, <a href="/wiki/Bulbapedia:Bots" title="Bulbapedia:Bots">Bots</a>, <a href="/wiki/Bulbapedia:Administrators" title="Bulbapedia:Administrators">Administrators</a>, <a href="/wiki/Bulbapedia:Bureaucrats" title="Bulbapedia:Bureaucrats">Bureaucrats</a>, <a href="/wiki/Bulbapedia:Junior_Administrators" title="Bulbapedia:Junior Administrators">Junior Administrators</a>, <a href="/wiki/Bulbapedia:Senior_Administrators" title="Bulbapedia:Senior Administrators">Senior Administrators</a>, <a href="/wiki/Bulbapedia:Editorial_Board" title="Bulbapedia:Editorial Board">Editorial Board</a>, <a href="/w/index.php?title=Bulbapedia:Technical_staff&action=edit&redlink=1" class="new" title="Bulbapedia:Technical staff (page does not exist)">Technical staff</a>.</li>
<li>You must confirm your email address before editing pages.
Please set and validate your email address through your <a href="/wiki/Special:Preferences" title="Special:Preferences">user preferences</a>.</li>
</ul><hr />
<p>You can view and copy the source of this page.
</p><textarea readonly="" accesskey="," id="wpTextbox1" cols="80" rows="25" style="" class="mw-editfont-monospace" lang="en" dir="ltr" name="wpTextbox1">{{CharInfobox
|color={{cynthia color}}
|corecolor={{cynthia color light}}
|bordercolor={{cynthia color dark}}
|text=white
|name=Cynthia
|jname=シロナ
|tmname=Shirona
|slogan=no
|image=Brilliant Diamond Shining Pearl Cynthia.png
|size=250px
|caption=Art from {{pkmn|Brilliant Diamond and Shining Pearl}}
|age=no
|gender=Female
|colors=yes
|eyes=Gray
|hair=Blonde
|hometown=[[Celestic Town]]
|region=Sinnoh
|relatives=[[Professor Carolina|Grandmother]], grandfather<br> and a younger sister
|trainer=yes
|trainerclass={{pkmn|Champion}}{{sup/4|DPPt}}<br>[[Pokémon Trainer]]{{sup/5|BWB2W2}}{{sup/7|SMUSUM}}
|game=yes
|generation={{gen|IV}}, {{gen|V}}, {{gen|VII}}, {{gen|VIII}}
|games={{3v2|Diamond|Pearl|Platinum}}<br>{{2v2|HeartGold|SoulSilver}}<br>{{4v|Black|White}}<br>{{pkmn|Sun and Moon}}<br>{{pkmn|Ultra Sun and Ultra Moon}}<br>{{pkmn|Brilliant Diamond and Shining Pearl}}<br>{{pkmn|Masters EX}}
|leader=no
|elite=no
|champ=yes
|league=Pokémon League (Sinnoh)
|specialist=no
|team=no
|brain=no
|anime=counterpart
|animecounterpart={{an|Cynthia}}
|epnum=DP040
|epname=Top-Down Training!
|enva=[[Emily Jenness]]
|java=[[Tomo Sakurai]]
|gameanim=yes
|pv=yes
|pvnum=PG11
|pvname=The New World
|envagame=[[Tara Jayne]] <small>({{pkmn|Generations}})</small><br>Allegra Clark<ref name="Allegra Clark">[https://twitter.com/simplyallegra/status/1167123695971663872 Allegra Clark on Twitter]</ref> <small>({{pkmn|Masters EX}})</small>
|javagame=[[Aya Endō]] <small>({{pkmn|Generations}})</small><br>Mie Sonozaki<ref name="Mie Sonozaki">[https://www.oricon.co.jp/news/2138750/full/ Pokémon Masters Oricon News] (Japanese)</ref> <small>({{pkmn|Masters EX}})</small>
}}
'''Cynthia''' (Japanese: '''シロナ''' ''Shirona'') is the {{pkmn|Champion}} of the [[Sinnoh]] region's [[Sinnoh League|Pokémon League]] in {{game2|Diamond|Pearl|Platinum}}.
==In the core series==
[[File:HGSS Prerelease Cynthia Arceus.jpg|thumb|250px|Cynthia with Arceus in HeartGold and SoulSilver]]
Cynthia makes her first appearance in {{game2|Diamond|Pearl|Platinum}}, where she meets up with the {{player}} at various points during their journey. She will first meet the player in [[Eterna City]], where she will give them {{HM|01|Cut}} when first met. In Platinum only, she will give the player a {{p|Togepi}} {{pkmn|Egg}} after the player has defeated [[Jupiter]] in the [[Team Galactic Eterna Building]]. At [[Valor Lakefront]], she gives the player the [[Secret Potion|SecretPotion]] to cure the {{p|Psyduck}} blocking {{rt|210|Sinnoh}}. After the player cures the Psyduck, Cynthia appears again and gives the player the [[Old Charm]] to deliver to [[Professor Carolina|her grandmother]]. Later, she appears at the {{si|Pokémon League}} as the {{pkmn|Champion}}.
In Platinum only, Cynthia also appears at the [[Spear Pillar]] once [[Cyrus]] has been dragged into the [[Distortion World]] by {{p|Giratina}}, and will guide the player through the said world in order to confront Giratina. During the post-game, she will appear at the Celestic Town ruins and tell the player about them.
In {{game|HeartGold and SoulSilver|s}}, Cynthia makes an appearance in the [[Sinjoh Ruins]], doing further investigation on the origins of {{p|Arceus}} and the [[creation trio]]. If the player has an Arceus with a [[fateful encounter]] marker or from the [[Hall of Origin]] when they visit the [[Ruins of Alph]], the player will be teleported to the Sinjoh Ruins. Inside a cabin at the ruins, the player will find Cynthia, who will tell the player that Arceus will let them obtain a [[level]] 1 {{p|Dialga}}, {{p|Palkia}}, or {{p|Giratina}}. If the player returns to the Sinjoh Ruins with another Arceus (that doesn't have the same origin as the one they used the first time), they will be informed that Cynthia has returned to Sinnoh, and the event will run without her.
In [[Generation V]], Cynthia appears in a house in [[Undella Town]], where she can be battled. She leaves after being defeated for the first time and afterwards reappears during [[Season (mechanic)|spring and summer]]. During spring, she can be rebattled once a day. After defeating her, [[Shauntal]] and [[Caitlin]] can be seen visiting this house in the spring, and, in {{game|Black and White|s|Black and White}} only, [[Lenora]], [[Elesa]], [[Iris]], and [[Skyla]] visit in the summer. In Black and White, she speaks about a {{ga|Lucas|young}} {{ga|Dawn|Trainer}} who defeated her, and mentions that Trainer defeated {{p|Giratina}}, referring to the events of Platinum. In {{game|Black and White|s 2|Black 2 and White 2}}, Cynthia can also be battled in the [[Champions Tournament]] at the [[Pokémon World Tournament]].
In [[Pokémon Sun and Moon|Pokémon Sun, Moon]], [[Pokémon Ultra Sun and Ultra Moon|Ultra Sun, and Ultra Moon]], Cynthia appears in [[Alola]]'s [[Battle Tree]] as an opponent that the player can battle and subsequently recruit.
Cynthia is very interested in mythology and history, and spends her time researching and exploring various sites associated with [[Legendary Pokémon]] of the [[Sinnoh]] region. Her family lives in Celestic Town, although her own hometown was not mentioned. She is implied to have helped [[Professor Rowan]] with his [[Pokédex]] and embarked on an adventure as a child, similar to the player.
===Pokémon===
===={{game|Diamond and Pearl|s}}====
{{Party/Single
|color={{Cynthia color}}
|bordercolor={{Cynthia color dark}}
|headcolor={{Cynthia color light}}
|sprite=Spr DP Cynthia.png
|prize={{PDollar}}13200
|class=Champion
|classlink=Pokémon Champion
|name=Cynthia
|game=DP
|location=Pokémon League (Sinnoh)
|locationname=Pokémon League
|pokemon=6}}
|{{Pokémon/4
|game=Diamond
|ndex=442
|pokemon=Spiritomb
|ability=Pressure
|level=61
|gender=female
|type1=Ghost|type2=Dark
|move1=Dark Pulse|move1type=Dark|move1cat=Special
|move2=Psychic|move2type=Psychic|move2cat=Special
|move3=Silver Wind|move3type=Bug|move3cat=Special
|move4=Embargo|move4type=Dark|move4cat=Status}}
|{{Pokémon/4
|game=Diamond
|ndex=407
|pokemon=Roserade
|ability=Natural Cure
|level=60
|gender=female
|spritegender=female
|type1=Grass|type2=Poison
|move1=Energy Ball|move1type=Grass|move1cat=Special
|move2=Sludge Bomb|move2type=Poison|move2cat=Special
|move3=Shadow Ball|move3type=Ghost|move3cat=Special
|move4=Extrasensory|move4type=Psychic|move4cat=Special}}
|{{Pokémon/4
|game=Diamond
|ndex=423
|pokemon=Gastrodon
|ability=Sticky Hold
|level=60
|gender=female
|type1=Water|type2=Ground
|move1=Muddy Water|move1type=Water|move1cat=Special
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Stone Edge|move3type=Rock|move3cat=Physical
|move4=Sludge Bomb|move4type=Poison|move4cat=Special}}
{{Party/Div
|color={{cynthia color}}}}
|{{Pokémon/4
|game=Diamond
|ndex=448
|pokemon=Lucario
|ability=Steadfast
|level=63
|gender=male
|type1=Fighting|type2=Steel
|move1=Aura Sphere|move1type=Fighting|move1cat=Special
|move2=Dragon Pulse|move2type=Dragon|move2cat=Special
|move3=Psychic|move3type=Psychic|move3cat=Special
|move4=Earthquake|move4type=Ground|move4cat=Physical}}
|{{Pokémon/4
|game=Diamond
|ndex=350
|pokemon=Milotic
|ability=Marvel Scale
|level=63
|gender=female
|spritegender=female
|type1=Water
|move1=Surf|move1type=Water|move1cat=Special
|move2=Ice Beam|move2type=Ice|move2cat=Special
|move3=Mirror Coat|move3type=Psychic|move3cat=Special
|move4=Aqua Ring|move4type=Water|move4cat=Status}}
|{{Pokémon/4
|game=Diamond
|ndex=445
|pokemon=Garchomp
|ability=Sand Veil
|level=66|gender=female
|spritegender=female
|type1=Dragon|type2=Ground
|held=Sitrus Berry
|move1=Dragon Rush|move1type=Dragon|move1cat=Physical
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Brick Break|move3type=Fighting|move3cat=Physical
|move4=Giga Impact|move4type=Normal|move4cat=Physical}}
{{Party/Footer}}
===={{game|Platinum}}====
=====Before [[Stark Mountain]]=====
{{Party/Single
|color={{Cynthia color}}
|bordercolor={{Cynthia color dark}}
|headcolor={{Cynthia color light}}
|sprite=Spr Pt Cynthia.png
|prize={{PDollar}}12400
|class=Champion
|classlink=Pokémon Champion
|name=Cynthia
|game=Pt
|location=Pokémon League (Sinnoh)
|locationname=Pokémon League
|pokemon=6}}
|{{Pokémon/4
|game=Platinum
|ndex=442
|pokemon=Spiritomb
|ability=Pressure
|level=58
|gender=female
|type1=Ghost|type2=Dark
|move1=Dark Pulse|move1type=Dark|move1cat=Special
|move2=Psychic|move2type=Psychic|move2cat=Special
|move3=Silver Wind|move3type=Bug|move3cat=Special
|move4=Shadow Ball|move4type=Ghost|move4cat=Special}}
|{{Pokémon/4
|game=Platinum
|ndex=407
|pokemon=Roserade
|ability=Natural Cure
|level=58
|gender=female
|spritegender=female
|type1=Grass|type2=Poison
|move1=Energy Ball|move1type=Grass|move1cat=Special
|move2=Sludge Bomb|move2type=Poison|move2cat=Special
|move3=Toxic|move3type=Poison|move3cat=Status
|move4=Extrasensory|move4type=Psychic|move4cat=Special}}
|{{Pokémon/4|game=Platinum|ndex=468|pokemon=Togekiss
|ability=Hustle|level=60|gender=male|type1=Normal|type2=Flying
|move1=Air Slash|move1type=Flying|move1cat=Special
|move2=Aura Sphere|move2type=Fighting|move2cat=Special
|move3=Water Pulse|move3type=Water|move3cat=Special
|move4=Shock Wave|move4type=Electric|move4cat=Special}}
{{Party/Div|color={{cynthia color}}}}
|{{Pokémon/4
|game=Platinum
|ndex=448
|pokemon=Lucario
|ability=Steadfast
|level=60
|gender=male
|type1=Fighting|type2=Steel
|move1=Aura Sphere|move1type=Fighting|move1cat=Special
|move2=ExtremeSpeed|move2type=Normal|move2cat=Physical
|move3=Shadow Ball|move3type=Ghost|move3cat=Special
|move4=Stone Edge|move4type=Rock|move4cat=Physical}}
|{{Pokémon/4
|game=Platinum
|ndex=350
|pokemon=Milotic
|ability=Marvel Scale
|level=58
|gender=female
|spritegender=female
|type1=Water
|move1=Surf|move1type=Water|move1cat=Special
|move2=Ice Beam|move2type=Ice|move2cat=Special
|move3=Mirror Coat|move3type=Psychic|move3cat=Special
|move4=Dragon Pulse|move4type=Dragon|move4cat=Special}}
|{{Pokémon/4
|game=Platinum
|ndex=445
|pokemon=Garchomp
|ability=Sand Veil
|level=62
|gender=female
|spritegender=female
|type1=Dragon|type2=Ground
|held=Sitrus Berry
|move1=Dragon Rush|move1type=Dragon|move1cat=Physical
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Flamethrower|move3type=Fire|move3cat=Special
|move4=Giga Impact|move4type=Normal|move4cat=Physical}}
{{Party/Footer}}
=====After Stark Mountain=====
{{Party/Single|color={{Cynthia color}}|bordercolor={{Cynthia color dark}}|headcolor={{Cynthia color light}}
|sprite=Spr Pt Cynthia.png
|prize={{PDollar}}15600
|class=Champion
|classlink=Pokémon Champion
|name=Cynthia
|game=Pt
|location=Pokémon League (Sinnoh)
|locationname=Pokémon League
|pokemon=6}}
|{{Pokémon/4
|game=Platinum
|ndex=442
|pokemon=Spiritomb
|ability=Pressure
|level=74
|gender=female
|type1=Ghost|type2=Dark
|move1=Dark Pulse|move1type=Dark|move1cat=Special
|move2=Psychic|move2type=Psychic|move2cat=Special
|move3=Silver Wind|move3type=Bug|move3cat=Special
|move4=Ominous Wind|move4type=Ghost|move4cat=Special}}
|{{Pokémon/4
|game=Platinum
|ndex=407
|pokemon=Roserade
|ability=Natural Cure
|level=74
|gender=female
|spritegender=female
|type1=Grass|type2=Poison
|move1=Energy Ball|move1type=Grass|move1cat=Special
|move2=Sludge Bomb|move2type=Poison|move2cat=Special
|move3=Shadow Ball|move3type=Ghost|move3cat=Special
|move4=Extrasensory|move4type=Psychic|move4cat=Special}}
|{{Pokémon/4
|game=Platinum
|ndex=468
|pokemon=Togekiss
|ability=Hustle
|level=76
|gender=male
|type1=Normal|type2=Flying
|move1=Air Slash|move1type=Flying|move1cat=Special
|move2=Aura Sphere|move2type=Fighting|move2cat=Special
|move3=Water Pulse|move3type=Water|move3cat=Special
|move4=Psychic|move4type=Psychic|move4cat=Special}}
{{Party/Div|color={{cynthia color}}}}
|{{Pokémon/4
|game=Platinum|ndex=448
|pokemon=Lucario
|ability=Steadfast
|level=76
|gender=male
|type1=Fighting|type2=Steel
|move1=Aura Sphere|move1type=Fighting|move1cat=Special
|move2=Dragon Pulse|move2type=Dragon|move2cat=Special
|move3=Psychic|move3type=Psychic|move3cat=Special
|move4=Earthquake|move4type=Ground|move4cat=Physical}}
|{{Pokémon/4
|game=Platinum
|ndex=350
|pokemon=Milotic
|ability=Marvel Scale
|level=74
|gender=female
|spritegender=female
|type1=Water
|move1=Surf|move1type=Water|move1cat=Special
|move2=Ice Beam|move2type=Ice|move2cat=Special
|move3=Mirror Coat|move3type=Psychic|move3cat=Special
|move4=Aqua Ring|move4type=Water|move4cat=Status}}
|{{Pokémon/4
|game=Platinum
|ndex=445
|pokemon=Garchomp
|ability=Sand Veil
|level=78
|gender=female
|spritegender=female
|type1=Dragon|type2=Ground
|held=Sitrus Berry
|move1=Dragon Rush|move1type=Dragon|move1cat=Physical
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Brick Break|move3type=Fighting|move3cat=Physical
|move4=Giga Impact|move4type=Normal|move4cat=Physical}}
{{Party/Footer}}
=====Given away=====
{{Pokémon/4
|game=Platinum
|ndex=175
|pokemon=Togepi
|ability=Hustle|ability2=Serene Grace
|level={{tt|1|Egg}}
|gender=both
|type1=Normal
|move1=Growl|move1type=Normal|move1cat=Status
|move2=Charm|move2type=Normal|move2cat=Status}}
===={{game|Black and White|s}}====
{{Party/Single
|color={{Cynthia color}}
|bordercolor={{Cynthia color dark}}
|headcolor={{Cynthia color light}}
|sprite=Spr BW Cynthia.png
|prize={{PDollar}}15400
|class={{PK}}{{MN}} Trainer
|classlink=Pokémon Trainer
|name=Cynthia
|game=Black and White
|location=Undella Town
|pokemon=6}}
|{{Pokémon/5
|game=Black
|ndex=442
|pokemon=Spiritomb
|ability=Pressure
|level=75
|gender=female
|type1=Ghost|type2=Dark
|move1=Sucker Punch|move1type=Dark|move1cat=Physical
|move2=Shadow Ball|move2type=Ghost|move2cat=Special
|move3=Will-O-Wisp|move3type=Fire|move3cat=Status
|move4=Double Team|move4type=Normal|move4cat=Status}}
|{{Pokémon/5
|game=Black
|ndex=604
|pokemon=Eelektross
|ability=Levitate
|level=75
|gender=female
|type1=Electric
|move1=Crunch|move1type=Dark|move1cat=Physical
|move2=Wild Charge|move2type=Electric|move2cat=Physical
|move3=Dragon Claw|move3type=Dragon|move3cat=Physical
|move4=Flamethrower|move4type=Fire|move4cat=Special}}
|{{Pokémon/5
|game=Black
|ndex=350
|pokemon=Milotic
|ability=Marvel Scale
|level=75
|gender=female
|spritegender=female
|type1=Water
|move1=Hydro Pump|move1type=Water|move1cat=Special
|move2=Blizzard|move2type=Ice|move2cat=Special
|move3=Bulldoze|move3type=Ground|move3cat=Physical
|move4=Dragon Tail|move4type=Dragon|move4cat=Physical}}
{{Party/Div|color={{cynthia color}}}}
|{{Pokémon/5
|game=Black
|ndex=628
|pokemon=Braviary
|ability=Sheer Force
|level=75
|gender=male
|type1=Normal|type2=Flying
|move1=Brave Bird|move1type=Flying|move1cat=Physical
|move2=Crush Claw|move2type=Normal|move2cat=Physical
|move3=Shadow Claw|move3type=Ghost|move3cat=Physical
|move4=Retaliate|move4type=Normal|move4cat=Physical}}
|{{Pokémon/5
|game=Black
|ndex=448
|pokemon=Lucario
|ability=Steadfast
|level=75
|gender=male
|type1=Fighting|type2=Steel
|move1=ExtremeSpeed|move1type=Normal|move1cat=Physical
|move2=Dragon Pulse|move2type=Dragon|move2cat=Special
|move3=Close Combat|move3type=Fighting|move3cat=Physical
|move4=Aura Sphere|move4type=Fighting|move4cat=Special}}
|{{Pokémon/5
|game=Black
|ndex=445
|pokemon=Garchomp
|ability=Sand Veil
|level=77
|gender=female
|spritegender=female
|type1=Dragon|type2=Ground
|move1=Dragon Rush|move1type=Dragon|move1cat=Physical
|move2=Crunch|move2type=Dark|move2cat=Physical
|move3=Earthquake|move3type=Ground|move3cat=Physical
|move4=Stone Edge|move4type=Rock|move4cat=Physical}}
{{Party/Footer}}
===={{game|Black and White|s 2|Pokémon Black 2 and White 2}}====
=====[[Undella Town]]=====
{{Party/Single
|color={{Cynthia color}}
|bordercolor={{Cynthia color dark}}
|headcolor={{Cynthia color light}}
|sprite=Spr B2W2 Cynthia.png
|prize={{PDollar}}{{tt|15600|14800 in Easy Mode, 16400 in Challenge Mode}}
|class={{PK}}{{MN}} Trainer
|classlink=Pokémon Trainer
|name=Cynthia
|game=B2W2
|location=Undella Town
|pokemon=6}}
|{{Pokémon/5
|game=Black
|ndex=442
|pokemon=Spiritomb
|ability=Pressure
|level={{tt|76|72 in Easy Mode, 80 in Challenge Mode}}
|gender=female
|type1=Ghost|type2=Dark
|move1=Shadow Ball|move1type=Ghost|move1cat=Special
|move2=Double Team|move2type=Normal|move2cat=Status
|move3=Dream Eater|move3type=Psychic|move3cat=Special
|move4=Hypnosis|move4type=Psychic|move4cat=Status}}
|{{Pokémon/5
|game=Black
|ndex=350
|pokemon=Milotic
|ability=Marvel Scale
|level={{tt|76|72 in Easy Mode, 80 in Challenge Mode}}
|gender=female
|spritegender=female
|type1=Water
|move1=Hydro Pump|move1type=Water|move1cat=Special
|move2=Blizzard|move2type=Ice|move2cat=Special
|move3=Attract|move3type=Normal|move3cat=Status
|move4=Rest|move4type=Psychic|move4cat=Status}}
|{{Pokémon/5
|game=Black
|ndex=468
|pokemon=Togekiss
|ability=Serene Grace
|level={{tt|76|72 in Easy Mode, 80 in Challenge Mode}}
|gender=male
|type1=Normal|type2=Flying
|move1=Air Slash|move1type=Flying|move1cat=Special
|move2=Aura Sphere|move2type=Fighting|move2cat=Special
|move3=ExtremeSpeed|move3type=Normal|move3cat=Physical
|move4=Thunder Wave|move4type=Electric|move4cat=Status}}
{{Party/Div|color={{cynthia color}}}}
|{{Pokémon/5
|game=Black
|ndex=448
|pokemon=Lucario
|ability=Inner Focus
|level={{tt|76|72 in Easy Mode, 80 in Challenge Mode}}
|gender=male
|type1=Fighting|type2=Steel
|move1=Close Combat|move1type=Fighting|move1cat=Physical
|move2=Flash Cannon|move2type=Steel|move2cat=Special
|move3=Psychic|move3type=Psychic|move3cat=Special
|move4=ExtremeSpeed|move4type=Normal|move4cat=Physical}}
|{{Pokémon/5
|game=Black
|ndex=471
|pokemon=Glaceon
|ability=Snow Cloak
|level={{tt|76|72 in Easy Mode, 80 in Challenge Mode}}
|gender=female
|type1=Ice
|move1=Ice Beam|move1type=Ice|move1cat=Special
|move2=Shadow Ball|move2type=Ghost|move2cat=Special
|move3=Signal Beam|move3type=Bug|move3cat=Special
|move4=Barrier|move4type=Psychic|move4cat=Status}}
|{{Pokémon/5
|game=Black and White
|ndex=445
|pokemon=Garchomp
|ability=Sand Veil
|level={{tt|78|74 in Easy Mode, 82 in Challenge Mode}}
|gender=female
|spritegender=female
|type1=Dragon|type2=Ground
|move1=Dragon Rush|move1type=Dragon|move1cat=Physical
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Stone Edge|move3type=Rock|move3cat=Physical
|move4=Fire Blast|move4type=Fire|move4cat=Special}}
{{Party/Footer}}
=====[[Pokémon World Tournament]]=====
Cynthia uses three of these Pokémon in [[Pokémon battle|Single Battles]], four in [[Double Battle|Double]] and [[Rotation Battle]]s, and all six in [[Triple Battle]]s. She will always lead with her signature Pokémon, {{p|Garchomp}}.
{{Party/Single|color={{Cynthia color}}
|bordercolor={{Cynthia color dark}}
|headcolor={{Cynthia color light}}
|sprite=Spr B2W2 Cynthia.png
|prize=1{{color2|000|Battle Point|BP}}
|class={{PK}}{{MN}} Trainer
|classlink=Pokémon Trainer
|name=Cynthia
|game=B2W2
|location=Pokémon World Tournament
|pokemon=6}}
|{{Pokémon/5
|game=Black
|ndex=445 f
|pokemon=Garchomp
|ability=Sand Veil
|level=50
|gender=both
|held=Focus Sash
|type1=Dragon|type2=Ground
|move1=Outrage|move1type=Dragon|move1cat=Physical
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Stone Edge|move3type=Rock|move3cat=Physical
|move4=Swords Dance|move4type=Normal|move4cat=Status}}
|{{Pokémon/5
|game=Black
|ndex=442
|pokemon=Spiritomb
|ability=Pressure
|level=50
|gender=both
|held=Rocky Helmet
|type1=Ghost|type2=Dark
|move1=Sucker Punch|move1type=Dark|move1cat=Physical
|move2=Protect|move2type=Normal|move2cat=Status
|move3=Will-O-Wisp|move3type=Fire|move3cat=Status
|move4=Pain Split|move4type=Normal|move4cat=Status}}
|{{Pokémon/5
|game=Black
|ndex=407 f
|pokemon=Roserade
|ability=Natural Cure|ability2=Poison Point
|level=50
|gender=both
|type1=Grass|type2=Poison
|held=White Herb
|move1=Leaf Storm|move1type=Grass|move1cat=Special
|move2=Sludge Bomb|move2type=Poison|move2cat=Special
|move3=Shadow Ball|move3type=Ghost|move3cat=Special
|move4=Sleep Powder|move4type=Grass|move4cat=Status}}
{{Party/Div|color={{cynthia color}}}}
|{{Pokémon/5
|game=Black
|ndex=468
|pokemon=Togekiss
|ability=Hustle|ability2=Serene Grace
|level=50
|gender=both
|type1=Normal|type2=Flying
|held=Leftovers
|move1=Air Slash|move1type=Flying|move1cat=Special
|move2=Aura Sphere|move2type=Fighting|move2cat=Special
|move3=Shadow Ball|move3type=Ghost|move3cat=Special
|move4=Grass Knot|move4type=Grass|move4cat=Special}}
|{{Pokémon/5
|game=Black
|ndex=448
|pokemon=Lucario
|ability=Steadfast|ability2=Inner Focus
|level=50
|gender=both
|type1=Fighting|type2=Steel
|held=Life Orb
|move1=Close Combat|move1type=Fighting|move1cat=Physical
|move2=Dark Pulse|move2type=Dark|move2cat=Special
|move3=Stone Edge|move3type=Rock|move3cat=Physical
|move4=ExtremeSpeed|move4type=Normal|move4cat=Physical}}
|{{Pokémon/5
|game=Black
|ndex=471
|pokemon=Glaceon
|ability=Snow Cloak
|level=50
|gender=both
|type1=Ice
|held=Choice Scarf
|move1=Ice Beam|move1type=Ice|move1cat=Special
|move2=Shadow Ball|move2type=Ghost|move2cat=Special
|move3=Signal Beam|move3type=Bug|move3cat=Special
|move4=Water Pulse|move4type=Water|move4cat=Special}}
{{Party/Footer}}
====[[Pokémon Sun and Moon|Pokémon Sun, Moon]], [[Pokémon Ultra Sun and Ultra Moon|Ultra Sun, and Ultra Moon]]====
Cynthia's Pokémon are kept in [[Ultra Ball]]s.
=====[[Battle Tree]]=====
Cynthia uses three of these Pokémon in [[Pokémon battle|Single Battles]], four in [[Double Battle]]s, and two in [[Multi Battle]]s.
{{Party/Single
|color={{cynthia color}}
|headcolor={{cynthia color light}}
|bordercolor={{cynthia color dark}}
|sprite=VSCynthia SM.png
|size=150px
|prize=2-7{{color2|000|Battle Point|BP}}
|class=Pokémon Trainer
|classlink=Pokémon Trainer
|name=Cynthia
|game=SMUSUM
|location=Battle Tree
|pokemon=4}}
|{{Pokémon/7
|ndex=350
|pokemon=Milotic
|gender=both
|type1=Water
|ability=Marvel Scale
|ability2=Competitive
|ability3=Cute Charm
|level=50
|held=Wide Lens
|move1=Hydro Pump|move1type=Water|move1cat=Special
|move2=Blizzard|move2type=Ice|move2cat=Special
|move3=Mirror Coat|move3type=Psychic|move3cat=Special
|move4=Recover|move4type=Normal|move4cat=Status}}
|{{Pokémon/7
|ndex=350
|pokemon=Milotic
|gender=both
|type1=Water
|ability=Marvel Scale
|ability2=Competitive
|ability3=Cute Charm
|level=50
|held=Leftovers
|move1=Ice Beam|move1type=Ice|move1cat=Special
|move2=Rest|move2type=Psychic|move2cat=Status
|move3=Sleep Talk|move3type=Normal|move3cat=Status
|move4=Surf|move4type=Water|move4cat=Special}}
|{{Pokémon/7
|ndex=442
|pokemon=Spiritomb
|gender=both
|type1=Ghost
|type2=Dark
|ability=Pressure
|ability2=Infiltrator
|level=50
|held=Leftovers
|move1=Will-O-Wisp|move1type=Fire|move1cat=Status
|move2=Shadow Sneak|move2type=Ghost|move2cat=Physical
|move3=Swagger|move3type=Normal|move3cat=Status
|move4=Psych Up|move4type=Normal|move4cat=Status}}
|{{Pokémon/7
|ndex=442
|pokemon=Spiritomb
|gender=both
|type1=Ghost
|type2=Dark
|ability=Pressure
|ability2=Infiltrator
|level=50
|held=Custap Berry
|move1=Will-O-Wisp|move1type=Fire|move1cat=Status
|move2=Sucker Punch|move2type=Dark|move2cat=Physical
|move3=Substitute|move3type=Normal|move3cat=Status
|move4=Pain Split|move4type=Normal|move4cat=Status}}
|-
|{{Pokémon/7
|ndex=445
|pokemon=Garchomp
|gender=both
|type1=Dragon|type2=Ground
|ability=Sand Veil
|ability2=Rough Skin
|level=50
|held=Choice Scarf
|move1=Outrage|move1type=Dragon|move1cat=Physical
|move2=Earthquake|move2type=Ground|move2cat=Physical
|move3=Fire Fang|move3type=Fire|move3cat=Physical
|move4=Crunch|move4type=Dark|move4cat=Physical}}
|{{Pokémon/7
|ndex=445
|pokemon=Garchomp
|gender=both
|type1=Dragon|type2=Ground
|ability=Sand Veil
|ability2=Rough Skin
|level=50
|held=Garchompite
|move1=Sandstorm|move1type=Rock|move1cat=Status
|move2=Stone Edge|move2type=Rock|move2cat=Physical
|move3=Earthquake|move3type=Ground|move3cat=Physical
|move4=Dragon Claw|move4type=Dragon|move4cat=Physical}}
|{{Pokémon/7
|ndex=448
|pokemon=Lucario
|gender=both
|type1=Fighting|type2=Steel
|ability=Steadfast
|ability2=Inner Focus
|ability3=Justified
|level=50
|held=Lucarionite
|move1=Close Combat|move1type=Fighting|move1cat=Physical
|move2=Rock Slide|move2type=Rock|move2cat=Physical
|move3=Blaze Kick|move3type=Fire|move3cat=Physical
|move4=Bullet Punch|move4type=Steel|move4cat=Physical}}
|{{Pokémon/7
|ndex=448
|pokemon=Lucario
|gender=both
|type1=Fighting|type2=Steel
|ability=Steadfast
|ability2=Inner Focus
|ability3=Justified
|level=50
|held=Weakness Policy
|move1=Aura Sphere|move1type=Fighting|move1cat=Special
|move2=Dragon Pulse|move2type=Dragon|move2cat=Special
|move3=Stone Edge|move3type=Rock|move3cat=Physical
|move4=Extreme Speed|move4type=Normal|move4cat=Physical}}
|-
|{{Pokémon/7
|ndex=468
|pokemon=Togekiss
|gender=both
|type1=Fairy|type2=Flying
|ability=Hustle
|ability2=Serene Grace
|ability3=Super Luck
|level=50
|held=King's Rock
|move1=Grass Knot|move1type=Grass|move1cat=Special
|move2=Thunder Wave|move2type=Electric|move2cat=Status
|move3=Air Slash|move3type=Flying|move3cat=Special
|move4=Shadow Ball|move4type=Ghost|move4cat=Special}}
|{{Pokémon/7
|ndex=468
|pokemon=Togekiss
|gender=both
|type1=Fairy|type2=Flying
|ability=Hustle
|ability2=Serene Grace
|ability3=Super Luck
|level=50
|held=Expert Belt
|move1=Aura Sphere|move1type=Fighting|move1cat=Special
|move2=Air Slash|move2type=Flying|move2cat=Special
|move3=Grass Knot|move3type=Grass|move3cat=Special
|move4=Dazzling Gleam|move4type=Fairy|move4cat=Special}}
{{Party/Footer}}
==In spin-off games==
===[[Pokémon Masters EX]]===
{{main|Cynthia (Masters)}}
Cynthia forms a [[sync pair]] with her Garchomp in [[Pokémon Masters EX]]. She is also available wearing her [[Sygna Suit|sygna suit]], partnered alongside {{p|Kommo-o}}.
==Artwork==
{| style="margin:auto; text-align:center; {{roundy|20px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color}}; color:#fff"
|-
|-
| style="{{roundy|15px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}" | [[File:Diamond Pearl Cynthia.png|x250px]]
| style="{{roundy|15px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}" | [[File:Cynthia Garchomp clear file front.png|x250px]]
| style="{{roundy|15px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}" | [[File:Cynthia Garchomp Ariga artwork.png|x250px]]
|- style="font-size:80%"
| Official artwork from<br>{{color2|fff|Pokémon Diamond and Pearl Versions|Diamond and Pearl}}
| Artwork of Cynthia and {{pcolor|Garchomp|fff}}<br>for the {{color2|fff|Pokémon Center (store)|Pokémon Center}} clear file (front)
| Cynthia and {{pcolor|Garchomp|fff}} concept artwork by<br>{{color2|fff|Hitoshi Ariga}} for Kotobukiya ArtFx J figurines
|}
===Sprites===
{| style="margin:auto; text-align:center; font-size:80%; {{roundy|20px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color}}; color:#fff"
|style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Spr DP Cynthia.png]]
|style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Spr Pt Cynthia.png]]
|style="{{roundy|20px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:VSCynthia.png]]
|style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Spr BW Cynthia.png]]
|style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Spr B2W2 Cynthia.png]]
|style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Spr SM Cynthia.png|100px]]
|style="{{roundy|20px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:VSCynthia SM.png|150px]]
|-
| Sprite from<br>{{color2|fff|Pokémon Diamond and Pearl Versions|Diamond and Pearl}}
| Sprite from<br>{{color2|fff|Pokémon Platinum Version|Platinum}}
| VS sprite from<br>{{color2|fff|Pokémon Platinum Version|Platinum}}
| Sprite from<br>{{color2|fff|Pokémon Black and White Versions|Black and White}}
| Sprite from<br>{{color2|fff|Pokémon Black and White Versions 2|Black 2 and<br>White 2}}
| In-battle model from<br>{{color2|fff|Pokémon Sun and Moon|Sun, Moon}},<br>{{color2|fff|Pokémon Ultra Sun and Ultra Moon|Ultra Sun,<br>and Ultra Moon}}
| VS model from<br>{{color2|fff|Pokémon Sun and Moon|Sun, Moon}}, {{color2|fff|Pokémon Ultra Sun and Ultra Moon|Ultra Sun,<br>and Ultra Moon}}
|-
|colspan="3" style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Cynthia IV OD.png]]
|colspan="2" style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Cynthia OD.png]]
|colspan=2 style="{{roundy|80px}} border:2px solid #{{cynthia color dark}}; background:#{{cynthia color light}}; width:80px"| [[File:Cynthia SM OD.png|100px]]
|-
| colspan="3" | Overworld sprite from<br>{{color2|fff|Generation IV}}
| colspan="2" | Overworld sprite from<br>{{color2|fff|Generation V}}
| colspan="2" | Overworld model from<br>{{color2|fff|Pokémon Sun and Moon|Sun, Moon}}, {{color2|fff|Pokémon Ultra Sun and Ultra Moon|Ultra Sun,<br>and Ultra Moon}}
|}
==Quotes==
{{main|Cynthia/Quotes}}
==In the anime==
[[File:Cynthia anime BW2.png|thumb|250px|Cynthia in ''[[Pokémon the Series: Black & White]]'']]
===Main series===
{{main|Cynthia (anime)}}
Cynthia is a recurring character in ''[[Pokémon the Series: Diamond and Pearl]]'' and ''[[Pokémon the Series: Black & White]]''. Her physical debut was in ''[[DP040|Top-Down Training!]]'', where she defeated {{ash}}'s [[rival]] [[Paul]] in a [[Full Battle]]. She has assisted Ash and {{ashfr}} on several occasions, helping them fight both [[Team Galactic]] in [[Sinnoh]] and [[Team Rocket]] in [[Unova]].
In ''[[Pokemon Journeys: The Series]]'', Cynthia returns as one of the [[Masters Eight|top eight]] Pokémon Trainers in the world within the [[World Coronation Series]].
{{-}}
===Pokémon Generations===
[[File:Cynthia PG.png|thumb|250px|Cynthia in [[Pokémon Generations]]]]
In ''[[PG11|The New World]]'', Cynthia and {{TP|Cynthia|Garchomp}} attempted to stop [[Cyrus]] from destroying the world by summoning {{p|Dialga}} and {{p|Palkia}}. However, {{p|Giratina}} appeared and helped her. She then watched as Giratina took Cyrus to the [[Distortion World]].
====Pokémon====
{{TrainerPoké
|width=68
|main=yes
|trainer=Cynthia
|pkmn=Garchomp
|type1=Dragon
|type2=Ground
|img=Cynthia Garchomp PG.png
|epnum=PG11
|epname=The New World
|desc=Garchomp is Cynthia's only known Pokémon. It appeared along with her at Spear Pillar.
None of its moves are known.}}
====Voice actors====
{{vatable|color={{Cynthia color}}|bordercolor={{Cynthia color light}}
|ja=遠藤綾 ''[[Aya Endō]]''
|en=[[Tara Jayne]]
|es_eu=Geni Rey}}
===GOTCHA!===
Cynthia briefly appeared in [[GOTCHA!]].
==In the manga==
[[File:Cynthia Looker Adventures.png|thumb|right|270px|Cynthia in Pokémon Adventures]]
===Pokémon Adventures===
Cynthia has loved cycling since her childhood and often races with her {{TP|Cynthia|Garchomp}}.
====History====
====={{chap|Diamond & Pearl}}=====
Cynthia first appears in ''[[PS347|Ring Around the Roserade II]]''. She is first seen in [[Eterna City]], where she correctly predicts the evolutions of {{adv|Diamond}}, {{adv|Pearl}}, and {{adv|Platinum}}'s [[Tru]], [[Chimler]], and {{TP|Platinum|Piplup}}. After laughing at Diamond and Pearl's comedy routine, Cynthia offers to give Platinum advice for her upcoming Gym battle against [[Gardenia]]. Once finished, Cynthia attacks the [[Team Galactic Eterna Building]] in order to rescue [[Rad Rickshaw]], who was kidnapped by [[Team Galactic]].
In ''[[PS367|Suffering Psyduck]]'', Diamond, Pearl, and Platinum encounter Cynthia again at the {{si|Pokémon Mansion}}. Cynthia reveals that [[Mr. Backlot]], the owner of the mansion, asked her to investigate a {{p|Psyduck}} that went missing. She takes the three to {{rt|210|Sinnoh}}, where a large group of Psyduck have clustered together, creating a roadblock that prevents anyone from passing through the route. Using a [[Secret Potion|SecretPotion]], Cynthia cures the Psyduck of their headaches, causing them to disperse and allow travel through Route 210.
Afterward, Cynthia and the trio meet with Cynthia's [[Professor Carolina|grandmother]], who had been forced to stay at the [[Café Cabin]] due to the roadblock preventing her from going back to [[Celestic Town]]. Cynthia decides to have her grandmother take the trio to Celestic Town while she goes off to return one of the Psyduck to its owner. Before leaving, Cynthia lends her {{TP|Cynthia|Garchomp}} to her grandmother for protection.
In ''[[PS406|Halting Honchkrow]]'', Cynthia appears at the [[Team Galactic HQ]] to confront [[Cyrus]], the leader of Team Galactic. Cynthia reveals that her intentions were to take revenge on Cyrus for attacking Celestic Town, her hometown. Despite her best efforts, Cynthia's rage leads to her commanding Garchomp to attack with {{m|Draco Meteor}}, which it had yet to master. The attack heavily damages Cyrus's {{p|Gyarados}}, but fails to actually knock it out. With Garchomp left exhausted after using the move, Cyrus bids Cynthia farewell and heads to the [[Spear Pillar]] to begin his plans.
Cynthia, realizing that Cyrus intends to summon {{adv|Creation trio|Dialga and Palkia}}, decides to follow after him to prevent the two Pokémon from being awakened. As she heads out of the building, Cynthia comes across Diamond, Pearl, and Platinum, who had fought Team Galactic to free {{adv|Lake guardians|Uxie, Mesprit, and Azelf}} from their clutches. The trio join Cynthia and travel to the Spear Pillar in order to put a stop to Cyrus's ambitions. By the time the group arrived at the Spear Pillar, Cyrus had already successfully summoned Dialga and Palkia and had them fight each other. The clash between the two Legendary Pokémon creates distortions in time and space that slowly begin to engulf the [[Sinnoh]] region. The distortions, combined with her injures, prevent Cynthia from being much help to Diamond, Pearl, and Platinum during the battle against Cyrus.
During the battle, an explosion causes Cynthia to drop a scroll containing information on Dialga and Palkia. After translating the scroll, Platinum relays the information to Diamond and Pearl, who successfully free Dialga and Palkia from Cyrus's control. Now free, Dialga and Palkia combine their powers to defeat Cyrus and stop the distortions affecting Sinnoh.
====={{chap|Platinum}}=====
In ''[[PS431|The Final Dimensional Duel I]]'', Cynthia is taken to [[Veilstone City]] by her grandmother. Cynthia is chastised by her grandmother over her defeat at the hands of Cyrus. Cynthia's grandmother reveals she plans on training Cynthia to fully master learning Draco Meteor.
In ''[[PS440|The Final Dimensional Duel X]]'', Cynthia appears in [[Sunyshore City]], where she defeats [[Charon]] and Giratina with a fully-mastered Draco Meteor. When asked how she knew Giratina would appear in Sunyshore, Cynthia reveals that being trapped in the [[Distortion World]] left Giratina with the desire to see the sun. Afterward, Cynthia takes her grandmother to the Café Cabin as thanks for the special training.
====={{chap|HeartGold & SoulSilver}}=====
In ''[[PS460|All About Arceus IX]]'', Cynthia is seen in the [[Johto]] region, where she spots Dialga and Palkia flying towards Sinnoh. She is then approached by [[Palmer]], a [[Frontier Brain]] who also hails from Sinnoh.
====Pokémon====
{{TrainerPoké
|main=yes
|trainer=Cynthia
|pkmn=Garchomp
|stage1=Gabite
|gender=female
|type1=Dragon
|type2=Ground
|img=Cynthia Garchomp Adventures.png
|epnum=PS347
|epname=Ring Around the Roserade II
|desc={{p|Garchomp}} is Cynthia's strongest Pokémon and her main battler. Garchomp is well trained enough to even battle without her Trainer giving commands. She battled Cyrus and his Pokémon in the Celestic Ruins but he managed to outsmart her and use her moves against her for his own gain. She was later used against him in the Galactic HQ holding a grudge from their last battle, despite using her strongest moves including the powerful Draco Meteor, her rage caused her moves to become weaker and Cyrus escaped, with neither her nor Cynthia strong enough to follow him.}}
{{TrainerPoké
|trainer=Cynthia
|pkmn=Spiritomb
|gender=female
|type1=Ghost
|type2=Dark
|img=Cynthia Spiritomb Adventures.png
|img_size=100px
|epnum=PS347
|epname=Ring Around the Roserade II
|desc={{p|Spiritomb}} was the second Pokémon seen in Cynthia's possession. With her powerful Psychic techniques she can lift objects with ease and played an important role in rescuing Rad Rickshaw from the clutches of Team Galactic. She was later used against Cyrus in the Galactic HQ and defeated his Honchkrow but was frozen by his Weavile and rendered unable to fight.
Spiritomb's known moves are {{m|Psychic}} and {{m|Shock Wave}}, and her Ability is {{a|Pressure}}.}}
{{TrainerPoké
|trainer=Cynthia
|pkmn=Milotic
|type1=Water
|img=Cynthia Milotic Adventures.png
|epnum=PS409
|epname=Shunning Spiritomb
|desc={{p|Milotic}} was the third Pokémon seen in Cynthia's possession. Milotic was first used against the Galactic Boss Cyrus in the Team Galactic HQ, it defeated his {{p|Weavile}} after a tough battle but was knocked out by a {{m|Giga Impact}} from his {{p|Gyarados}}.
Milotic's known moves are {{m|Iron Tail}}, {{m|Brine}}, {{m|Twister}} and {{m|Tackle}}.}}
===Pokémon Diamond and Pearl Adventure!===
[[File:Cynthia DPA.png|thumb|150px|Cynthia in Diamond and Pearl Adventure!]]
Cynthia first appears in ''[[DPA07|Dialga's Secret Keys!]]'', where she rescues [[Hareta]] from a {{tc|Galactic Grunt}}. Afterwards, she tells him and [[Mitsumi]] about the legends of Celestic Town and the Legendary Pokémon in Sinnoh.
She reappears in ''[[DPA23|A New Battle Begins!]]'' as a member of the Pokémon League, challenging Mitsumi. Even though Mitsumi gets the upper hand, she decides to resign, as it would make things better for Hareta.
====Pokémon====
{{TrainerPoké
|main=yes
|trainer=Cynthia
|pkmn=Garchomp
|gender=female
|type1=Dragon
|type2=Ground
|img=Cynthia Garchomp DPA.png