X-Git-Url: https://git.yukkurigames.com/?p=labelle.git;a=blobdiff_plain;f=acnl-wearables-list.js;h=fe39e0fee814026352cefd83316e411f4608e9c7;hp=303233c9637a87a51f9271a0b6e1a550bd93c281;hb=b56e53de989d1cda09d9bd3e06d5aa04434391af;hpb=8db94b5a2c286493f5a5120e4505bd3965de9a5d diff --git a/acnl-wearables-list.js b/acnl-wearables-list.js index 303233c..fe39e0f 100644 --- a/acnl-wearables-list.js +++ b/acnl-wearables-list.js @@ -543,9 +543,19 @@ var ACNL_WEARABLES = { "yellow pansy", "yellow tulip", "yellow violet", - + "Jacob's ladder", + "dandelions", - "lucky clovers" + "lucky clovers", + + "blue feather", + "green feather", + "pink feather", + "purple feather", + "red feather", + "white feather", + "yellow feather", + "rainbow feather" ], "shoes": [ "armor shoes", @@ -742,6 +752,7 @@ var ACNL_WEARABLES = { "tweeter", "bubble wand", "sparkler", + "roman candle", "matcha soft-serve", "choco soft-serve", "swirl soft-serve", @@ -750,7 +761,12 @@ var ACNL_WEARABLES = { "vanilla ice cream", "lemon double scoop", "mint double scoop", - "dandelion puff" + "dandelion puff", + "coffee", + "blue glow wand", + "yellow glow wand", + "green glow wand", + "pink glow wand" ], "tops": [ "24-hour-shop uniform", @@ -1216,3 +1232,10 @@ var ACNL_WEARABLES = { "white wet suit" ] }; + +var ACNL_WEARABLES_CATEGORY = {}; +Object.keys(ACNL_WEARABLES).forEach(function (category) { + ACNL_WEARABLES[category].forEach(function (value) { + ACNL_WEARABLES_CATEGORY[value] = category; + }); +});