2024-11-14 04:11:12 -06:00
|
|
|
module Cuckery.CuckList.MartyKendall exposing (..)
|
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckMartyKendall : Cuck
|
|
|
|
cuckMartyKendall =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Marty Kendall"
|
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/martykendall2"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1310548994804809729"
|
2024-11-14 04:11:12 -06:00
|
|
|
, 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
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|