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

25 lines
754 B
Elm
Raw Normal View History

2024-11-14 01:37:19 -06:00
module Cuckery.CuckList.JamesDiNicolantonio exposing (..)
import Cuckery.Types exposing (..)
cuckJamesDiNicolantonio : Cuck
cuckJamesDiNicolantonio =
let
name : String
name =
"James DiNicolantonio"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/drjamesdinic"
2024-11-14 01:37:19 -06:00
, cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1460788569388171268?s=20"
2024-11-14 01:37:19 -06:00
, dodgeDescription = NoReply
, dodgeProposition = "dietary linoleic acid is not a significant, independent concern for the development of chronic diseases."
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = NoProp
}
]
}