From d96be66022416f4bcbe327121d6bd7e53344d15a Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 15 May 2020 11:39:13 -0700 Subject: [PATCH] Add description for unused reaction entries https://pastebin.com/iD9SrFNf ty idk --- NHSE.Core/Structures/Misc/Reaction.cs | 39 ++++++++++++++++----------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/NHSE.Core/Structures/Misc/Reaction.cs b/NHSE.Core/Structures/Misc/Reaction.cs index c15e1a2..cb7af7e 100644 --- a/NHSE.Core/Structures/Misc/Reaction.cs +++ b/NHSE.Core/Structures/Misc/Reaction.cs @@ -8,9 +8,9 @@ public enum Reaction : byte Joy, // HappyFlower Love, // Love Glee, // HappyDance - UNUSED_6, + UNUSED_6, // Anger (Unused) Aggravation, // Outraged - UNUSED_8, + UNUSED_8, // Outrage (Unused) Worry, // Worried Sighing, // Sighing Thought, // Thinking @@ -19,7 +19,7 @@ public enum Reaction : byte Sorrow, // Crying Amazed, // Shocked Surprise, // Aha - UNUSED_17, + UNUSED_17, // Disbelief (Unused) Shocked, // Surprised Cold_Chill, // ColdChill Fearful, // Shaking @@ -36,11 +36,11 @@ public enum Reaction : byte Encouraging, // Cheering Greetings, // Greeting Pride, // SmugFace - UNUSED_34, + UNUSED_34, // Sweating (Unused) Smirking, // Grin Sheepishness, // WrySmile - UNUSED_37, - UNUSED_38, + UNUSED_37, // Smile (Unused) + UNUSED_38, // Sunniness (Unused) Shyness, // Hesitate Disagreement, // Negative Mistaken, // Oops @@ -48,18 +48,27 @@ public enum Reaction : byte Daydreaming, // AbsentMindedness Showmanship, // Shaki Dozing, // Sleep - UNUSED_46, + UNUSED_46, // Shrunk Funk Shuffle (Unused) Intense, // Silent Pleased, // Hello - UNUSED_49, - UNUSED_50, - UNUSED_51, - UNUSED_52, - UNUSED_53, + UNUSED_49, // Distress without the hand movements? (Unused) + UNUSED_50, // Smiling and rubbing cheek (Unused) + UNUSED_51, // Poking hands together (Unused) + UNUSED_52, // Intense but frowning (Unused) + UNUSED_53, // Amazed with smaller particles (Unused) Apologetic, // Apologize Confident, // Assent - UNUSED_56, - UNUSED_57, + UNUSED_56, // Talking (Unused) + UNUSED_57, // Clapping with no expression (Makes you stand up if sitting down) (Unused) Bewilderment, // Pardon + + UNUSED_59, // Greetings with no sound or expression (Unused) + UNUSED_60, // Fainting (Unused) + UNUSED_61, // Genuinely no clue. Could be bee sting? If anyone knows please tell me. (Unused) + UNUSED_62, // Scratching Forehead (Unused) + UNUSED_63, // Orville's thing idk what it's called (Unused) + UNUSED_64, // K.K. Slider Sitting (Unused) + UNUSED_65, // K.K. nodding while sitting (Unused) + UNUSED_66, // K.K. thinking while sitting (Unused) } -} \ No newline at end of file +}