X-Git-Url: https://git.yukkurigames.com/?p=labelle.git;a=blobdiff_plain;f=acnl-wearables-list.js;h=9e1e10f8d8fa5d878a5ed0fb2367ac20af5c5e7f;hp=303233c9637a87a51f9271a0b6e1a550bd93c281;hb=53c0518ceea70eb296942fb2f4c70ad9aa0f7ca2;hpb=8db94b5a2c286493f5a5120e4505bd3965de9a5d diff --git a/acnl-wearables-list.js b/acnl-wearables-list.js index 303233c..9e1e10f 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" ], @@ -750,7 +751,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 +1218,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; + }); +});