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

26 lines
826 B
Elm
Raw Normal View History

2024-11-16 16:35:08 -06:00
module Cuckery.CuckList.MichaelKummer.MichaelKummer exposing (..)
2024-11-14 04:11:12 -06:00
import Cuckery.Types exposing (..)
cuckMichaelKummer : Cuck
cuckMichaelKummer =
let
name : String
name =
"Michael Kummer"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/mkummer82"
2024-11-14 04:11:12 -06:00
, cuckDodges =
[ { dodgeLink = "https://x.com/mkummer82/status/1465755847917715464?s=20"
2024-11-14 04:11:12 -06:00
, dodgeDescription = OutrightNo
2024-11-14 19:36:47 -06:00
, dodgeProposition = "Polyunsaturated fats cause cell damage, inflammation and metabolic dysfunction."
, dodgeFallacy = Just (SpecificFallacy "")
2024-11-14 04:11:12 -06:00
, dodgeNicksDoxasticState = Just Disbelief
2024-11-14 19:36:47 -06:00
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReasonInflammation
2024-11-14 04:11:12 -06:00
}
]
}