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

37 lines
1.2 KiB
Elm
Raw Normal View History

2024-11-14 04:11:12 -06:00
module Cuckery.CuckList.PaulMason exposing (..)
import Cuckery.Types exposing (..)
cuckPaulMason : Cuck
cuckPaulMason =
let
name : String
name =
"Paul Mason"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/DrPaulMason"
2024-11-14 04:11:12 -06:00
, cuckDodges =
[ { dodgeLink = "https://x.com/Tom_Babington1/status/1361644276866830337?s=20"
2024-11-14 04:11:12 -06:00
, dodgeDescription = NoReply
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp
}
, { dodgeLink = "https://x.com/IdanOnTweeter/status/1373233980594618371?s=20"
2024-11-14 04:11:12 -06:00
, dodgeDescription = NoReply
, dodgeProposition = "Ancel Keys' Seven Countries Study was flawed."
, dodgeNicksDoxasticState = Just Agnostic
2024-11-14 19:36:47 -06:00
, dodgeNicksDoxasticReason = VagueProp
2024-11-14 04:11:12 -06:00
}
, { dodgeLink = "https://x.com/The_Nutrivore/status/1461361726943760391?s=20"
2024-11-14 04:11:12 -06:00
, dodgeDescription = NoReply
2024-11-14 19:36:47 -06:00
, dodgeProposition = commonProps.propLinoleicAcid
2024-11-14 04:11:12 -06:00
, dodgeNicksDoxasticState = Just Agnostic
2024-11-14 19:36:47 -06:00
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
2024-11-14 04:11:12 -06:00
}
]
}