new initial demo outfit

This commit is contained in:
Matt Dunn-Rankin 2020-04-25 22:13:55 -07:00
parent e56bc2ec62
commit 1ddf97a953

View file

@ -12,20 +12,26 @@ function useOutfitState() {
const [state, dispatchToOutfit] = React.useReducer( const [state, dispatchToOutfit] = React.useReducer(
outfitStateReducer(apolloClient), outfitStateReducer(apolloClient),
{ {
name: "Zafara Agent (roopal27)", name: "Dress to Impress demo 💖",
wornItemIds: new Set([ wornItemIds: new Set(["51054", "35779", "35780", "37830"]),
"38913", closetedItemIds: new Set([
"38911", "76732",
"38912", "54393",
"37375", "80087",
"48313", "75997",
"37229", "57632",
"43014", "80052",
"43397", "67617",
"50861",
"77778",
"51164",
"62215",
"70660",
"74546",
"57997",
]), ]),
closetedItemIds: new Set(["74166", "68626", "40319"]), speciesId: "24", // Starry
speciesId: "54", // Starry colorId: "62", // Zafara
colorId: "75", // Zafara
} }
); );