|
--- |
|
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": 323, |
|
"name": "Genshin Impact \"It's not emergency food!\" Paimon Gourmet Series Trading Figures 6 pieces BOX", |
|
"price": "9,240", |
|
"points": "84", |
|
"descriptions": { |
|
"Product Categories": "Bishoujo (Beautiful Girls)", |
|
"JAN code": "6974096536047", |
|
"Release Date": "May. 2023 TBD", |
|
"Series": "Video Game", |
|
"Distributor:": "miHoYo", |
|
"Material:": "PVC & ABS Painted Finished Figures" |
|
}, |
|
"comment": "1BOX\u8cfc\u5165\u3067\u51686\u7a2e\u63c3\u3044\u307e\u3059\u3002\n\n\u3010\u30e9\u30a4\u30f3\u30ca\u30c3\u30d7\u3011\n\u30d1\u30a4\u30e2\u30f3\u30fb\u5b8c\u719f\u30c8\u30de\u30c8\u306e\u30df\u30fc\u30c8\u30bd\u30fc\u30b9\n\u30d1\u30a4\u30e2\u30f3\u30fb\u304a\u8089\u30c4\u30df\u30c4\u30df\n\u30d1\u30a4\u30e2\u30f3\u30fb\u6f01\u5e2b\u30c8\u30fc\u30b9\u30c8\n\u30d1\u30a4\u30e2\u30f3\u30fb\u8efd\u7b56\u8fb2\u5bb6\u6599\u7406\n\u30d1\u30a4\u30e2\u30f3\u30fb\u4ed9\u8df3\u7246\n\u30d1\u30a4\u30e2\u30f3\u30fb\u5348\u5f8c\u306e\u30d1\u30f3\u30b1\u30fc\u30ad", |
|
"meta": { |
|
"Manufacturer": "miHoYo", |
|
"Original": "Genshin" |
|
}, |
|
"image_urls": [ |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a54929240b3.jpg", |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a54929520ae.jpg", |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a549297f956.jpg", |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a54929ad744.jpg", |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a54929da22d.jpg", |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a5492a127a2.jpg", |
|
"https://tokyofigure.jp/upload/save_image/12231522_63a5492a40d3f.jpg" |
|
] |
|
}, |
|
... |
|
] |
|
``` |
|
|