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

25 lines
713 B
Elm
Raw Normal View History

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
, cuckSocial = "https://x.com/Nutricrinology"
2024-11-14 04:11:12 -06:00
, cuckDodges =
[ { 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
}
]
}