Skip to content

Instantly share code, notes, and snippets.

@Stuyk
Created July 13, 2020 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Stuyk/ed0a0c4b9a2ada1db07a450b544e14c8 to your computer and use it in GitHub Desktop.
Save Stuyk/ed0a0c4b9a2ada1db07a450b544e14c8 to your computer and use it in GitHub Desktop.
Non-RP Clothes
const blackList = {
// Hats
0: {
isProp: true,
male: [
1,
38,
46,
47,
57,
111,
112,
113,
115,
116,
117,
118,
119,
123,
124,
125,
126,
129,
133,
134,
137,
138,
144,
147,
148,
149
],
female: [
1,
37,
45,
46,
110,
111,
112,
114,
115,
116,
117,
118,
122,
123,
124,
125,
128,
132,
133,
136,
137,
143,
146,
147,
148
]
},
// Glasses
1: {
isProp: true,
male: [26, 27],
female: [28, 29]
},
// Pants
4: {
male: [30, 38, 39, 56, 77, 84, 85, 95, 106, 108, 109, 110, 111, 112, 113, 114, 115, 120],
female: [21, 29, 38, 39, 79, 86, 88, 98, 113, 115, 116, 117, 118, 119, 120, 121, 122, 126, 131, 132]
},
// Shoes
6: {
male: [0, 17, 33, 58, 67, 68, 87, 91],
female: [17, 34, 61, 70, 71, 87, 91, 94, 95]
},
// Accessory
7: {
male: [33, 40, 41, 125, 126, 127, 128, 133],
female: [16, 24, 95, 96, 97, 98, 102]
},
// Undershirt
8: {
male: [
19,
20,
58,
97,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
145,
151,
152,
153,
154,
155,
156,
164,
165
],
female: [18, 19, 35, 105, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 186, 187, 189, 190, 191, 192, 201]
},
// Shirt
11: {
male: [
2,
18,
48,
51,
54,
55,
65,
66,
116,
178,
186,
201,
228,
231,
246,
274,
275,
276,
277,
278,
283,
284,
285,
286,
287,
289,
291,
314,
315,
320
],
female: [
19,
41,
44,
47,
48,
59,
60,
108,
180,
188,
238,
241,
254,
288,
289,
290,
296,
297,
298,
299,
300,
302,
304,
325,
326,
327,
328,
329
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment