mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
26 lines
952 B
Elm
Executable file
26 lines
952 B
Elm
Executable file
module Cuckery.CuckList.MartyKendall.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."
|
|
, dodgeReceipts = []
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason "The proposition suggests that before one can liberate their body fat, they must first experience a lethal physiological event."
|
|
}
|
|
]
|
|
}
|