website/frontend/src/Debate/Cuckery/CuckList/KaitMalthaner.elm
2024-12-08 02:18:36 -06:00

26 lines
819 B
Elm
Executable file

module Debate.Cuckery.CuckList.KaitMalthaner exposing (..)
import Debate.Cuckery.Types exposing (..)
cuckKaitMalthaner : Cuck
cuckKaitMalthaner =
let
name : String
name =
"Kait Malthaner"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/healthcoachkait"
, cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1503258756687306753?s=20"
, dodgeDescription = NoReply
, dodgeProposition = "Omega-6 is pro-inflammatory."
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
}
]
}