mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
26 lines
821 B
Elm
Executable file
26 lines
821 B
Elm
Executable file
module Cuckery.CuckList.ClaraAboel.ClaraAboel exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckClaraAboel : Cuck
|
|
cuckClaraAboel =
|
|
let
|
|
name : String
|
|
name =
|
|
"Clara Aboel"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/AIWellnessCoach"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1727510906655969736"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = "Polyunsaturated fatty acids are known to initiate cancer."
|
|
, dodgeReceipts = []
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCancer
|
|
}
|
|
]
|
|
}
|