This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
art.json
1077 lines (1077 loc) · 50.8 KB
/
art.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
{
"academic_painting": {
"id": 1,
"file-name": "academic_painting",
"name": {
"name-USen": "academic painting",
"name-EUen": "academic painting",
"name-EUde": "Wissenschaftsgemälde",
"name-EUes": "cuadro anatómico",
"name-USes": "cuadro anatómico",
"name-EUfr": "toile académique",
"name-USfr": "toile académique",
"name-EUit": "quadro accademico",
"name-EUnl": "academische schilderij",
"name-CNzh": "学术性的名画",
"name-TWzh": "學術性的名畫",
"name-JPja": "アカデミックなめいが",
"name-KRko": "아카데믹한 명화",
"name-EUru": "академическая картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/academic_painting",
"museum-desc": "This drawing is based on the \"ideal\" human-body ratio, as stated in \"De architectura.\" \"De architectura\" was a treatise by Vitruvius, an architect from the early 1st century BCE."
},
"amazing_painting": {
"id": 2,
"file-name": "amazing_painting",
"name": {
"name-USen": "amazing painting",
"name-EUen": "amazing painting",
"name-EUde": "Enormgemälde",
"name-EUes": "cuadro holandés",
"name-USes": "cuadro holandés",
"name-EUfr": "toile incroyable",
"name-USfr": "toile incroyable",
"name-EUit": "quadro stupendo",
"name-EUnl": "sublieme schilderij",
"name-CNzh": "惊人的名画",
"name-TWzh": "驚人的名畫",
"name-JPja": "すごいめいが",
"name-KRko": "대단한 명화",
"name-EUru": "потрясающая картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/amazing_painting",
"museum-desc": "This masterpiece, painted by 17th century Dutch artist Rembrandt, depicts a military gathering. At the time, portraits usually showed their subjects standing still. So this was a leap forward in technique. For many years, art scholars thought the painting was set at night, but a restoration revealed a dark varnish. We can now see the dynamic poses and lighting as they were meant to be seen—in the daytime!"
},
"ancient_statue": {
"id": 3,
"file-name": "ancient_statue",
"name": {
"name-USen": "ancient statue",
"name-EUen": "ancient statue",
"name-EUde": "Uraltstatue",
"name-EUes": "estatua primitiva",
"name-USes": "estatua primitiva",
"name-EUfr": "statuette antique",
"name-USfr": "statuette antique",
"name-EUit": "statua antica",
"name-EUnl": "prehistorische beeldje",
"name-CNzh": "远古的雕塑",
"name-TWzh": "遠古的雕塑",
"name-JPja": "いにしえのちょうこく",
"name-KRko": "태고의 조각",
"name-EUru": "древняя статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/ancient_statue",
"museum-desc": "A mysterious, riveting doll made from kneaded, unglazed dirt during the Jōmon period. Its large round eyes resemble goggles that intercept light, so its name should come as no surprise. \"Shakōki\" means \"light-intercepting goggles,\" and a dogū is a small animal figurine."
},
"basic_painting": {
"id": 4,
"file-name": "basic_painting",
"name": {
"name-USen": "basic painting",
"name-EUen": "basic painting",
"name-EUde": "Einfachgemälde",
"name-EUes": "retrato heroico",
"name-USes": "retrato heroico",
"name-EUfr": "toile classique",
"name-USfr": "toile classique",
"name-EUit": "quadro semplice",
"name-EUnl": "klassieke schilderij",
"name-CNzh": "勇敢的名画",
"name-TWzh": "勇敢的名畫",
"name-JPja": "いさましいめいが",
"name-KRko": "용감한 명화",
"name-EUru": "обычная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/basic_painting",
"museum-desc": "Gainsborough was known for his innovative use of colors in his traditional portraits, like this one. Although he preferred painting landscapes, his portraits would be the defining work of his career."
},
"beautiful_statue": {
"id": 5,
"file-name": "beautiful_statue",
"name": {
"name-USen": "beautiful statue",
"name-EUen": "beautiful statue",
"name-EUde": "Eleganzstatue",
"name-EUes": "estatua femenina",
"name-USes": "estatua femenina",
"name-EUfr": "statue féminine",
"name-USfr": "statue féminine",
"name-EUit": "statua aggraziata",
"name-EUnl": "gracieuze standbeeld",
"name-CNzh": "美丽的雕塑",
"name-TWzh": "美麗的雕塑",
"name-JPja": "うつくしいちょうこく",
"name-KRko": "아름다운 조각",
"name-EUru": "прекрасная статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/beautiful_statue",
"museum-desc": "A statue of the Roman goddess of love and beauty, Venus was found on the island of Milos. This beautiful sculpture makes many wonder what her original pose might have been."
},
"calm_painting": {
"id": 6,
"file-name": "calm_painting",
"name": {
"name-USen": "calm painting",
"name-EUen": "calm painting",
"name-EUde": "Ruhegemälde",
"name-EUes": "paisaje francés",
"name-USes": "paisaje francés",
"name-EUfr": "toile apaisante",
"name-USfr": "toile apaisante",
"name-EUit": "quadro riposante",
"name-EUnl": "vredige schilderij",
"name-CNzh": "和煦的名画",
"name-TWzh": "和煦的名畫",
"name-JPja": "おだやかなめいが",
"name-KRko": "평온한 명화",
"name-EUru": "спокойная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/calm_painting",
"museum-desc": "Seurat, known as the founder of neo-impressionism, invented the use of brightly colored dots. His method, which does not involve mixing pigments, took time. This piece, for instance, took two years. It shows a crowd enjoying a day off at the river Seine in France."
},
"common_painting": {
"id": 7,
"file-name": "common_painting",
"name": {
"name-USen": "common painting",
"name-EUen": "common painting",
"name-EUde": "Bekanntgemälde",
"name-EUes": "cuadro segadoras",
"name-USes": "cuadro segadoras",
"name-EUfr": "toile commune",
"name-USfr": "toile commune",
"name-EUit": "quadro povero",
"name-EUnl": "landelijke schilderij",
"name-CNzh": "常见的名画",
"name-TWzh": "常見的名畫",
"name-JPja": "よくみるめいが",
"name-KRko": "평범한 명화",
"name-EUru": "сельская картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/common_painting",
"museum-desc": "The signature piece from Millet, who was known for depicting the lives of commoners in the 19th century.Notice the abundant crops visible in the background relative to the meager wheat remaining for workers.This art served as social commentary in a time of great inequality."
},
"detailed_painting": {
"id": 8,
"file-name": "detailed_painting",
"name": {
"name-USen": "detailed painting",
"name-EUen": "detailed painting",
"name-EUde": "Detailgemälde",
"name-EUes": "cuadro detallado",
"name-USes": "cuadro detallado",
"name-EUfr": "toile détaillée",
"name-USfr": "toile détaillée",
"name-EUit": "quadro dettagliato",
"name-EUnl": "gedetailleerde schilderij",
"name-CNzh": "细致的名画",
"name-TWzh": "細緻的名畫",
"name-JPja": "ちみつなめいが",
"name-KRko": "섬세한 명화",
"name-EUru": "детальная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/detailed_painting",
"museum-desc": "A detailed, colorful, and dynamic piece by Itō Jakuchū, a successful Kyoto artist in the mid-Edo period. High-quality paints on silk help it maintain its brilliant color even now, 200 years after its creation."
},
"dynamic_painting": {
"id": 9,
"file-name": "dynamic_painting",
"name": {
"name-USen": "dynamic painting",
"name-EUen": "dynamic painting",
"name-EUde": "Wellengemälde",
"name-EUes": "cuadro ola",
"name-USes": "cuadro ola",
"name-EUfr": "toile déferlante",
"name-USfr": "toile déferlante",
"name-EUit": "quadro marino",
"name-EUnl": "woelige schilderij",
"name-CNzh": "磅礴的名画",
"name-TWzh": "磅礡的名畫",
"name-JPja": "いきなめいが",
"name-KRko": "멋들어진 명화",
"name-EUru": "волнительная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/dynamic_painting",
"museum-desc": "The signature piece of ukiyo-e artist Katsushika Hokusai, painted as part of a series when he was in his 60s. Although it is dubbed \"Thirty-Six Views,\" he eventually added 10 more to make 46 in total."
},
"familiar_statue": {
"id": 10,
"file-name": "familiar_statue",
"name": {
"name-USen": "familiar statue",
"name-EUen": "familiar statue",
"name-EUde": "Vertrautstatue",
"name-EUes": "estatua pensativa",
"name-USes": "estatua pensativa",
"name-EUfr": "statue pensive",
"name-USfr": "statue pensive",
"name-EUit": "statua pensierosa",
"name-EUnl": "peinzende standbeeld",
"name-CNzh": "似曾相识的雕塑",
"name-TWzh": "似曾相識的雕塑",
"name-JPja": "なじみのあるちょうこく",
"name-KRko": "익숙한 조각",
"name-EUru": "знакомая статуя"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/familiar_statue",
"museum-desc": "This bronze sculpture was crafted by the French sculptor Rodin, known as the father of modern sculpture. The incredibly famous original is located in France. The sculpture was casted over 20 times. As such, authentic pieces can be found all around the world."
},
"famous_painting": {
"id": 11,
"file-name": "famous_painting",
"name": {
"name-USen": "famous painting",
"name-EUen": "famous painting",
"name-EUde": "Berühmtgemälde",
"name-EUes": "retrato italiano",
"name-USes": "retrato italiano",
"name-EUfr": "toile célèbre",
"name-USfr": "toile célèbre",
"name-EUit": "quadro famoso",
"name-EUnl": "beroemde schilderij",
"name-CNzh": "有名的名画",
"name-TWzh": "有名的名畫",
"name-JPja": "ゆうめいなめいが",
"name-KRko": "유명한 명화",
"name-EUru": "знаменитая картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/famous_painting",
"museum-desc": "The world's most famous smile. It's said that da Vinci kept this painting for himself until the very end...Given its power to beguile visitors all these years later, it's easy to see why."
},
"flowery_painting": {
"id": 12,
"file-name": "flowery_painting",
"name": {
"name-USen": "flowery painting",
"name-EUen": "flowery painting",
"name-EUde": "Blumengemälde",
"name-EUes": "cuadro flores",
"name-USes": "cuadro flores",
"name-EUfr": "toile florale",
"name-USfr": "toile florale",
"name-EUit": "quadro fiorito",
"name-EUnl": "zonnige schilderij",
"name-CNzh": "珍贵的名画",
"name-TWzh": "珍貴的名畫",
"name-JPja": "たぐいまれなるめいが",
"name-KRko": "진귀한 명화",
"name-EUru": "цветочная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/flowery_painting",
"museum-desc": "Van Gogh painted this piece when he moved to the south of France in search of more vibrant colors. Yellow was Van Gogh's favorite color, and he made seven paintings that featured sunflowers during this time."
},
"gallant_statue": {
"id": 13,
"file-name": "gallant_statue",
"name": {
"name-USen": "gallant statue",
"name-EUen": "gallant statue",
"name-EUde": "Galantstatue",
"name-EUes": "estatua majestuosa",
"name-USes": "estatua majestuosa",
"name-EUfr": "statue majestueuse",
"name-USfr": "statue majestueuse",
"name-EUit": "statua maestosa",
"name-EUnl": "verheven standbeeld",
"name-CNzh": "英挺的雕塑",
"name-TWzh": "英挺的雕塑",
"name-JPja": "りりしいちょうこく",
"name-KRko": "늠름한 조각",
"name-EUru": "доблестная статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/gallant_statue",
"museum-desc": "Young David glares at his enemies, sling slung over his shoulder. It took Michelangelo more than three years to sculpt this piece. Close inspection shows heart- shaped eyes, but that's probably meant to depict light hitting them. Hearts didn't have the lovey-dovey symbolism back then that they do today."
},
"glowing_painting": {
"id": 14,
"file-name": "glowing_painting",
"name": {
"name-USen": "glowing painting",
"name-EUen": "glowing painting",
"name-EUde": "Lichtgemälde",
"name-EUes": "cuadro vespertino",
"name-USes": "cuadro vespertino",
"name-EUfr": "toile crépusculaire",
"name-USfr": "toile crépusculaire",
"name-EUit": "quadro abbagliante",
"name-EUnl": "weemoedige schilderij",
"name-CNzh": "光线的名画",
"name-TWzh": "光線的名畫",
"name-JPja": "ひかりのめいが",
"name-KRko": "빛의 명화",
"name-EUru": "сияющая картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/glowing_painting",
"museum-desc": "A famous piece by Turner, a \"master of light. \"It shows an English Navy ship commanded by Admiral Nelson as it's being tugged toward its dismantling."
},
"graceful_painting": {
"id": 15,
"file-name": "graceful_painting",
"name": {
"name-USen": "graceful painting",
"name-EUen": "graceful painting",
"name-EUde": "Anmutsgemälde",
"name-EUes": "retrato oriental",
"name-USes": "retrato oriental",
"name-EUfr": "toile gracieuse",
"name-USfr": "toile gracieuse",
"name-EUit": "quadro armonioso",
"name-EUnl": "sierlijke schilderij",
"name-CNzh": "端庄的名画",
"name-TWzh": "端莊的名畫",
"name-JPja": "しなやかなめいが",
"name-KRko": "절제된 명화",
"name-EUru": "изящная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/graceful_painting",
"museum-desc": "A hand-painted piece by Hishikawa Moronobu, an artist known for popularizing the ukiyo-e style. This stirring painting depicts a fashionable woman glancing back over her shoulder."
},
"great_statue": {
"id": 16,
"file-name": "great_statue",
"name": {
"name-USen": "great statue",
"name-EUen": "great statue",
"name-EUde": "Würdestatue",
"name-EUes": "estatua triunfante",
"name-USes": "estatua triunfante",
"name-EUfr": "statue imposante",
"name-USfr": "statue imposante",
"name-EUit": "statua trionfante",
"name-EUnl": "majestueuze standbeeld",
"name-CNzh": "伟大的雕塑",
"name-TWzh": "偉大的雕塑",
"name-JPja": "いだいなちょうこく",
"name-KRko": "위대한 조각",
"name-EUru": "великая статуя"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/great_statue",
"museum-desc": "A bronze sculpture of King Kamehameha I, who founded the Kingdom of Hawaii in 1810. Traditionally, the sculpture is draped with many leis every year on June 11th."
},
"informative_statue": {
"id": 17,
"file-name": "informative_statue",
"name": {
"name-USen": "informative statue",
"name-EUen": "informative statue",
"name-EUde": "Hinweisskulptur",
"name-EUes": "piedra políglota",
"name-USes": "piedra políglota",
"name-EUfr": "tablette édifiante",
"name-USfr": "tablette édifiante",
"name-EUit": "pietra informativa",
"name-EUnl": "taalkundige standbeeld",
"name-CNzh": "线索的雕塑",
"name-TWzh": "線索的雕塑",
"name-JPja": "てがかりのちょうこく",
"name-KRko": "단서가 되는 조각",
"name-EUru": "образовательная статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/informative_statue",
"museum-desc": "A stone slab found in Rosetta, Egypt in 1799. Helped efforts to decipher ancient Egyptian hieroglyphs. Almost identical text is written in hieroglyphs at the top, then Demotic script, and lastly Greek script."
},
"jolly_painting": {
"id": 18,
"file-name": "jolly_painting",
"name": {
"name-USen": "jolly painting",
"name-EUen": "jolly painting",
"name-EUde": "Gemüsegemälde",
"name-EUes": "cuadro orgánico",
"name-USes": "cuadro orgánico",
"name-EUfr": "toile potagère",
"name-USfr": "toile potagère",
"name-EUit": "quadro organico",
"name-EUnl": "fleurige schilderij",
"name-CNzh": "有趣的名画",
"name-TWzh": "有趣的名畫",
"name-JPja": "おもしろいめいが",
"name-KRko": "재미있는 명화",
"name-EUru": "веселая картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/jolly_painting",
"museum-desc": "A curious portrait by Giuseppe Arcimboldo, an Italian painter from the late 16th century. It doesn't take a particularly sharp eye to see that the entire portrait is composed of fresh produce."
},
"moody_painting": {
"id": 19,
"file-name": "moody_painting",
"name": {
"name-USen": "moody painting",
"name-EUen": "moody painting",
"name-EUde": "Kraftgemälde",
"name-EUes": "retrato joven",
"name-USes": "retrato joven",
"name-EUfr": "toile puissante",
"name-USfr": "toile puissante",
"name-EUit": "quadro possente",
"name-EUnl": "noeste schilderij",
"name-CNzh": "强健的名画",
"name-TWzh": "強健的名畫",
"name-JPja": "ちからづよいめいが",
"name-KRko": "힘찬 명화",
"name-EUru": "энергичная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/moody_painting",
"museum-desc": "Millet painted this piece of a farmer sowing wheat seeds in a field after moving to the countryside from Paris. If the piece reminds you of Van Gogh, that's likely because Van Gogh himself was inspired by it!"
},
"motherly_statue": {
"id": 20,
"file-name": "motherly_statue",
"name": {
"name-USen": "motherly statue",
"name-EUen": "motherly statue",
"name-EUde": "Wölfinnenstatue",
"name-EUes": "figura materna",
"name-USes": "figura materna",
"name-EUfr": "statue maternelle",
"name-USfr": "statue maternelle",
"name-EUit": "statua leggendaria",
"name-EUnl": "moederlijke beeld",
"name-CNzh": "充满母爱的雕塑",
"name-TWzh": "充滿母愛的雕塑",
"name-JPja": "ぼせいあふれるちょうこく",
"name-KRko": "모성이 느껴지는 조각",
"name-EUru": "материнская статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/motherly_statue",
"museum-desc": "This wolf from Roman mythology raises a pair of twins, along with some controversy. The original bronze sculpture of the wolf is a masterpiece that dates back to 5th century BCE. The twins were added during the 15th century...or so it was thought.Recent research has given rise to speculation that the original piece may be from the 11th or 12th century. (We will, however, stick with the 5th century BCE estimate for now.)"
},
"moving_painting": {
"id": 21,
"file-name": "moving_painting",
"name": {
"name-USen": "moving painting",
"name-EUen": "moving painting",
"name-EUde": "Schöngemälde",
"name-EUes": "cuadro alegórico",
"name-USes": "cuadro alegórico",
"name-EUfr": "toile émouvante",
"name-USfr": "toile émouvante",
"name-EUit": "quadro colorato",
"name-EUnl": "symbolische schilderij",
"name-CNzh": "动人的名画",
"name-TWzh": "動人的名畫",
"name-JPja": "きれいなめいが",
"name-KRko": "예쁜 명화",
"name-EUru": "трогательная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/moving_painting",
"museum-desc": "A painting of the Roman goddess Venus riding a scallop shell after being born in the ocean. The name Botticelli is said to actually be a nickname given to the artist's brother, who was built like a barrel. Why this nickname was transferred between siblings is a mystery lost to the ages."
},
"mysterious_painting": {
"id": 22,
"file-name": "mysterious_painting",
"name": {
"name-USen": "mysterious painting",
"name-EUen": "mysterious painting",
"name-EUde": "Rätselgemälde",
"name-EUes": "cuadro tenebroso",
"name-USes": "cuadro tenebroso",
"name-EUfr": "toile ténébreuse",
"name-USfr": "toile ténébreuse",
"name-EUit": "quadro misterioso",
"name-EUnl": "mysterieuze schilderij",
"name-CNzh": "神秘的名画",
"name-TWzh": "神秘的名畫",
"name-JPja": "なぞめいためいが",
"name-KRko": "미스터리한 명화",
"name-EUru": "загадочная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/mysterious_painting",
"museum-desc": "A small boat carrying a corpse glides quietly over a still sea to an island of graves surrounded by cliffs. The air of this piece by symbolist painter Böcklin is chilling, but also somehow calm. Böcklin worked here to capture not what he could see, but some of humanity's inner contemplations."
},
"mystic_statue": {
"id": 23,
"file-name": "mystic_statue",
"name": {
"name-USen": "mystic statue",
"name-EUen": "mystic statue",
"name-EUde": "Geheimnisbüste",
"name-EUes": "busto antiguo",
"name-USes": "busto antiguo",
"name-EUfr": "sculpture mystérieuse",
"name-USfr": "sculpture mystérieuse",
"name-EUit": "statua enigmatica",
"name-EUnl": "enigmatische beeld",
"name-CNzh": "神秘的雕塑",
"name-TWzh": "神祕的雕塑",
"name-JPja": "しんぴてきなちょうこく",
"name-KRko": "신비로운 조각",
"name-EUru": "загадочная статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/mystic_statue",
"museum-desc": "A bust of Nefertiti, whose name means \"the beautiful one has come.\" A \"royal wife,\" she was known as one of the three most beautiful women in ancient Egypt. It is not known whether the left eye is missing because it fell out, or because it was never completed."
},
"nice_painting": {
"id": 24,
"file-name": "nice_painting",
"name": {
"name-USen": "nice painting",
"name-EUen": "nice painting",
"name-EUde": "Hübschgemälde",
"name-EUes": "retrato músico",
"name-USes": "retrato músico",
"name-EUfr": "toile magnifique",
"name-USfr": "toile magnifique",
"name-EUit": "quadro antico",
"name-EUnl": "muzikale schilderij",
"name-CNzh": "很好的名画",
"name-TWzh": "很好的名畫",
"name-JPja": "いいめいが",
"name-KRko": "좋은 명화",
"name-EUru": "приятная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/nice_painting",
"museum-desc": "One of Manet's earlier works, this painting depicts a young flautist dressed in military uniform. Manet's works are notable for their lack of linear perspective and strong color contrast. These attributes led some to call him \"The Father of Impressionism\" and make comparisons to Vélazquez. Fun fact-flautists can determine what note the boy is playing just by studying the painting closely."
},
"perfect_painting": {
"id": 25,
"file-name": "perfect_painting",
"name": {
"name-USen": "perfect painting",
"name-EUen": "perfect painting",
"name-EUde": "Perfektgemälde",
"name-EUes": "bodegón",
"name-USes": "cuadro perfecto",
"name-EUfr": "toile parfaite",
"name-USfr": "toile parfaite",
"name-EUit": "quadro perfetto",
"name-EUnl": "kleurrijke schilderij",
"name-CNzh": "厉害的名画",
"name-TWzh": "厲害的名畫",
"name-JPja": "すばらしいめいが",
"name-KRko": "훌륭한 명화",
"name-EUru": "совершенная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/perfect_painting",
"museum-desc": "This still life is known to have inspired the work of many other artists, including Pablo Picasso. Rather than trying to recreate an image, Cézanne captured the beauty of shapes from many angles. With this work, Cézanne draws on both the atmosphere of his subjects and the spirit of its beholders."
},
"proper_painting": {
"id": 26,
"file-name": "proper_painting",
"name": {
"name-USen": "proper painting",
"name-EUen": "proper painting",
"name-EUde": "Strenggemälde",
"name-EUes": "cuadro dama",
"name-USes": "cuadro dama",
"name-EUfr": "toile austère",
"name-USfr": "toile austère",
"name-EUit": "quadro austero",
"name-EUnl": "formele schilderij",
"name-CNzh": "热闹的名画",
"name-TWzh": "熱鬧的名畫",
"name-JPja": "にぎやかなめいが",
"name-KRko": "활기 넘치는 명화",
"name-EUru": "строгая картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/proper_painting",
"museum-desc": "Close inspection of the mirror behind this painting's subject reveals many mysteries and paradoxes... In fact, the painting is based on multiple perspectives, which explains the unusual placement of some items. Sadly, this is Manet's last major work. He passed away a year after it was complete, at age 51."
},
"quaint_painting": {
"id": 27,
"file-name": "quaint_painting",
"name": {
"name-USen": "quaint painting",
"name-EUen": "quaint painting",
"name-EUde": "Altertumsgemälde",
"name-EUes": "retrato holandés",
"name-USes": "retrato holandés",
"name-EUfr": "toile charmante",
"name-USfr": "toile charmante",
"name-EUit": "quadro buffo",
"name-EUnl": "traditionele schilderij",
"name-CNzh": "平静的名画",
"name-TWzh": "平靜的名畫",
"name-JPja": "おちついためいが",
"name-KRko": "침착한 명화",
"name-EUru": "старинная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/quaint_painting",
"museum-desc": "This piece earned Vermeer the nickname \"Master of Light\" thanks to its exquisite contrast and depth. Vermeer painted this masterpiece at only 25 years of age. Many note that it is surprisingly small in real life."
},
"robust_statue": {
"id": 28,
"file-name": "robust_statue",
"name": {
"name-USen": "robust statue",
"name-EUen": "robust statue",
"name-EUde": "Athletenstatue",
"name-EUes": "estatua atlética",
"name-USes": "estatua atlética",
"name-EUfr": "statue athlétique",
"name-USfr": "statue athlétique",
"name-EUit": "statua atletica",
"name-EUnl": "atletische standbeeld",
"name-CNzh": "强壮的雕塑",
"name-TWzh": "強壯的雕塑",
"name-JPja": "たくましいちょうこく",
"name-KRko": "듬직한 조각",
"name-EUru": "атлетическая статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/robust_statue",
"museum-desc": "This ancient Roman statue is based on the ancient Greek statue crafted by Myron. It's a piece that shows the grandeur of the human body, beautiful from any angle."
},
"rock-head_statue": {
"id": 29,
"file-name": "rock-head_statue",
"name": {
"name-USen": "rock-head statue",
"name-EUen": "rock-head statue",
"name-EUde": "Dickkopfskulptur",
"name-EUes": "cabeza colosal",
"name-USes": "cabeza colosal",
"name-EUfr": "sculpture déterminée",
"name-USfr": "sculpture déterminée",
"name-EUit": "testa di roccia",
"name-EUnl": "koppige standbeeld",
"name-CNzh": "石头颅雕塑",
"name-TWzh": "石頭顱雕塑",
"name-JPja": "いしあたまなちょうこく",
"name-KRko": "돌 머리의 조각",
"name-EUru": "твердолобая статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/rock-head_statue",
"museum-desc": "Giant stone head thought to be from the ancient Mesoamerican Olmec civilization. The larger ones can reach three meters in height. Scholars think they only crafted heads, no bodies."
},
"scary_painting": {
"id": 30,
"file-name": "scary_painting",
"name": {
"name-USen": "scary painting",
"name-EUen": "scary painting",
"name-EUde": "Furchtgemälde",
"name-EUes": "cuadro japonés",
"name-USes": "cuadro japonés",
"name-EUfr": "toile effrayante",
"name-USfr": "toile effrayante",
"name-EUit": "quadro spaventoso",
"name-EUnl": "griezelige schilderij",
"name-CNzh": "俊俏的名画",
"name-TWzh": "俊俏的名畫",
"name-JPja": "いなせなめいが",
"name-KRko": "씩씩한 명화",
"name-EUru": "страшная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/scary_painting",
"museum-desc": "A print from the mid-Edo period by Tōshūsai Sharaku depicting a famous actor of the time. Sharaku made roughly 140 ukiyo-e prints in his career, even though it only spanned around 10 months!"
},
"scenic_painting": {
"id": 31,
"file-name": "scenic_painting",
"name": {
"name-USen": "scenic painting",
"name-EUen": "scenic painting",
"name-EUde": "Wintergemälde",
"name-EUes": "cuadro invernal",
"name-USes": "cuadro invernal",
"name-EUfr": "toile hivernale",
"name-USfr": "toile hivernale",
"name-EUit": "quadro invernale",
"name-EUnl": "winterse schilderij",
"name-CNzh": "优美的名画",
"name-TWzh": "優美的名畫",
"name-JPja": "みごとなめいが",
"name-KRko": "뛰어난 명화",
"name-EUru": "живописная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/scenic_painting",
"museum-desc": "A landscape artist from the late Renaissance period, Brueghel was known as the \"Peasant Artist.\" He earned the title for depicting scenes from common peasant life, such as the moment captured here. Note the contrast between the weary hunters and the people frolicking below on icy ponds."
},
"serene_painting": {
"id": 32,
"file-name": "serene_painting",
"name": {
"name-USen": "serene painting",
"name-EUen": "serene painting",
"name-EUde": "Edelgemälde",
"name-EUes": "retrato regio",
"name-USes": "retrato regio",
"name-EUfr": "toile royale",
"name-USfr": "toile royale",
"name-EUit": "quadro simbolico",
"name-EUnl": "serene schilderij",
"name-CNzh": "婀娜的名画",
"name-TWzh": "婀娜的名畫",
"name-JPja": "たおやかなめいが",
"name-KRko": "아늑한 명화",
"name-EUru": "безмятежная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/serene_painting",
"museum-desc": "One of only four portraits of women painted by da Vinci, one of which is the \"Mona Lisa. \"Some believe that the \"ermine\" is not actually an ermine, but rather a white ferret!"
},
"sinking_painting": {
"id": 33,
"file-name": "sinking_painting",
"name": {
"name-USen": "sinking painting",
"name-EUen": "sinking painting",
"name-EUde": "Versinkgemälde",
"name-EUes": "cuadro literario",
"name-USes": "cuadro literario",
"name-EUfr": "toile tragique",
"name-USfr": "toile tragique",
"name-EUit": "quadro acquatico",
"name-EUnl": "tragische schilderij",
"name-CNzh": "沉默的名画",
"name-TWzh": "沉沒的名畫",
"name-JPja": "しずみゆくめいが",
"name-KRko": "가라앉는 명화",
"name-EUru": "речная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/sinking_painting",
"museum-desc": "Ophelia is a tragic figure in the Shakespearean play \"Hamlet.\" There is an otherworldly expression on her face as she lies unconscious in a river. She is surrounded by the beauty of nature as she floats between life and death."
},
"solemn_painting": {
"id": 34,
"file-name": "solemn_painting",
"name": {
"name-USen": "solemn painting",
"name-EUen": "solemn painting",
"name-EUde": "Feierlichgemälde",
"name-EUes": "cuadro español",
"name-USes": "cuadro español",
"name-EUfr": "toile solennelle",
"name-USfr": "toile solennelle",
"name-EUit": "quadro solenne",
"name-EUnl": "plechtige schilderij",
"name-CNzh": "肃穆的名画",
"name-TWzh": "肅穆的名畫",
"name-JPja": "おごそかなめいが",
"name-KRko": "엄숙한 명화",
"name-EUru": "торжественная картина"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/solemn_painting",
"museum-desc": "This famous piece by Velázquez, who served the Spanish court, shows us something about perspective. It depicts a young princess with her \"ladies-in-waiting.\" The artist himself is seen to the left. The king and queen are reflected in the mirror to the artist's right, so the perspective is that of the king. The king...watching the artist...paint the king and the queen..."
},
"tremendous_statue": {
"id": 35,
"file-name": "tremendous_statue",
"name": {
"name-USen": "tremendous statue",
"name-EUen": "tremendous statue",
"name-EUde": "Prachtskulptur",
"name-EUes": "urna imponente",
"name-USes": "urna imponente",
"name-EUfr": "sculpture singulière",
"name-USfr": "sculpture singulière",
"name-EUit": "scultura imponente",
"name-EUnl": "bijzondere standbeeld",
"name-CNzh": "出乎意料的雕塑",
"name-TWzh": "出乎意料的雕塑",
"name-JPja": "とてつもないちょうこく",
"name-KRko": "어마어마한 조각",
"name-EUru": "массивная статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/tremendous_statue",
"museum-desc": "This bronze ding from ancient China is the largest and heaviest ever found. The script on the inside suggests it was created to honor the king's mother."
},
"twinkling_painting": {
"id": 36,
"file-name": "twinkling_painting",
"name": {
"name-USen": "twinkling painting",
"name-EUen": "twinkling painting",
"name-EUde": "Funkelgemälde",
"name-EUes": "paisaje estrellado",
"name-USes": "paisaje estrellado",
"name-EUfr": "toile scintillante",
"name-USfr": "toile scintillante",
"name-EUit": "quadro sfavillante",
"name-EUnl": "nachtelijke schilderij",
"name-CNzh": "闪烁的名画",
"name-TWzh": "閃爍的名畫",
"name-JPja": "またたくめいが",
"name-KRko": "반짝이는 명화",
"name-EUru": "звездная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/twinkling_painting",
"museum-desc": "Van Gogh's signature piece, painted while he was hospitalized at an asylum. This view from his room includes memories and imaginations. In letters to friends, the artist called it a failure."
},
"valiant_statue": {
"id": 37,
"file-name": "valiant_statue",
"name": {
"name-USen": "valiant statue",
"name-EUen": "valiant statue",
"name-EUde": "Erhabenstatue",
"name-EUes": "estatua alada",
"name-USes": "estatua alada",
"name-EUfr": "statue héroïque",
"name-USfr": "statue héroïque",
"name-EUit": "statua eroica",
"name-EUnl": "heroïsche standbeeld",
"name-CNzh": "神圣的雕塑",
"name-TWzh": "神聖的雕塑",
"name-JPja": "こうごうしいちょうこく",
"name-KRko": "거룩한 조각",
"name-EUru": "героическая статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/valiant_statue",
"museum-desc": "A statue of the goddess of victory, Nike, found on Samothrace. It shows Nike alighting on the prow of a ship. Originally found in separate pieces, it has largely been restored, but the arms and head are still missing."
},
"warm_painting": {
"id": 38,
"file-name": "warm_painting",
"name": {
"name-USen": "warm painting",
"name-EUen": "warm painting",
"name-EUde": "Warmgemälde",
"name-EUes": "cuadro clásico",
"name-USes": "cuadro clásico",
"name-EUfr": "toile radieuse",
"name-USfr": "toile radieuse",
"name-EUit": "quadro classico",
"name-EUnl": "verleidelijke schilderij",
"name-CNzh": "舒适的名画",
"name-TWzh": "舒適的名畫",
"name-JPja": "いいかんじのめいが",
"name-KRko": "느낌이 좋은 명화",
"name-EUru": "романтичная картина"
},
"hasFake": false,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/warm_painting",
"museum-desc": "It is said that this painting is a more discreet version of an earlier work known as \"The Nude Maja.\" It is also known that Francisco de Goya was quite popular in his own time. Could these facts be related? A third, unrelated fact-the word \"maja\" refers to a \"stylish young lady of Madrid.\""
},
"warrior_statue": {
"id": 39,
"file-name": "warrior_statue",
"name": {
"name-USen": "warrior statue",
"name-EUen": "warrior statue",
"name-EUde": "Kriegerstatue",
"name-EUes": "estatua guerrera",
"name-USes": "estatua guerrera",
"name-EUfr": "statue guerrière",
"name-USfr": "statue guerrière",
"name-EUit": "statua guerriera",
"name-EUnl": "krijgszuchtige standbeeld",
"name-CNzh": "武士的雕刻",
"name-TWzh": "武士的雕刻",
"name-JPja": "もののふのちょうこく",
"name-KRko": "무사의 조각",
"name-EUru": "воинственная статуя"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/warrior_statue",
"museum-desc": "These terracotta warriors were buried with the first Qin emperor to protect him in the afterlife. Nearly 2,000 years later, in 1974, about 8,000 of them were found. Each life-sized statue is said to have been handmade with different poses, expressions, and clothing."
},
"wild_painting_left_half": {
"id": 40,
"file-name": "wild_painting_left_half",
"name": {
"name-USen": "wild painting left half",
"name-EUen": "wild painting left half",
"name-EUde": "Ungestümgemälde (links)",
"name-EUes": "cuadro naturaleza (izda.)",
"name-USes": "cuadro naturaleza (izda.)",
"name-EUfr": "partie g. de toile sauvage",
"name-USfr": "partie g. de toile sauvage",
"name-EUit": "quadro intenso (metà sx)",
"name-EUnl": "onstuimige schilderij (l)",
"name-CNzh": "粗野的名画左半边",
"name-TWzh": "粗野的名畫左半邊",
"name-JPja": "あらぶるめいがのひだり",
"name-KRko": "혼란스러운 명화의 왼쪽",
"name-EUru": "лев. часть дикой картины"
},
"hasFake": true,
"buy-price": 4980,
"sell-price": 1245,
"image_uri": "https://acnhapi.com/v1/images/art/wild_painting_left_half",
"museum-desc": "This folding screen shows dynamic brushwork of Fūjin and Raijin on a gold-leaf background. It is thought to be the masterpiece of Tawaraya Sōtatsu, an early-Edo- period artist. The simplification of the subjects is a style that was carried on by Ogata Kōrin. It's a style still in use today in the Rinpa school of Japanese painting."