mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-18 22:47:24 -05:00
65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
namespace NHSE.Core
|
|
{
|
|
public enum Reaction : byte
|
|
{
|
|
None,
|
|
Happiness, // Smiling
|
|
Laughter, // Laughing
|
|
Joy, // HappyFlower
|
|
Love, // Love
|
|
Glee, // HappyDance
|
|
UNUSED_6,
|
|
Aggravation, // Outraged
|
|
UNUSED_8,
|
|
Worry, // Worried
|
|
Sighing, // Sighing
|
|
Thought, // Thinking
|
|
Sadness, // SadSpiral
|
|
Distress, // Frantic
|
|
Sorrow, // Crying
|
|
Amazed, // Shocked
|
|
Surprise, // Aha
|
|
UNUSED_17,
|
|
Shocked, // Surprised
|
|
Cold_Chill, // ColdChill
|
|
Fearful, // Shaking
|
|
Agreement, // Nodding
|
|
Inspiration, // IdeaBulb
|
|
Curiosity, // QuestionMark
|
|
Heartbreak, // BrokenHeart
|
|
Sleepy, // Sleepy
|
|
Bashfulness, // Blushing
|
|
Resignation, // OhGeez
|
|
Mischief, // Scheming
|
|
Delight, // Clapping
|
|
Sneezing, // Sneezing
|
|
Encouraging, // Cheering
|
|
Greetings, // Greeting
|
|
Pride, // SmugFace
|
|
UNUSED_34,
|
|
Smirking, // Grin
|
|
Sheepishness, // WrySmile
|
|
UNUSED_37,
|
|
UNUSED_38,
|
|
Shyness, // Hesitate
|
|
Disagreement, // Negative
|
|
Mistaken, // Oops
|
|
Flourish, // Dance
|
|
Daydreaming, // AbsentMindedness
|
|
Showmanship, // Shaki
|
|
Dozing, // Sleep
|
|
UNUSED_46,
|
|
Intense, // Silent
|
|
Pleased, // Hello
|
|
UNUSED_49,
|
|
UNUSED_50,
|
|
UNUSED_51,
|
|
UNUSED_52,
|
|
UNUSED_53,
|
|
Apologetic, // Apologize
|
|
Confident, // Assent
|
|
UNUSED_56,
|
|
UNUSED_57,
|
|
Bewilderment, // Pardon
|
|
}
|
|
} |