From 8c7222b6ef30e2afb957b1f920fcd4f5b0cd73f6 Mon Sep 17 00:00:00 2001 From: Anna Date: Sat, 27 Jul 2024 21:01:24 -0400 Subject: [PATCH] feat: start adding more evaluators --- Evaluator.cs | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Evaluator.cs b/Evaluator.cs index 719ecaa..1f908a2 100644 --- a/Evaluator.cs +++ b/Evaluator.cs @@ -88,8 +88,43 @@ public class Evaluator { Name = "G'raha Tia", BattleTalkImage = 73012, Lines = new Dictionary { + [Evaluation.Best] = [ + "Impressive! No surprise coming from someone as skilled as you.", + "Our champion again proves their worth. Well done, friend!", + ], + [Evaluation.Good] = [ + "A hard-fought battle, but you prevailed. Good job.", + "Seems like you had it well under control.", + ], + [Evaluation.Fair] = [ + "A bit of a rough fight, no?", + "Right, then. On to the next battle.", + ], + [Evaluation.Poor] = [ + "Would that I were there... I might have been able to help you.", + "Not your best work, but you can't be perfect all the time.", + ], + [Evaluation.Awful] = [ + "Do you need some rest? There's no shame in taking a break.", + "Perhaps you need some more training.", + ], }, }, + new Evaluator { + Id = new Guid("1dd9addb-f0d3-4a8d-b087-62ae10cb5423"), + Name = "Wuk Lamat", + BattleTalkImage = 73265, + Lines = new Dictionary { + [Evaluation.Best] = [ + new SeStringBuilder() + .AddItalics("Incredible!") + .AddText(" You have ") + .AddItalics("got") + .AddText("to show me how to do that sometime!") + .Build(), + ], + }, + } ]; }