NHSE/NHSE.Core/Structures/Misc/Reaction.cs
Josh (vector_cmdr) af46059387
Update Available Reactions (#713)
Add new player reactions and the new unused ones.
2026-01-25 03:09:01 +11:00

134 lines
4.7 KiB
C#

namespace NHSE.Core;
/// <summary>
/// Learned Emotions that can be used from the Reaction Wheel
/// </summary>
public enum Reaction : byte
{
None = 0,
Happiness = 1, // Smiling
Laughter = 2, // Laughing
Joy = 3, // HappyFlower
Love = 4, // Love
Glee = 5, // HappyDance
UNUSED_6 = 6, // Anger (Unused)
Aggravation = 7, // Outraged
UNUSED_8 = 8, // Outrage (Unused)
Worry = 9, // Worried
Sighing = 10, // Sighing
Thought = 11, // Thinking
Sadness = 12, // SadSpiral
Distress = 13, // Frantic
Sorrow = 14, // Crying
Amazed = 15, // Shocked
Surprise = 16, // Aha
UNUSED_17 = 17, // Disbelief (Unused)
Shocked = 18, // Surprised
Cold_Chill = 19, // ColdChill
Fearful = 20, // Shaking
Agreement = 21, // Nodding
Inspiration = 22, // IdeaBulb
Curiosity = 23, // QuestionMark
Heartbreak = 24, // BrokenHeart
Sleepy = 25, // Sleepy
Bashfulness = 26, // Blushing
Resignation = 27, // OhGeez
Mischief = 28, // Scheming
Delight = 29, // Clapping
Sneezing = 30, // Sneezing
Encouraging = 31, // Cheering
Greetings = 32, // Greeting
Pride = 33, // SmugFace
UNUSED_34 = 34, // Sweating (Unused)
Smirking = 35, // Grin
Sheepishness = 36, // WrySmile
UNUSED_37 = 37, // Smile (Unused)
UNUSED_38 = 38, // Sunniness (Unused)
Shyness = 39, // Hesitate
Disagreement = 40, // Negative
Mistaken = 41, // Oops
Flourish = 42, // Dance
Daydreaming = 43, // AbsentMindedness
Showmanship = 44, // Shaki
Dozing = 45, // Sleep
UNUSED_46 = 46, // Shrunk Funk Shuffle (Unused)
Intense = 47, // Silent
Pleased = 48, // Hello
UNUSED_49 = 49, // Distress without the hand movements? (Unused)
UNUSED_50 = 50, // Smiling and rubbing cheek (Unused)
UNUSED_51 = 51, // Poking hands together (Unused)
UNUSED_52 = 52, // Intense but frowning (Unused)
UNUSED_53 = 53, // Amazed with smaller particles (Unused)
Apologetic = 54, // Apologize
Confident = 55, // Assent
UNUSED_56 = 56, // Talking (Unused)
UNUSED_57 = 57, // Clapping with no expression (Makes you stand up if sitting down) (Unused)
Bewilderment = 58, // Pardon
UNUSED_59 = 59, // Greetings with no sound or expression (Unused)
Scare = 60, // AddPrank
Haunt = 61, // AddScaring
SitDown = 62, // AddSitDown
Yoga = 63, // AddYoga
HereYouGo = 64, // AddHereYouGo
WorkOut = 65, // AddGymnastics
TakeAPicture = 66, // AddTakePictures
SniffSniff = 67, // AddSmell
Tada = 68, // AddPraise
WaveGoodbye = 69, // AddWaveHands
Excited = 70, // AddExcited
Confetti = 71, // (Festivale DLC)
Viva = 72, // (Festivale DLC)
LetsGo = 73, // (Festivale DLC)
FeelinIt = 74, // (Festivale DLC)
UNUSED_75 = 75, // Show item (Empty hand) (Unused)
SayCheese = 76, // Say Cheese
Eager = 77, // Eager
PostureWarmUp = 78, // Posture Warm-Up
ArmCircles = 79, // Arm Circles
SideBends = 80, // Side Bends
BodyTwists = 81, // Body Twists
WideArmStretch = 82, // Wide Arm Stretch
UpperBodyCircles = 83, // Upper-Body Circles
Jump = 84, // Jump
Hula = 85, // Hula
DoubleWave = 86, // Double Wave
ListeningEars = 87, // Listening Ears
Flex = 88, // Flex
Jammin = 89, // Jammin'
Stretch = 90, // Stretch
Behold = 91, // Behold
WorkIt = 92, // Work It
ActNatural = 93, // Act Natural
GroovingHop = 94, // Grooving Hop
GrooveRight = 95, // Groove Right
GrooveLeft = 96, // Groove Left
SoakItIn = 97, // Soak It In
Shimmy = 98, // Shimmy
Airplane = 99, // Airplane
TwistyDance = 100, // Twisty Dance
ArmSwingDance = 101, // Arm-Swing Dance
IslandStomp = 102, // Island Stomp
SideToSide = 103, // Side-to-Side
TurnipPatch = 104, // Turnip Patch
UNUSED_105 = 105, // Singing with no sound (Unused)
UNUSED_106 = 106, // Mischief (Unused)
UNUSED_107 = 107, // Excited action point (Unused)
UNUSED_108 = 108, // Fist pump and smile (Unused)
UNUSED_109 = 109, // Gullivar about to come alive (Unused)
UNUSED_110 = 110, // Intense shake action (Unused)
UNUSED_111 = 111, // Literally the "roll safe" meme (google it) (Unused)
UNUSED_112 = 112, // Leave it to me! (Unused)
UNUSED_113 = 113, // K.K. Slider Sitting (Unused)
UNUSED_114 = 114, // K.K. nodding while sitting (Unused)
UNUSED_115 = 115, // K.K. thinking while sitting (Unused)
UNUSED_116 = 116, // Clap and then dab on the haters (Unused)
UNUSED_117 = 117, // Kawaii pose (Hands to cheeks and leg flicked up) (Unused)
UNUSED_118 = 118, // Leap high into like a super hero (Unused)
UNUSED_119 = 119, // Quick shy to happy (Unused)
UNUSED_120 = 120 // Big jump for joy (Unused)
}