forked from OpenNeo/impress-2020
Still just read-only stuff, but now you can look at all the different poses we have for a species/color! Soon I'll make the pose/glitched stuff editable :3 Some sizable refactors here to add the ability to specify appearance ID as well as pose… most of the app still doesn't use it, it's mostly just lil extra logic to make it win if it's available! (The rationale for making it an override, rather than always tracking appearance ID, is that it gets really inconvenient in practice to //wait// on looking up the appearance ID in order to start loading various queries. Species/color/pose is a more intuitive key, and works better and faster when the canonical appearance is what you want!)
70 lines
1.4 KiB
Text
70 lines
1.4 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Outfit loads an outfit by ID 1`] = `
|
|
Object {
|
|
"outfit": Object {
|
|
"closetedItems": Array [
|
|
Object {
|
|
"id": "36125",
|
|
"name": "Blue Newsboy Hat",
|
|
},
|
|
Object {
|
|
"id": "36467",
|
|
"name": "Daring Adventurer Hat",
|
|
},
|
|
Object {
|
|
"id": "47075",
|
|
"name": "Jordies Adventure Hat",
|
|
},
|
|
Object {
|
|
"id": "47056",
|
|
"name": "Moltara Inventor Hat and Goggles",
|
|
},
|
|
Object {
|
|
"id": "39662",
|
|
"name": "Simple Sun Hat",
|
|
},
|
|
Object {
|
|
"id": "56706",
|
|
"name": "Super Sleuth Hat and Wig",
|
|
},
|
|
Object {
|
|
"id": "38915",
|
|
"name": "Zafara Tourist Shirt",
|
|
},
|
|
Object {
|
|
"id": "56398",
|
|
"name": "Altador Cup Kreludor Frame",
|
|
},
|
|
],
|
|
"id": "31856",
|
|
"name": "Zafara Tourist",
|
|
"petAppearance": Object {
|
|
"color": Object {
|
|
"id": "34",
|
|
"name": "Green",
|
|
},
|
|
"id": "3951",
|
|
"pose": "UNKNOWN",
|
|
"species": Object {
|
|
"id": "54",
|
|
"name": "Zafara",
|
|
},
|
|
},
|
|
"wornItems": Array [
|
|
Object {
|
|
"id": "38916",
|
|
"name": "Zafara Tourist Camera",
|
|
},
|
|
Object {
|
|
"id": "51054",
|
|
"name": "Summer Fun Beach Background",
|
|
},
|
|
Object {
|
|
"id": "38914",
|
|
"name": "Zafara Tourist Hat",
|
|
},
|
|
],
|
|
},
|
|
}
|
|
`;
|