2024-11-14 04:11:12 -06:00
|
|
|
module Cuckery.CuckList.KyleMamounis exposing (..)
|
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckKyleMamounis : Cuck
|
|
|
|
cuckKyleMamounis =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Kyle Mamounis"
|
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/Nutricrinology"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1389259133044477953?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = RanAway
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeProposition = "Statins do not prevent cardiovascular events."
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propLDLCausality
|
2024-11-14 04:11:12 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|