mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
25 lines
810 B
Elm
Executable file
25 lines
810 B
Elm
Executable file
module Cuckery.CuckList.SebastianRamirez.SebastianRamirez exposing (..)
|
||
|
||
import Cuckery.Types exposing (..)
|
||
|
||
|
||
cuckSebastianRamirez : Cuck
|
||
cuckSebastianRamirez =
|
||
let
|
||
name : String
|
||
name =
|
||
"Sebastian Ramirez"
|
||
in
|
||
{ cuckImage = formatCuckName name
|
||
, cuckName = name
|
||
, cuckSocial = "https://x.com/JS_RamirezMD"
|
||
, cuckDodges =
|
||
[ { dodgeLink = "https://x.com/JS_RamirezMD/status/1859378109306278377"
|
||
, dodgeDescription = RanAway
|
||
, dodgeProposition = "Vegans haven’t learnt how to live in a society."
|
||
, dodgeFallacy = Just (SpecificFallacy "")
|
||
, dodgeNicksDoxasticState = Just Agnostic
|
||
, dodgeNicksDoxasticReason = SpecificPropReason "It's not clear what the proposition means."
|
||
}
|
||
]
|
||
}
|