Add a presets file for preset words
This commit is contained in:
parent
e7e61bbd4e
commit
a74bb1039b
419
src/Presets.elm
Normal file
419
src/Presets.elm
Normal file
|
@ -0,0 +1,419 @@
|
|||
module Presets exposing (..)
|
||||
|
||||
import Stickers exposing (StickerContent(..))
|
||||
|
||||
type alias WordSet =
|
||||
{ name : String -- e.g. Activities, Language, Feelings
|
||||
, affinities : List StickerContent -- e.g. Yes - Into, Maybe, Sometimes
|
||||
, modifiers : List StickerContent -- e.g. Reciever, Speaker, I like to feel
|
||||
, words : List String -- e.g. Bondage, Schlong, Loss of Control
|
||||
}
|
||||
|
||||
allWordSets = [activitiesSet, languageSet, feelingsSet]
|
||||
|
||||
activitiesSet = WordSet
|
||||
"Activities"
|
||||
(["Yes - Into", "Yes - Willing", "Maybe", "No"] |> StickerContent "black")
|
||||
-- TODO make actual stickers for these
|
||||
(["Top / Giver", "Bottom / Reciever", "Never Tried", "Favorite"] |> StickerContent "black")
|
||||
activities
|
||||
|
||||
languageSet = WordSet
|
||||
"Language"
|
||||
(["Yes - Into", "Yes - Willing", "Maybe", "No"] |> StickerContent "black")
|
||||
(["Speaker", "Listener", "Never Tried", "Favorite"] |> StickerContent "black")
|
||||
language
|
||||
|
||||
feelingsSet = WordSet
|
||||
"Feelings"
|
||||
(["Often", "Sometimes", "Never"] |> StickerContent "black")
|
||||
(["I like to feel", "I want my partner to feel", "Never Tried", "Favorite"] |> StickerContent "black")
|
||||
|
||||
|
||||
activities =
|
||||
[ "69"
|
||||
, "Age-Play"
|
||||
, "Anal Sex"
|
||||
, "Analingus/Rimming"
|
||||
, "Ball Stretching"
|
||||
, "Being Filmed/Photographed"
|
||||
, "Being Watched"
|
||||
, "Biting"
|
||||
, "Blindfolds"
|
||||
, "Blood Play"
|
||||
, "Light Bondage"
|
||||
, "Heavy Bondage"
|
||||
, "Rope"
|
||||
, "Boot-blacking"
|
||||
, "Bratting"
|
||||
, "Breath Play"
|
||||
, "Butt Plugs"
|
||||
, "Cages/Confinement"
|
||||
, "Caning"
|
||||
, "Chastity"
|
||||
, "Cock/Pussy Worship"
|
||||
, "Cockrings"
|
||||
, "Collars"
|
||||
, "Consensual Non-Consent"
|
||||
, "Costumes"
|
||||
, "Cross Dressing"
|
||||
, "Cuckolding"
|
||||
, "Cuddling"
|
||||
, "Cunnilingus"
|
||||
, "Degradation"
|
||||
, "Dirty Talk"
|
||||
, "Domination"
|
||||
, "Double Penetration" -- TODO Which hole(s)? note??? how do we handle this?
|
||||
, "E-Stim"
|
||||
, "Edging"
|
||||
, "Ejaculate"
|
||||
, "Enemas"
|
||||
, "Eye Contact (or restriction from)"
|
||||
, "Face Fucking"
|
||||
, "Facesitting"
|
||||
, "Fellatio"
|
||||
, "Fingering" -- (External? Anal? Vaginal?)
|
||||
, "Fisting" -- (Anal? Vaginal?)
|
||||
, "Flogging"
|
||||
, "Food Play"
|
||||
, "Foot Play"
|
||||
, "Frottage"
|
||||
, "Furries"
|
||||
, "G-Spot"
|
||||
, "Gags"
|
||||
, "Gender Play"
|
||||
, "Genital Torture"
|
||||
, "Group Sex"
|
||||
, "Hair Pulling"
|
||||
, "Hoods"
|
||||
, "Humiliation"
|
||||
, "Incest"
|
||||
, "Roleplay"
|
||||
, "Kicking"
|
||||
, "Kidnapping"
|
||||
, "Roleplay"
|
||||
, "Kissing" -- (Where?)
|
||||
, "Knife Play"
|
||||
, "Leather"
|
||||
, "Lingerie"
|
||||
, "Massage"
|
||||
, "Medical Play"
|
||||
, "Moans"
|
||||
, "Mutual Masturbation"
|
||||
, "Nipple Clamps"
|
||||
, "Nipple Play"
|
||||
, "Nipple Torture"
|
||||
, "Objectification"
|
||||
, "Orgasm Control"
|
||||
, "Orgasm Denial"
|
||||
, "Paddles"
|
||||
, "Mild Pain"
|
||||
, "Moderate Pain"
|
||||
, "Severe Pain"
|
||||
, "Pegging"
|
||||
, "Piercing"
|
||||
, "Phone Sex"
|
||||
, "Piss Play"
|
||||
, "Porn"
|
||||
, "Power Exchange"
|
||||
, "Prostate Play"
|
||||
, "Punching"
|
||||
, "Punishment"
|
||||
, "Race Play"
|
||||
, "Riding Crops"
|
||||
, "Role Play" -- (Which Roles?)
|
||||
, "Rubber/Latex Clothing"
|
||||
, "Scat"
|
||||
, "Scratching"
|
||||
, "Sensory Deprivation"
|
||||
, "Service"
|
||||
, "Sex During Menstruation"
|
||||
, "Sex in Public"
|
||||
, "Sex Magic"
|
||||
, "Sex Parties"
|
||||
, "Sex Toys"
|
||||
, "Sexting"
|
||||
, "Shaving"
|
||||
, "Slapping" -- (Where?)
|
||||
, "Smoking" -- (Cigarettes? 420? Cigars?)
|
||||
, "Spanking"
|
||||
, "Sploshing"
|
||||
, "Spreader Bars"
|
||||
, "Strap Ons"
|
||||
, "Strip Clubs"
|
||||
, "Submission"
|
||||
, "Suspension"
|
||||
, "Swallowing Ejaculate"
|
||||
, "Tantra"
|
||||
, "Teasing"
|
||||
, "Temporary Marks"
|
||||
, "Threesome" -- (Genders?)
|
||||
, "Tickling"
|
||||
, "Tit-Fucking"
|
||||
, "Tribadism"
|
||||
, "Triple Penetration"
|
||||
, "Vaginal Penetration"
|
||||
, "Watching Others"
|
||||
, "Wax"
|
||||
, "Whips"
|
||||
, "Wrestling"
|
||||
]
|
||||
|
||||
language =
|
||||
[ "Abuse"
|
||||
, "Aching"
|
||||
, "Ample"
|
||||
, "Aroused"
|
||||
, "Ass"
|
||||
, "Asshole"
|
||||
, "Babe"
|
||||
, "Baby"
|
||||
, "Baby Girl/Boy"
|
||||
, "Balls"
|
||||
, "Bang"
|
||||
, "Beat"
|
||||
, "Beautiful"
|
||||
, "Beg"
|
||||
, "Bitch"
|
||||
, "Bite"
|
||||
, "Bits"
|
||||
, "Blowjob"
|
||||
, "Blush"
|
||||
, "Bone/Boner"
|
||||
, "Boobs"
|
||||
, "Booty"
|
||||
, "Bottom"
|
||||
, "Boy/Boi"
|
||||
, "Brat"
|
||||
, "Breasts"
|
||||
, "Bruise"
|
||||
, "Bulge"
|
||||
, "Blush"
|
||||
, "Butt"
|
||||
, "Button"
|
||||
, "Choke"
|
||||
, "Clit"
|
||||
, "Clitoris"
|
||||
, "Cock"
|
||||
, "Cock Sucking"
|
||||
, "Cum"
|
||||
, "Cum Dumpster"
|
||||
, "Cum Slut"
|
||||
, "Cunnilingus"
|
||||
, "Cunt"
|
||||
, "Daddy"
|
||||
, "Darling"
|
||||
, "Destroy"
|
||||
, "Dick"
|
||||
, "Dirty"
|
||||
, "Disappointment"
|
||||
, "Disgusting"
|
||||
, "“Down There”"
|
||||
, "Dripping"
|
||||
, "Eating Out"
|
||||
, "Embarrassed"
|
||||
, "Face Fucking"
|
||||
, "Faggot"
|
||||
, "Fap"
|
||||
, "Fellatio"
|
||||
, "Filthy"
|
||||
, "Finger"
|
||||
, "Finger Bang"
|
||||
, "Finger Fuck"
|
||||
, "Freak"
|
||||
, "Fuck"
|
||||
, "Fuck Toy"
|
||||
, "Gag"
|
||||
, "Giggle"
|
||||
, "Girl"
|
||||
, "Goddess"
|
||||
, "Gorgeous"
|
||||
, "Grab"
|
||||
, "Groan"
|
||||
, "Hairy"
|
||||
, "Hard/Hard On"
|
||||
, "Hole"
|
||||
, "Honey"
|
||||
, "Horny"
|
||||
, "Hot"
|
||||
, "Intense"
|
||||
, "Jerk Off"
|
||||
, "Jizz"
|
||||
, "Jugs"
|
||||
, "Juicy"
|
||||
, "Junk"
|
||||
, "Kitten"
|
||||
, "Lick"
|
||||
, "Lips"
|
||||
, "Little"
|
||||
, "Little One"
|
||||
, "Load"
|
||||
, "Ma’am"
|
||||
, "Master"
|
||||
, "Masturbate"
|
||||
, "Member"
|
||||
, "Mine"
|
||||
, "Miss"
|
||||
, "Mister"
|
||||
, "Mistress"
|
||||
, "Moan"
|
||||
, "Moist"
|
||||
, "Mouth"
|
||||
, "Nads"
|
||||
, "Nasty"
|
||||
, "Nipples"
|
||||
, "Pathetic"
|
||||
, "Pecker"
|
||||
, "Pervert"
|
||||
, "Pig/Piggy"
|
||||
, "Pink"
|
||||
, "Please"
|
||||
, "Pound"
|
||||
, "Prick"
|
||||
, "Princess"
|
||||
, "Property"
|
||||
, "Punch"
|
||||
, "Pup"
|
||||
, "Pussy"
|
||||
, "Rape"
|
||||
, "Ravage"
|
||||
, "Red"
|
||||
, "Rump"
|
||||
, "Sack"
|
||||
, "Sad"
|
||||
, "Schlong"
|
||||
, "Scratch"
|
||||
, "Scream"
|
||||
, "Screw"
|
||||
, "Sexy"
|
||||
, "Shiver"
|
||||
, "Shoot"
|
||||
, "Sir"
|
||||
, "Sissy"
|
||||
, "Skank"
|
||||
, "Slam"
|
||||
, "Slap"
|
||||
, "Slave"
|
||||
, "Slide"
|
||||
, "Slut"
|
||||
, "Smack"
|
||||
, "Smooth"
|
||||
, "Snatch"
|
||||
, "Soft"
|
||||
, "Solid"
|
||||
, "Spank"
|
||||
, "Spit"
|
||||
, "Squeeze"
|
||||
, "Strong"
|
||||
, "Stupid"
|
||||
, "Suck"
|
||||
, "Sweet"
|
||||
, "Sweetheart"
|
||||
, "Tease"
|
||||
, "Teeth"
|
||||
, "Tight"
|
||||
, "Tits"
|
||||
, "Top"
|
||||
, "Toy"
|
||||
, "Tramp"
|
||||
, "Turgid"
|
||||
, "Twat"
|
||||
, "Vag"
|
||||
, "Vagina"
|
||||
, "Vixen"
|
||||
, "Vulva"
|
||||
, "Wad"
|
||||
, "Wang"
|
||||
, "Wank"
|
||||
, "Watch"
|
||||
, "Wet"
|
||||
, "Whimper"
|
||||
, "Whore"
|
||||
, "Worthless"
|
||||
]
|
||||
|
||||
feelings =
|
||||
[ "Abandoned"
|
||||
, "Accomplished"
|
||||
, "Adored"
|
||||
, "Animalistic"
|
||||
, "Anger"
|
||||
, "Ashamed"
|
||||
, "Bad"
|
||||
, "Belonging"
|
||||
, "Big"
|
||||
, "Catharsis"
|
||||
, "Cherished"
|
||||
, "Clever"
|
||||
, "Coerced"
|
||||
, "Competent"
|
||||
, "Connected"
|
||||
, "Corrupted"
|
||||
, "Defeated"
|
||||
, "Desired"
|
||||
, "Dirty"
|
||||
, "Disrespected"
|
||||
, "Dutiful"
|
||||
, "Embarrassed"
|
||||
, "Encouraged"
|
||||
, "Euphoric"
|
||||
, "Fear"
|
||||
, "Focused"
|
||||
, "Forced"
|
||||
, "Forgiveness"
|
||||
, "Free"
|
||||
, "Good"
|
||||
, "Helplessness"
|
||||
, "Humiliation"
|
||||
, "Humility"
|
||||
, "Idolized"
|
||||
, "Impressed"
|
||||
, "Infantilized"
|
||||
, "Innocent"
|
||||
, "Loss of Control"
|
||||
, "Loved"
|
||||
, "Lust"
|
||||
, "Mean"
|
||||
, "Neediness"
|
||||
, "Nurturing"
|
||||
, "Objectified"
|
||||
, "Open"
|
||||
, "Out of Control"
|
||||
, "Overpowered"
|
||||
, "Overwhelmed"
|
||||
, "Owned"
|
||||
, "Passivity"
|
||||
, "Pathos"
|
||||
, "Perverted"
|
||||
, "Pity"
|
||||
, "Powerful"
|
||||
, "Protected"
|
||||
, "Punished"
|
||||
, "Rebellious"
|
||||
, "Rebellious"
|
||||
, "Redemption"
|
||||
, "Resentment"
|
||||
, "Redeemed"
|
||||
, "Resentment"
|
||||
, "Respected"
|
||||
, "Sadistic"
|
||||
, "Sadness"
|
||||
, "Safe"
|
||||
, "Satiated"
|
||||
, "Served"
|
||||
, "Sexy"
|
||||
, "Small"
|
||||
, "Special"
|
||||
, "Strong"
|
||||
, "Submissive"
|
||||
, "Subservient"
|
||||
, "Trust"
|
||||
, "Used"
|
||||
, "Useful"
|
||||
, "Victimized"
|
||||
, "Violated"
|
||||
, "Wanted"
|
||||
, "Worshiped"
|
||||
, "Worthless"
|
||||
, "Wrong"
|
||||
]
|
Loading…
Reference in a new issue