mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
24 lines
681 B
Elm
Executable file
24 lines
681 B
Elm
Executable file
module Cuckery.CuckList.GeorgeMartin exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckGeorgeMartin : Cuck
|
|
cuckGeorgeMartin =
|
|
let
|
|
name : String
|
|
name =
|
|
"George Martin"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/CarnismDebunked"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1815098730141651021"
|
|
, dodgeDescription = RanAway
|
|
, dodgeProposition = "Nick has killed more animals in his life than a mature bear."
|
|
, dodgeNicksDoxasticState = Just Agnostic
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
]
|
|
}
|