mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
36 lines
1.3 KiB
Elm
Executable file
36 lines
1.3 KiB
Elm
Executable file
module Cuckery.CuckList.NorstrongChris exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckNorstrongChris : Cuck
|
|
cuckNorstrongChris =
|
|
let
|
|
name : String
|
|
name =
|
|
"Norstrong Chris"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/northstrongwill"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/NorstrongHealth/status/1416939281973530626?s=20"
|
|
, dodgeDescription = RanAway
|
|
, dodgeProposition = "Government funded USDA data is untrustworthy."
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
, dodgeNicksDoxasticReason = VagueProp
|
|
}
|
|
, { dodgeLink = "https://x.com/The_Nutrivore/status/1534573919562350594?s=20"
|
|
, dodgeDescription = OutrightNo
|
|
, dodgeProposition = "Nutrition science as a whole is shit."
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
, dodgeNicksDoxasticReason = VagueProp
|
|
}
|
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1534614710196260865?s=20"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = "Nutrition science as a whole is shit."
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
, dodgeNicksDoxasticReason = VagueProp
|
|
}
|
|
]
|
|
}
|