mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
50 lines
1.9 KiB
Elm
Executable file
50 lines
1.9 KiB
Elm
Executable file
module Cuckery.CuckList.KenBerry.KenBerry exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckKenBerry : Cuck
|
|
cuckKenBerry =
|
|
let
|
|
name : String
|
|
name =
|
|
"Ken Berry"
|
|
|
|
propAnimalFat : String
|
|
propAnimalFat =
|
|
"Replacing animal fats with vegetable oils is dangerous."
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/KenDBerryMD"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1366524889067368449?s=20"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = "Type 2 Diabetes is chronic carbohydrate overdose."
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
, dodgeNicksDoxasticReason = VagueProp
|
|
}
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1539720236701589504?s=20"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = propAnimalFat
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
|
}
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1539721408372039680?s=20"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = propAnimalFat
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
|
}
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1813969807521300615"
|
|
, dodgeDescription = InTooDeep
|
|
, dodgeProposition = noProposition
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Nothing
|
|
, dodgeNicksDoxasticReason = VagueProp
|
|
}
|
|
]
|
|
}
|