website/frontend/src/Cuckery/CuckList/SebastianRamirez/SebastianRamirez.elm
2024-11-22 02:19:27 -06:00

25 lines
810 B
Elm
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 havent learnt how to live in a society."
, dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = SpecificPropReason "It's not clear what the proposition means."
}
]
}