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