website/frontend/src/Cuckery/CuckList/MartyKendall.elm

24 lines
714 B
Elm
Executable file

module Cuckery.CuckList.MartyKendall exposing (..)
import Cuckery.Types exposing (..)
cuckMartyKendall : Cuck
cuckMartyKendall =
let
name : String
name =
"Marty Kendall"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/martykendall2"
, cuckDodges =
[ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1310548994804809729"
, dodgeDescription = RanAway
, dodgeProposition = "to access your body fat, you need to deplete both glucose and fat from the blood first."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = NoProp
}
]
}