mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
25 lines
673 B
Elm
25 lines
673 B
Elm
![]() |
module Cuckery.CuckList.GeorgeMartin exposing (..)
|
||
|
|
||
|
import Cuckery.Types exposing (..)
|
||
|
|
||
|
|
||
|
templateCuck : Cuck
|
||
|
templateCuck =
|
||
|
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
|
||
|
}
|
||
|
]
|
||
|
}
|