2024-11-16 16:35:08 -06:00
|
|
|
module Cuckery.CuckList.ClaraAboel.ClaraAboel exposing (..)
|
2024-11-14 01:16:09 -06:00
|
|
|
|
|
|
|
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
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeProposition = "Polyunsaturated fatty acids are known to initiate cancer."
|
2024-11-23 18:01:27 -06:00
|
|
|
, dodgeReceipts = []
|
2024-11-19 23:05:39 -06:00
|
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
2024-11-14 01:16:09 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
2024-11-20 18:35:40 -06:00
|
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCancer
|
2024-11-14 01:16:09 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|