Skip to content
Snippets Groups Projects
Commit 2d04fc0e authored by lowercasedonkey's avatar lowercasedonkey
Browse files

complete itemAvailability

parent 578da1db
No related branches found
No related tags found
No related merge requests found
...@@ -81,8 +81,6 @@ window.isItemAccessible = function(string) { ...@@ -81,8 +81,6 @@ window.isItemAccessible = function(string) {
case "a ball gown": case "a ball gown":
case "a gothic lolita dress": case "a gothic lolita dress":
// case 'a halter top dress': // case 'a halter top dress':
// case 'a mini dress':
// case 'a slave gown':
return (V.clothesBoughtDresses === 1); return (V.clothesBoughtDresses === 1);
case "a cybersuit": case "a cybersuit":
case "a latex catsuit": case "a latex catsuit":
...@@ -165,7 +163,40 @@ window.isItemAccessible = function(string) { ...@@ -165,7 +163,40 @@ window.isItemAccessible = function(string) {
case "cat tail": case "cat tail":
case "fox tail": case "fox tail":
return (V.toysBoughtButtPlugTails === 1); return (V.toysBoughtButtPlugTails === 1);
// "Normal" things:
case "an apron":
case "slutty jewelry":
case "clubslut netting":
case "cutoffs and a t-shirt":
case "a comfortable bodysuit":
case "a cheerleader outfit":
case "a fallen nuns habit":
case "a hijab and abaya":
case "a leotard":
case "a slutty maid outfit":
case "a mini dress":
case "attractive lingerie":
case "a slutty nurse outfit":
case "overalls":
case "panties":
case "a scalemail bikini":
case "a schoolgirl outfit":
case "a slutty outfit":
case "spats and a tank top":
case "a string bikini":
case "a succubus outfit":
case "slutty business attire":
case "no clothing":
case "a penitent nuns habit":
case "restrictive latex":
case "shibari ropes":
case "uncomfortable straps":
case "choosing her own clothes":
case "a halter top dress":
case "a slave gown":
return true;
default: default:
console.log(`${string} not found`);
return true; return true;
} }
}; };
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment