2024-11-14 04:11:12 -06:00
|
|
|
module Cuckery.CuckList.NorstrongChris exposing (..)
|
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckNorstrongChris : Cuck
|
|
|
|
cuckNorstrongChris =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Norstrong Chris"
|
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 15:48:28 -06:00
|
|
|
, cuckSocial = "https://x.com/northstrongwill"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { dodgeLink = "https://x.com/NorstrongHealth/status/1416939281973530626?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = RanAway
|
|
|
|
, dodgeProposition = "government funded USDA data is untrustworthy."
|
|
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
2024-11-14 16:22:27 -06:00
|
|
|
, { dodgeLink = "https://x.com/The_Nutrivore/status/1534573919562350594?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = OutrightNo
|
|
|
|
, dodgeProposition = "nutrition science as a whole is shit."
|
|
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
2024-11-14 16:22:27 -06:00
|
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1534614710196260865?s=20"
|
2024-11-14 04:11:12 -06:00
|
|
|
, dodgeDescription = NoReply
|
|
|
|
, dodgeProposition = "nutrition science as a whole is shit."
|
|
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|