2024-11-14 04:11:12 -06:00
|
|
|
module Cuckery.CuckList.KenBerry exposing (..)
|
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckKenBerry : Cuck
|
|
|
|
cuckKenBerry =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Ken Berry"
|
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/KenDBerryMD"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1366524889067368449?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
|
|
|
, dodgeProposition = "type 2 diabetes is chronic carbohydrate overdose."
|
|
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
2024-11-14 16:22:27 -06:00
|
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1539720236701589504?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
|
|
|
, dodgeProposition = "replacing animal fats with vegetable oils is dangerous."
|
|
|
|
, dodgeNicksDoxasticState = Just Belief
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
2024-11-14 16:22:27 -06:00
|
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1539721408372039680?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
|
|
|
, dodgeProposition = "replacing animal fats with vegetable oils is dangerous."
|
|
|
|
, dodgeNicksDoxasticState = Just Belief
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
|
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1813969807521300615"
|
|
|
|
, dodgeDescription = InTooDeep
|
|
|
|
, dodgeProposition = noProposition
|
|
|
|
, dodgeNicksDoxasticState = Nothing
|
|
|
|
, dodgeNicksDoxasticReason = Vague
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|