mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
30 lines
1 KiB
Elm
Executable file
30 lines
1 KiB
Elm
Executable file
module Cuckery.CuckList.DavidDiamond exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckDavidDiamond : Cuck
|
|
cuckDavidDiamond =
|
|
let
|
|
name : String
|
|
name =
|
|
"David Diamond"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://twitter.com/LDLSkeptic"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://twitter.com/LDLSkeptic/status/1583471298306375681?s=20"
|
|
, dodgeDescription = OutrightNo
|
|
, dodgeProposition = "statin therapy is not warranted for a person high LDL-C on a low-carb diet."
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
, { dodgeLink = "https://twitter.com/LDLSkeptic/status/1583481964840902656?s=20"
|
|
, dodgeDescription = KillScreen
|
|
, dodgeProposition = "statin therapy is not warranted for a person high LDL-C on a low-carb diet."
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
]
|
|
}
|