Explorar el Código

Hopefully final version of this list.

Reddo hace 5 años
padre
commit
b315cccea5
Se han modificado 1 ficheros con 12 adiciones y 20 borrados
  1. 12 20
      app/World/Classes/ContentPicker/Fucking/FuckingMarker.ts

+ 12 - 20
app/World/Classes/ContentPicker/Fucking/FuckingMarker.ts

@@ -11,7 +11,7 @@
  * FuckingState.CUM_INSIDE
  * FuckingState.CUM_OUTSIDE
  *
- * Mandatory if present - These may all appear at once or separatedly! Multiples is always rarer, so you can get away with less descriptions
+ * Mandatory if present - These may all appear at once or separatedly! Multiples is always rarer, so you can get away with less descriptions.
  * FuckingState.PENETRATING
  * FuckingState.REMOVING
  *
@@ -19,9 +19,13 @@
  * FuckeePosition.STANDING
  * FuckeePosition.ALLFOURS
  *
- * Mandatory if present - Only one of these is ever Active, and they only appear if the Fuckee is standing and being fucke in the crotch
- * FuckerPosition.STANDINDFRONT
- * FuckerPosition.STANDINFBACK
+ * Optional - Only one of these is ever active
+ * FuckingStyle.GENTLE
+ * FuckingStyle.ROUGH
+ *
+ *
+ * TO MATCH ANIMATIONS:
+ * - Anything fucking the crotch does so from BEHIND. Only ignore this if you know for a fact that there are special animations, and then all the other descriptions must follow.
  *
  * Examples:
  * {
@@ -30,17 +34,19 @@
  */
 
 class FuckingStyle extends ContentMarker {
-    public static GENTLE = new FuckingStyle("Gentle");
-    public static ROUGH = new FuckingStyle("Rough");
+    public static GENTLE = new FuckingStyle("Gentle", false);
+    public static ROUGH = new FuckingStyle("Rough", false);
 }
 
 class FuckingState extends ContentMarker {
     public static PENETRATING = new FuckingState("Penetration Start", true);
     public static REMOVING = new FuckingState("Removing Stick", true);
     public static SPEEDING_UP = new FuckingState("Speeding up",true);
+
     public static CUM_START = new FuckingState("Started Cumming", true);
     public static CUMMING = new FuckingState("Cumming", true);
     public static CUM_END = new FuckingState("Finished Cumming", true);
+
     public static CUM_INSIDE = new FuckingState("Cum Inside", true);
     public static CUM_OUTSIDE = new FuckingState("Cum Outside", true);
 }
@@ -48,18 +54,4 @@ class FuckingState extends ContentMarker {
 class FuckeePosition extends ContentMarker {
     public static STANDING = new FuckingStyle("Standing");
     public static ALLFOURS = new FuckingStyle("On All Fours");
-}
-
-class FuckerPosition extends ContentMarker {
-    public static STANDINDFRONT = new FuckingStyle("Fucking from the front");
-    public static STANDINFBACK = new FuckingStyle("Fucking from the back");
-}
-
-class FuckingSpecial extends ContentMarker {
-    public static BUTTSLAP = new FuckingStyle("Slapping the butt", false);
-    public static BUTTSCARESS = new FuckingStyle("Caressing the butt", false);
-    public static BUTTGRAB = new FuckingStyle("Grabbing the butt", false);
-    public static BREASTCARESS = new FuckingStyle("Caressing the breast", false);
-    public static BREASTGRAB = new FuckingStyle("Grabbing the breast", false);
-    public static BREASTSLAP = new FuckingStyle("Slapping the breast", false);
 }