FuckingMarker.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /// <reference path="../ContentMarker.ts" />
  2. /**
  3. * CHEAT SHEET FOR FUCKING MARKERS
  4. *
  5. * Mandatory if present - These may all appear at once or separatedly! Separated is always rarer, so you can get away with less descriptions (Most enemies will start and finish in a single turn)
  6. * FuckingState.CUM_START
  7. * FuckingState.CUMMING
  8. * FuckingState.CUM_END
  9. *
  10. * Mandatory if present - these always accompany the ones above, they never appear without at least one of the ones above. They might be both at once, but very few enemies do that so always check the enemy first (both at once = messy)
  11. * FuckingState.CUM_INSIDE
  12. * FuckingState.CUM_OUTSIDE
  13. *
  14. * Mandatory if present - These may all appear at once or separatedly! Multiples is always rarer, so you can get away with less descriptions. (Only a special enemy would both insert and finish and remove in the same turn)
  15. * FuckingState.PENETRATING
  16. * FuckingState.REMOVING
  17. *
  18. * Mandatory if present - Only one of these is ever active
  19. * FuckeePosition.STANDING
  20. * FuckeePosition.ALLFOURS
  21. *
  22. * Optional - Only one of these is ever active
  23. * FuckingStyle.GENTLE
  24. * FuckingStyle.ROUGH
  25. *
  26. *
  27. * TO MATCH ANIMATIONS:
  28. * - 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.
  29. *
  30. * Examples:
  31. * {
  32. * Fucking Unit: Orc is Fucker, Player is Fuckee, Orc Penis is Stick, Player Vagina is Hole, Markers: FuckingStyle.GENTLE - FuckeePosition.STANDING - FuckerPosition.STANDINGFRONT
  33. * }
  34. */
  35. class FuckingStyle extends ContentMarker {
  36. public static GENTLE = new FuckingStyle("Gentle", false);
  37. public static ROUGH = new FuckingStyle("Rough", false);
  38. }
  39. class FuckingState extends ContentMarker {
  40. public static PENETRATING = new FuckingState("Penetration Start", true);
  41. public static REMOVING = new FuckingState("Removing Stick", true);
  42. public static SPEEDING_UP = new FuckingState("Speeding up",true);
  43. public static CUM_START = new FuckingState("Started Cumming", true);
  44. public static CUMMING = new FuckingState("Cumming", true);
  45. public static CUM_END = new FuckingState("Finished Cumming", true);
  46. public static CUM_INSIDE = new FuckingState("Cum Inside", true);
  47. public static CUM_OUTSIDE = new FuckingState("Cum Outside", true);
  48. }
  49. class FuckeePosition extends ContentMarker {
  50. public static STANDING = new FuckingStyle("Standing");
  51. public static ALLFOURS = new FuckingStyle("On All Fours");
  52. }