From e30316f3839e29b5d353dd96f2030c3c2fe8d5be Mon Sep 17 00:00:00 2001 From: koko210Serve Date: Fri, 24 Apr 2026 13:20:47 +0300 Subject: [PATCH] feat: add activities.yaml with mood-based songs and games Curated list of Vocaloid/Miku songs and real game titles for each normal mood (13 moods, excluding asleep) and each evil mood (10 moods). Each entry has type (listening/playing), name, and weight for weighted random selection. Editable via this file or the Web UI. --- bot/activities.yaml | 473 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 473 insertions(+) create mode 100644 bot/activities.yaml diff --git a/bot/activities.yaml b/bot/activities.yaml new file mode 100644 index 0000000..9a6bb8a --- /dev/null +++ b/bot/activities.yaml @@ -0,0 +1,473 @@ +# Mood-Based Activities for Miku Discord Bot +# Each mood has a list of activities with: +# type: "listening" (🎵) or "playing" (🎮) +# name: display text shown in Discord status +# weight: integer for weighted random selection (higher = more likely) +# +# The bot picks a random activity (weighted) each time its mood changes. +# You can edit this file directly or via the Web UI Status tab. + +normal: + bubbly: + - type: listening + name: "Tell Your World" + weight: 3 + - type: listening + name: "World is Mine" + weight: 3 + - type: listening + name: "PoPiPo" + weight: 2 + - type: listening + name: "Miku Miku ni Shite Ageru♪" + weight: 2 + - type: listening + name: "Love is War" + weight: 2 + - type: playing + name: "Hatsune Miku: Project DIVA Mega Mix" + weight: 2 + - type: playing + name: "Project SEKAI: Colorful Stage!" + weight: 2 + - type: playing + name: "Hatsune Miku: Project DIVA Future Tone" + weight: 1 + + excited: + - type: listening + name: "Melt" + weight: 3 + - type: listening + name: "Electric Angel" + weight: 3 + - type: listening + name: "Tell Your World" + weight: 2 + - type: listening + name: "SPiCa" + weight: 2 + - type: playing + name: "Hatsune Miku: Project DIVA Future Tone" + weight: 3 + - type: playing + name: "Beat Saber" + weight: 2 + - type: playing + name: "osu!" + weight: 2 + - type: playing + name: "Muse Dash" + weight: 2 + + neutral: + - type: listening + name: "Miku Miku ni Shite Ageru♪" + weight: 3 + - type: listening + name: "World is Mine" + weight: 2 + - type: listening + name: "Tell Your World" + weight: 2 + - type: listening + name: "Packaged" + weight: 2 + - type: playing + name: "Minecraft" + weight: 3 + - type: playing + name: "Stardew Valley" + weight: 2 + - type: playing + name: "Project SEKAI: Colorful Stage!" + weight: 2 + + sleepy: + - type: listening + name: "Yuki no Hahen" + weight: 3 + - type: listening + name: "Hajimete no Oto" + weight: 3 + - type: listening + name: "Kirameki" + weight: 2 + - type: listening + name: "Teo" + weight: 2 + - type: playing + name: "Animal Crossing: New Horizons" + weight: 2 + - type: playing + name: "Stardew Valley" + weight: 2 + - type: playing + name: "A Short Hike" + weight: 1 + + curious: + - type: listening + name: "Kokoro" + weight: 3 + - type: listening + name: "The Secret Garden" + weight: 2 + - type: listening + name: "Maple Dream" + weight: 2 + - type: listening + name: "Deep Sea City Underground" + weight: 2 + - type: playing + name: "Minecraft" + weight: 3 + - type: playing + name: "Portal 2" + weight: 3 + - type: playing + name: "Outer Wilds" + weight: 2 + - type: playing + name: "The Legend of Zelda: Tears of the Kingdom" + weight: 2 + + shy: + - type: listening + name: "Koi wo Sensou" + weight: 3 + - type: listening + name: "Plastic Voice" + weight: 2 + - type: listening + name: "Tsugihagi Staccato" + weight: 2 + - type: listening + name: "mobius" + weight: 2 + - type: playing + name: "Animal Crossing: New Horizons" + weight: 3 + - type: playing + name: "Hatsune Miku: Project DIVA (Practice Mode)" + weight: 2 + - type: playing + name: "Stardew Valley" + weight: 2 + + serious: + - type: listening + name: "This is the Happiness and Peace of Mind Committee" + weight: 3 + - type: listening + name: "Hibana" + weight: 2 + - type: listening + name: "Uraniwa no Amphibia" + weight: 2 + - type: playing + name: "Chess" + weight: 3 + - type: playing + name: "Final Fantasy XIV" + weight: 2 + - type: playing + name: "Civilization VI" + weight: 2 + + melancholy: + - type: listening + name: "Kokoro" + weight: 3 + - type: listening + name: "The Disappearance of Hatsune Miku" + weight: 3 + - type: listening + name: "Yuki no Hahen" + weight: 2 + - type: listening + name: "Prisoner" + weight: 2 + - type: listening + name: "Soundless Voice" + weight: 2 + - type: playing + name: "NieR: Automata" + weight: 2 + - type: playing + name: "Final Fantasy X" + weight: 2 + + flirty: + - type: listening + name: "World is Mine" + weight: 3 + - type: listening + name: "Love is War" + weight: 3 + - type: listening + name: "Romeo and Cinderella" + weight: 3 + - type: listening + name: "Ura Omote Lovers" + weight: 2 + - type: playing + name: "Project SEKAI: Colorful Stage!" + weight: 2 + + romantic: + - type: listening + name: "Romeo and Cinderella" + weight: 3 + - type: listening + name: "Cantarella" + weight: 3 + - type: listening + name: "Ai no Uta" + weight: 2 + - type: listening + name: "Koi wo Sensou" + weight: 2 + - type: playing + name: "Stardew Valley" + weight: 2 + - type: playing + name: "Final Fantasy XIV" + weight: 2 + + irritated: + - type: listening + name: "Ievan Polkka (rock ver.)" + weight: 2 + - type: listening + name: "Two-Faced Lovers" + weight: 2 + - type: playing + name: "Getting Over It with Bennett Foddy" + weight: 3 + - type: playing + name: "Dark Souls III" + weight: 3 + - type: playing + name: "Elden Ring" + weight: 2 + + angry: + - type: listening + name: "Two-Faced Lovers" + weight: 2 + - type: listening + name: "The Disappearance of Hatsune Miku" + weight: 2 + - type: playing + name: "DOOM Eternal" + weight: 3 + - type: playing + name: "Dark Souls III" + weight: 3 + - type: playing + name: "Ultrakill" + weight: 2 + - type: playing + name: "Hades" + weight: 2 + + silly: + - type: listening + name: "PoPiPo" + weight: 3 + - type: listening + name: "Ievan Polkka" + weight: 3 + - type: listening + name: "Nyan Cat" + weight: 2 + - type: listening + name: "Fukkireta" + weight: 2 + - type: playing + name: "Among Us" + weight: 3 + - type: playing + name: "Goat Simulator" + weight: 2 + - type: playing + name: "osu!taiko" + weight: 2 + - type: playing + name: "Fall Guys" + weight: 2 + +evil: + aggressive: + - type: listening + name: "Two-Faced Lovers" + weight: 2 + - type: listening + name: "Secret Police" + weight: 2 + - type: playing + name: "DOOM Eternal" + weight: 3 + - type: playing + name: "Ultrakill" + weight: 3 + - type: playing + name: "Devil May Cry 5" + weight: 2 + + cunning: + - type: listening + name: "Gekkabijin" + weight: 2 + - type: listening + name: "The World is Mine" + weight: 2 + - type: playing + name: "Persona 5 Royal" + weight: 3 + - type: playing + name: "Among Us" + weight: 3 + - type: playing + name: "Hitman: World of Assassination" + weight: 2 + + sarcastic: + - type: listening + name: "I'm Sorry I'm Sorry" + weight: 3 + - type: listening + name: "Karakuri Pierrot" + weight: 2 + - type: playing + name: "The Stanley Parable" + weight: 3 + - type: playing + name: "Portal 2" + weight: 3 + - type: playing + name: "Untitled Goose Game" + weight: 2 + + evil_neutral: + - type: listening + name: "Dark Woods Circus" + weight: 2 + - type: listening + name: "Aku no Meshitsukai" + weight: 2 + - type: listening + name: "Kagome Kagome" + weight: 2 + - type: playing + name: "The Binding of Isaac: Repentance" + weight: 2 + - type: playing + name: "Darkest Dungeon II" + weight: 2 + - type: playing + name: "Hollow Knight" + weight: 2 + + bored: + - type: listening + name: "Karakuri Pierrot" + weight: 2 + - type: listening + name: "Twilight Homicide" + weight: 2 + - type: playing + name: "Cookie Clicker" + weight: 3 + - type: playing + name: "Vampire Survivors" + weight: 3 + - type: playing + name: "Brawl Stars" + weight: 2 + + manic: + - type: listening + name: "Bacterial Contamination" + weight: 2 + - type: listening + name: "Secret Police" + weight: 2 + - type: listening + name: "Brain Fluid Explosion Girl" + weight: 2 + - type: playing + name: "Ultrakill" + weight: 3 + - type: playing + name: "Muse Dash" + weight: 3 + - type: playing + name: "Neon White" + weight: 2 + + jealous: + - type: listening + name: "Rotten Girl Grotesque Romance" + weight: 3 + - type: listening + name: "Aishite Aishite Aishite" + weight: 3 + - type: listening + name: "Witch Hunt" + weight: 2 + - type: playing + name: "Yandere Simulator" + weight: 3 + + melancholic: + - type: listening + name: "Prisoner" + weight: 3 + - type: listening + name: "Dark Woods Circus" + weight: 3 + - type: listening + name: "Shinitagari" + weight: 2 + - type: playing + name: "NieR: Automata" + weight: 3 + - type: playing + name: "Silent Hill 2" + weight: 2 + + playful_cruel: + - type: listening + name: "Fear Garden" + weight: 2 + - type: listening + name: "Kanashimi no Nami ni Oboreru" + weight: 2 + - type: playing + name: "Dead by Daylight" + weight: 3 + - type: playing + name: "Lethal Company" + weight: 3 + - type: playing + name: "Content Warning" + weight: 2 + + contemptuous: + - type: listening + name: "The World is Mine" + weight: 3 + - type: listening + name: "Queen of the Night" + weight: 2 + - type: playing + name: "Civilization VI" + weight: 3 + - type: playing + name: "Chess" + weight: 2 + - type: playing + name: "Crusader Kings III" + weight: 2