2024-11-16 16:35:08 -06:00
|
|
|
module Cuckery.CuckList.JosephEverett.JosephEverett exposing (..)
|
2024-11-14 04:11:12 -06:00
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckJosephEverett : Cuck
|
|
|
|
cuckJosephEverett =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Joseph Everett"
|
2024-11-14 19:36:47 -06:00
|
|
|
|
|
|
|
propSeedOils : String
|
|
|
|
propSeedOils =
|
|
|
|
"Seed oils cause coronary heart disease and cancer."
|
2024-11-14 04:11:12 -06:00
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/JEverettLearned"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1535334822825971712?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeProposition = propSeedOils
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
2024-11-14 16:22:27 -06:00
|
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1555138038740680704?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeProposition = propSeedOils
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReasonChronicDisease
|
2024-11-14 04:11:12 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|