From 70f5add9307092a797602e5ce447f8c91c127237 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Wed, 5 Aug 2020 02:01:48 -0400 Subject: [PATCH] bc --- js/003-data/miscData.js | 2 +- .../backwardsCompatibility.js | 42 +++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js index 2e020b2abc0..f1c8fbd9519 100644 --- a/js/003-data/miscData.js +++ b/js/003-data/miscData.js @@ -2004,7 +2004,7 @@ App.Data.misc = { name: "Stretch pants and a crop-top", value: "stretch pants and a crop-top", fs: "FSHedonisticDecadence", - get rs() { return V.boughtItem.clothing.clothes; } + get rs() { return V.boughtItem.clothing.lazyClothes; } }, { name: "Toga", diff --git a/src/data/backwardsCompatibility/backwardsCompatibility.js b/src/data/backwardsCompatibility/backwardsCompatibility.js index 6218deb503c..67157f97e26 100644 --- a/src/data/backwardsCompatibility/backwardsCompatibility.js +++ b/src/data/backwardsCompatibility/backwardsCompatibility.js @@ -1222,6 +1222,48 @@ App.Update.globalVariables = function(node) { V.eventResults.pit = V.eventResults.pit || V.PPit || 0; V.eventResults.slaveMedic = V.eventResults.slaveMedic || V.slaveMedic || 0; + // item purchase records + V.boughtItem.clothing.bunny = V.boughtItem.clothing.bunny || V.clothesBoughtBunny || 0; + V.boughtItem.clothing.conservative = V.boughtItem.clothing.conservative || V.clothesBoughtConservative || 0; + V.boughtItem.clothing.chains = V.boughtItem.clothing.chains || V.clothesBoughtChains || 0; + V.boughtItem.clothing.western = V.boughtItem.clothing.western || V.clothesBoughtWestern || 0; + V.boughtItem.clothing.oil = V.boughtItem.clothing.oil || V.clothesBoughtOil || 0; + V.boughtItem.clothing.habit = V.boughtItem.clothing.habit || V.clothesBoughtHabit || 0; + V.boughtItem.clothing.toga = V.boughtItem.clothing.toga || V.clothesBoughtToga || 0; + V.boughtItem.clothing.huipil = V.boughtItem.clothing.huipil || V.clothesBoughtHuipil || 0; + V.boughtItem.clothing.kimono = V.boughtItem.clothing.kimono || V.clothesBoughtKimono || 0; + V.boughtItem.clothing.harem = V.boughtItem.clothing.harem || V.clothesBoughtHarem || 0; + V.boughtItem.clothing.qipao = V.boughtItem.clothing.qipao || V.clothesBoughtQipao || 0; + V.boughtItem.clothing.egypt = V.boughtItem.clothing.egypt || V.clothesBoughtEgypt || 0; + V.boughtItem.clothing.belly = V.boughtItem.clothing.belly || V.clothesBoughtBelly || 0; + V.boughtItem.clothing.maternityDress = V.boughtItem.clothing.maternityDress || V.clothesBoughtMaternityDress || 0; + V.boughtItem.clothing.maternityLingerie = V.boughtItem.clothing.maternityLingerie || V.clothesBoughtMaternityLingerie || 0; + V.boughtItem.clothing.lazyClothes = V.boughtItem.clothing.lazyClothes || V.clothesBoughtLazyClothes || 0; + V.boughtItem.clothing.bimbo = V.boughtItem.clothing.bimbo || V.clothesBoughtBimbo || 0; + V.boughtItem.clothing.courtesan = V.boughtItem.clothing.courtesan || V.clothesBoughtCourtesan || 0; + V.boughtItem.shoes.heels = V.boughtItem.shoes.heels || V.shoesBoughtHeels || 0; + V.boughtItem.clothing.petite = V.boughtItem.clothing.petite || V.clothesBoughtPetite || 0; + // non-fs + V.boughtItem.clothing.military = V.boughtItem.clothing.military || V.clothesBoughtMilitary || 0; + V.boughtItem.clothing.cultural = V.boughtItem.clothing.cultural || V.clothesBoughtCultural || 0; + V.boughtItem.clothing.middleEastern = V.boughtItem.clothing.middleEastern || V.clothesBoughtMiddleEastern || 0; + V.boughtItem.clothing.pol = V.boughtItem.clothing.pol || V.clothesBoughtPol || 0; + V.boughtItem.clothing.costume = V.boughtItem.clothing.costume || V.clothesBoughtCostume || 0; + V.boughtItem.clothing.pantsu = V.boughtItem.clothing.pantsu || V.clothesBoughtPantsu || 0; + V.boughtItem.clothing.career = V.boughtItem.clothing.career || V.clothesBoughtCareer || 0; + V.boughtItem.clothing.dresses = V.boughtItem.clothing.dresses || V.clothesBoughtDresses || 0; + V.boughtItem.clothing.bodysuits = V.boughtItem.clothing.bodysuits || V.clothesBoughtBodysuits || 0; + V.boughtItem.clothing.casual = V.boughtItem.clothing.casual || V.clothesBoughtCasual || 0; + V.boughtItem.clothing.underwear = V.boughtItem.clothing.underwear || V.clothesBoughtUnderwear || 0; + V.boughtItem.clothing.boughtSports = V.boughtItem.clothing.boughtSports || V.clothesBoughtSports || 0; + V.boughtItem.clothing.boughtPony = V.boughtItem.clothing.boughtPony || V.clothesBoughtPony || 0; + V.boughtItem.clothing.boughtSwimwear = V.boughtItem.clothing.boughtSwimwear || V.clothesBoughtSwimwear || 0; + + V.boughtItem.toys.dildos = V.boughtItem.toys.dildos || V.toysBoughtDildos || 0; + V.boughtItem.toys.smartVibes = V.boughtItem.toys.smartVibes || V.toysBoughtSmartVibes || 0; + V.boughtItem.toys.vaginalAttachments = V.boughtItem.toys.vaginalAttachments || V.toysBoughtVaginalAttachments || 0; + V.boughtItem.toys.buttPlugs = V.boughtItem.toys.buttPlugs || V.toysBoughtButtPlugs || 0; + V.boughtItem.toys.buttPlugTails = V.boughtItem.toys.buttPlugTails || V.toysBoughtButtPlugTails || 0; node.append(`Done!`); }; -- GitLab