|
--- |
|
license: cc0-1.0 |
|
--- |
|
|
|
# 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": "All 6 types are available by purchasing 1BOX.\n\u3010lineup\u3011Paimon, Ripe Tomato Meat SaucePaimon Meat TsumitsumiPaimon Fisherman ToastPaimon/Kusaku Farmer's CuisinePaimon/Sen JumpPaimon Gogo no Pancake", |
|
"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" |
|
] |
|
}, |
|
... |
|
] |
|
``` |