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

31 lines
1 KiB
Elm
Raw Normal View History

2024-11-14 01:37:19 -06:00
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
}
]
}