X-Git-Url: https://git.yukkurigames.com/?p=labelle.git;a=blobdiff_plain;f=acnl-wearables-list.js;h=0eb8caeb6c093a84f5a55e780fe257303360a115;hp=303233c9637a87a51f9271a0b6e1a550bd93c281;hb=d0508abfaeb2c1dfeeb72d08429a6744aa3aeee0;hpb=8db94b5a2c286493f5a5120e4505bd3965de9a5d;ds=sidebyside diff --git a/acnl-wearables-list.js b/acnl-wearables-list.js index 303233c..0eb8cae 100644 --- a/acnl-wearables-list.js +++ b/acnl-wearables-list.js @@ -543,7 +543,8 @@ var ACNL_WEARABLES = { "yellow pansy", "yellow tulip", "yellow violet", - + "Jacob's ladder", + "dandelions", "lucky clovers" ], @@ -742,6 +743,7 @@ var ACNL_WEARABLES = { "tweeter", "bubble wand", "sparkler", + "roman candle", "matcha soft-serve", "choco soft-serve", "swirl soft-serve", @@ -750,7 +752,8 @@ var ACNL_WEARABLES = { "vanilla ice cream", "lemon double scoop", "mint double scoop", - "dandelion puff" + "dandelion puff", + "coffee" ], "tops": [ "24-hour-shop uniform", @@ -1216,3 +1219,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; + }); +});