2024-11-14 04:11:12 -06:00
|
|
|
module Cuckery.CuckList.KaitMalthaner exposing (..)
|
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckKaitMalthaner : Cuck
|
|
|
|
cuckKaitMalthaner =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Kait Malthaner"
|
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/healthcoachkait"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1503258756687306753?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
|
|
|
, dodgeProposition = "omega-6 is pro-inflammatory."
|
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|