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

27 lines
819 B
Elm
Raw Normal View History

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