-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcards.yaml
1040 lines (1040 loc) · 124 KB
/
cards.yaml
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
194013-01: {card_name: キュアハート, card_text: キュアハートとあそべるよ!, cardtype: allstars, img_back: 194013-01_b.png,
img_both: 194013-01-w.png, img_front: 194013-01_f.png, img_url: false, model: キュアハート,
'no': '01', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-02: {card_name: キュアハート, card_text: キュアハートとあそべるよ!, cardtype: allstars, img_back: 194013-02_b.png,
img_both: 194013-02-w.png, img_front: 194013-02_f.png, img_url: 'http://t.co/QnEzvowtcD',
model: キュアハート, 'no': '02', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-03: {card_name: キュアソード, card_text: キュアソードとあそべるよ!, cardtype: allstars, img_back: 194013-03_b.png,
img_both: 194013-03-w.png, img_front: 194013-03_f.png, img_url: 'http://t.co/LkUOhBzCqa',
model: キュアソード, 'no': '03', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-04: {card_name: キュアソード, card_text: キュアソードとあそべるよ!, cardtype: allstars, img_back: 194013-04_b.png,
img_both: 194013-04-w.png, img_front: 194013-04_f.png, img_url: 'http://t.co/P8H1BKTM04',
model: キュアソード, 'no': '04', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-05: {card_name: キュアエース, card_text: キュアエースとあそべるよ!, cardtype: allstars, img_back: 194013-05_b.png,
img_both: 194013-05-w.png, img_front: 194013-05_f.png, img_url: false, model: キュアエース,
'no': '05', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-06: {card_name: キュアエース, card_text: キュアエースとあそべるよ!, cardtype: allstars, img_back: 194013-06_b.png,
img_both: 194013-06-w.png, img_front: 194013-06_f.png, img_url: 'http://t.co/qBUojkNNd0',
model: キュアエース, 'no': '06', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-07: {card_name: キュアハッピー, card_text: キュアハッピーとあそべるよ!, cardtype: allstars, img_back: 194013-07_b.png,
img_both: 194013-07-w.png, img_front: 194013-07_f.png, img_url: 'http://t.co/9hYq3KPAEP',
model: キュアハッピー, 'no': '07', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-08: {card_name: キュアハッピー, card_text: キュアハッピーとあそべるよ!, cardtype: allstars, img_back: 194013-08_b.png,
img_both: 194013-08-w.png, img_front: 194013-08_f.png, img_url: 'http://t.co/ndus20XQ4U',
model: キュアハッピー, 'no': 08, no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-09: {card_name: キュアパッション, card_text: キュアパッションとあそべるよ!, cardtype: allstars, img_back: 194013-09_b.png,
img_both: 194013-09-w.png, img_front: 194013-09_f.png, img_url: 'http://t.co/vpJLRqyUUV',
model: キュアパッション, 'no': 09, no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-10: {card_name: キュアパッション, card_text: キュアパッションとあそべるよ!, cardtype: allstars, img_back: 194013-10_b.png,
img_both: 194013-10-w.png, img_front: 194013-10_f.png, img_url: 'http://t.co/uT73JOJdzi',
model: キュアパッション, 'no': '10', no_max: '48', rarity: prc-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-11: {card_name: キュアブラック, card_text: キュアブラックとあそべるよ!, cardtype: allstars, img_back: 194013-11_b.png,
img_both: 194013-11-w.png, img_front: 194013-11_f.png, img_url: 'http://t.co/naZah2hLTS',
model: キュアブラック, 'no': '11', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-12: {card_name: キュアブラック, card_text: キュアブラックとあそべるよ!, cardtype: allstars, img_back: 194013-12_b.png,
img_both: 194013-12-w.png, img_front: 194013-12_f.png, img_url: false, model: キュアブラック,
'no': '12', no_max: '48', rarity: prc-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-13: {card_name: パティシエ, card_text: パティシエさんドレスでスイーツパーティーをハッピーに♥, cardtype: dress-tops-hc,
img_back: 194013-13_b.png, img_both: 194013-13-w.png, img_front: 194013-13_f.png,
img_url: 'http://t.co/yUtfksyLdh', model: 愛乃めぐみ, 'no': '13', no_max: '48', rarity: prc-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-14: {card_name: コック, card_text: どんなりょうりもつくれちゃいそう!パーティーにはおいしいたべものね♪, cardtype: dress-tops-hc,
img_back: 194013-14_b.png, img_both: 194013-14-w.png, img_front: 194013-14_f.png,
img_url: false, model: 白雪ひめ, 'no': '14', no_max: '48', rarity: prc-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-15: {card_name: パーティ, card_text: ラブリーピンクのきれいなドレスでパーティーにいきませんか?, cardtype: dress-tops-hc,
img_back: 194013-15_b.png, img_both: 194013-15-w.png, img_front: 194013-15_f.png,
img_url: 'http://t.co/9vXSyc6hyQ', model: 花咲つぼみ, 'no': '15', no_max: '48', rarity: prc-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-16: {card_name: ショートケーキチュニック, card_text: ショートケーキみたいにいちごたっぷりのトップスだよ♪, cardtype: dress-tops-hc,
img_back: 194013-16_b.png, img_both: 194013-16-w.png, img_front: 194013-16_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '16', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-17: {card_name: チョコバナナスイートシャツ, card_text: チョコチップのベストがかわいいね♪チョコバナナコーデがオススメだよ♥,
cardtype: dress-tops-hc, img_back: 194013-17_b.png, img_both: 194013-17-w.png, img_front: 194013-17_f.png,
img_url: 'http://t.co/VomkC7jeRH', model: 黄瀬やよい, 'no': '17', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-18: {card_name: ストロベリーチョコブラウス, card_text: おおきなストロベリーいろのリボンがとってもカワイイよ★, cardtype: dress-tops-hc,
img_back: 194013-18_b.png, img_both: 194013-18-w.png, img_front: 194013-18_f.png,
img_url: 'http://t.co/LPtzzTxI4B', model: 愛乃めぐみ, 'no': '18', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-19: {card_name: スイーツアップリケジャケット, card_text: おかしのアップリケがちょうキュート♪ジャケットでカッコよくもきれるね!,
cardtype: dress-tops-hc, img_back: 194013-19_b.png, img_both: 194013-19-w.png, img_front: 194013-19_f.png,
img_url: false, model: 愛乃めぐみ&剣崎まこと, 'no': '19', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-20: {card_name: カラフルドーナツTシャツ, card_text: ドーナツいっぱいのTシャツよ。なんだかとってもおいしそう♪, cardtype: dress-tops-hc,
img_back: 194013-20_b.png, img_both: 194013-20-w.png, img_front: 194013-20_f.png,
img_url: 'http://t.co/cRtiv7BN82', model: 水無月かれん&美墨なぎさ, 'no': '20', no_max: '48',
rarity: img_rare_s-hc.gif, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-21: {card_name: ビスケットリボンブラウス, card_text: ビスケットがらのブラウスよ。ちいさなあかいリボンがステキね★, cardtype: dress-tops-hc,
img_back: 194013-21_b.png, img_both: 194013-21-w.png, img_front: 194013-21_f.png,
img_url: 'http://t.co/84lsahkvrl', model: 美々野くるみ, 'no': '21', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-22: {card_name: ぐるぐるキャンディジャケット, card_text: カラフルなジャケットにぐるぐるキャンディのインナーがかわいいね!,
cardtype: dress-tops-hc, img_back: 194013-22_b.png, img_both: 194013-22-w.png, img_front: 194013-22_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '22', no_max: '48', rarity: n-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-23: {card_name: カラフルスイーツパーカー, card_text: いろんなスイーツもりだくさんのパーカーだよ♪どれがおいしいかなあ?,
cardtype: dress-tops-hc, img_back: 194013-23_b.png, img_both: 194013-23-w.png, img_front: 194013-23_f.png,
img_url: 'http://t.co/KmJJDj6OGW', model: 愛乃めぐみ&白雪ひめ, 'no': '23', no_max: '48',
rarity: n-hc, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-24: {card_name: ポップキャンディダウンジャケット, card_text: キャンディいっぱいのダウンジャケットでさむいふゆもあったかいね♥,
cardtype: dress-tops-hc, img_back: 194013-24_b.png, img_both: 194013-24-w.png, img_front: 194013-24_f.png,
img_url: 'http://t.co/cwvSAwr4MJ', model: 愛乃めぐみ&調辺アコ, 'no': '24', no_max: '48',
rarity: n-hc, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-25: {card_name: アイ♥スイーツTシャツ, card_text: みんながだいすきなおかしがちょういっぱい!アイラブスイーツ♥, cardtype: dress-tops-hc,
img_back: 194013-25_b.png, img_both: 194013-25-w.png, img_front: 194013-25_f.png,
img_url: false, model: 相田マナ&桃園ラブ, 'no': '25', no_max: '48', rarity: n-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-26: {card_name: ふんわりマカロンチュニック, card_text: マカロンみたいにフワフワなパステルカラーのチュニックよ♪, cardtype: dress-tops-hc,
img_back: 194013-26_b.png, img_both: 194013-26-w.png, img_front: 194013-26_f.png,
img_url: 'http://t.co/L9rVTnNguB', model: 菱川りっか, 'no': '26', no_max: '48', rarity: n-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-27: {card_name: いちごケーキふうボレロ, card_text: いちごがいっぱいのボレロですね♥いちごケーキみたいにあまいボレロですわ♪,
cardtype: dress-tops-hc, img_back: 194013-27_b.png, img_both: 194013-27-w.png, img_front: 194013-27_f.png,
img_url: false, model: 四葉ありす&雪城ほのか, 'no': '27', no_max: '48', rarity: n-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-28: {card_name: ホットケーキTシャツ, card_text: ホットケーキロゴのTシャツだよ!みずたまもようでげんきになれるね★, cardtype: dress-tops-hc,
img_back: 194013-28_b.png, img_both: 194013-28-w.png, img_front: 194013-28_f.png,
img_url: 'http://t.co/X70jjY0LXf', model: 北条響, 'no': '28', no_max: '48', rarity: n-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-29: {card_name: チョコミントキャミ&ファージャケット, card_text: ラブリーなチョコミントコーデだよ♪あかいリボンとファーでかわいくね★,
cardtype: dress-tops-hc, img_back: 194013-29_b.png, img_both: 194013-29-w.png, img_front: 194013-29_f.png,
img_url: 'http://t.co/N0akirkut4', model: 明堂院いつき&秋元こまち, 'no': '29', no_max: '48',
rarity: n-hc, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-30: {card_name: カップケーキアンサンブル, card_text: カップケーキがらのアンサンブルよ。ケーキコーデでどうかしら?, cardtype: dress-tops-hc,
img_back: 194013-30_b.png, img_both: 194013-30-w.png, img_front: 194013-30_f.png,
img_url: 'http://t.co/8EObSnc61B', model: 月影ゆり, 'no': '30', no_max: '48', rarity: n-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-31: {card_name: コック, card_text: あかいエプロンでカッコよくキマるね!おいしいりょうりをつくっちゃうよ★, cardtype: dress-bottoms-hc,
img_back: 194013-31_b.png, img_both: 194013-31-w.png, img_front: 194013-31_f.png,
img_url: 'http://t.co/syih0FLHCh', model: 愛乃めぐみ, 'no': '31', no_max: '48', rarity: prc-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-32: {card_name: パティシエ, card_text: みずいろチェックがラブリーになれるね♪オシャレにおかしづくりしちゃお♥, cardtype: dress-bottoms-hc,
img_back: 194013-32_b.png, img_both: 194013-32-w.png, img_front: 194013-32_f.png,
img_url: false, model: 白雪ひめ, 'no': '32', no_max: '48', rarity: prc-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-33: {card_name: パーティ, card_text: パーティーにいくならコレ!みんなのちゅうもくをあつめちゃうよ♥, cardtype: dress-bottoms-hc,
img_back: 194013-33_b.png, img_both: 194013-33-w.png, img_front: 194013-33_f.png,
img_url: false, model: 来海えりか, 'no': '33', no_max: '48', rarity: prc-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-34: {card_name: ショートケーキドレススカート, card_text: まっかなリボンがオシャレ♪トップスとあわせてショートケーキコーデだよ♥,
cardtype: dress-bottoms-hc, img_back: 194013-34_b.png, img_both: 194013-34-w.png,
img_front: 194013-34_f.png, img_url: false, model: 白雪ひめ, 'no': '34', no_max: '48',
rarity: img_rare_ps-hc.gif, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-35: {card_name: チョコバナナフリルスカート, card_text: チョコバナナいろのフリルスカートだよ♪チョコのレースがかわいいね♥,
cardtype: dress-bottoms-hc, img_back: 194013-35_b.png, img_both: 194013-35-w.png,
img_front: 194013-35_f.png, img_url: false, model: 山吹祈里, 'no': '35', no_max: '48',
rarity: img_rare_ps-hc.gif, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-36: {card_name: ストロベリーチョコスカート, card_text: ストロベリーチョコのストライプがとってもかわいくキマるスカートだよ★,
cardtype: dress-bottoms-hc, img_back: 194013-36_b.png, img_both: 194013-36-w.png,
img_front: 194013-36_f.png, img_url: false, model: 白雪ひめ, 'no': '36', no_max: '48',
rarity: img_rare_s-hc.gif, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-37: {card_name: スイーツアップリケスキニー, card_text: スイーツのアップリケがいっぱい!みんなおいしそうにみえるね♪, cardtype: dress-bottoms-hc,
img_back: 194013-37_b.png, img_both: 194013-37-w.png, img_front: 194013-37_f.png,
img_url: 'http://t.co/0G9jpYhwy4', model: 白雪ひめ&南野奏, 'no': '37', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-38: {card_name: ビスケットミニティアード, card_text: おもわずたべたくなちゃうビスケットがらのミニティアードですわ♪, cardtype: dress-bottoms-hc,
img_back: 194013-38_b.png, img_both: 194013-38-w.png, img_front: 194013-38_f.png,
img_url: 'http://t.co/pAMFUErKBu', model: 円亜久里, 'no': '38', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-39: {card_name: カラフルドーナツスカート, card_text: ちょこっとみえるドーナツがワンポイント★あたしもドーナツたべたーい!,
cardtype: dress-bottoms-hc, img_back: 194013-39_b.png, img_both: 194013-39-w.png,
img_front: 194013-39_f.png, img_url: 'http://t.co/kTTFgfRbKG', model: 星空みゆき&九条ひかり,
'no': '39', no_max: '48', rarity: img_rare_s-hc.gif, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-40: {card_name: いちごケーキふうスカート, card_text: いちごケーキみたいなピンクレースにおおきなリボンでとってもラブリーね♥,
cardtype: dress-bottoms-hc, img_back: 194013-40_b.png, img_both: 194013-40-w.png,
img_front: 194013-40_f.png, img_url: 'http://t.co/Qril5BzNp1', model: 白雪ひめ, 'no': '40',
no_max: '48', rarity: n-hc, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-41: {card_name: カップケーキフレアスカート, card_text: ブルーのスカートにキュートなカップケーキもようでオシャレにキメちゃおう♥,
cardtype: dress-bottoms-hc, img_back: 194013-41_b.png, img_both: 194013-41-w.png,
img_front: 194013-41_f.png, img_url: 'http://t.co/aSofv9Kke6', model: 白雪ひめ, 'no': '41',
no_max: '48', rarity: n-hc, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-42: {card_name: ホットケーキパンツ, card_text: シンプルなボトムスにはカラフルなシューズでオシャレにキメるで!, cardtype: dress-bottoms-hc,
img_back: 194013-42_b.png, img_both: 194013-42-w.png, img_front: 194013-42_f.png,
img_url: 'http://t.co/cr1tFGtKw7', model: 日野あかね, 'no': '42', no_max: '48', rarity: n-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-43: {card_name: ぐるぐるキャンディスカート, card_text: とってもカラフルなぐるぐるキャンディのロングスカートだよ♪, cardtype: dress-bottoms-hc,
img_back: 194013-43_b.png, img_both: 194013-43-w.png, img_front: 194013-43_f.png,
img_url: 'http://t.co/6lZxGyfLm8', model: 緑川なお, 'no': '43', no_max: '48', rarity: n-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-44: {card_name: カラフルスイーツベルボトム, card_text: キュートなスイーツもようにスタッズベルトでカッコよくきれますね♪,
cardtype: dress-bottoms-hc, img_back: 194013-44_b.png, img_both: 194013-44-w.png,
img_front: 194013-44_f.png, img_url: false, model: 青木れいか&東せつな, 'no': '44', no_max: '48',
rarity: n-hc, series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-45: {card_name: ポップキャンディカラーパンツ, card_text: ポップなキャンディカラーでさむいふゆもカラフルにおしゃれしましょ♪,
cardtype: dress-bottoms-hc, img_back: 194013-45_b.png, img_both: 194013-45-w.png,
img_front: 194013-45_f.png, img_url: 'http://t.co/oR4LsfhVN4', model: 黒川エレン&日向咲,
'no': '45', no_max: '48', rarity: n-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-46: {card_name: チョコミントコーデュロイミニ, card_text: チョコミントカラーのタイトスカートよ♪チョコいろファーのブーツもオシャレでしょ★,
cardtype: dress-bottoms-hc, img_back: 194013-46_b.png, img_both: 194013-46-w.png,
img_front: 194013-46_f.png, img_url: 'http://t.co/wEMEoM8vti', model: 蒼乃美希&春日野うらら,
'no': '46', no_max: '48', rarity: n-hc, series_id: '194013', series_name: happiness01,
series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-47: {card_name: アイ♥スイーツカーゴ, card_text: スイーツいっぱいでおいしそう!サイドのレースでかわいくなれるね♥, cardtype: dress-bottoms-hc,
img_back: 194013-47_b.png, img_both: 194013-47-w.png, img_front: 194013-47_f.png,
img_url: false, model: 夢原のぞみ&夏木りん, 'no': '47', no_max: '48', rarity: n-hc, series_id: '194013',
series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194013-48: {card_name: ふんわりマカロンフリル, card_text: ふわふわフリルとマカロンがらタイツでラブリーなコーデです♪, cardtype: dress-bottoms-hc,
img_back: 194013-48_b.png, img_both: 194013-48-w.png, img_front: 194013-48_f.png,
img_url: 'http://t.co/RRAhPJkqcw', model: 美翔舞, 'no': '48', no_max: '48', rarity: n-hc,
series_id: '194013', series_name: happiness01, series_text: ハピネスチャージ1だんハピネスチャージプリキュア!とうじょう! }
194014-01: {card_name: キュアロゼッタ, card_text: キュアロゼッタとあそべるよ!, cardtype: allstars, img_back: 194014-01_b.png,
img_both: 194014-01_w.png, img_front: 194014-01_f.png, img_url: false, model: キュアロゼッタ,
'no': '01', no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-02: {card_name: キュアロゼッタ, card_text: キュアロゼッタとあそべるよ!, cardtype: allstars, img_back: 194014-02_b.png,
img_both: 194014-02_w.png, img_front: 194014-02_f.png, img_url: 'http://t.co/ePKae23cov',
model: キュアロゼッタ, 'no': '02', no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-03: {card_name: キュアピース, card_text: キュアピースとあそべるよ!, cardtype: allstars, img_back: 194014-03_b.png,
img_both: 194014-03_w.png, img_front: 194014-03_f.png, img_url: 'http://t.co/Wbn0wNmmhM',
model: キュアピース, 'no': '03', no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-04: {card_name: キュアピース, card_text: キュアピースとあそべるよ!, cardtype: allstars, img_back: 194014-04_b.png,
img_both: 194014-04_w.png, img_front: 194014-04_f.png, img_url: 'http://t.co/WYYGfEY7r9',
model: キュアピース, 'no': '04', no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-05: {card_name: キュアサンシャイン, card_text: キュアサンシャインとあそべるよ!, cardtype: allstars,
img_back: 194014-05_b.png, img_both: 194014-05_w.png, img_front: 194014-05_f.png,
img_url: 'http://t.co/KlUHkVfOZZ', model: キュアサンシャイン, 'no': '05', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-06: {card_name: キュアサンシャイン, card_text: キュアサンシャインとあそべるよ!, cardtype: allstars,
img_back: 194014-06_b.png, img_both: 194014-06_w.png, img_front: 194014-06_f.png,
img_url: 'http://t.co/tVFyr4P8ZE', model: キュアサンシャイン, 'no': '06', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-07: {card_name: キュアパイン, card_text: キュアパインとあそべるよ!, cardtype: allstars, img_back: 194014-07_b.png,
img_both: 194014-07_w.png, img_front: 194014-07_f.png, img_url: 'http://t.co/jmt7yNg8A3',
model: キュアパイン, 'no': '07', no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-08: {card_name: キュアパイン, card_text: キュアパインとあそべるよ!, cardtype: allstars, img_back: 194014-08_b.png,
img_both: 194014-08_w.png, img_front: 194014-08_f.png, img_url: 'http://t.co/mpfbJmjBtp',
model: キュアパイン, 'no': 08, no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-09: {card_name: キュアレモネード, card_text: キュアレモネードとあそべるよ!, cardtype: allstars, img_back: 194014-09_b.png,
img_both: 194014-09_w.png, img_front: 194014-09_f.png, img_url: 'http://t.co/nllLtcZUeA',
model: キュアレモネード, 'no': 09, no_max: '48', rarity: prc-hc, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-10: {card_name: キュアレモネード, card_text: キュアレモネードとあそべるよ!, cardtype: allstars, img_back: 194014-10_b.png,
img_both: 194014-10_w.png, img_front: 194014-10_f.png, img_url: 'http://t.co/T3f3aLucT2',
model: キュアレモネード, 'no': '10', no_max: '48', rarity: prc-hc, series_id: '194014',
series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-11: {card_name: シャイニールミナス, card_text: シャイニールミナスとあそべるよ!, cardtype: allstars,
img_back: 194014-11_b.png, img_both: 194014-11_w.png, img_front: 194014-11_f.png,
img_url: 'http://t.co/3YpVsVMDc3', model: シャイニールミナス, 'no': '11', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-12: {card_name: シャイニールミナス, card_text: シャイニールミナスとあそべるよ!, cardtype: allstars,
img_back: 194014-12_b.png, img_both: 194014-12_w.png, img_front: 194014-12_f.png,
img_url: 'http://t.co/xMKTQls83g', model: シャイニールミナス, 'no': '12', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-13: {card_name: 探偵(たんてい), card_text: とってもかわいいドレスでさがしびともみつけちゃうわ♥, cardtype: dress-tops-hc,
img_back: 194014-13_b.png, img_both: 194014-13_w.png, img_front: 194014-13_f.png,
img_url: 'http://t.co/uW4fadcRQ5', model: 大森ゆうこ, 'no': '13', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-14: {card_name: ポリス, card_text: おまわりさんのせいふくですわ♪こまってるひとをたすけましょう!, cardtype: dress-tops-hc,
img_back: 194014-14_b.png, img_both: 194014-14_w.png, img_front: 194014-14_f.png,
img_url: 'http://t.co/D3AYgRmEqD', model: 円あぐり, 'no': '14', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-15: {card_name: おはなやさん, card_text: こんなドレスでおはなやさんなんてステキね♪, cardtype: dress-tops-hc,
img_back: 194014-15_b.png, img_both: 194014-15_w.png, img_front: 194014-15_f.png,
img_url: 'http://t.co/wMO0wyjVpA', model: 雪城ほのか, 'no': '15', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-16: {card_name: カントリーフラワーシャツ, card_text: かわいいおはながいっぱいのシャツだよ★さりげないドットがオシャレ♪,
cardtype: dress-tops-hc, img_back: 194014-16_b.png, img_both: 194014-16_w.png, img_front: 194014-16_f.png,
img_url: 'http://t.co/AMsH9dka2B', model: 大森ゆうこ, 'no': '16', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-17: {card_name: さくらいろやわらかボレロ, card_text: さくらがらがとってもラブリー♥はるうららなかんじのボレロだね♪, cardtype: dress-tops-hc,
img_back: 194014-17_b.png, img_both: 194014-17_w.png, img_front: 194014-17_f.png,
img_url: 'http://t.co/be872L9eZB', model: 夢原のぞみ, 'no': '17', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-18: {card_name: なのはなチュニック, card_text: クラシックなはながらがすっごくオシャレ!グリーンのレースもかわいいね♪,
cardtype: dress-tops-hc, img_back: 194014-18_b.png, img_both: 194014-18_w.png, img_front: 194014-18_f.png,
img_url: 'http://t.co/Io3arcAjIt', model: 愛乃めぐみ&四葉ありす, 'no': '18', no_max: '48',
rarity: img_rare_s-hc.gif, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-19: {card_name: たんぽぽチロリアンパーカー, card_text: たんぽぽがらがメッチャかわいいパーカーやん!これきてうちとあそぼう♪,
cardtype: dress-tops-hc, img_back: 194014-19_b.png, img_both: 194014-19_w.png, img_front: 194014-19_f.png,
img_url: 'http://t.co/c6h1K40sBM', model: 日野あかね&春日野うらら, 'no': '19', no_max: '48',
rarity: img_rare_s-hc.gif, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-20: {card_name: ブロッサムピンクブラウス, card_text: はながらのかわいいブラウスです♪えりのパールスタッズがオシャレですね♥,
cardtype: dress-tops-hc, img_back: 194014-20_b.png, img_both: 194014-20_w.png, img_front: 194014-20_f.png,
img_url: 'http://t.co/UASGs755zr', model: 花咲つぼみ, 'no': '20', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-21: {card_name: アメリカンチェリージャンパー, card_text: チェリーをあしらったげんきいっぱいなアメリカンカラーのジャンパーだよ♪,
cardtype: dress-tops-hc, img_back: 194014-21_b.png, img_both: 194014-21_w.png, img_front: 194014-21_f.png,
img_url: 'http://t.co/D9DJ7aEk23', model: 桃園ラブ, 'no': '21', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-22: {card_name: ガーベラドットTシャツ, card_text: ドットがらとおおきなはながらがマッチしたげんきになれるTシャツだね♪,
cardtype: dress-tops-hc, img_back: 194014-22_b.png, img_both: 194014-22_w.png, img_front: 194014-22_f.png,
img_url: 'http://t.co/Gk2AhiZu4Z', model: 愛乃めぐみ, 'no': '22', no_max: '48', rarity: n-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-23: {card_name: ブルーはながらチュニック, card_text: おはなのポイントがらがオシャレ~♥スキニーとのあいしょうもバッチリ!!,
cardtype: dress-tops-hc, img_back: 194014-23_b.png, img_both: 194014-23_w.png, img_front: 194014-23_f.png,
img_url: false, model: 白雪ひめ, 'no': '23', no_max: '48', rarity: n-hc, series_id: '194014',
series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-24: {card_name: ヨーロピアンフラワージャケット, card_text: はながらのシャツもうすいブルーのジャケットでステキにきこなしてね♪,
cardtype: dress-tops-hc, img_back: 194014-24_b.png, img_both: 194014-24_w.png, img_front: 194014-24_f.png,
img_url: false, model: 白雪ひめ&来海えりか, 'no': '24', no_max: '48', rarity: n-hc, series_id: '194014',
series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-25: {card_name: マーガレットレースチュニック, card_text: ショルダーフリルがかわいいね♥レースのインナーがすてきなくみあわせ♪,
cardtype: dress-tops-hc, img_back: 194014-25_b.png, img_both: 194014-25_w.png, img_front: 194014-25_f.png,
img_url: 'http://t.co/W5lbfPbDfJ', model: 大森ゆうこ&山吹祈里, 'no': '25', no_max: '48',
rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-26: {card_name: ダークローズチュニック, card_text: ダークローズがとてもオシャレね!おとなっぽくてステキなチュニックだわ♪,
cardtype: dress-tops-hc, img_back: 194014-26_b.png, img_both: 194014-26_w.png, img_front: 194014-26_f.png,
img_url: 'http://t.co/YVHNJcfSSV', model: 菱川りっか, 'no': '26', no_max: '48', rarity: n-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-27: {card_name: ライムボーダーはながらシャツ, card_text: ボーダーシャツ×チェックベストのくみあわせがすっごくかっこいい~♪,
cardtype: dress-tops-hc, img_back: 194014-27_b.png, img_both: 194014-27_w.png, img_front: 194014-27_f.png,
img_url: false, model: 星空みゆき&緑川なお, 'no': '27', no_max: '48', rarity: n-hc, series_id: '194014',
series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-28: {card_name: スプリングガーデンコルセット, card_text: はるにぴったりのコルセットシャツだね♪そでのはながらポイントもステキ♥,
cardtype: dress-tops-hc, img_back: 194014-28_b.png, img_both: 194014-28_w.png, img_front: 194014-28_f.png,
img_url: 'http://t.co/zDy7lKdaxM', model: 北条響&明堂院いつき, 'no': '28', no_max: '48',
rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-29: {card_name: はながらワンピふうチュニック, card_text: フレアのすそがとってもキュート!はながらティアードとあわせたいわ♪,
cardtype: dress-tops-hc, img_back: 194014-29_b.png, img_both: 194014-29_w.png, img_front: 194014-29_f.png,
img_url: 'http://t.co/EXgkJNknR1', model: 蒼乃美希&美墨なぎさ, 'no': '29', no_max: '48',
rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-30: {card_name: すずらんブレザー, card_text: あわいピンクのかれんなブレザーね♥グリーンのインナーがひきたてやくよ♪, cardtype: dress-tops-hc,
img_back: 194014-30_b.png, img_both: 194014-30_w.png, img_front: 194014-30_f.png,
img_url: 'http://t.co/E9flbQXgoM', model: 水無月かれん, 'no': '30', no_max: '48', rarity: n-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-31: {card_name: おはなやさん, card_text: おはなやさんはこころをハッピーにしてくれるステキなおしごとだよね♪, cardtype: dress-bottoms-hc,
img_back: 194014-31_b.png, img_both: 194014-31_w.png, img_front: 194014-31_f.png,
img_url: 'http://t.co/M6403H1Qzc', model: 愛乃めぐみ, 'no': '31', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-32: {card_name: ポリス, card_text: えいっ!やーっ★ このドレスをきればわたしもつよくなれるかな?, cardtype: dress-bottoms-hc,
img_back: 194014-32_b.png, img_both: 194014-32_w.png, img_front: 194014-32_f.png,
img_url: 'http://t.co/dnurAJOL4t', model: 白雪ひめ, 'no': '32', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-33: {card_name: 探偵(たんてい), card_text: めいたんていこまちはどんなじけんもかいけつよ★, cardtype: dress-bottoms-hc,
img_back: 194014-33_b.png, img_both: 194014-33_w.png, img_front: 194014-33_f.png,
img_url: 'http://t.co/JFpO3IN8is', model: 秋元こまち, 'no': '33', no_max: '48', rarity: prc-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-34: {card_name: さくらいろやわらかスカート, card_text: さくらいろのドレスでとってもラブリーなコーデだよ♪, cardtype: dress-bottoms-hc,
img_back: 194014-34_b.png, img_both: 194014-34_w.png, img_front: 194014-34_f.png,
img_url: 'http://t.co/rL8dFJokT6', model: 愛乃めぐみ, 'no': '34', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-35: {card_name: カントリーフラワーパンツ, card_text: とってもうごきやすそうなパンツね♪これをはいてダンスしてみたいわ!,
cardtype: dress-bottoms-hc, img_back: 194014-35_b.png, img_both: 194014-35_w.png,
img_front: 194014-35_f.png, img_url: 'http://t.co/ltl7PVFTi3', model: 黒川エレン, 'no': '35',
no_max: '48', rarity: img_rare_ps-hc.gif, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-36: {card_name: ブロッサムピンクスカート, card_text: はながらがとってもオシャレ♪ドットのあみあげシューズもちょーかわい~♥,
cardtype: dress-bottoms-hc, img_back: 194014-36_b.png, img_both: 194014-36_w.png,
img_front: 194014-36_f.png, img_url: 'http://t.co/1J41X2AnBm', model: 白雪ひめ, 'no': '36',
no_max: '48', rarity: img_rare_s-hc.gif, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-37: {card_name: なのはなボタンプリーツ, card_text: おちついたいろとプリーツがなのはなチュニックにピッタリね♪, cardtype: dress-bottoms-hc,
img_back: 194014-37_b.png, img_both: 194014-37_w.png, img_front: 194014-37_f.png,
img_url: 'http://t.co/Y5xqZTSALw', model: 大森ゆうこ, 'no': '37', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-38: {card_name: アメリカンチェリースカート, card_text: チェリースカートとアメリカンなレッグウォーマーのくみあわせがステキですね♪,
cardtype: dress-bottoms-hc, img_back: 194014-38_b.png, img_both: 194014-38_w.png,
img_front: 194014-38_f.png, img_url: 'http://t.co/PijNc6fvvw', model: 青木れいか&九条ひかり,
'no': '38', no_max: '48', rarity: img_rare_s-hc.gif, series_id: '194014', series_name: happiness02,
series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-39: {card_name: たんぽぽチロリアンパンツ, card_text: すそがキュートでしょ?チロルふうのたんぽぽがらがポイントよ♪, cardtype: dress-bottoms-hc,
img_back: 194014-39_b.png, img_both: 194014-39_w.png, img_front: 194014-39_f.png,
img_url: 'http://t.co/finjLEnuW2', model: 東せつな, 'no': '39', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-40: {card_name: ライムサンダル&ラブリースキニー, card_text: とってもラブリーなハーフスキニーパンツだね♪はるのきせつにピッタリ!,
cardtype: dress-bottoms-hc, img_back: 194014-40_b.png, img_both: 194014-40_w.png,
img_front: 194014-40_f.png, img_url: 'http://t.co/mdBUO6DCmh', model: 愛乃めぐみ, 'no': '40',
no_max: '48', rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-41: {card_name: すずらんポイントボトムス, card_text: あわいピンクのすずらんとイエロータイツがとってもオシャレ★, cardtype: dress-bottoms-hc,
img_back: 194014-41_b.png, img_both: 194014-41_w.png, img_front: 194014-41_f.png,
img_url: 'http://t.co/8aPEtrl4hu', model: 白雪ひめ&相田マナ, 'no': '41', no_max: '48', rarity: n-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-42: {card_name: スプリングガーデンマキシ, card_text: パステルカラーがすごくきれいでしょ♥マキシをはくならこれでキマリね♪,
cardtype: dress-bottoms-hc, img_back: 194014-42_b.png, img_both: 194014-42_w.png,
img_front: 194014-42_f.png, img_url: 'http://t.co/M8rFlMvqyI', model: 大森ゆうこ, 'no': '42',
no_max: '48', rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-43: {card_name: ブルーはながらスキニー, card_text: どんなドレスにもあいそうなスキニーね♪ピンクのフリルがキュートだわ♥,
cardtype: dress-bottoms-hc, img_back: 194014-43_b.png, img_both: 194014-43_w.png,
img_front: 194014-43_f.png, img_url: 'http://t.co/mxeHbPxEgt', model: 剣崎まこと, 'no': '43',
no_max: '48', rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-44: {card_name: ガーベライエローボトムス, card_text: とーってもかわいいね♥ガーベラドットTシャツとあわせちゃおう♪, cardtype: dress-bottoms-hc,
img_back: 194014-44_b.png, img_both: 194014-44_w.png, img_front: 194014-44_f.png,
img_url: 'http://t.co/D69jkEWNvC', model: 黄瀬やよい&美翔舞, 'no': '44', no_max: '48', rarity: n-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-45: {card_name: はながらワンピふうティアード, card_text: イエローのフリルがポイントね♥トップスもおそろいのがらをあわせよう♪,
cardtype: dress-bottoms-hc, img_back: 194014-45_b.png, img_both: 194014-45_w.png,
img_front: 194014-45_f.png, img_url: 'http://t.co/0oYxslxFGc', model: 南野奏, 'no': '45',
no_max: '48', rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-46: {card_name: マーガレットカラープリーツスカート, card_text: ブルーのスカートにイエローブーツでげんきにきこなしましょ!,
cardtype: dress-bottoms-hc, img_back: 194014-46_b.png, img_both: 194014-46_w.png,
img_front: 194014-46_f.png, img_url: false, model: 調辺アコ&夏木りん, 'no': '46', no_max: '48',
rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194014-47: {card_name: ダークローズパンツ, card_text: ワイルドなはながらがステキね♥おとなっぽくかわいくなれるわ♥, cardtype: dress-bottoms-hc,
img_back: 194014-47_b.png, img_both: 194014-47_w.png, img_front: 194014-47_f.png,
img_url: 'http://t.co/jscxrQWhOo', model: 月影ゆり&日向咲, 'no': '47', no_max: '48', rarity: n-hc,
series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー とうじょう! }
194014-48: {card_name: ヨーロピアンフラワースカート, card_text: スニーカーにもかわいいはながらでおんなのこらしさをプラスね♪,
cardtype: dress-bottoms-hc, img_back: 194014-48_b.png, img_both: 194014-48_w.png,
img_front: 194014-48_f.png, img_url: 'http://t.co/ho6EWOSdrx', model: 美々野くるみ, 'no': '48',
no_max: '48', rarity: n-hc, series_id: '194014', series_name: happiness02, series_text: ハピネスチャージ2だんキュアハニー
とうじょう! }
194015-01: {card_name: キュアダイヤモンド, card_text: キュアダイヤモンドとあそべるよ!, cardtype: allstars,
img_back: 194015-01_b.png, img_both: 194015-01-w.png, img_front: 194015-01_f.png,
img_url: 'http://t.co/VVoQGNkaMJ', model: キュアダイヤモンド, 'no': '01', no_max: '48', rarity: prc-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-02: {card_name: キュアダイヤモンド, card_text: キュアダイヤモンドとあそべるよ!, cardtype: allstars,
img_back: 194015-02_b.png, img_both: 194015-02-w.png, img_front: 194015-02_f.png,
img_url: 'http://t.co/2sqcvLjU53', model: キュアダイヤモンド, 'no': '02', no_max: '48', rarity: prc-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-03: {card_name: キュアビューティ, card_text: キュアビューティとあそべるよ!, cardtype: allstars, img_back: 194015-03_b.png,
img_both: 194015-03-w.png, img_front: 194015-03_f.png, img_url: 'http://t.co/urcTCO0331',
model: キュアビューティ, 'no': '03', no_max: '48', rarity: prc-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-04: {card_name: キュアビューティ, card_text: キュアビューティとあそべるよ!, cardtype: allstars, img_back: 194015-04_b.png,
img_both: 194015-04-w.png, img_front: 194015-04_f.png, img_url: false, model: キュアビューティ,
'no': '04', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-05: {card_name: キュアビート, card_text: キュアビートとあそべるよ!, cardtype: allstars, img_back: 194015-05_b.png,
img_both: 194015-05-w.png, img_front: 194015-05_f.png, img_url: 'http://t.co/4MB89dL9os',
model: キュアビート, 'no': '05', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-06: {card_name: キュアビート, card_text: キュアビートとあそべるよ!, cardtype: allstars, img_back: 194015-06_b.png,
img_both: 194015-06-w.png, img_front: 194015-06_f.png, img_url: 'http://t.co/1gdLEyj4SG',
model: キュアビート, 'no': '06', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-07: {card_name: キュアマリン, card_text: キュアマリンとあそべるよ!, cardtype: allstars, img_back: 194015-07_b.png,
img_both: 194015-07-w.png, img_front: 194015-07_f.png, img_url: 'http://t.co/DQygB3xemc',
model: キュアマリン, 'no': '07', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-08: {card_name: キュアマリン, card_text: キュアマリンとあそべるよ!, cardtype: allstars, img_back: 194015-08_b.png,
img_both: 194015-08-w.png, img_front: 194015-08_f.png, img_url: false, model: キュアマリン,
'no': 08, no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-09: {card_name: キュアベリー, card_text: キュアベリーとあそべるよ!, cardtype: allstars, img_back: 194015-09_b.png,
img_both: 194015-09-w.png, img_front: 194015-09_f.png, img_url: false, model: キュアベリー,
'no': 09, no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-10: {card_name: キュアベリー, card_text: キュアベリーとあそべるよ!, cardtype: allstars, img_back: 194015-10_b.png,
img_both: 194015-10-w.png, img_front: 194015-10_f.png, img_url: false, model: キュアベリー,
'no': '10', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-11: {card_name: キュアアクア, card_text: キュアアクアとあそべるよ!, cardtype: allstars, img_back: 194015-11_b.png,
img_both: 194015-11-w.png, img_front: 194015-11_f.png, img_url: 'http://t.co/drMAvBgsbb',
model: キュアアクア, 'no': '11', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-12: {card_name: キュアアクア, card_text: キュアアクアとあそべるよ!, cardtype: allstars, img_back: 194015-12_b.png,
img_both: 194015-12-w.png, img_front: 194015-12_f.png, img_url: 'http://t.co/UrS9Rx250X',
model: キュアアクア, 'no': '12', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-13: {card_name: 野球(やきゅう), card_text: ねらっちゃうよ、ホームラン!, cardtype: dress-tops-hc,
img_back: 194015-13_b.png, img_both: 194015-13-w.png, img_front: 194015-13_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '13', no_max: '48', rarity: prc-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-14: {card_name: フィギュアスケーター, card_text: こおりのうえでもプリンセス♪, cardtype: dress-tops-hc,
img_back: 194015-14_b.png, img_both: 194015-14-w.png, img_front: 194015-14_f.png,
img_url: 'http://t.co/XXZd1gIsSe', model: 白雪ひめ, 'no': '14', no_max: '48', rarity: prc-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-15: {card_name: テニス, card_text: テニスでおなかすいちゃった♪, cardtype: dress-tops-hc, img_back: 194015-15_b.png,
img_both: 194015-15-w.png, img_front: 194015-15_f.png, img_url: false, model: 大森ゆうこ,
'no': '15', no_max: '48', rarity: prc-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-16: {card_name: プラネットブルーボレロ, card_text: プラネットプリントがおしゃれなボレロよ!くろのフリルもスペーシーね★,
cardtype: dress-tops-hc, img_back: 194015-16_b.png, img_both: 194015-16-w.png, img_front: 194015-16_f.png,
img_url: false, model: 白雪ひめ, 'no': '16', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-17: {card_name: きらきらぼしのセーラーボーダー, card_text: ちいさなほしのかざりがキュートね。アクセもほしでそろえてみたわ♪,
cardtype: dress-tops-hc, img_back: 194015-17_b.png, img_both: 194015-17-w.png, img_front: 194015-17_f.png,
img_url: 'http://t.co/sidYGHtZB5', model: 剣崎まこと, 'no': '17', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-18: {card_name: なついろわがらいりトップス, card_text: ほんのりわふうでだいたんないろあわせもすてきだね!, cardtype: dress-tops-hc,
img_back: 194015-18_b.png, img_both: 194015-18-w.png, img_front: 194015-18_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '18', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-19: {card_name: ほしあかりのパフスリーブ, card_text: キラキラあまのがわのトップスだよ!なにをおねがいしようかな♪, cardtype: dress-tops-hc,
img_back: 194015-19_b.png, img_both: 194015-19-w.png, img_front: 194015-19_f.png,
img_url: 'http://t.co/WcBcECQ9eG', model: 星空みゆき, 'no': '19', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-20: {card_name: むらさきわふうパーカー, card_text: おちついたむらさきのはながらがきれいね。, cardtype: dress-tops-hc,
img_back: 194015-20_b.png, img_both: 194015-20-w.png, img_front: 194015-20_f.png,
img_url: false, model: 月影ゆり, 'no': '20', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-21: {card_name: ピンク×ブラックスターTシャツ, card_text: ピンクにブラックのおおきなほしがかっこいいわね♥, cardtype: dress-tops-hc,
img_back: 194015-21_b.png, img_both: 194015-21-w.png, img_front: 194015-21_f.png,
img_url: 'http://t.co/UChBCYHWnU', model: 東せつな, 'no': '21', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-22: {card_name: はながらちりめんアンサンブル, card_text: わふうコーデにちょうせんだよ♪あかいろにちりめんでおしゃれだね!,
cardtype: dress-tops-hc, img_back: 194015-22_b.png, img_both: 194015-22-w.png, img_front: 194015-22_f.png,
img_url: 'http://t.co/9kD4QmQMpi', model: 愛乃めぐみ, 'no': '22', no_max: '48', rarity: n-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-23: {card_name: クールパープルTシャツ, card_text: はでないろのTシャツにはシンプルなボトムスをあわせてみて!, cardtype: dress-tops-hc,
img_back: 194015-23_b.png, img_both: 194015-23-w.png, img_front: 194015-23_f.png,
img_url: false, model: 白雪ひめ&大森ゆうこ, 'no': '23', no_max: '48', rarity: n-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-24: {card_name: いちまつもようのチュニック, card_text: いちまつもようがかわいいトップスだよ。そでのおはなもようがポイントね♪,
cardtype: dress-tops-hc, img_back: 194015-24_b.png, img_both: 194015-24-w.png, img_front: 194015-24_f.png,
img_url: 'http://t.co/Kxbmu1mqGK', model: 大森ゆうこ, 'no': '24', no_max: '48', rarity: n-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-25: {card_name: ポップスター★カットソー, card_text: ポップでキュートなほしがかわいくてすごいキュンキュンしちゃう★, cardtype: dress-tops-hc,
img_back: 194015-25_b.png, img_both: 194015-25-w.png, img_front: 194015-25_f.png,
img_url: false, model: 相田マナ, 'no': '25', no_max: '48', rarity: n-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-26: {card_name: カラフルスターシャツ&ベスト, card_text: カラフルなおほしさまがいっぱいのかわいいトップスよ♪, cardtype: dress-tops-hc,
img_back: 194015-26_b.png, img_both: 194015-26-w.png, img_front: 194015-26_f.png,
img_url: false, model: 菱川りっか&来海えりか, 'no': '26', no_max: '48', rarity: n-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-27: {card_name: プラネタリウムパフスリーブ, card_text: グラデーションがふんわりとしておんなのこらしいわ♪, cardtype: dress-tops-hc,
img_back: 194015-27_b.png, img_both: 194015-27-w.png, img_front: 194015-27_f.png,
img_url: 'http://t.co/jgHDVeB6Ya', model: 南野奏&九条ひかり, 'no': '27', no_max: '48', rarity: n-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-28: {card_name: たなばたアレンジトップス, card_text: まっかなわがらのきものふうドレスよ。きぶんはおとひめさま?, cardtype: dress-tops-hc,
img_back: 194015-28_b.png, img_both: 194015-28-w.png, img_front: 194015-28_f.png,
img_url: false, model: 調辺アコ, 'no': '28', no_max: '48', rarity: n-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-29: {card_name: ハイカラギンガムスポーツシャツ, card_text: ポイントをおさえたわがらのプリントがとてもすてきです♥, cardtype: dress-tops-hc,
img_back: 194015-29_b.png, img_both: 194015-29-w.png, img_front: 194015-29_f.png,
img_url: 'http://t.co/dBjCoXI0TY', model: 花咲つぼみ&美々野くるみ, 'no': '29', no_max: '48',
rarity: n-hc, series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-30: {card_name: ハイビスカスカラーTシャツ, card_text: おおきなハイビスカスプリントでさきどりのなつきぶん!, cardtype: dress-tops-hc,
img_back: 194015-30_b.png, img_both: 194015-30-w.png, img_front: 194015-30_f.png,
img_url: 'http://t.co/MmdTZcnuF0', model: 夏木りん&美翔舞, 'no': '30', no_max: '48', rarity: n-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-31: {card_name: テニス, card_text: どんなことだってまけませんわ!, cardtype: dress-bottoms-hc,
img_back: 194015-31_b.png, img_both: 194015-31-w.png, img_front: 194015-31_f.png,
img_url: 'http://t.co/0D0CRKBYwc', model: 四葉ありす, 'no': '31', no_max: '48', rarity: prc-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-32: {card_name: フィギュアスケーター, card_text: スピンでスカートがキラキラしますわ♪, cardtype: dress-bottoms-hc,
img_back: 194015-32_b.png, img_both: 194015-32-w.png, img_front: 194015-32_f.png,
img_url: false, model: 青木れいか, 'no': '32', no_max: '48', rarity: prc-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-33: {card_name: 野球(やきゅう), card_text: きょうもいいあせかいたー!ナイスキャッチ♪, cardtype: dress-bottoms-hc,
img_back: 194015-33_b.png, img_both: 194015-33-w.png, img_front: 194015-33_f.png,
img_url: false, model: 日向咲, 'no': '33', no_max: '48', rarity: prc-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-34: {card_name: きらきらぼしのデニムスカート, card_text: てがきふうのながれぼしプリントがとてもかわいいわね★, cardtype: dress-bottoms-hc,
img_back: 194015-34_b.png, img_both: 194015-34-w.png, img_front: 194015-34_f.png,
img_url: false, model: 大森ゆうこ, 'no': '34', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-35: {card_name: プラネットブルーティアード, card_text: プラネットコーデときらきらのシューズでほしぞらをおさんぽしよう!,
cardtype: dress-bottoms-hc, img_back: 194015-35_b.png, img_both: 194015-35-w.png,
img_front: 194015-35_f.png, img_url: 'http://t.co/Gt92dEhoZO', model: 桃園ラブ, 'no': '35',
no_max: '48', rarity: img_rare_ps-hc.gif, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-36: {card_name: ほしあかりのティアードロング, card_text: ほしのうみをおさんぽしているきぶんになれそうだね★, cardtype: dress-bottoms-hc,
img_back: 194015-36_b.png, img_both: 194015-36-w.png, img_front: 194015-36_f.png,
img_url: false, model: 愛乃めぐみ&白雪ひめ, 'no': '36', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-37: {card_name: ピンク×ブラックスタースカート, card_text: ピンクのコーデでガーリーにきめてみたわ。くろいほしがアクセントよ!,
cardtype: dress-bottoms-hc, img_back: 194015-37_b.png, img_both: 194015-37-w.png,
img_front: 194015-37_f.png, img_url: 'http://t.co/ojHFsgTVas', model: 白雪ひめ&春日野うらら,
'no': '37', no_max: '48', rarity: img_rare_s-hc.gif, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-38: {card_name: なついろわがらいりイエロースキニー, card_text: なつらしいはなやかないろのダメージスキニーですわ♥, cardtype: dress-bottoms-hc,
img_back: 194015-38_b.png, img_both: 194015-38-w.png, img_front: 194015-38_f.png,
img_url: false, model: 円あぐり, 'no': '38', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-39: {card_name: むらさきわふうベルボトム, card_text: むらさきのおはなをあわせてちょっぴりクールなきぶん♪, cardtype: dress-bottoms-hc,
img_back: 194015-39_b.png, img_both: 194015-39-w.png, img_front: 194015-39_f.png,
img_url: false, model: 緑川なお&北条響, 'no': '39', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-40: {card_name: ハイカラギンガムハーフパンツ, card_text: すそのはながらがポイントだよ!シューズのプリントもラブだね♪,
cardtype: dress-bottoms-hc, img_back: 194015-40_b.png, img_both: 194015-40-w.png,
img_front: 194015-40_f.png, img_url: 'http://t.co/UvRpCaxiPR', model: 愛乃めぐみ&秋元こまち,
'no': '40', no_max: '48', rarity: n-hc, series_id: '194015', series_name: happiness03,
series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-41: {card_name: ポップスター★ホットパンツ, card_text: シューズとトップスのいろをあわせるのがおしゃれのポイントよ!, cardtype: dress-bottoms-hc,
img_back: 194015-41_b.png, img_both: 194015-41-w.png, img_front: 194015-41_f.png,
img_url: false, model: 白雪ひめ, 'no': '41', no_max: '48', rarity: n-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-42: {card_name: ハイビスカスカラースカート, card_text: まっかなスカートとシューズのセットだよ。レースのベルトがおしゃれね!,
cardtype: dress-bottoms-hc, img_back: 194015-42_b.png, img_both: 194015-42-w.png,
img_front: 194015-42_f.png, img_url: false, model: 大森ゆうこ&明堂院いつき, 'no': '42', no_max: '48',
rarity: n-hc, series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-43: {card_name: いちまつもようポイントスキニー, card_text: シンプルやけどわふうのアクセントがイケてるやろ♪, cardtype: dress-bottoms-hc,
img_back: 194015-43_b.png, img_both: 194015-43-w.png, img_front: 194015-43_f.png,
img_url: 'http://t.co/kRwir1AMSL', model: 日野あかね&黒川エレン, 'no': '43', no_max: '48',
rarity: n-hc, series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-44: {card_name: クールパープルフリルスカート, card_text: シンプルなドットがらであわせてみたよ。くろのベルトがかっこいいよね♥,
cardtype: dress-bottoms-hc, img_back: 194015-44_b.png, img_both: 194015-44-w.png,
img_front: 194015-44_f.png, img_url: 'http://t.co/p1txC8bMRz', model: 黄瀬やよい, 'no': '44',
no_max: '48', rarity: n-hc, series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-45: {card_name: プラネタリウムイレギュラーヘム, card_text: せいざモチーフがすごくキュートなスカートよ★, cardtype: dress-bottoms-hc,
img_back: 194015-45_b.png, img_both: 194015-45-w.png, img_front: 194015-45_f.png,
img_url: false, model: 蒼乃美希&水無月かれん, 'no': '45', no_max: '48', rarity: n-hc, series_id: '194015',
series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-46: {card_name: カラフルスタータイト, card_text: カラフルなスターがワンポイントになっていてとてもかわいいね♪, cardtype: dress-bottoms-hc,
img_back: 194015-46_b.png, img_both: 194015-46-w.png, img_front: 194015-46_f.png,
img_url: 'http://t.co/WOUjKPc7Hh', model: 山吹祈里, 'no': '46', no_max: '48', rarity: n-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-47: {card_name: たなばたアレンジボトムス, card_text: だいたんなわがらのスカートとソックスできものふうコーデだよ!, cardtype: dress-bottoms-hc,
img_back: 194015-47_b.png, img_both: 194015-47-w.png, img_front: 194015-47_f.png,
img_url: 'http://t.co/uy6EpRkI3X', model: 夢原のぞみ, 'no': '47', no_max: '48', rarity: n-hc,
series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194015-48: {card_name: はながらちりめんティアード, card_text: あかとくろのわがらあわせでかっこよくきめちゃおう♪, cardtype: dress-bottoms-hc,
img_back: 194015-48_b.png, img_both: 194015-48-w.png, img_front: 194015-48_f.png,
img_url: 'http://t.co/H4zuTcoGLL', model: 美墨なぎさ&雪城ほのか, 'no': '48', no_max: '48',
rarity: n-hc, series_id: '194015', series_name: happiness03, series_text: ハピネスチャージ3だんスポーツフェスティバルかいさい! }
194016-01: {card_name: キュアサニー, card_text: キュアサニーとあそべるよ!, cardtype: allstars, img_back: 194016-01_b.png,
img_both: 194016-01-w.png, img_front: 194016-01_f.png, img_url: false, model: キュアサニー,
'no': '01', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-02: {card_name: キュアサニー, card_text: キュアサニーとあそべるよ!, cardtype: allstars, img_back: 194016-02_b.png,
img_both: 194016-02-w.png, img_front: 194016-02_f.png, img_url: false, model: キュアサニー,
'no': '02', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-03: {card_name: キュアメロディ, card_text: キュアメロディとあそべるよ!, cardtype: allstars, img_back: 194016-03_b.png,
img_both: 194016-03-w.png, img_front: 194016-03_f.png, img_url: 'http://t.co/uKvoKM3mJk',
model: キュアメロディ, 'no': '03', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-04: {card_name: キュアメロディ, card_text: キュアメロディとあそべるよ!, cardtype: allstars, img_back: 194016-04_b.png,
img_both: 194016-04-w.png, img_front: 194016-04_f.png, img_url: false, model: キュアメロディ,
'no': '04', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-05: {card_name: キュアミューズ, card_text: キュアミューズとあそべるよ!, cardtype: allstars, img_back: 194016-05_b.png,
img_both: 194016-05-w.png, img_front: 194016-05_f.png, img_url: false, model: キュアミューズ,
'no': '05', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-06: {card_name: キュアミューズ, card_text: キュアミューズとあそべるよ!, cardtype: allstars, img_back: 194016-06_b.png,
img_both: 194016-06-w.png, img_front: 194016-06_f.png, img_url: 'http://t.co/s3pz0mHQnC',
model: キュアミューズ, 'no': '06', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-07: {card_name: キュアムーンライト, card_text: キュアムーンライトとあそべるよ!, cardtype: allstars,
img_back: 194016-07_b.png, img_both: 194016-07-w.png, img_front: 194016-07_f.png,
img_url: false, model: キュアムーンライト, 'no': '07', no_max: '54', rarity: prc-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-08: {card_name: キュアムーンライト, card_text: キュアムーンライトとあそべるよ!, cardtype: allstars,
img_back: 194016-08_b.png, img_both: 194016-08-w.png, img_front: 194016-08_f.png,
img_url: false, model: キュアムーンライト, 'no': 08, no_max: '54', rarity: prc-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-09: {card_name: キュアルージュ, card_text: キュアルージュとあそべるよ!, cardtype: allstars, img_back: 194016-09_b.png,
img_both: 194016-09-w.png, img_front: 194016-09_f.png, img_url: false, model: キュアルージュ,
'no': 09, no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-10: {card_name: キュアルージュ, card_text: キュアルージュとあそべるよ!, cardtype: allstars, img_back: 194016-10_b.png,
img_both: 194016-10-w.png, img_front: 194016-10_f.png, img_url: 'http://t.co/7SC60XS9bv',
model: キュアルージュ, 'no': '10', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-11: {card_name: ミルキィローズ, card_text: ミルキィローズとあそべるよ!, cardtype: allstars, img_back: 194016-11_b.png,
img_both: 194016-11-w.png, img_front: 194016-11_f.png, img_url: false, model: ミルキィローズ,
'no': '11', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-12: {card_name: ミルキィローズ, card_text: ミルキィローズとあそべるよ!, cardtype: allstars, img_back: 194016-12_b.png,
img_both: 194016-12-w.png, img_front: 194016-12_f.png, img_url: false, model: ミルキィローズ,
'no': '12', no_max: '54', rarity: prc-hc, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-13: {card_name: マリン, card_text: ひまわりアクセとマリンルックで、このなつもはりきっていくわよ!, cardtype: dress-tops-hc,
img_back: 194016-13_b.png, img_both: 194016-13-w.png, img_front: 194016-13_f.png,
img_url: false, model: 白雪ひめ, 'no': '13', no_max: '54', rarity: prc-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-14: {card_name: リゾート, card_text: リボンのアクセントがかわいいわね。なんごくチックなアクセサリもすてきだわ, cardtype: dress-tops-hc,
img_back: 194016-14_b.png, img_both: 194016-14-w.png, img_front: 194016-14_f.png,
img_url: false, model: 氷川いおな, 'no': '14', no_max: '54', rarity: prc-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-15: {card_name: ドレス(にんぎょふう), card_text: にんぎょひめになったきぶんね♪, cardtype: dress-tops-hc,
img_back: 194016-15_b.png, img_both: 194016-15-w.png, img_front: 194016-15_f.png,
img_url: false, model: 調辺アコ, 'no': '15', no_max: '54', rarity: prc-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-16: {card_name: サブマリンタンクトップ, card_text: すずしげなタンクトップよ。ボーダーのいろとボトムスをあわせてみたわ★,
cardtype: dress-tops-hc, img_back: 194016-16_b.png, img_both: 194016-16-w.png, img_front: 194016-16_f.png,
img_url: false, model: 氷川いおな, 'no': '16', no_max: '54', rarity: img_rare_ps-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-17: {card_name: ブルーウェーブオフショルダー, card_text: なみのかたちのグラデーションがうみみたいでステキね♪, cardtype: dress-tops-hc,
img_back: 194016-17_b.png, img_both: 194016-17-w.png, img_front: 194016-17_f.png,
img_url: 'http://t.co/7X5r0UgIDt', model: 蒼乃美希, 'no': '17', no_max: '54', rarity: img_rare_ps-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-18: {card_name: ピンクグラデのフェアリーキャミ, card_text: きれいなピンクのおはなとグラデーションがとてもガーリーだね♥,
cardtype: dress-tops-hc, img_back: 194016-18_b.png, img_both: 194016-18-w.png, img_front: 194016-18_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '18', no_max: '54', rarity: img_rare_s-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-19: {card_name: アンカーネクタイセーラー, card_text: シンプルなセーラーふうシャツや!ネクタイのいかりマークがかわいいやろ?,
cardtype: dress-tops-hc, img_back: 194016-19_b.png, img_both: 194016-19-w.png, img_front: 194016-19_f.png,
img_url: false, model: 日野あかね, 'no': '19', no_max: '54', rarity: img_rare_s-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-20: {card_name: マリンセットアップボレロ, card_text: マリンカラーのサマーボレロだよ♥ミニハットでおしゃれどアップ!, cardtype: dress-tops-hc,
img_back: 194016-20_b.png, img_both: 194016-20-w.png, img_front: 194016-20_f.png,
img_url: false, model: 来海えりか, 'no': '20', no_max: '54', rarity: img_rare_s-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-21: {card_name: サファイアマルチボーダーキャミ, card_text: かさなったすそがすてきなキャミソールよ。ホットパンツとあわせてげんきにいきましょ♪,
cardtype: dress-tops-hc, img_back: 194016-21_b.png, img_both: 194016-21-w.png, img_front: 194016-21_f.png,
img_url: 'http://t.co/2iNkYIrTdH', model: 水無月かれん, 'no': '21', no_max: '54', rarity: img_rare_s-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-22: {card_name: ピンクマリンロリータブラウス, card_text: おんなのこらしいボーダーブラウスだよ!おおきなリボンがかわいいね♥,
cardtype: dress-tops-hc, img_back: 194016-22_b.png, img_both: 194016-22-w.png, img_front: 194016-22_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '22', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-23: {card_name: みなみのクロップドTシャツ, card_text: ハイビスカスプリントのTシャツでなつをえんしゅつよ★, cardtype: dress-tops-hc,
img_back: 194016-23_b.png, img_both: 194016-23-w.png, img_front: 194016-23_f.png,
img_url: false, model: 氷川いおな, 'no': '23', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-24: {card_name: ビビッドマリンパーカー, card_text: なつでもすずしいさわやかなサマーパーカーだよ♥, cardtype: dress-tops-hc,
img_back: 194016-24_b.png, img_both: 194016-24-w.png, img_front: 194016-24_f.png,
img_url: false, model: 黄瀬やよい, 'no': '24', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-25: {card_name: サンセットサマーTシャツ, card_text: なつのリゾートをイメージさせるプリントがとてもすてきですね★, cardtype: dress-tops-hc,
img_back: 194016-25_b.png, img_both: 194016-25-w.png, img_front: 194016-25_f.png,
img_url: 'http://t.co/txdQ4HlAHy', model: 青木れいか, 'no': '25', no_max: '54', rarity: n-hc,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-26: {card_name: サマーガーベラチュニック, card_text: さわやかなガーベラがらのチュニックだよ!きぶんもあかるくなっちゃうね♪,
cardtype: dress-tops-hc, img_back: 194016-26_b.png, img_both: 194016-26-w.png, img_front: 194016-26_f.png,
img_url: false, model: 山吹祈里&美墨なぎさ, 'no': '26', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-27: {card_name: レッド×ホワイトのセーラーシャツ, card_text: たいようみたいなレッドがまぶしいすいへいさんルックのTシャツよ♪,
cardtype: dress-tops-hc, img_back: 194016-27_b.png, img_both: 194016-27-w.png, img_front: 194016-27_f.png,
img_url: false, model: 東せつな&雪城ほのか, 'no': '27', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-28: {card_name: トロピカルアロハシャツ, card_text: トロピカルプリントのかわいいシャツでなつをおもいきりたのしみましょう♪,
cardtype: dress-tops-hc, img_back: 194016-28_b.png, img_both: 194016-28-w.png, img_front: 194016-28_f.png,
img_url: 'http://t.co/Pco0WR0rYd', model: 秋元こまち, 'no': '28', no_max: '54', rarity: n-hc,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-29: {card_name: マリンボーダーボタンセーラー, card_text: うごきやすいセーラールックシャツだよ。6つのボタンがチャームポイントだね♪,
cardtype: dress-tops-hc, img_back: 194016-29_b.png, img_both: 194016-29-w.png, img_front: 194016-29_f.png,
img_url: false, model: 日向咲&美翔舞, 'no': '29', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-30: {card_name: ハワイアンパフスリーブTシャツ, card_text: おはなのシルエットもようがかわいいね。すそのレースもすてき♥,
cardtype: dress-tops-hc, img_back: 194016-30_b.png, img_both: 194016-30-w.png, img_front: 194016-30_f.png,
img_url: false, model: 九条ひかり, 'no': '30', no_max: '54', rarity: n-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-31: {card_name: ブルーラインセーラートップス, card_text: スタンダードなセーラーのトップスね!なつはうごきやすくしましょ♪,
cardtype: dress-tops-hc, img_back: 194016-31_b.png, img_both: 194016-31-w.png, img_front: 194016-31_f.png,
img_url: false, model: 愛乃めぐみ&氷川いおな, 'no': '31', no_max: '54', rarity: img_rare_cp-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-32: {card_name: ナイトマーメイドボレロ, card_text: おしゃれなサマーボレロだわ♥きいろのレースやリボンがすごくすてきね★,
cardtype: dress-tops-hc, img_back: 194016-32_b.png, img_both: 194016-32-w.png, img_front: 194016-32_f.png,
img_url: false, model: 大森ゆうこ&氷川いおな, 'no': '32', no_max: '54', rarity: img_rare_cp-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-33: {card_name: サマーパープルのエレガントシャツ, card_text: ごうかなリボンと3だんグラデーションがとってもすてきね♥,
cardtype: dress-tops-hc, img_back: 194016-33_b.png, img_both: 194016-33-w.png, img_front: 194016-33_f.png,
img_url: false, model: 剣崎真琴&氷川いおな, 'no': '33', no_max: '54', rarity: img_rare_cp-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-34: {card_name: リゾート, card_text: ふわふわのロングスカートとサンダルは、ビーチのおさんぽにぴったりだね♪, cardtype: dress-bottoms-hc,
img_back: 194016-34_b.png, img_both: 194016-34-w.png, img_front: 194016-34_f.png,
img_url: 'http://t.co/xjSO0yoG1y', model: 愛乃めぐみ, 'no': '34', no_max: '54', rarity: prc-hc,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-35: {card_name: マリン, card_text: あわせやすいシンプルなバルーンパンツよ。ストライプのリボンかざりがいいわね♪, cardtype: dress-bottoms-hc,
img_back: 194016-35_b.png, img_both: 194016-35-w.png, img_front: 194016-35_f.png,
img_url: 'http://t.co/gHxBRp8r9Y', model: 大森ゆうこ, 'no': '35', no_max: '54', rarity: prc-hc,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-36: {card_name: ドレス(にんぎょふう), card_text: にんぎょみたいなドレスね★, cardtype: dress-bottoms-hc,
img_back: 194016-36_b.png, img_both: 194016-36-w.png, img_front: 194016-36_f.png,
img_url: false, model: 氷川いおな, 'no': '36', no_max: '54', rarity: prc-hc, series_id: '194016',
series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-37: {card_name: ブルーウェーブスカパン, card_text: すそのグラデーションがすごくきれい!さわやかブルーコーデでおでかけよ!,
cardtype: dress-bottoms-hc, img_back: 194016-37_b.png, img_both: 194016-37-w.png,
img_front: 194016-37_f.png, img_url: false, model: 白雪ひめ, 'no': '37', no_max: '54',
rarity: img_rare_ps-hc.gif, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-38: {card_name: サブマリンイエローロールアップ, card_text: ビビッドなイエローがたいようみたいだね。サンダルとのあいしょうもばつぐんだよ!,
cardtype: dress-bottoms-hc, img_back: 194016-38_b.png, img_both: 194016-38-w.png,
img_front: 194016-38_f.png, img_url: 'http://t.co/utVA3WDpHR', model: 明堂院いつき, 'no': '38',
no_max: '54', rarity: img_rare_ps-hc.gif, series_id: '194016', series_name: happiness04,
series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-39: {card_name: サファイアのフラワーパンツ, card_text: はでなホットパンツもうまくコーディネートしてみよう♪, cardtype: dress-bottoms-hc,
img_back: 194016-39_b.png, img_both: 194016-39-w.png, img_front: 194016-39_f.png,
img_url: false, model: 大森ゆうこ, 'no': '39', no_max: '54', rarity: img_rare_s-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-40: {card_name: マリンセットアップスカート, card_text: あかのラインにあわせたパンプスがおしゃれのポイントですわ♥, cardtype: dress-bottoms-hc,
img_back: 194016-40_b.png, img_both: 194016-40-w.png, img_front: 194016-40_f.png,
img_url: 'http://t.co/FkGnGQtD8a', model: 四葉ありす&春日野うらら, 'no': '40', no_max: '54',
rarity: img_rare_s-hc.gif, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-41: {card_name: アンカーがらのピンクスキニー, card_text: アンカーがらをちりばめたかわいいスキニーパンツだよ♪, cardtype: dress-bottoms-hc,
img_back: 194016-41_b.png, img_both: 194016-41-w.png, img_front: 194016-41_f.png,
img_url: false, model: 星空みゆき&黒川エレン, 'no': '41', no_max: '54', rarity: img_rare_s-hc.gif,
series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-42: {card_name: ピンクグラデのフラワーパンツ, card_text: ピンクのグラデーションにカラフルなはながらがすごくきれいだね!,
cardtype: dress-bottoms-hc, img_back: 194016-42_b.png, img_both: 194016-42-w.png,
img_front: 194016-42_f.png, img_url: false, model: 夢原のぞみ, 'no': '42', no_max: '54',
rarity: img_rare_s-hc.gif, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-43: {card_name: トロピカルホットパンツ, card_text: うごきやすいホットパンツでしょ!?ダメージカットふうのすそがいいかんじ♪,
cardtype: dress-bottoms-hc, img_back: 194016-43_b.png, img_both: 194016-43-w.png,
img_front: 194016-43_f.png, img_url: false, model: 白雪ひめ, 'no': '43', no_max: '54',
rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-44: {card_name: マリンボーダーステッチプリーツ, card_text: シンプルなボーダーのボックスプリーツよ。ステッチのラインがかわいいよね♥,
cardtype: dress-bottoms-hc, img_back: 194016-44_b.png, img_both: 194016-44-w.png,
img_front: 194016-44_f.png, img_url: 'http://t.co/wv3oYg9uCX', model: 大森ゆうこ, 'no': '44',
no_max: '54', rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-45: {card_name: ハワイアンマジックスカート, card_text: おおきなハイビスカスプリントがなつのリゾートにぴったりだね♪, cardtype: dress-bottoms-hc,
img_back: 194016-45_b.png, img_both: 194016-45-w.png, img_front: 194016-45_f.png,
img_url: 'http://t.co/CfA7n2sTHL', model: 相田マナ&菱川りっか, 'no': '45', no_max: '54',
rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-46: {card_name: みなみのはなのスカート, card_text: ポップなはなのシルエットがすごくかわいいですわ♪ポケットにもおはながついています♪,
cardtype: dress-bottoms-hc, img_back: 194016-46_b.png, img_both: 194016-46-w.png,
img_front: 194016-46_f.png, img_url: 'http://t.co/Xwj2VylC8f', model: 円あぐり, 'no': '46',
no_max: '54', rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-47: {card_name: サマーガーベラミニ, card_text: おおきなガーベラプリントであかるくいこう!サンダルのかざりもかわいいね♪,
cardtype: dress-bottoms-hc, img_back: 194016-47_b.png, img_both: 194016-47-w.png,
img_front: 194016-47_f.png, img_url: 'http://t.co/FAeCht7kA4', model: 緑川なお, 'no': '47',
no_max: '54', rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-48: {card_name: ビビッドマリンボーダースカート, card_text: カラフルなほしがかわいいね♪だいたんなドットタイツとあわせてみたよ★,
cardtype: dress-bottoms-hc, img_back: 194016-48_b.png, img_both: 194016-48-w.png,
img_front: 194016-48_f.png, img_url: false, model: 北条響, 'no': '48', no_max: '54',
rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-49: {card_name: レッド×ホワイトミニスカート, card_text: まっかなラインとリボンがポイントよ♪あかのトップスともにあうでしょ?,
cardtype: dress-bottoms-hc, img_back: 194016-49_b.png, img_both: 194016-49-w.png,
img_front: 194016-49_f.png, img_url: false, model: 南野奏&夏木りん, 'no': '49', no_max: '54',
rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-50: {card_name: ピンクマリンロリータフリルミニ, card_text: マリンカラーのあざやかなラインがかわいいフリルスカートとサンダルです♪,
cardtype: dress-bottoms-hc, img_back: 194016-50_b.png, img_both: 194016-50-w.png,
img_front: 194016-50_f.png, img_url: false, model: 花咲つぼみ, 'no': '50', no_max: '54',
rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-51: {card_name: サンセットサマートリプルフリル, card_text: あざやかなサンセットカラーのスカートだよ。たいようにだってまけないよ!,
cardtype: dress-bottoms-hc, img_back: 194016-51_b.png, img_both: 194016-51-w.png,
img_front: 194016-51_f.png, img_url: 'http://t.co/WwLPWgKa2A', model: 桃園ラブ, 'no': '51',
no_max: '54', rarity: n-hc, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-52: {card_name: ブルーラインデニムタイト, card_text: シンプルなデニムはスポーティーなコーデとあいしょうばつぐんだわ!,
cardtype: dress-bottoms-hc, img_back: 194016-52_b.png, img_both: 194016-52-w.png,
img_front: 194016-52_f.png, img_url: false, model: 白雪ひめ&氷川いおな, 'no': '52', no_max: '54',
rarity: img_rare_cp-hc.gif, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-53: {card_name: サマーパープルのメルヘンサブリナ, card_text: クールないんしょうもおおきなはながらでおしゃれにしましょ★,
cardtype: dress-bottoms-hc, img_back: 194016-53_b.png, img_both: 194016-53-w.png,
img_front: 194016-53_f.png, img_url: false, model: 月影ゆり&氷川いおな, 'no': '53', no_max: '54',
rarity: img_rare_cp-hc.gif, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194016-54: {card_name: ナイトマーメイドスカート, card_text: ゴージャスなマーメイドスカートでパーティのしゅやくはきまりかしら♪,
cardtype: dress-bottoms-hc, img_back: 194016-54_b.png, img_both: 194016-54-w.png,
img_front: 194016-54_f.png, img_url: false, model: 美々野くるみ&氷川いおな, 'no': '54', no_max: '54',
rarity: img_rare_cp-hc.gif, series_id: '194016', series_name: happiness04, series_text: ハピネスチャージ4だんキュアフォーチュンとうじょう! }
194017-01: {card_name: キュアマーチ, card_text: キュアマーチとあそべるよ!, cardtype: allstars, img_back: 194017-01_b.png,
img_both: 194017-01-w.png, img_front: 194017-01_f.png, img_url: false, model: キュアマーチ,
'no': '01', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-02: {card_name: キュアマーチ, card_text: キュアマーチとあそべるよ!, cardtype: allstars, img_back: 194017-02_b.png,
img_both: 194017-02-w.png, img_front: 194017-02_f.png, img_url: false, model: キュアマーチ,
'no': '02', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-03: {card_name: キュアリズム, card_text: キュアリズムとあそべるよ!, cardtype: allstars, img_back: 194017-03_b.png,
img_both: 194017-03-w.png, img_front: 194017-03_f.png, img_url: false, model: キュアリズム,
'no': '03', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-04: {card_name: キュアリズム, card_text: キュアリズムとあそべるよ!, cardtype: allstars, img_back: 194017-04_b.png,
img_both: 194017-04-w.png, img_front: 194017-04_f.png, img_url: false, model: キュアリズム,
'no': '04', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-05: {card_name: キュアミント, card_text: キュアミントとあそべるよ!, cardtype: allstars, img_back: 194017-05_b.png,
img_both: 194017-05-w.png, img_front: 194017-05_f.png, img_url: false, model: キュアミント,
'no': '05', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-06: {card_name: キュアミント, card_text: キュアミントとあそべるよ!, cardtype: allstars, img_back: 194017-06_b.png,
img_both: 194017-06-w.png, img_front: 194017-06_f.png, img_url: false, model: キュアミント,
'no': '06', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-07: {card_name: キュアブルーム, card_text: キュアブルームとあそべるよ!, cardtype: allstars, img_back: 194017-07_b.png,
img_both: 194017-07-w.png, img_front: 194017-07_f.png, img_url: false, model: キュアブルーム,
'no': '07', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-08: {card_name: キュアブルーム, card_text: キュアブルームとあそべるよ!, cardtype: allstars, img_back: 194017-08_b.png,
img_both: 194017-08-w.png, img_front: 194017-08_f.png, img_url: false, model: キュアブルーム,
'no': 08, no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-09: {card_name: キュアイーグレット, card_text: キュアイーグレットとあそべるよ!, cardtype: allstars,
img_back: 194017-09_b.png, img_both: 194017-09-w.png, img_front: 194017-09_f.png,
img_url: false, model: キュアイーグレット, 'no': 09, no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-10: {card_name: キュアイーグレット, card_text: キュアイーグレットとあそべるよ!, cardtype: allstars,
img_back: 194017-10_b.png, img_both: 194017-10-w.png, img_front: 194017-10_f.png,
img_url: false, model: キュアイーグレット, 'no': '10', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-11: {card_name: キュアホワイト, card_text: キュアホワイトとあそべるよ!, cardtype: allstars, img_back: 194017-11_b.png,
img_both: 194017-11-w.png, img_front: 194017-11_f.png, img_url: false, model: キュアホワイト,
'no': '11', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-12: {card_name: キュアホワイト, card_text: キュアホワイトとあそべるよ!, cardtype: allstars, img_back: 194017-12_b.png,
img_both: 194017-12-w.png, img_front: 194017-12_f.png, img_url: false, model: キュアホワイト,
'no': '12', no_max: '48', rarity: prc-hc, series_id: '194017', series_name: happiness05,
series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-13: {card_name: いぬ, card_text: かわいいわんちゃんのケープだよ♥モフモフでラブリーだね♪, cardtype: dress-tops-hc,
img_back: 194017-13_b.png, img_both: 194017-13-w.png, img_front: 194017-13_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '13', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-14: {card_name: ひよこ, card_text: ピヨピヨ♪キュートなひよこさんだよ!, cardtype: dress-tops-hc,
img_back: 194017-14_b.png, img_both: 194017-14-w.png, img_front: 194017-14_f.png,
img_url: false, model: 白雪ひめ, 'no': '14', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-15: {card_name: ピエロ, card_text: ピエロみたいにサーカスでだいにんきになれそうね♪, cardtype: dress-tops-hc,
img_back: 194017-15_b.png, img_both: 194017-15-w.png, img_front: 194017-15_f.png,
img_url: false, model: 氷川いおな, 'no': '15', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-16: {card_name: おおきないちごのパフスリーブ, card_text: おおきないちごがちょうカワイイ~♥あまーいにおいがするかも?,
cardtype: dress-tops-hc, img_back: 194017-16_b.png, img_both: 194017-16-w.png, img_front: 194017-16_f.png,
img_url: false, model: 白雪ひめ, 'no': '16', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-17: {card_name: カーニバルパインホルターネック, card_text: ボトムスとあわせてパーティードレスでキメるわよ♪, cardtype: dress-tops-hc,
img_back: 194017-17_b.png, img_both: 194017-17-w.png, img_front: 194017-17_f.png,
img_url: false, model: 氷川いおな, 'no': '17', no_max: '48', rarity: img_rare_ps-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-18: {card_name: いちごロリータボレロ, card_text: おんなのこらしいボレロはいちごとドットがらでもっとかわいくなるわね♥,
cardtype: dress-tops-hc, img_back: 194017-18_b.png, img_both: 194017-18-w.png, img_front: 194017-18_f.png,
img_url: false, model: 調辺アコ&九条ひかり, 'no': '18', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-19: {card_name: ジューシーメロンパフスリーブ, card_text: メロンがらのパフスリーブチュニックよ。メロンがたべたくなるわね♪,
cardtype: dress-tops-hc, img_back: 194017-19_b.png, img_both: 194017-19-w.png, img_front: 194017-19_f.png,
img_url: false, model: 秋元こまち, 'no': '19', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-20: {card_name: まっかなスイカのベアトップ, card_text: だいたんなスイカがらのベアトップよ。スイカはすきですか?, cardtype: dress-tops-hc,
img_back: 194017-20_b.png, img_both: 194017-20-w.png, img_front: 194017-20_f.png,
img_url: false, model: 水無月かれん, 'no': '20', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-21: {card_name: オレンジパーティートップス, card_text: ジューシーなオレンジのトップスだよ!ボトムスとあわせてげんきいっぱい♪,
cardtype: dress-tops-hc, img_back: 194017-21_b.png, img_both: 194017-21-w.png, img_front: 194017-21_f.png,
img_url: false, model: 美墨なぎさ, 'no': '21', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-22: {card_name: みずたまリンゴトップス, card_text: かわいらしいりんごがらのシャツがキュートだね♥りんごのにおいがするかも?,
cardtype: dress-tops-hc, img_back: 194017-22_b.png, img_both: 194017-22-w.png, img_front: 194017-22_f.png,
img_url: false, model: 愛乃めぐみ, 'no': '22', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-23: {card_name: いちごがらのライントップス, card_text: いちごがいまにもこぼれそう♥えりのラインがアクセントよ♪, cardtype: dress-tops-hc,
img_back: 194017-23_b.png, img_both: 194017-23-w.png, img_front: 194017-23_f.png,
img_url: false, model: 大森ゆうこ, 'no': '23', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-24: {card_name: ランダムアップルパーカー, card_text: あきらしいいろのりんごがらパーカーだよ!ドットがかわいいね♪, cardtype: dress-tops-hc,
img_back: 194017-24_b.png, img_both: 194017-24-w.png, img_front: 194017-24_f.png,
img_url: false, model: 相田マナ&菱川りっか, 'no': '24', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-25: {card_name: ぶどうのチェックパフスリーブ, card_text: チェックがらのパフスリーブだよ!ぶどうがとてもおいしそう~♥,
cardtype: dress-tops-hc, img_back: 194017-25_b.png, img_both: 194017-25-w.png, img_front: 194017-25_f.png,
img_url: false, model: 星空みゆき&日野あかね&緑川なお, 'no': '25', no_max: '48', rarity: n-hc,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-26: {card_name: フルーツワンピふうジャケット, card_text: スカートとあわせればワンピふうにコーデができてすごいオシャレだよ♪,
cardtype: dress-tops-hc, img_back: 194017-26_b.png, img_both: 194017-26-w.png, img_front: 194017-26_f.png,
img_url: false, model: 北条響, 'no': '26', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-27: {card_name: キウイフルーツブラウス, card_text: キウイがらのブラウスよ♪なんだかとてもジューシーなきぶん!, cardtype: dress-tops-hc,
img_back: 194017-27_b.png, img_both: 194017-27-w.png, img_front: 194017-27_f.png,
img_url: false, model: 黒川エレン&月影ゆり, 'no': '27', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-28: {card_name: チェリー♥チェリーシャツベスト, card_text: さくらんぼがいっぱいでとてもかわいいです♪ベストもキマっていますね!,
cardtype: dress-tops-hc, img_back: 194017-28_b.png, img_both: 194017-28-w.png, img_front: 194017-28_f.png,
img_url: false, model: 花咲つぼみ, 'no': '28', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-29: {card_name: メルヘンストロベリートップス, card_text: おとぎばなしにでてきそうないちごのトップスよ!むねのリボンがステキ♪,
cardtype: dress-tops-hc, img_back: 194017-29_b.png, img_both: 194017-29-w.png, img_front: 194017-29_f.png,
img_url: false, model: 夏木りん, 'no': '29', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-30: {card_name: スパークリングレモンTシャツ, card_text: さわやかではじけるレモンのかおりがしそうなTシャツです♪, cardtype: dress-tops-hc,
img_back: 194017-30_b.png, img_both: 194017-30-w.png, img_front: 194017-30_f.png,
img_url: false, model: 春日野うらら, 'no': '30', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-31: {card_name: ひよこ, card_text: ピヨピヨ~♪しっぽがとてもキュートなひよこさんだよ♥, cardtype: dress-bottoms-hc,
img_back: 194017-31_b.png, img_both: 194017-31-w.png, img_front: 194017-31_f.png,
img_url: false, model: 大森ゆうこ, 'no': '31', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-32: {card_name: いぬ, card_text: もふもふでカワイイ~♪マロとおそろいのきぶん♥, cardtype: dress-bottoms-hc,
img_back: 194017-32_b.png, img_both: 194017-32-w.png, img_front: 194017-32_f.png,
img_url: false, model: 相田マナ, 'no': '32', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-33: {card_name: ピエロ, card_text: ピエロのきぶんでサーカスをもりあげましょう!, cardtype: dress-bottoms-hc,
img_back: 194017-33_b.png, img_both: 194017-33-w.png, img_front: 194017-33_f.png,
img_url: false, model: 東せつな, 'no': '33', no_max: '48', rarity: prc-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-34: {card_name: おおきないちごパンツ, card_text: まあるいいちごにそっくりなボトムスだよ!いちごがたべたくなっちゃうね♪,
cardtype: dress-bottoms-hc, img_back: 194017-34_b.png, img_both: 194017-34-w.png,
img_front: 194017-34_f.png, img_url: false, model: 愛乃めぐみ, 'no': '34', no_max: '48',
rarity: img_rare_ps-hc.gif, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-35: {card_name: カーニバルパインスカート, card_text: フレッシュなパインいろのフリルスカートだよ♪フリルがとてもキュート♥,
cardtype: dress-bottoms-hc, img_back: 194017-35_b.png, img_both: 194017-35-w.png,
img_front: 194017-35_f.png, img_url: false, model: 山吹祈里, 'no': '35', no_max: '48',
rarity: img_rare_ps-hc.gif, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-36: {card_name: まっかなスイカのスリムタイト, card_text: だいたんなスイカがらのタイトスカートよ。スイカのコーデでキメましょう♪,
cardtype: dress-bottoms-hc, img_back: 194017-36_b.png, img_both: 194017-36-w.png,
img_front: 194017-36_f.png, img_url: false, model: 剣崎真琴, 'no': '36', no_max: '48',
rarity: img_rare_s-hc.gif, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-37: {card_name: いちごロリータフレア, card_text: いちごがらのフレアスカートがとてもおとめちっくですわ♥, cardtype: dress-bottoms-hc,
img_back: 194017-37_b.png, img_both: 194017-37-w.png, img_front: 194017-37_f.png,
img_url: false, model: 円あぐり, 'no': '37', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-38: {card_name: ジューシーメロンボックスミニ, card_text: ドットスカートにちょっとみえるメロンがらがオシャレだね♪, cardtype: dress-bottoms-hc,
img_back: 194017-38_b.png, img_both: 194017-38-w.png, img_front: 194017-38_f.png,
img_url: false, model: 日向咲&美翔舞, 'no': '38', no_max: '48', rarity: img_rare_s-hc.gif,
series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-39: {card_name: オレンジパーティーバルーンパンツ, card_text: オレンジがいっぱいでジューシーなかおりがしそうなバルーンパンツよ♪,
cardtype: dress-bottoms-hc, img_back: 194017-39_b.png, img_both: 194017-39-w.png,
img_front: 194017-39_f.png, img_url: false, model: 雪城ほのか, 'no': '39', no_max: '48',
rarity: img_rare_s-hc.gif, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-40: {card_name: りんごみずたま2だんフリル, card_text: りんごいろのドットがポイント!トップスとあわせてりんごコーデでキマリね♥,
cardtype: dress-bottoms-hc, img_back: 194017-40_b.png, img_both: 194017-40-w.png,
img_front: 194017-40_f.png, img_url: false, model: 白雪ひめ, 'no': '40', no_max: '48',
rarity: n-hc, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-41: {card_name: スパークリングレモンミニフリル, card_text: いろあいがとてもフレッシュなレモンカラーのミニスカートよ♪,
cardtype: dress-bottoms-hc, img_back: 194017-41_b.png, img_both: 194017-41-w.png,
img_front: 194017-41_f.png, img_url: false, model: 大森ゆうこ&美々野くるみ, 'no': '41', no_max: '48',
rarity: n-hc, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-42: {card_name: キウイフルーツマキシ, card_text: キウイがらのロングスカートよ。すこしおとなっぽいコーデね♪, cardtype: dress-bottoms-hc,
img_back: 194017-42_b.png, img_both: 194017-42-w.png, img_front: 194017-42_f.png,
img_url: false, model: 氷川いおな, 'no': '42', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-43: {card_name: いちごがらのラインパンツ, card_text: ラインのポイントやたくさんのいちごがかわいらしいですわ♥, cardtype: dress-bottoms-hc,
img_back: 194017-43_b.png, img_both: 194017-43-w.png, img_front: 194017-43_f.png,
img_url: false, model: 四葉ありす&明堂院いつき, 'no': '43', no_max: '48', rarity: n-hc, series_id: '194017',
series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-44: {card_name: ぶどうのまんまるスカパン, card_text: ぶどうがらのフリルパンツだよ♪トップスとあわせてぶどうコーデにしよう!,
cardtype: dress-bottoms-hc, img_back: 194017-44_b.png, img_both: 194017-44-w.png,
img_front: 194017-44_f.png, img_url: false, model: 黄瀬やよい&青木れいか, 'no': '44', no_max: '48',
rarity: n-hc, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-45: {card_name: フルーツワンピふうスカート, card_text: フルーツがいっぱいね♪トップスとあわせてワンピふうコーデにしましょう♪,
cardtype: dress-bottoms-hc, img_back: 194017-45_b.png, img_both: 194017-45-w.png,
img_front: 194017-45_f.png, img_url: false, model: 南野奏, 'no': '45', no_max: '48',
rarity: n-hc, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-46: {card_name: チェリー♥チェリーショーパン, card_text: チェリーショートパンツにはチェリーカラーのブーツでバッチリね!,
cardtype: dress-bottoms-hc, img_back: 194017-46_b.png, img_both: 194017-46-w.png,
img_front: 194017-46_f.png, img_url: false, model: 来海えりか, 'no': '46', no_max: '48',
rarity: n-hc, series_id: '194017', series_name: happiness05, series_text: ハピネスチャージ5だんハピネスハロウィンパーティ★ }
194017-47: {card_name: ランダムアップルカーゴ, card_text: りんごいっぱいのカーゴだよ♪げんきいっぱいにうごけそうだね♥, cardtype: dress-bottoms-hc,
img_back: 194017-47_b.png, img_both: 194017-47-w.png, img_front: 194017-47_f.png,
img_url: false, model: 桃園ラブ&蒼乃美希, 'no': '47', no_max: '48', rarity: n-hc, series_id: '194017',