feat: refactored cucks

This commit is contained in:
Nick 2024-11-16 16:35:08 -06:00
parent bdd63d8494
commit 667440f60f
74 changed files with 157 additions and 133 deletions

View file

@ -0,0 +1,46 @@
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."
, dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = VagueProp
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1539720236701589504?s=20"
, dodgeDescription = NoReply
, dodgeProposition = propAnimalFat
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1539721408372039680?s=20"
, dodgeDescription = NoReply
, dodgeProposition = propAnimalFat
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1813969807521300615"
, dodgeDescription = InTooDeep
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = VagueProp
}
]
}