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

27 lines
823 B
Elm
Raw Normal View History

2024-12-08 02:18:36 -06:00
module Debate.Cuckery.CuckList.JamesDiNicolantonio exposing (..)
2024-11-14 01:37:19 -06:00
2024-12-08 02:18:36 -06:00
import Debate.Cuckery.Types exposing (..)
2024-11-14 01:37:19 -06:00
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
2024-11-14 19:36:47 -06:00
, dodgeProposition = commonProps.propLinoleicAcid
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
2024-11-14 01:37:19 -06:00
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
2024-11-14 01:37:19 -06:00
}
]
}