|
--- |
|
license: mit |
|
--- |
|
|
|
# myethos.json |
|
|
|
PVC figure images and information from [www.myethos.cn](http://www.myethos.cn). |
|
|
|
```ts |
|
interface Myethos { |
|
id: number |
|
image_urls: string[] |
|
descriptions: Record<string, string> |
|
} |
|
``` |
|
|
|
Preview |
|
|
|
```json |
|
[ |
|
... |
|
{ |
|
"id": 107, |
|
"image_urls": [ |
|
"http://www.myethos.cn/upload/image/20160414/570f46082398c.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f4608f1e57.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460983d86.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460a370b4.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460ac0912.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460b7dd6d.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460c042db.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460c7a61b.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460cef5f6.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460d7add0.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460defe68.jpg", |
|
"http://www.myethos.cn/upload/image/20160414/570f460e73b1f.jpg" |
|
], |
|
"descriptions": { |
|
"Product Name": "FairyTale-Another-Snow White", |
|
"Scale": "1/8 (Approximately 245mm in height with stand included)", |
|
"Specifications": "Pre-painted ABS&PVC figure", |
|
"List Price": "8800 JPY", |
|
"Release Date": "2015/01" |
|
} |
|
}, |
|
... |
|
] |
|
``` |
|
|
|
# tokyofigure.json |
|
|
|
PVC figure product information from [tokyofigure.jp](https://tokyofigure.jp). |
|
|
|
```ts |
|
interface Tokyofigure { |
|
id: number |
|
name: string |
|
price: string |
|
points: string |
|
descriptions: Record<string, string> |
|
comment: string |
|
image_urls: string[] |
|
} |
|
``` |
|
|
|
e.g. |
|
|
|
```json |
|
[ |
|
... |
|
{ |
|
"id": 43, |
|
"name": "Kizuna eye", |
|
"price": "13,279\n\n\u5186", |
|
"points": "120", |
|
"descriptions": { |
|
"Product Categories": "Bishoujo (Beautiful Girls)", |
|
"JAN code": "4573451870523", |
|
"Release Date": "2018\u5e7412\u6708\u672a\u5b9a", |
|
"Series": "virtual YouTuber", |
|
"Base Sculptor": "Ikurie Corporation", |
|
"Distributor:": "Tokyo Otaku Mode Inc.", |
|
"Brand:": "Ltd. Tokyo Figure", |
|
"Scale": "1/7 Scale", |
|
"Size:": "Height: : Approximately 23 cm (including pedestal)", |
|
"Material:": "PVC & ABS Painted Finished Figures" |
|
}, |
|
"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", |
|
"meta": { |
|
"Manufacturer": "Tokyo Otaku Mode Co., Ltd.", |
|
"Manufacturer URL": "https://corporate.otakumode.com/", |
|
"Original": "Kizuna Eye", |
|
"character": "Kizuna Eye" |
|
}, |
|
"image_urls": [ |
|
"https://tokyofigure.jp/upload/save_image/03240533_5ab56482b359a.jpg", |
|
"https://tokyofigure.jp/upload/save_image/03240533_5ab5649109989.jpg", |
|
"https://tokyofigure.jp/upload/save_image/03240533_5ab5649af1174.jpg", |
|
"https://tokyofigure.jp/upload/save_image/03240533_5ab564a630f05.jpg", |
|
"https://tokyofigure.jp/upload/save_image/03240533_5ab564b061acf.jpg", |
|
"https://tokyofigure.jp/upload/save_image/03240534_5ab564b9aab50.jpg" |
|
] |
|
}, |
|
... |
|
] |
|
``` |
|
|