diff --git a/frontend/src/Cuckery/CuckList/ZsofiaClemens/ZsofiaClemens.elm b/frontend/src/Cuckery/CuckList/ZsofiaClemens/ZsofiaClemens.elm index b808a47..f303db1 100755 --- a/frontend/src/Cuckery/CuckList/ZsofiaClemens/ZsofiaClemens.elm +++ b/frontend/src/Cuckery/CuckList/ZsofiaClemens/ZsofiaClemens.elm @@ -15,10 +15,10 @@ cuckZsofiaClemens = , cuckSocial = "https://x.com/ClemensZsofia" , cuckDodges = [ { dodgeLink = "https://x.com/TheNutrivore/status/1528377198180290561?s=20" - , dodgeDescription = NoReply - , dodgeProposition = noProposition - , dodgeNicksDoxasticState = Nothing - , dodgeNicksDoxasticReason = NoProp + , dodgeDescription = OutrightNo + , dodgeProposition = "Well-planned, plant-based diets are healthy." + , dodgeNicksDoxasticState = Just Belief + , dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propPlantBasedDiets } ] } diff --git a/frontend/src/Cuckery/Types.elm b/frontend/src/Cuckery/Types.elm index f085866..076c284 100755 --- a/frontend/src/Cuckery/Types.elm +++ b/frontend/src/Cuckery/Types.elm @@ -90,6 +90,7 @@ type alias PropReasons = , propEmpiricalClaim : String , propAnalyticalTruth : String , propNutritionalEpidemiology : String + , propPlantBasedDiets : String } @@ -106,4 +107,5 @@ commonPropReasons = , propEmpiricalClaim = "This is an empirical claim that requires empirical evidence, and none was provided." , propAnalyticalTruth = "The proposition is simply a trivial analytical truth." , propNutritionalEpidemiology = "With exposures matched, nutritional epidemiology agrees with nutritional randomized controlled trials approximately 91% of the time." + , propPlantBasedDiets = "The aggregate of the data suggests that appropriately supplemented plant-based diets decrease the risk of chronic disease compared to likewise meat-inclusive diets." }