p1atdev commited on
Commit
363f1c3
1 Parent(s): 914786f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -4
README.md CHANGED
@@ -8,9 +8,99 @@ PVC figure images and information from [www.myethos.cn](http://www.myethos.cn).
8
 
9
  ```ts
10
  interface Myethos {
11
- [id: string]: {
12
- image_urls: string[]
13
- descriptions: Record<string, string>
14
- }
15
  }
16
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  ```ts
10
  interface Myethos {
11
+ id: number
12
+ image_urls: string[]
13
+ descriptions: Record<string, string>
 
14
  }
15
  ```
16
+
17
+ Preview
18
+
19
+ ```json
20
+ [
21
+ ...
22
+ {
23
+ "id": 107,
24
+ "image_urls": [
25
+ "http://www.myethos.cn/upload/image/20160414/570f46082398c.jpg",
26
+ "http://www.myethos.cn/upload/image/20160414/570f4608f1e57.jpg",
27
+ "http://www.myethos.cn/upload/image/20160414/570f460983d86.jpg",
28
+ "http://www.myethos.cn/upload/image/20160414/570f460a370b4.jpg",
29
+ "http://www.myethos.cn/upload/image/20160414/570f460ac0912.jpg",
30
+ "http://www.myethos.cn/upload/image/20160414/570f460b7dd6d.jpg",
31
+ "http://www.myethos.cn/upload/image/20160414/570f460c042db.jpg",
32
+ "http://www.myethos.cn/upload/image/20160414/570f460c7a61b.jpg",
33
+ "http://www.myethos.cn/upload/image/20160414/570f460cef5f6.jpg",
34
+ "http://www.myethos.cn/upload/image/20160414/570f460d7add0.jpg",
35
+ "http://www.myethos.cn/upload/image/20160414/570f460defe68.jpg",
36
+ "http://www.myethos.cn/upload/image/20160414/570f460e73b1f.jpg"
37
+ ],
38
+ "descriptions": {
39
+ "Product Name": "FairyTale-Another-Snow White",
40
+ "Scale": "1/8 (Approximately 245mm in height with stand included)",
41
+ "Specifications": "Pre-painted ABS&PVC figure",
42
+ "List Price": "8800 JPY",
43
+ "Release Date": "2015/01"
44
+ }
45
+ },
46
+ ...
47
+ ]
48
+ ```
49
+
50
+ # tokyofigure.json
51
+
52
+ Products imformation about PVC figures from [tokyofigure.jp](https://tokyofigure.jp)
53
+
54
+ ```ts
55
+ interface Tokyofigure {
56
+ id: number
57
+ name: string
58
+ price: string
59
+ points: string
60
+ descriptions: Record<string, string>
61
+ comment: string
62
+ image_urls: string[]
63
+ }
64
+ ```
65
+
66
+ e.g.
67
+
68
+ ```json
69
+ [
70
+ ...
71
+ {
72
+ "id": 43,
73
+ "name": "Kizuna eye",
74
+ "price": "13,279\n\n\u5186",
75
+ "points": "120",
76
+ "descriptions": {
77
+ "Product Categories": "Bishoujo (Beautiful Girls)",
78
+ "JAN code": "4573451870523",
79
+ "Release Date": "2018\u5e7412\u6708\u672a\u5b9a",
80
+ "Series": "virtual YouTuber",
81
+ "Base Sculptor": "Ikurie Corporation",
82
+ "Distributor:": "Tokyo Otaku Mode Inc.",
83
+ "Brand:": "Ltd. Tokyo Figure",
84
+ "Scale": "1/7 Scale",
85
+ "Size:": "Height: : Approximately 23 cm (including pedestal)",
86
+ "Material:": "PVC & ABS Painted Finished Figures"
87
+ },
88
+ "comment": "Familiar with \"Yes sir!\", Very popular virtual YouTuber The Scarabaunai of Scale It is a three-dimensional figure as a figure! Kizuner is a long-awaited figure. \n Tokyo Otaku Mode says the project \"Kizuna eye Scale Figures \". I figured her in familiar girls in YouTube videos with plenty of lively dynamism! Production is a reputation for high-quality figure \" \u682a\u5f0f\u4f1a\u793e\u30b9\u30c8\u30ed\u30f3\u30ac\u30fc Full cooperation. Energetic Ai-chan jumps out of the screen and comes to you. The first Kizuner awaited for the whole world Scale Do not miss a figure! \n \u00a9 Kizuna AI",
89
+ "meta": {
90
+ "Manufacturer": "Tokyo Otaku Mode Co., Ltd.",
91
+ "Manufacturer URL": "https://corporate.otakumode.com/",
92
+ "Original": "Kizuna Eye",
93
+ "character": "Kizuna Eye"
94
+ },
95
+ "image_urls": [
96
+ "https://tokyofigure.jp/upload/save_image/03240533_5ab56482b359a.jpg",
97
+ "https://tokyofigure.jp/upload/save_image/03240533_5ab5649109989.jpg",
98
+ "https://tokyofigure.jp/upload/save_image/03240533_5ab5649af1174.jpg",
99
+ "https://tokyofigure.jp/upload/save_image/03240533_5ab564a630f05.jpg",
100
+ "https://tokyofigure.jp/upload/save_image/03240533_5ab564b061acf.jpg",
101
+ "https://tokyofigure.jp/upload/save_image/03240534_5ab564b9aab50.jpg"
102
+ ]
103
+ },
104
+ ...
105
+ ]
106
+ ```