-
Notifications
You must be signed in to change notification settings - Fork 1
/
cafe.json
1787 lines (1787 loc) · 62.8 KB
/
cafe.json
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
[
{
"model": "cafe.menu",
"pk": "1",
"fields": {
"user": "2",
"name": "할메가커피",
"category": "커피",
"price_ice": "0",
"price_hot": "1900",
"price_constant": "0",
"menu_type": "onlyice",
"description": "우리 할머니께서 즐겨드시던 달달한 믹스 커피 스타일로 만든 메가MGC커피만의 시원한 커피 음료",
"image": "할메가커피.jpg"
}
},
{
"model": "cafe.menu",
"pk": "2",
"fields": {
"user": "2",
"name": "왕할메가커피",
"category": "커피",
"price_ice": "0",
"price_hot": "2900",
"price_constant": "0",
"menu_type": "onlyice",
"description": "우리 할머니께서 즐겨드시던 달달한 믹스 커피 스타일로 만든 메가MGC커피만의 메가사이즈 커피 음료",
"image": "왕할메가커피.jpg"
}
},
{
"model": "cafe.menu",
"pk": "3",
"fields": {
"user": "2",
"name": "아메리카노",
"category": "커피",
"price_ice": "1500",
"price_hot": "2000",
"price_constant": "0",
"menu_type": "both",
"description": "[기본2샷]메가MGC커피 블렌드 원두로 추출한 에스프레소에 물을 더해, 풍부한 바디감을 느낄 수 있는 스탠다드 커피.",
"image": "아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "4",
"fields": {
"user": "2",
"name": "메가리카노",
"category": "커피",
"price_ice": "0",
"price_hot": "3000",
"price_constant": "0",
"menu_type": "onlyice",
"description": "깊고 진한 메가MGC커피 아메리카노를 '960ml' 더 큼직하게 즐길 수 있는 대용량 커피.",
"image": "메가리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "5",
"fields": {
"user": "2",
"name": "꿀아메리카노",
"category": "커피",
"price_ice": "2700",
"price_hot": "2700",
"price_constant": "0",
"menu_type": "both",
"description": "아메리카노의 묵직한 바디감에 달콤한 사양벌꿀이 소프트하게 어우러진 커피.",
"image": "꿀아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "6",
"fields": {
"user": "2",
"name": "바닐라아메리카노",
"category": "커피",
"price_ice": "2700",
"price_hot": "2700",
"price_constant": "0",
"menu_type": "both",
"description": "아메리카노에 바닐라의 부드러운 향과 달콤함을 조화롭게 담아낸 커피.",
"image": "바닐라아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "7",
"fields": {
"user": "2",
"name": "헤이즐넛아메리카노",
"category": "커피",
"price_ice": "2700",
"price_hot": "2700",
"price_constant": "0",
"menu_type": "both",
"description": "아메리카노에 헤이즐넛의 풍성한 향과 달콤함을 담아 향긋하고 부드럽게 즐기는 커피.",
"image": "헤이즐넛아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "8",
"fields": {
"user": "2",
"name": "카페라떼",
"category": "커피",
"price_ice": "2900",
"price_hot": "2900",
"price_constant": "0",
"menu_type": "both",
"description": "진한 에스프레소와 부드러운 우유가 어우러져 고소한 풍미를 완성한 라떼.",
"image": "카페라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "9",
"fields": {
"user": "2",
"name": "카푸치노",
"category": "커피",
"price_ice": "2900",
"price_hot": "2900",
"price_constant": "0",
"menu_type": "both",
"description": "에스프레소 위에 올려진 우유 거품, 그리고 시나몬 파우더로 완성한 조화로운 맛의 커피.",
"image": "카푸치노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "10",
"fields": {
"user": "2",
"name": "바닐라라떼",
"category": "커피",
"price_ice": "3400",
"price_hot": "3400",
"price_constant": "0",
"menu_type": "both",
"description": "바닐라의 짙은 향과 풍부한 폼 밀크의 조화가 인상적인 달콤한 라떼.",
"image": "바닐라라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "11",
"fields": {
"user": "2",
"name": "헤이즐넛라떼",
"category": "커피",
"price_ice": "3400",
"price_hot": "3400",
"price_constant": "0",
"menu_type": "both",
"description": "부드러운 카페라떼에 헤이즐넛의 풍부한 향과 달콤함을 담아 향긋하게 즐길 수 있는 라떼.",
"image": "헤이즐넛라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "12",
"fields": {
"user": "2",
"name": "연유라떼",
"category": "커피",
"price_ice": "3900",
"price_hot": "0",
"price_constant": "0",
"menu_type": "onlyhot",
"description": "향기로운 에스프레소 샷, 부드러운 우유 그리고 달콤한 연유가 조화롭게 어우러진 라떼.",
"image": "연유라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "13",
"fields": {
"user": "2",
"name": "카라멜마끼아또",
"category": "커피",
"price_ice": "3700",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "both",
"description": "폼 밀크 속에 진한 에스프레소와 달콤한 카라멜을 가미해 부드럽게 즐기는 커피.",
"image": "카라멜마끼아또.jpg"
}
},
{
"model": "cafe.menu",
"pk": "14",
"fields": {
"user": "2",
"name": "카페모카",
"category": "커피",
"price_ice": "3900",
"price_hot": "3900",
"price_constant": "0",
"menu_type": "both",
"description": "초코를 만나 풍부해진 에스프레소와 고소한 우유, 부드러운 휘핑크림까지 더해 달콤하게 즐기는 커피.",
"image": "카페모카.jpg"
}
},
{
"model": "cafe.menu",
"pk": "15",
"fields": {
"user": "2",
"name": "콜드브루오리지널",
"category": "커피",
"price_ice": "3500",
"price_hot": "3500",
"price_constant": "0",
"menu_type": "both",
"description": "차가운 물에 장시간 우려내 깔끔한 목넘김을 느낄 수 있는 콜드브루.",
"image": "콜드브루오리지널.jpg"
}
},
{
"model": "cafe.menu",
"pk": "16",
"fields": {
"user": "2",
"name": "콜드브루라떼",
"category": "커피",
"price_ice": "4000",
"price_hot": "4000",
"price_constant": "0",
"menu_type": "both",
"description": "콜드브루에 고소한 우유를 섞어, 깔끔함과 부드러움을 잡은 라떼.",
"image": "콜드브루라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "17",
"fields": {
"user": "2",
"name": "티라미수라떼",
"category": "커피",
"price_ice": "3900",
"price_hot": "3900",
"price_constant": "0",
"menu_type": "both",
"description": "에스프레소와 티라미수 소스 & 우유 그리고 풍미를 더해주는 달달한 크림까지 곁들여 완성한 티라미수 라떼.",
"image": "티라미수라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "18",
"fields": {
"user": "2",
"name": "큐브라떼",
"category": "커피",
"price_ice": "0",
"price_hot": "4200",
"price_constant": "0",
"menu_type": "onlyice",
"description": "연유를 섞은 라떼에 에스프레소를 얼린 커피큐브를 올려, 녹을수록 더 진한 커피가 느껴지는 라떼.",
"image": "큐브라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "19",
"fields": {
"user": "2",
"name": "콜드브루디카페인",
"category": "커피",
"price_ice": "3500",
"price_hot": "3500",
"price_constant": "0",
"menu_type": "both",
"description": "카페인을 줄였지만, 원두 본연의 향미를 풍부하게 살려 맛을 잡은 디카페인 콜드브루.",
"image": "콜드브루디카페인.jpg"
}
},
{
"model": "cafe.menu",
"pk": "20",
"fields": {
"user": "2",
"name": "콜드브루디카페인라떼",
"category": "커피",
"price_ice": "4000",
"price_hot": "4000",
"price_constant": "0",
"menu_type": "both",
"description": "우유와 만나 부드럽고 고소한 풍미가 더해진 콜드브루 디카페인 라떼.",
"image": "콜드브루디카페인라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "21",
"fields": {
"user": "2",
"name": "딸기라떼",
"category": "음료 메뉴",
"price_ice": "0",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "onlyice",
"description": "산뜻하고 달콤한 딸기가 부드러운 우유와 어우러져 더욱 기분 좋게 즐기는 아이스 라떼.",
"image": "딸기라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "22",
"fields": {
"user": "2",
"name": "고구마라떼",
"category": "음료 메뉴",
"price_ice": "3500",
"price_hot": "3500",
"price_constant": "0",
"menu_type": "both",
"description": "달콤하고 고소한 고구마와 부드러운 우유가 만나 누구나 즐기기 좋은 든든한 라떼.",
"image": "고구마라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "23",
"fields": {
"user": "2",
"name": "곡물라떼",
"category": "음료 메뉴",
"price_ice": "3300",
"price_hot": "3300",
"price_constant": "0",
"menu_type": "both",
"description": "우유에 곡물을 더해 고소하고 든든하게 즐기는 라떼.",
"image": "곡물라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "24",
"fields": {
"user": "2",
"name": "메가초코",
"category": "음료 메뉴",
"price_ice": "3800",
"price_hot": "3800",
"price_constant": "0",
"menu_type": "both",
"description": "부드러운 우유에 진한 초코소스, 달콤한 휘핑크림의 삼박자 조화로 완성한 달콤 초코 음료.",
"image": "메가초코.jpg"
}
},
{
"model": "cafe.menu",
"pk": "25",
"fields": {
"user": "2",
"name": "토피넛라떼",
"category": "음료 메뉴",
"price_ice": "3800",
"price_hot": "3800",
"price_constant": "0",
"menu_type": "both",
"description": "은은하게 퍼지는 카라멜의 달달한 향기와 견과의 고소함을 한입에 즐길 수 있는 라떼.",
"image": "토피넛라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "26",
"fields": {
"user": "2",
"name": "오레오초코라떼",
"category": "음료 메뉴",
"price_ice": "0",
"price_hot": "3900",
"price_constant": "0",
"menu_type": "onlyice",
"description": "진한 초코와 리얼 오레오를 블렌딩해 씹는 맛을 더한 달콤한 아이스 라떼.",
"image": "오레오초코라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "27",
"fields": {
"user": "2",
"name": "흑당버블밀크티라떼",
"category": "음료 메뉴",
"price_ice": "0",
"price_hot": "3800",
"price_constant": "0",
"menu_type": "onlyice",
"description": "타바론 얼그레이 홍차의 깊은 맛을 살린 일크티 라떼에 진한 흑당과 흑당 버블의 달콤함을 채운 음료.",
"image": "흑당버블밀크티라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "28",
"fields": {
"user": "2",
"name": "흑당버블라떼",
"category": "음료 메뉴",
"price_ice": "0",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "onlyice",
"description": "모리셔스의 진한 흑당과 부드러운 우유가 달콤한 조화에 흑당 버블을 함께 즐기는 라떼.",
"image": "흑당버블라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "29",
"fields": {
"user": "2",
"name": "메가초코",
"category": "음료 메뉴",
"price_ice": "3800",
"price_hot": "3800",
"price_constant": "0",
"menu_type": "both",
"description": "부드러운 우유에 진한 초코소스, 달콤한 휘핑크림의 삼박자 조화로 완성한 달콤 초코 음료.",
"image": "메가초코.jpg"
}
},
{
"model": "cafe.menu",
"pk": "30",
"fields": {
"user": "2",
"name": "녹차라떼",
"category": "음료 메뉴",
"price_ice": "3500",
"price_hot": "3500",
"price_constant": "0",
"menu_type": "both",
"description": "향긋한 녹차에 우유를 더해 입 안에 부드러운 푸릇함을 선물하는 라떼.",
"image": "녹차라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "31",
"fields": {
"user": "2",
"name": "핫초코",
"category": "음료 메뉴",
"price_ice": "3500",
"price_hot": "0",
"price_constant": "0",
"menu_type": "onlyhot",
"description": "부드러운 우유에 진한 초코소스가 어우러져 달콤하게 입맛을 깨우는 초콜릿 음료.",
"image": "핫초코.jpg"
}
},
{
"model": "cafe.menu",
"pk": "32",
"fields": {
"user": "2",
"name": "로얄밀크티라떼",
"category": "음료 메뉴",
"price_ice": "3700",
"price_hot": "0",
"price_constant": "0",
"menu_type": "onlyhot",
"description": "우유와 은은한 홍차가 어우러져 부드럽고 향긋한 한 모금을 완성한 라떼.",
"image": "로얄밀크티라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "33",
"fields": {
"user": "2",
"name": "디카페인 아메리카노",
"category": "디카페인",
"price_ice": "2500",
"price_hot": "3000",
"price_constant": "0",
"menu_type": "both",
"description": "향과 풍미 그대로 카페인만을 낮춰 민감한 분들도 안심하고 매일매일 즐길 수 있는 디카페인 커피",
"image": "디카페인 아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "34",
"fields": {
"user": "2",
"name": "디카페인 꿀아메리카노",
"category": "디카페인",
"price_ice": "3700",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인 아메리카노의 묵직한 바디감에 달콤한 사양벌꿀이 소프트하게 어우러진 커피.",
"image": "디카페인 꿀아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "35",
"fields": {
"user": "2",
"name": "디카페인 헤이즐넛 아메리카노",
"category": "디카페인",
"price_ice": "3700",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인 아메리카노에 헤이즐넛의 풍성한 향과 달콤함을 담아 향긋하고 부드럽게 즐기는 커피.",
"image": "디카페인 헤이즐넛 아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "36",
"fields": {
"user": "2",
"name": "디카페인 바닐라 아메리카노",
"category": "디카페인",
"price_ice": "3700",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인 아메리카노에 바닐라의 부드러운 향과 달콤함을 조화롭게 담아낸 커피.",
"image": "디카페인 바닐라 아메리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "37",
"fields": {
"user": "2",
"name": "디카페인 카페라떼",
"category": "디카페인",
"price_ice": "3900",
"price_hot": "3900",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인 에스프레소와 부드러운 우유가 어우러져 고소한 풍미를 완성한 라떼.",
"image": "디카페인 카페라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "38",
"fields": {
"user": "2",
"name": "디카페인 바닐라라떼",
"category": "디카페인",
"price_ice": "4400",
"price_hot": "4400",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인으로 즐기는 바닐라의 짙은 향과 풍부한 폼 밀크의 조화가 인상적인 달콤한 라떼.",
"image": "디카페인 바닐라라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "39",
"fields": {
"user": "2",
"name": "디카페인 연유라떼",
"category": "디카페인",
"price_ice": "4900",
"price_hot": "0",
"price_constant": "0",
"menu_type": "onlyhot",
"description": "디카페인 에스프레소 샷, 부드러운 우유 그리고 달콤한 연유가 조화롭게 어우러진 라떼.",
"image": "디카페인 연유라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "40",
"fields": {
"user": "2",
"name": "디카페인 카라멜마끼아또",
"category": "디카페인",
"price_ice": "4700",
"price_hot": "4700",
"price_constant": "0",
"menu_type": "both",
"description": "폼 밀크 속에 진한 디카페인 에스프레소와 달콤한 카라멜을 가미해 부드럽게 즐기는 커피",
"image": "디카페인 카라멜마끼아또.jpg"
}
},
{
"model": "cafe.menu",
"pk": "41",
"fields": {
"user": "2",
"name": "디카페인 카페모카",
"category": "디카페인",
"price_ice": "4900",
"price_hot": "4900",
"price_constant": "0",
"menu_type": "both",
"description": "초코를 만나 풍부해진 디카페인 에스프레소와 고소한 우유, 부드러운 휘핑크림까지 더해 달콤하게 즐기는 커피.",
"image": "디카페인 카페모카.jpg"
}
},
{
"model": "cafe.menu",
"pk": "42",
"fields": {
"user": "2",
"name": "디카페인 카푸치노",
"category": "디카페인",
"price_ice": "3900",
"price_hot": "3900",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인 에스프레소 위에 올려진 우유 거품, 그리고 시나몬 파우더로 완성한 조화로운 맛의 커피.",
"image": "디카페인 카푸치노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "43",
"fields": {
"user": "2",
"name": "디카페인헤이즐넛라떼",
"category": "디카페인",
"price_ice": "4400",
"price_hot": "4400",
"price_constant": "0",
"menu_type": "both",
"description": "부드러운 카페라떼에 헤이즐넛의 풍부한 향과 달콤함을 담아 향긋하게 즐길 수 있는 디카페인 라떼.",
"image": "디카페인 헤이즐넛 라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "44",
"fields": {
"user": "2",
"name": "디카페인티라미수라떼",
"category": "디카페인",
"price_ice": "4900",
"price_hot": "4900",
"price_constant": "0",
"menu_type": "both",
"description": "디카페인 에스프레소와 티라미수 소스 & 우유 그리고 풍미를 더해주는 달달한 크림까지 곁들여 완성한 티라미수 라떼.",
"image": "디카페인 티라미수라떼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "45",
"fields": {
"user": "2",
"name": "디카페인 메가리카노",
"category": "디카페인",
"price_ice": "0",
"price_hot": "4500",
"price_constant": "0",
"menu_type": "onlyice",
"description": "메가MGC커피 디카페인 아메리카노를 '960ml' 더 크고 가볍게 즐길 수 있는 대용량 커피",
"image": "디카페인 메가리카노.jpg"
}
},
{
"model": "cafe.menu",
"pk": "46",
"fields": {
"user": "2",
"name": "화이트 뱅쇼",
"category": "TEA",
"price_ice": "0",
"price_hot": "3900",
"price_constant": "0",
"menu_type": "onlyice",
"description": "레몬, 자몽, 석류, 백포도, 사과 등 다양한 과일로 맛을 낸 겨울한정 화이트 뱅쇼",
"image": "화이트 뱅쇼.jpg"
}
},
{
"model": "cafe.menu",
"pk": "47",
"fields": {
"user": "2",
"name": "복숭아아이스티",
"category": "TEA",
"price_ice": "0",
"price_hot": "3000",
"price_constant": "0",
"menu_type": "onlyice",
"description": "깊은 맛의 홍차와 달콤한 복숭아의 은은한 향이 어우러진 시원한 여름철 인기 음료.",
"image": "복숭아아이스티.jpg"
}
},
{
"model": "cafe.menu",
"pk": "48",
"fields": {
"user": "2",
"name": "허니자몽블랙티",
"category": "TEA",
"price_ice": "3700",
"price_hot": "3700",
"price_constant": "0",
"menu_type": "both",
"description": "달콤한 꿀청에 재운 자몽에 홍차의 부드러움을 어우른 상큼한 과일티.",
"image": "허니자몽블랙티.jpg"
}
},
{
"model": "cafe.menu",
"pk": "49",
"fields": {
"user": "2",
"name": "사과유자차",
"category": "TEA",
"price_ice": "3500",
"price_hot": "3500",
"price_constant": "0",
"menu_type": "both",
"description": "애플티의 향긋함과 유자청의 상큼달콤함을 한컵에 담아낸 과일티.",
"image": "사과유자차.jpg"
}
},
{
"model": "cafe.menu",
"pk": "50",
"fields": {
"user": "2",
"name": "유자차",
"category": "TEA",
"price_ice": "3300",
"price_hot": "3300",
"price_constant": "0",
"menu_type": "both",
"description": "비타민이 가득 든 상큼달콤한 유자를 듬뿍 넣어 향긋한 즐거움을 전하는 과일티.",
"image": "유자차.jpg"
}
},
{
"model": "cafe.menu",
"pk": "51",
"fields": {
"user": "2",
"name": "레몬차",
"category": "TEA",
"price_ice": "3300",
"price_hot": "3300",
"price_constant": "0",
"menu_type": "both",
"description": "상큼한 레몬의 맛과 향을 오롯이 살린 비타민C 가득한 과일티.",
"image": "레몬차.jpg"
}
},
{
"model": "cafe.menu",
"pk": "52",
"fields": {
"user": "2",
"name": "자몽차",
"category": "TEA",
"price_ice": "3300",
"price_hot": "3300",
"price_constant": "0",
"menu_type": "both",
"description": "달콤쌉싸름한 자몽의 조화로운 맛을 한 잔 가득 느낄 수 있는 과일티.",
"image": "자몽차.jpg"
}
},
{
"model": "cafe.menu",
"pk": "53",
"fields": {
"user": "2",
"name": "녹차",
"category": "TEA",
"price_ice": "2500",
"price_hot": "2500",
"price_constant": "0",
"menu_type": "both",
"description": "고소한 감칠맛과 부드러운 목넘김으로 산뜻하게 마음을 위로하는 국내산 녹차.",
"image": "녹차.jpg"
}
},
{
"model": "cafe.menu",
"pk": "54",
"fields": {
"user": "2",
"name": "페퍼민트",
"category": "TEA",
"price_ice": "2500",
"price_hot": "2500",
"price_constant": "0",
"menu_type": "both",
"description": "멘톨향의 묵직한 청량감, 상쾌한 맛과 향이 인상적인 허브티.",
"image": "페퍼민트.jpg"
}
},
{
"model": "cafe.menu",
"pk": "55",
"fields": {
"user": "2",
"name": "캐모마일",
"category": "TEA",
"price_ice": "2500",
"price_hot": "2500",
"price_constant": "0",
"menu_type": "both",
"description": "마음을 진정 시켜주는 산뜻한 풀내음을 느낄 수 있는 허브티.",
"image": "캐모마일.jpg"
}
},
{
"model": "cafe.menu",
"pk": "56",
"fields": {
"user": "2",
"name": "얼그레이",
"category": "TEA",
"price_ice": "2500",
"price_hot": "2500",
"price_constant": "0",
"menu_type": "both",
"description": "홍차 특유의 풍부한 플레이버를 만끽할 수 있는 허브티.",
"image": "얼그레이.jpg"
}
},
{
"model": "cafe.menu",
"pk": "57",
"fields": {
"user": "2",
"name": "스모어 블랙쿠키 프라페",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "4400",
"menu_type": "no_temperature",
"description": "진한 초코스무디에 바삭한 쿠키를 넣어 쫀득 달콤한 마시멜로우 잼과 함께 달콤하게 즐기는 겨울 한정 프라페",
"image": "스모어 블랙쿠키 프라페.jpg"
}
},
{
"model": "cafe.menu",
"pk": "58",
"fields": {
"user": "2",
"name": "스모어 카라멜쿠키 프라페",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "4400",
"menu_type": "no_temperature",
"description": "로투스 쿠키와 함께 진한 카라멜 맛의 스무디를 쫀득 달콤한 마시멜로우 잼과 함께 즐기는 겨울 한정 프라페",
"image": "스모어 카라멜쿠키 프라페.jpg"
}
},
{
"model": "cafe.menu",
"pk": "59",
"fields": {
"user": "2",
"name": "코코넛커피 스무디",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "4800",
"menu_type": "no_temperature",
"description": "바삭하고 고소한 코코넛 칩을 올리고 쌉싸름한 커피와 달콤한 코코넛이 조화로운 스무디",
"image": "코코넛 커피 스무디.jpg"
}
},
{
"model": "cafe.menu",
"pk": "60",
"fields": {
"user": "2",
"name": "플레인퐁 크러쉬",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "우유에 죠리퐁 씨리얼이 믹싱 된 얼음을 갈아 만든 시원한 프라페음료",
"image": "플레인퐁크러쉬.jpg"
}
},
{
"model": "cafe.menu",
"pk": "61",
"fields": {
"user": "2",
"name": "초코허니퐁 크러쉬",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "리얼 벌꿀이 들어가 더 달콤한 퍼프허니 시리얼과 부드럽게 달달한 초코가 함께 만드는 즐거운 맛의 프라페.",
"image": "초코허니퐁크러쉬.jpg"
}
},
{
"model": "cafe.menu",
"pk": "62",
"fields": {
"user": "2",
"name": "슈크림허니 퐁크러쉬",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "바닐라빈 향을 머금은 부드러운 슈크림과 리얼 벌꿀이 들어간 퍼프허니 시리얼을 시원하게 즐기는 프라페.",
"image": "슈크림허니퐁크러쉬.jpg"
}
},
{
"model": "cafe.menu",
"pk": "63",
"fields": {
"user": "2",
"name": "딸기퐁 크러쉬",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "바삭하고 달달한 퐁에 상큼한 딸기와 부드러운 우유, 얼음을 함께 블렌딩해 시원하게 즐기는 프라페.",
"image": "딸기퐁크러쉬.jpg"
}
},
{
"model": "cafe.menu",
"pk": "64",
"fields": {
"user": "2",
"name": "바나나퐁 크러쉬",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "바삭하고 달달한 퐁에 부드러운 바나나와 우유, 얼음을 함께 블렌딩해 부드럽고 시원하게 즐기는 프라페.",
"image": "바나나퐁크러쉬.jpg"
}
},
{
"model": "cafe.menu",
"pk": "65",
"fields": {
"user": "2",
"name": "쿠키프라페",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "바삭하고 달콤한 오레오와 고소한 우유, 부드러운 바닐라향의 조화를 느낄 수 있는 프라페.",
"image": "쿠키프라페.jpg"
}
},
{
"model": "cafe.menu",
"pk": "66",
"fields": {
"user": "2",
"name": "딸기쿠키 프라페",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",
"price_constant": "3900",
"menu_type": "no_temperature",
"description": "부드러운 바닐라와 달달한 딸기, 바삭한 오레오 쿠키가 달콤한 하모니를 선물하는 프라페.",
"image": "딸기쿠키프라페.jpg"
}
},
{
"model": "cafe.menu",
"pk": "67",
"fields": {
"user": "2",
"name": "민트프라페",
"category": "스무디, 프라페",
"price_ice": "0",
"price_hot": "0",