Spaces:
Running
on
Zero
Running
on
Zero
Create tags_gay.py
Browse files- tags_gay.py +45 -0
tags_gay.py
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# tags.py
|
2 |
+
|
3 |
+
TAGS = {
|
4 |
+
"Participant Tags": {
|
5 |
+
"Solo": "solo",
|
6 |
+
"Couple": "gay_couple",
|
7 |
+
"Threesome": "gay_threesome",
|
8 |
+
"Group": "gay_group"
|
9 |
+
},
|
10 |
+
"Tribe Tags": {
|
11 |
+
"Academia": "academia_boy",
|
12 |
+
"Alien": "alien",
|
13 |
+
"Android": "android",
|
14 |
+
"Angel": "angel",
|
15 |
+
"Bohemian": "bohemian",
|
16 |
+
"Clown": "clown"
|
17 |
+
# Add more as needed...
|
18 |
+
},
|
19 |
+
"Skin Tone Tags": {
|
20 |
+
"Pale": "skin_pale",
|
21 |
+
"Tan": "skin_tan",
|
22 |
+
"Dark": "skin_dark"
|
23 |
+
},
|
24 |
+
"Body Type Tags": {
|
25 |
+
"Slim": "slim",
|
26 |
+
"Muscular": "muscular",
|
27 |
+
"Chubby": "chubby"
|
28 |
+
},
|
29 |
+
"Expression Tags": {
|
30 |
+
"Happy": "smiling",
|
31 |
+
"Sad": "sad_face",
|
32 |
+
"Angry": "angry_face"
|
33 |
+
},
|
34 |
+
"Eye Tags": {
|
35 |
+
"Blue Eyes": "blue_eyes",
|
36 |
+
"Green Eyes": "green_eyes",
|
37 |
+
"Red Eyes": "red_eyes"
|
38 |
+
},
|
39 |
+
"Hair Style Tags": {
|
40 |
+
"Short Hair": "short_hair",
|
41 |
+
"Long Hair": "long_hair",
|
42 |
+
"Mohawk": "mohawk"
|
43 |
+
}
|
44 |
+
# Add other groups like Tattoo, Piercing, Position, etc.
|
45 |
+
}
|